???<!-- GIF89;a -->
123123123123
.....................................................................................................................................???<!-- GIF89;a -->
123123123123
.....................................................................................................................................ELF          >          @       P0          @ 8 	 @                                 (      (                    0      0      0                                H      H      H                               8      8      8      $       $                                                             Std                                            Ptd                     T       T              Qtd                                                  Rtd   0      0      0                                  GNU {:{ t|                @ A             BE|qX                                                                                                                                         U                      ,                     h                                                                   N                                                                                       ,                       F   "                                             )                   )              ?    0                 )               __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize PySequence_GetItem PyObject_RichCompareBool PySequence_Size PyExc_ValueError PyErr_SetString _PyArg_ParseTupleAndKeywords_SizeT PyList_Type _PyObject_CallMethodId_SizeT _Py_NoneStruct PyList_Insert __stack_chk_fail PyLong_FromSsize_t PyInit__bisect PyModule_Create2 libpython3.4m.so.1.0 libpthread.so.0 libc.so.6 _edata __bss_start _end GLIBC_2.2.5 GLIBC_2.4 /opt/alt/python34/lib64:/opt/alt/sqlite/usr/lib64                                         ui	        ii         0                   8                   @             @      &                   &                   &                   &                   &                   &                   &                   &                    '                   ('                   0'                   8'                   `'                   h'                   p'                   x'                   '                   '                     '              (       (                   ((                   8(              %      @(                   H(                   X(             0!      `(                   h(                   x(              $      (                   (                   (             !      (                   (                   (             `"      (             s      (                   (             `!      )                                                                    
                                                                                           p                    x                                                                                                             	                                                                                           HHI  HtH     5  %   h    h   h   h   h   h   h   h   qh   ah	   Qh
   A%  D  %  D  %  D  %  D  %  D  %  D  %  D  %  D  %  D  %  D  %  D  H=  H  H9tH  Ht	        H=  H5  H)HHH?HHtH}  HtfD      =   u+UH=Z   HtH=  Yde  ]     w    AWAVAUATUSHHt$H   IIIHtuM9|ZfD  LeM9~KK,,LHHmHHt]Ht$1HvH+Lcu
HSHR0Mx6uIM9HL[]A\A]A^A_fKIHz    HH[]A\A]A^A_H+  H5  H8H H8HH  HdH%(   HD$(1HD$ H|  HD$    HD$ PHD$ P1LL$ LD$ZY   HL$ HT$Ht$H|$HxmH|$LD$H  H9OtFHH  1H5  nHt9H(t;H\  H HL$(dH3%(   u,H8 LHyΐ1@ HPHR0    AWAVAUATUSHHt$H   IIIHtuM9|ZfD  LeM9~KK,,LHHmHHt]H|$1HvH+Lcu
HSHR0Mx6tIM9HL[]A\A]A^A_fKIHz    HH[]A\A]A^A_H+  H5  H8H H8HH  HdH%(   HD$(1HD$ H  HD$    HD$ PHD$ P1LL$ LD$ZY   HL$ HT$Ht$H|$HxmH|$LD$H  H9OtFHH  1H5  nHt9H(t;H\  H HL$(dH3%(   u,H8 LHyΐ1@ HPHR0    H8HH>  HdH%(   HD$(1HD$ H  HD$    HD$ PHD$ P1LL$ LD$ZYt?HL$ HT$Ht$H|$Hx!HIHL$(dH3%(   uH8@ 1    H8HH  HdH%(   HD$(1HD$ H   HD$    HD$ PHD$ P1LL$ LD$ZYt?HL$ HT$Ht$H|$Hx!HHL$(dH3%(   uH8@ 1G      H=`     HHlo must be non-negative OO|nn:insort_left nO OO|nn:insort_right OO|nn:bisect_left OO|nn:bisect_right a x lo hi _bisect insort insert   ;P   	   l           8        T         zR x  $      P    FJw ?:*3$"       D              `   \   @    BBB B(A0A8DP
8D0A(B BBBCc
8A0A(B BBBA $      	   H@|HFPRHA@
D `          BBB B(A0A8DP
8D0A(B BBBCc
8A0A(B BBBA $   L  @	   H@|HFPRHA@
D $   t  (    H@|HFPRHA@~
E  $         H@|HFPRHA@~
E       8                    GNU                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 @             _             t                                                    H             0                           8                    o    `                                
                                  X                                        x                                	                             o           o          o           o          o    )                                                                                       H                                                                        0      @      P                                                              Bisection algorithms.

This module provides support for maintaining a list in sorted order without
having to sort the list after each insertion. For long lists of items with
expensive comparison operations, this can be an improvement over the more
common approach.
       Alias for insort_right().
      Alias for bisect_right().
                      insort_left(a, x[, lo[, hi]])

Insert item x in list a, and keep it sorted assuming a is sorted.

If x is already in a, insert it to the left of the leftmost x.

Optional args lo (default 0) and hi (default len(a)) bound the
slice of a to be searched.
    bisect_left(a, x[, lo[, hi]]) -> index

Return the index where to insert item x in list a, assuming a is sorted.

The return value i is such that all e in a[:i] have e < x, and all e in
a[i:] have e >= x.  So if x already appears in the list, i points just
before the leftmost x already there.

Optional args lo (default 0) and hi (default len(a)) bound the
slice of a to be searched.
                               insort_right(a, x[, lo[, hi]])

Insert item x in list a, and keep it sorted assuming a is sorted.

If x is already in a, insert it to the right of the rightmost x.

Optional args lo (default 0) and hi (default len(a)) bound the
slice of a to be searched.
 bisect_right(a, x[, lo[, hi]]) -> index

Return the index where to insert item x in list a, assuming a is sorted.

The return value i is such that all e in a[:i] have e <= x, and all e in
a[i:] have e > x.  So if x already appears in the list, i points just
beyond the rightmost x already there

Optional args lo (default 0) and hi (default len(a)) bound the
slice of a to be searched.
                                                                                                                                                                                                                                                                                                                    (                                                                                  %                         0!                          $                         !                         `"      s                   `!                                                                     GA$3a1       U               GA$3p1113        E                GA*             GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA$running gcc 8.5.0 20210514            GA*             GA*             GA!              GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*GOW *            GA*cf_protection             GA+omit_frame_pointer             GA+stack_clash            GA!stack_realign            GA*FORTIFY                          GA+GLIBCXX_ASSERTIONS   _bisect.cpython-34m.so-3.4.10-11.el8.x86_64.debug   6,R7zXZ  ִF !   t/M] ?Eh=ڊ2Nz)1ېbf&픾Iȼ#-R(ڐ}j(͋\NP=$H[z:,JMO*ǣo)%-+-gn&Fb,u9
??>D3ztJ@2+gy]%4ܽe<&`YLpIxiJM}̏ZBo@Sjc?ˑ)`$i+	}(̫dx~Y}Km+|0#vcS!5n-)K!L+f&l3E/=
{FyXU--7X?dV@oĔ:z\;<L	j13'ft4_dVr~%&}jCvkXq2؜ٻO1O@kdE)ZDuަ /`88*PnTkpw锄-1J/3(A돳^r_uAcSN&!b۴L)
_!/:2X;ІydhBaV_hBMG9\Գ#f(451oLe )t eS_s_~VB+ٿD) @RG%G؊ӏ"4#-U#MyXA3_RnK߈a,[D gVtKn_YgӉ\Qsc3%$- T[_#|tǘA0\Qg"mzϖS+?;Jҳ+&9VUHPR    swN8   2kzg    YZ .shstrtab .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt.sec .text .fini .rodata .eh_frame_hdr .eh_frame .note.gnu.property .init_array .fini_array .data.rel.ro .dynamic .got .data .bss .gnu.build.attributes .gnu_debuglink .gnu_debugdata                                                                                  8      8      $                                 o       `      `      4                             (                                                   0                                                      8   o                   ,                            E   o                   0                            T                                                    ^      B       x      x                                h                                                       c                                                      n             `      `                                   w                         5                             }             H      H                                          2       U      U                                                            T                                           0      0                                                                                                        0      0                                                8      8                                                @      @                                                 H      H                                              X      X                                                                	                                           )      )                                                   )`     )      D                             
                     \+      8                                                   +                                                         $/      (                             