ELF> )@@8@%$FF MM M  MM M $$PtdCCCllQtdRtdMM M ((GNUo*Q"A5PU E5`U K5pU Q5U W5U [5U _5U c5U g5U k5U o5U t5V y5V ~5 V 50V 5@V 5PV 5`V 5pV 5V 5V 5V 5V 5V 5V 5V 5V 5W 5W 5 W 50W 5@W 5PW 5`W 5pW 5W 5W 6W 6W  6W 6W 6W  6W (6X /6X 66 X =60X D6@X K6PX R6`X X6pX ^6X e6X k6X p6X v6X {6X 6X 6X 6Y 6Y 6 Y 60Y 6@Y 6PY 6`Y 6pY 3Y 3Y 3Y 3Y 4Y 4Y 4Y  4Y )4Z 24Z ;4 Z D40Z 6@Z 6PZ 6`Z 6pZ 6Z 6Z 6Z 6Z 6Z 6Z 7Z  7Z 7[ 7[ 7 [ $70[ ,7@[ 17P[ 67`[ ?7p[ G7[ O7[ X7[ a7[ n7[ |7[ 7[ 7[ 7\ 7\ 7 \ 70\ 7@\ 7P\ 7`\ 7p\ 7\ 7\ 7\ 7\ 7\ 7\ 7\ 7\ 8]  8] 8 ] 80] (8@] 78P] A8`] M8p] Z8] e8] m8] w8] 8] 8] 8] 8] 8^ 8^ 8 ^ 80^ 8@^ 8P^ 8`^ 8p^ 8^ 8^ 9^ 9^ 9^ "9^ +9^ 39^ @9_ O9_ a9 _ t90_ 9@_ 9P_ 9`_ 9p_ 9_ 9_ 9_ 9_ 9_ :_  :_ :_ #:` 2:` <: ` H:0` U:@` ]:`` 23h` -x`  @` %3` *` @>` b3` 1` =` V3` 1`  =` K3` 0`  <a @3a 0a  ;ha h:pa Ba `` a *a @*a 2O O  O O O !O %O 'P  P (P 0P 8P @P HP PP  XP  `P  hP  pP xP P P P P P P P P P P P P P P P  P "Q #Q $Q &HH( Ht#H5) %) @%) h%( h%( h%( h%( h%( h%( h%( hp%( h`%( h P%( h @%( h 0%( h %( h %( h%( h%( h%z( h%r( h%j( h%b( h%Z( h%R( h%J( hp%B( h`%:( hP%2( h@%*( h0%"( h %( h%( h% ( h%& f%& fH8 H=z8 UH)HHw]H& Ht]@HQ8 H=J8 UH)HHHH?HHu]Ho& Ht]H@=8 u'H=W& UHt H=B$ eh]7 @f.H=$ t&H& HtUH=# H]WKf.SHx[f.1[ff.UHSHbHHtHRHH+t H1[]@HH1[]ATIUHSHH8tH[H8HL]A\[]1A\fAWHH4H5=1AVAUATUSHHL$ LL$@LD$0HH|$@HG5HH=6 Lt$PHb|$ LHD$!H|$@1HH|$@D$PqHH|$@D$TVHnH|$@D$X;HSH|$@D$\ H8H|$@HD$HH|$@HD$HHIHEHH 1Mn/fLADHH HHoIH@HtL"HIGHH# H5 H8E1HĘL[]A\A]A^A_f.H" H5 H81t$Lttt$LCuVfDHD$H8IfDHi" H5j H8*fDLXADt$0|$ LtL%," I$#fAWHHDH5\1AVAUATUSHhHL$eLd$ |$L|LKLAP AHHtH1IIHHHHH t8AL$HuHm#1Hh[]A\A]A^A_fD$,u>|$7HtH¾Hz|$6HtH¾H[1HHt|$ 1HH3|$$HH|$(HH|$,HHDpHHDXHHHtYH+HHH=1 HH8dHh[]A\A]A^A_HHEHf.H(HHLD$H5"1H,1҅tt$<$tH HHHH(H=0 HDH8HH(HHLD$H51H1҅tt$<$tH HHHH(H=a0 \HH81H11҅t<$tH HHHHH=/ HLH8HDf.H(HHLD$H51H1҅tt$<$:tH HHHH(H=a/ \HH8 None Suspend or resume input or output on file descriptor fd. The action argument can be termios.TCOOFF to suspend output, termios.TCOON to restart output, termios.TCIOFF to suspend input, or termios.TCION to restart input.tcflush(fd, queue) -> None Discard queued data on file descriptor fd. The queue selector specifies which queue: termios.TCIFLUSH for the input queue, termios.TCOFLUSH for the output queue, or termios.TCIOFLUSH for both queues. tcdrain(fd) -> None Wait until all output written to file descriptor fd has been transmitted.tcsendbreak(fd, duration) -> None Send a break on file descriptor fd. A zero duration sends a break for 0.25-0.5 seconds; a nonzero duration has a system dependent meaning.tcsetattr(fd, when, attributes) -> None Set the tty attributes for file descriptor fd. The attributes to be set are taken from the attributes argument, which is a list like the one returned by tcgetattr(). The when argument determines when the attributes are changed: termios.TCSANOW to change immediately, termios.TCSADRAIN to change after transmitting all queued output, or termios.TCSAFLUSH to change after transmitting all queued output and discarding all queued input. tcgetattr(fd) -> list_of_attrs Get the tty attributes for file descriptor fd, as follows: [iflag, oflag, cflag, lflag, ispeed, ospeed, cc] where cc is a list of the tty special characters (each a string of length 1, except the items with indices VMIN and VTIME, which are integers when these fields are defined). The interpretation of the flags and the speeds as well as the indexing in the cc array must be done using the symbolic constants defined in this module.This module provides an interface to the Posix calls for tty I/O control. For a complete description of these calls, see the Posix or Unix manual pages. It is only available for those Unix versions that support Posix termios style tty I/O control. All functions in this module take a file descriptor fd as their first argument. This can be an integer file descriptor, such as returned by sys.stdin.fileno(), or a file object, such as sys.stdin itself.;l 8Hx@888X8xzRx $FJ w?;*3$"D$AT K C4dIADD f CAE LCA47BDD W JBC AADLBUB B(A0A8G 8D0A(B BBBK d$`3BUB B(A0A8D 8A0A(B BBBC @ 8A0A(B BBBA 8yD0L H yD0L H qD C I XyD0L H 4 FADD f AAG DDA,DAHD R AAG ))M  & 3M M o0  P #  o oo> oM '&'6'F'V'f'v'''''''''((&(6(F(V(f(v((((((((()q5|333333333 3 3 3 3 33333333344 4  4 )4 24 ;4D4M4U4]4g4q4z444444444444 4@4444444 55 5555 &5@,52585>5E5 K5@Q5W5[5_5c5g5k5o5t5y5~5555 55@55505@5555555555 5055566 6 6@6 6(6/666=6D6@K6R6X6^6e6k6p6v6{6666 6 6 6 6 666333344 4  4 )4 24 ;4D466666666667 7777$7,71767RT?7QTG7!TO7PTX7Ta7?n7|77 777777 T7T7T7 T7%T7T7T7T7T7T7T7 T8T 8 T8$T8]T(8VT78TA8TM8TZ8Te8Tm8Tw8T8T8T8\T8T8@8@8 888888899"T9 T"9T+9 T39@9 O9a9t9999T9ST9YT9ZT9XT9TT9[T:UT ::#T#:WT2:T<:TH:TU:T]:T23- @%3*@>b31=V31 =K30 <@30 ;h:B`` *@*2GCC: (GNU) 4.8.5 20150623 (Red Hat 4.8.5-44),*)  * 8:  ?  intPF iiL  i  ({b   ( 0 8 @ H P X  `` c fh K bp bt \ px F |T l F | ` &{ / 0 X1 "2 g3- 5b 7 5`` fyb/ | (    fK5iVr 8cBa¸MÒ Ķ TĶ(ȁ0 ɶ8Pʝ@oHm P X9  `  h p_ x  Xk \ 8;$ 8-/WbV 7a     mx  x(0d 8 e@ 8H+ PX~`U h p  xM,7 i k l`mastm uv* 8KCIbXcix b`bu b!'b; FLbepv b -- 8>Wb. d P8n buf9obj:len;W<>b  ?b$y@(zAn 0Bn 8 Cn @ DH E G  b  bt %H    jJ    -  o  tuLvSwx ey(Yz0{8|@K}8H~Pk X`MhU px4     E  [%    PT XxHx   (0 89@ xHh   X!  &_  ; $  W  U     T   w #V  $ % y &bD (  \ (  get set doc \  g A w *  )( , - . / 0 ) 1  =P >bE ??h K L : M( N0 O8o P @# QH; R;P S8XA Te`+ n bS ? M M <  4e 4T 4 !4 u "j # $)4N %)8  *y+,BK L EMinop mbS mm8|o8/zz /!1op$$$"fd&b &bS"fdb b}L  #fdb  #fdb!b$ 8b*$%obj8%p89&fd:b'*&(UUibm)'*@*I#+ ,-.SI*+c /I*-n'N*&(Uv.SV*+c/V*-n''^*&(Uv0e*0+]'*&(Us1b*7E2m3u 2arg.S*+c/*-n'*&(Us,`b.S*.+cN/*-n'*&(Us4*T(TQ$*;556fdb~7fb~7?8)/8P )~7@~&cc&v)&ib!z9SF+M+c,-n:N+&;- n<=+&(UT(T  3(Q *(R~(X~(Y~:++&=F+&(U @a =_+'(T~=t+/'(T0:|+I'=+/'5(T1:+I'=+/'Y(T2:+I'=+/'}(T3:+I'=+/'(T4:+I'=+/'(T5:,I'=,/'(T6: ,^'=E,&(Uv=s,I'&(U=,/'D(Uv(Ts=,i'\(U=,~'{(T p:=-'(T :(Q =,-'(U~(T~==-'(U~(T~:U-'=v-~'(T :=-'&(U'- ((Q~$ R-3l5Rf5R6fdTb~7U?&ccV8W)G8P W)&vX&iYb 6chZ~>errr.9r./+ '/&(Uv;/h+ '/&(Us;S/a+c# //-nF :/&=-&(UT(T /3(Q *(R~=.'(T|=.7((U|= .L(7(U|=-.a(O(U =R.v(m(Uv(Ts=m.((Uw(T1:.(=.v((Uv(T6:.(=.v((Uv(T5=.a((U7:.(=.v((Us(T0:/(=/v(I(Us(T1:/(=//v(s(Us(T2:8/(=H/v((Us(T3=P/((U =`/v((Us(T4=h/((U~ =x/v((Us(T5:}/^'=/&?(U @a :/''/v((Us(T6(Qv*0y+i + ?P?`.;0 .<@X0!AUAT/X0!BB.Sd0,]+c /d0-n :l0&=d0&|(U @a :t0'=$0&(UT(T <3(Q *(Rw(X`:60(*0yD+4 +m ?P?`.0 7<@0!AUAT/0!BB.S0+c /0-n :0&=0&(U @a :0'=0&6(UT(T G3(Q *(Rw(X`:0(*1q ++ +68 ?A`.21 <@P1!V A+UA6T/P1!BA.S\1( +c /\1-n :d1&=\1&G (U @a :l1'=1& (UT(T S3(Q *(Rw:-1(*L1y"+\ +g ?rP?|`;1  <@1!!A\UAgT/1!BrB|;S1!+cO /1-nr :1&=1&!(U @a :1'=1&!(UT(T ^3(Q *(Rw(X`:1 )C2F6#2m 0 2+ ,- .S 2"+c / 2-nS'2&(Uv.S2#+cv/2-n'2&(Uv0%2@+DF2&E P2$FmAGB$HzS.g2#+<IS2#+c_,-n'2&(Uv.2$+=b2&4$(U @a =2')Z$(U @a (T =2A)$(U n3(T0(Q0=2`)$(Uv(T v3'2)(Uv $J7 $ B $HP @a %J7F*%  @ % @%J7U% @> /% j% 7z% = Z% % ^7%  = % % H%  < % % H %  ; % & H 1& `` :& HN*&  Q KfKfKLK mM3b&M $&N:&MK (b&OM-&M8 ' 'PM Cb)'b)'?MFI'M"i^'P M,~'Q4 'M{ 'OM:b')')M 7b')')M 'Mp- (MGb,(bb,(2( ?M 4)L(,(Mn1)a(,(Mz v(M` b(M%(MD (iM_b(bbM[[b(bbMWb )bMQb')bbMA) 'bMd `)Mb)R"bi% : ; I$ > $ >   I : ;  : ; I8 : ;I8 : ; I !I/ &I : ;  : ; I8 : ;I8 : ; 'II' : ; I8  : ; <'I : ;.: ;' : ;I.: ;'I : ;I4: ;I.: ; 'I  : ; I!4: ; I"4: ;I#4: ; I$.: ; 'I@B%: ; I&4: ; I'1(B) *.1@B+1, U-41.1X Y/ 01RUX Y1.: ;'I@B2: ;I3: ;I4BB5: ; I64: ; I74: ; I84: ; I91RUX Y :1;1X Y <1=1> : ; ?41@ A1B41C.: ;'@BDB1E.?: ;'I@BF4: ;IG4: ;IH4: ;II1RUX YJ!I/K4: ; I?<L4: ;I?<M.?: ; 'I<N.?: ;'<OP.?: ; 'I<Q.?: ; '<R.?: ; 'I<  /usr/local/src/Python-3.9.6/Modules./Include/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/usr/include/bits/usr/include./Include/cpythontermios.cobject.hstddef.htypes.hlibio.hstdio.hpyport.hobject.hmethodobject.hdescrobject.hmoduleobject.htermios.hpyerrors.hfileobject.hmodsupport.hlistobject.hpystate.htermios.hlongobject.hbytesobject.h *8 ?YK/[/xXx{tf{xx<Xxf:>y_yXuWX~tX=KɝKɝKɝKɝYɝY  .z c"Z.<d<iutZztJ~~t Xw $;=ZV>Y;=wjgY=YX}/cuZZ#Yuu}$P00JJ?,M=~cMPF[VdxVxyUN[PdoPU[SdwSUSUSUTVPTVTQ\TQ\QPPSUPUUTUT~2~J~~2~J~ PV2VJVGv_P_2_J_GhShlsvSJS6=PJNPN~~UUTUT#0P0mV~VV Pm_~__Pm^~^^0AP]bPPPPSS0=SHbSbmVVrSPPUiU T UiTT[P\cPpwUwUpTUTPPUaUTUaTLSPT[PpwUwUpTUTPPU!V!"U"1V16U S"0S05U PV"1V16UP"5PS"0S05UR[PbxPPV@[  Q b  Q SspS  Q W[PPVPSP9[hpU[hp6>EJbm,/16,/160>   # & ' ) ) 3 3C8DM M M M M O P  Q a  ! M  ) P). )Da SM z )M  *$ @*I *7 *@a h -3 0y" 0y2 1qB 1yV 2Fi Q @{``  @@>= =_ < ;B+F9M EM RM [Cna zP  *a 1=V 3\q P2 *8GZia na   2L]j " &crtstuff.c__JCR_LIST__deregister_tm_clones__do_global_dtors_auxcompleted.6355__do_global_dtors_aux_fini_array_entryframe_dummy__frame_dummy_init_array_entrytermios.cfdconvtermiosmodule_cleartermiosmodule_traversetermios_tcsetattrtermiosmoduletermios_tcgetattrtermios_tcflowtermios_tcflushtermios_tcdraintermios_tcsendbreaktermiosmodule_freetermios_constantstermios_methodstermios_tcgetattr__doc__termios_tcsetattr__doc__termios_tcsendbreak__doc__termios_tcdrain__doc__termios_tcflush__doc__termios_tcflow__doc__termios__doc____FRAME_END____JCR_END____dso_handle_DYNAMIC__GNU_EH_FRAME_HDR__TMC_END___GLOBAL_OFFSET_TABLE_PyList_NewPyModule_AddIntConstant_ITM_deregisterTMCloneTablePyErr_SetFromErrnotcdrain@@GLIBC_2.2.5PyBytes_FromStringAndSizecfgetispeed@@GLIBC_2.2.5_edata_Py_Dealloccfsetospeed@@GLIBC_2.2.5_finitcflush@@GLIBC_2.2.5PyErr_SetStringPyModule_GetStatePyExc_TypeErrorPyInit_termiosPyLong_FromLongPyBytes_SizePyErr_NewExceptiontcsendbreak@@GLIBC_2.2.5__gmon_start__PyErr_OccurredPyModule_Create2PyLong_AsLongPyList_SetItemPyState_FindModule_Py_NoneStruct_endPyArg_ParseTuplePyList_Size__bss_startcfgetospeed@@GLIBC_2.2.5tcgetattr@@GLIBC_2.2.5tcsetattr@@GLIBC_2.2.5cfsetispeed@@GLIBC_2.2.5PyModule_AddObjecttcflow@@GLIBC_2.2.5_Jv_RegisterClassesPyObject_AsFileDescriptorPyBytes_AsStringPyErr_Format_ITM_registerTMCloneTablePyList_GetItem__cxa_finalize@@GLIBC_2.2.5_init.symtab.strtab.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.got.text.fini.rodata.eh_frame_hdr.eh_frame.init_array.fini_array.jcr.data.rel.ro.dynamic.got.plt.data.bss.comment.debug_aranges.debug_info.debug_abbrev.debug_line.debug_str.debug_loc.debug_ranges$.o<8 00P@Ho> > \Uo @d nB##x&&s''~)) ) ) 33  3 3 CCl8D8DtM MM MM MM MM MO O8P P Q Q a a0a-a0b)j, 800CIN7 #I \