ELF                      @                @ 8  @                                 *      *                                                                                                                         $       $              Ptd   ,(      ,(      ,(      L       L              Qtd                                                  Rtd                   @      @                      GNU mIGm%m5+6@bJ       #              
      #   kj/l                                 	                                                         5                     g                                                                                                                                    F   "                                         G                     M                     j                                          z                                                                                       U                      V                     $                                                                                                         )                                           g                                                               ,                                                 P              __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize __stack_chk_guard PyArg_ParseTupleAndKeywords PyMem_Malloc PyEval_SaveThread LZ4_decompress_safe_usingDict PyEval_RestoreThread PyBuffer_Release PyBytes_FromStringAndSize PyMem_Free PyExc_ValueError PyErr_Format PyByteArray_FromStringAndSize PyErr_NoMemory PyExc_OverflowError PyErr_SetString __stack_chk_fail LZ4_resetStream LZ4_loadDict LZ4_compress_fast_continue LZ4_resetStreamHC LZ4_loadDictHC LZ4_compress_HC_continue strcmp LZ4_compressBound PyInit__block PyModule_Create2 PyModule_AddIntConstant PyErr_NewExceptionWithDoc PyModule_AddObject liblz4.so.1 libc.so.6 ld-linux-aarch64.so.1 GLIBC_2.17                                                                                                                                                                           (                         (                   @                  H                  P                  X                  `                  h                  p                               @                  p                                    H                  P                   "                 X                                                                                                                                                            !                                                                                                             	                  
                              (                  0                  8                  @                  H                  P                  X                  `                  h                  p                  x                                                                                                                                                        "            { y  {_        {  rG;      vG;   zG;   ~G;   G<   G"<   GB<   Gb<   G<   G<   G<   G<   G=   G"=   GB=   Gb=   G=   G=   G=   G=   G>   G">   GB>   Gb>   G>   G>   G>   G>    G@  _         ! ?    T  !Ga   _      ! !  "A!A    BGb   _ {    `"E9@ 7   G      @  R`"9@{¨_     ?#  O   cG{Scc# b @W      c@ B%   )` ``=C
 4@{@_  l T7@?   T[T|@@{ @7~@  	  /@*k@*W *(20
7~@? `  T@ 7@ 5. S [M{@   GW@ @B  ҡ T{KSLcN#_֟ ) T5G@ ѿ )T
   G  !`'  @M[M{@ 7  [M{@   G   !%  @5   G   ! &  @)  K  !' @ ![M{@   G   !&  @[M{@  *   @!@) [M{@[{  ?#{ S[ck+ C@C@C@C@  GA * @    ***
 q T *  * q*%*  !GAd@" @  ҁ TASA[BcCkD+@{ƨ#_A @P  ***ys  ?#   G {(R  OS#  [ B*k : R @o      c@      c B`*` #)`) `=  4c{@K@'@  TO@?   T@V`	 4  !*Q  4  Z R!*K 5*+@ * |@?  q  ] ` J +@A  4YD @*G@*#D) @*L * q- TE) _  q4~@  4'  cQ   Go@ @B  ҡ T{NSO[PkR#_ R  cQ   G  !%  @cQ    G   ! &  @cQ    !`,  @cQ   G  @! +  @ cQc?#{    @  ~R   b   !,v"  ! -qB  !`-l  !-g      ! . . ҄        @  1@  T@    !.@{¨#_ @{¨#_ { {_            y*|ipz* Input too large for LZ4 API     Dictionary too large for LZ4 API        Input source data size too small        Invalid size: 0x%zu     Decompression failed: corrupt input or insufficient space in destination buffer. Error code: %u Decompressor wrote %u bytes, but %zu bytes expected from header default y*|spiipz*      fast    high_compression        Invalid mode argument: %s. Must be one of: standard, fast, high_compression     Compression failed      HC_LEVEL_MIN    HC_LEVEL_DEFAULT        HC_LEVEL_OPT_MIN        HC_LEVEL_MAX    Call to LZ4 library failed.     _block.LZ4BlockError    LZ4BlockError   source  mode    store_size      acceleration    compression     return_bytearray        dict    uncompressed_size       _block  compress        decompress              A Python wrapper for the LZ4 block protocol     decompress(source, uncompressed_size=-1, return_bytearray=False)

Decompress source, returning the uncompressed data as a string.
Raises an exception if any error occurs.

Args:
    source (str, bytes or buffer-compatible object): Data to decompress.

Keyword Args:
    uncompressed_size (int): If not specified or negative, the uncompressed
        data size is read from the start of the source block. If specified,
        it is assumed that the full source data is compressed data. If this
        argument is specified, it is considered to be a maximum possible size
        for the buffer used to hold the uncompressed data, and so less data
        may be returned. If `uncompressed_size` is too small, `LZ4BlockError`
        will be raised. By catching `LZ4BlockError` it is possible to increase
        `uncompressed_size` and try again.
    return_bytearray (bool): If ``False`` (the default) then the function
        will return a bytes object. If ``True``, then the function will
        return a bytearray object.

    dict (str, bytes or buffer-compatible object): If specified, perform
        decompression using this initial dictionary.

Returns:
    bytes or bytearray: Decompressed data.

Raises:
    LZ4BlockError: raised if the call to the LZ4 library fails. This can be
        caused by `uncompressed_size` being too small, or invalid data.
          compress(source, mode='default', acceleration=1, compression=0, return_bytearray=False)

Compress source, returning the compressed data as a string.
Raises an exception if any error occurs.

Args:
    source (str, bytes or buffer-compatible object): Data to compress

Keyword Args:
    mode (str): If ``'default'`` or unspecified use the default LZ4
        compression mode. Set to ``'fast'`` to use the fast compression
        LZ4 mode at the expense of compression. Set to
        ``'high_compression'`` to use the LZ4 high-compression mode at
        the exepense of speed.
    acceleration (int): When mode is set to ``'fast'`` this argument
        specifies the acceleration. The larger the acceleration, the
        faster the but the lower the compression. The default
        compression corresponds to a value of ``1``.
    compression (int): When mode is set to ``high_compression`` this
        argument specifies the compression. Valid values are between
        ``1`` and ``12``. Values between ``4-9`` are recommended, and
        ``9`` is the default.
    store_size (bool): If ``True`` (the default) then the size of the
        uncompressed data is stored at the start of the compressed
        block.
    return_bytearray (bool): If ``False`` (the default) then the function
        will return a bytes object. If ``True``, then the function will
        return a bytearray object.

    dict (str, bytes or buffer-compatible object): If specified, perform
        compression using this initial dictionary.
Returns:
    bytes or bytearray: Compressed data.
  ;H      `   $t   d         P  $  $,         zR x       0          ,   <           @   H    A BN       d                  |      A-AE
	CCZCfAL A-A
	-RABGAYJ
AAL
AAKABA  \     lX   A-A`G
	BBBBj
A`F A-Ax   h  l    A-AD
	DCDZHM A-A
	-I
AKBL
AI
AMB,         A-A Fl
 A-AD A-                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           z                                                    @                                                          o                 x                   
                                                                                                         	                            o           o    x      o           o    *      o                                                                                                                   0      0      0      0      0      0      0      0      0      0      0      0      0      0      0      0      0      0      0      0      0      0      0      0      0      0      0                                                                                        (                                                                                                                             @      p                                            H      P              "      X                                                         /usr/lib/debug/.dwz/aarch64-linux-gnu/python3-lz4.debug OkSL&6da84947d36d256d35b22b8fdc364062124afc.debug    * .shstrtab .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .init_array .fini_array .dynamic .got .data .bss .gnu_debugaltlink .gnu_debuglink                                                                                              $                                 o                   $                             (                         `                          0             x      x                                   8   o       *      *      H                            E   o       x      x      @                            T                                                    ^      B                                             h                                                       c             0      0                                   n                           @	                             t             @      @                                    z             `      `                                                ,(      ,(      L                                           x(      x(                                                                                                                                                                                                                         0                                                       H                                          H     H                                                         H     L                                                         4                                                                                       