ELFj4(UWVS[PƃtVE PPPVNjHte[^_]Í FVPe[^_]É'1e[^_]Ít&US[E}fE fEmUmUR$$كtكt (؍PRЋ]É'UWVS [ƉU 1ҋ}܉U܃ RU܃RU܃R}WU܃RU܃RU܃ RU܃RURRV0tL}k~QE-lU܉BJJA$I)))U܉JJe[^_]ÍPVƃtQ@9tRPt3 Vt#UBv=DwFEDt&PQ1e[^_]ÍlE fUWVSL[EEE1} EPEPPE P E jEE$} } !EH} };!}="Eԅ-}mE@ EPE.t&EPEPWVuR;}sM V Wƃulje[^_]ËU,)1e[^_]ÃPVlj4$e[^_]ÃPP1e[^_]Ã׃̃붃뫃렃땍vUWVSP[EPPM Qu 1e[^_]à uVE4$ƍ} uEt VEtP$$땃PR1sUS([EEPPE PtkEt;u< jE EPtyx tC P]f P]t&1]É'@뷃EPEPE@ux1ƒPP1w&'UWVSP[EEPPE PtyEub jEE$ƍEE  EPx t@ Pe[^_]ÍUUu1e[^_]Í@뺍v'UWVS$[NjE PEPE@L EP׉ǃ Pƃ GlPF G@$FYW RFXGPFXGPFXPF O$I))) $F$G@$F(YW RF,t HtD1e[^_]Í>u 0Vƃe[^_]à FVP11fUS([EEPPE PtkEt;u<jEP݃ME$]Í P]Et؍v1]É'UVSD[EPPE Pue[^]Ív'Eh?j$]E}E% fEmm]E}fEδ fEm]m؋m]mƍE$jjjj t 8u Ve[^]à VXP1$t&US [PU Rt كP<$$]ÐUWVS8[jƹy-)Iȉ )QQUu4$x$ߋ@(#Qj PEEPEE4$p$ދ@(Rj PU܉URE9}rPVPuV WPMQ jPUR EPEPP PPMQe[^_]ÐPWPEP VPEP 9%PPEP }WuV t&t&UWVS[hjPPPǃ tgteRPPW<$<$^XP V VPWe[^_]f Pt8t1끐UVS[Pu Vu 1e[^]à Pƃt VHt 뽃 FVPUS[PE Pu]ÐjEP݃MEـE@t$]؃ P1랍t&US([EEPPE PtkEt;u<jEP݃ME$^]Í P]Et؍v1]This module provides various functions to manipulate time values. There are two standard representations of time. One is the number of seconds since the Epoch, in UTC (a.k.a. GMT). It may be an integer or a floating point number (to represent fractions of seconds). The Epoch is system-defined; on Unix, it is generally January 1st, 1970. The actual value can be retrieved by calling gmtime(0). The other representation is a tuple of 9 integers giving local time. The tuple items are: year (four digits, e.g. 1998) month (1-12) day (1-31) hours (0-23) minutes (0-59) seconds (0-59) weekday (0-6, Monday is 0) Julian day (day in the year, 1-366) DST (Daylight Savings Time) flag (-1, 0 or 1) If the DST flag is 0, the time is given in the regular time zone; if it is 1, the time is given in the DST time zone; if it is -1, mktime() should guess based on the date and time. Variables: timezone -- difference in seconds between UTC and local standard time altzone -- difference in seconds between UTC and local DST time daylight -- whether local time should reflect DST tzname -- tuple of (standard time zone name, DST time zone name) Functions: time() -- return current time in seconds since the Epoch as a float clock() -- return CPU time since process start as a float sleep() -- delay for a number of seconds given as a float gmtime() -- convert seconds since Epoch to UTC tuple localtime() -- convert seconds since Epoch to local time tuple asctime() -- convert time tuple to string ctime() -- convert time in seconds to string mktime() -- convert local time tuple to seconds since Epoch strftime() -- convert time tuple to string according to format specification strptime() -- parse string to time tuple according to format specification tzset() -- change the local timezonetime() -> floating point number Return the current time in seconds since the Epoch. Fractions of a second may be present if the system clock provides them.clock() -> floating point number Return the CPU time or real time since the start of the process or since the first call to clock(). This has as much precision as the system records.sleep(seconds) Delay execution for a given number of seconds. The argument may be a floating point number for subsecond precision.gmtime([seconds]) -> (tm_year, tm_mon, tm_day, tm_hour, tm_min, tm_sec, tm_wday, tm_yday, tm_isdst) Convert seconds since the Epoch to a time tuple expressing UTC (a.k.a. GMT). When 'seconds' is not passed in, convert the current time instead.localtime([seconds]) -> (tm_year,tm_mon,tm_day,tm_hour,tm_min,tm_sec,tm_wday,tm_yday,tm_isdst) Convert seconds since the Epoch to a time tuple expressing local time. When 'seconds' is not passed in, convert the current time instead.asctime([tuple]) -> string Convert a time tuple to a string, e.g. 'Sat Jun 06 16:26:11 1998'. When the time tuple is not present, current time as returned by localtime() is used.ctime(seconds) -> string Convert a time in seconds since the Epoch to a string in local time. This is equivalent to asctime(localtime(seconds)). When the time tuple is not present, current time as returned by localtime() is used.mktime(tuple) -> floating point number Convert a time tuple in local time to seconds since the Epoch.strftime(format[, tuple]) -> string Convert a time tuple to a string according to a format specification. See the library reference manual for formatting codes. When the time tuple is not present, current time as returned by localtime() is used.strptime(string, format) -> struct_time Parse a string to a time tuple according to a format specification. See the library reference manual for formatting codes (same as strftime()).tzset(zone) Initialize, or reinitialize, the local timezone to the value stored in os.environ['TZ']. The TZ environment variable should be specified in standard Unix timezone format as documented in the tzset man page (eg. 'US/Eastern', 'Europe/Amsterdam'). Unknown timezones will silently fall back to UTC. If the TZ environment variable is not set, the local timezone is set to the systems best guess of wallclock time. Changing the TZ environment variable without calling tzset *may* change the local timezone used by methods such as localtime, but this behaviour should not be relied on.% : ; I$ > $ > $ >   I : ;  : ;I8 : ; : ; I8 I !I/ &I : ;  : ; ' II'  : ;<  : ; I8 : ;I.? : ;' I : ;I4: ;I.: ;' I@: ;I : ;I4: ;I.? : ; ' I@ : ; I!4: ; I"4: ; I #: ;I$4: ;I % U&4: ;I' ( ).: ; ' I *: ; I+4: ; I,4: ;I -1UX Y.1/410.: ;' I 1: ;I24: ;I3 441 51X Y6417 8.: ; ' I@9: ; I :: ; I;1UX Y <1 =.? : ;' @>1X Y ?!I/@4: ; I? < A4: ;I? < > $,n int 8]0 "0 k n g 15- V# f# # # # # R# # # ^#$ #(  #, "#0 $#4 R&V#8 *V#< _,v#@ 0:#D < 1H#F 2#G 6#H ?#L  H#T  I#X % J#\ , K#` 3 L!#d NV#h P#l e  * # P # V#    'VMNF; G# H#Z 7 D]  H]# ;m  J CV :  ;V# h  #su hJ ~qw[   V V%%% 6<QV \b|VVZ VV3 VVV V !  V- V- t  I O Vd ! o u V V O  V y  V +  V   / + # 2 # p # o #  #  #  #  f# V f#  f#$ #( f#,  #0 K #4 m #8  #< #@ #D f#H f#L  f#P f#T  f#X  #\  #` + #d H #h Z #l  #p  #t T #x h #| 8 #  #  #  # #  # (  #  Ǎ#  +# +#  Q#  |#  ̧# 1 ͕ # ύ# 0 +#$ :   # Ս#  #  Y \  #  3 #  > # d # >   o u  G     V  V     V+ p D q W]m: x~V q= ql : '  U   UV/   Y y ,~  &# J '# ! (V#  *# 8F  . #get (#set N#doc # G # Gs   y ,85  39N Y_Vy_is$ # =# # # # s# # k# V# y_tsT = 9=# :~# ~<"# =V# N>V# b ?V# dAN# 7BN# `C# D#$ F#( G#, H#0 J#4 K#8 L#< N#@ OVV#D XV#H f Z#L 9[#P $y,Y_V~"VC _    #doc #   #doc# # 8V#  ` V# U# mV# R #  t__xtGmV ::|  ,sXZ  hT xgt!i"jt\ \V 5[a#p[$y]Vup% l$tupup$buf&fmt4 ! !T&i!r'%w&tt(&retb<_;;&tup=0$buf>&tt?P `bp{$otut&tt&p%&dt!tp6U$tupup$buf&p(&tt)="*p+v@ t +&p_,up-0".%P/0z+V1*1*1a *2ot,3 3tt0 At432tL =w <<, >t]-?...%4ut5 1 1( 1 4(d(a r 60nV>1mt2tqrt7%tw3366668  49χ:χ`!t;.%4X4^5` t9:H=} h#m}%X$tup&p,(^,G T  =K  _ 0 &m\&pZ` XYY&m[ 8  lD 9:p "t\>*(*4(lt Mp lLL , Nt]-pO...%4ut51Z(4(d(6" c  "}   "+ƞ  "8 ڿ  "" "S 4? ,U D# V ,*TF@ x ,h  ,   ,w @  ,3 2  f,ZO #?P,j o@ E , 5 h? ,|W@@A [@ V@@%@+-@r< /mirror/zmath/src/Python-2.4.4/Modules/usr/include/bits/usr/lib/gcc/i486-slackware-linux/4.2.4/include/usr/include/usr/include/sys/mirror/zmath/src/Python-2.4.4/./Includetimemodule.cmathinline.hstddef.htypes.hstdio.hlibio.htime.htime.hselect.htime.hobject.hmethodobject.hdescrobject.hpystate.hstructseq.hpydebug.hintobject.hpyerrors.hKv)3|\ u* M=*ju5Yy. DrK{0# ̢  o.obM/x <}Ju ztz/hf,J:YKuYLv!=L#l!=jM#x>1 Kg=k~/stx[|0nfzNp/_.v{=a_strptimeOstrptime(iiiiiiiii)accept2dyearyear >= 1900 requiredyear out of ranges|O:strftimemonth out of rangeday of month out of rangehour out of rangeminute out of rangeseconds out of rangeday of week out of rangeday of year out of rangeO:mktimemktime argument out of range|O:ctimeunconvertible time|O:asctime|O:gmtimed:sleep:clock timezonealtzonedaylight(zz)tznametimePYTHONY2Kstruct_time:tzset:time|O:localtimeclocksleepgmtimelocaltimeasctimectimemktimestrftimetzsettime.struct_timetm_yeartm_montm_mdaytm_hourtm_mintm_sectm_wdaytm_ydaytm_isdsttimestamp out of range for platform time_tdaylight savings flag out of range     p@ p@ `   ` @ #+3:AIQ?$tIư>|  AB FS.AB Dl.$ ~AB Fa.0w.(AB Fy..r.(AB F[.B.P.(`AB Db.c.u.N.d.$pAB Fb.{.0@AB FV.R.T..E.e. AB Db.c., AB E[..U. L.N. OAB DW.L.X. AB FN.$ AB Fh. i.$` AB BZ.m.I. AB DW. pAB Db.c.ttuPPwu w#*V*-P-WVZtVwPVDXWZuWWttuuR R !t!#t#u GPGVV BRBu\VVPVVttuu ul)ulPPWW uhuhWW'WCNWtt_u_u up_upul_ul`atactcbu`bu upup)bupPP@IPu`u`u`/u`/bu`pqtqsts6up6u P*6Pul*6ul@AtACtCu@qqu@ZPZWjrWWWPrWtPWVPqVVVVttw u  w u t t u  u uh uh  P uv uv ut ut V* g Vi V t t u  u t t u   u = B Ps x P= W Z Wa Ws V ^ V{ V t t _ u W P < W< > P> _ W PT ] P` a ta c tc u`  u P V V P V t t lu  lu pqtqstsupu F _PyTime_DoubleToTimet>inittimezoneinittime}<jXjPSCF471 P r a r 1 W i # i I W = D = D i I W   PyInterpreterStatefloatsleepwhentsize_tPyExc_OverflowErrortm_hour__valueobjobjprocnb_inplace_remaindernb_dividePyMethodDeftp_richcomparenb_intexc_typePyInt_Typetp_deallocdict_IO_save_endnb_nonzerojulyzonetp_as_sequencetp_reprsq_itemtime_t_IO_write_base_lockrecursion_depthnb_addnb_subtractGNU C 4.2.4tp_basestp_methods_IO_save_basetp_initgetwritebufferproc_chain_cur_columntp_weaklistoffsettp_is_gcnb_absolutetp_nameresultdiff_objectgettertp_mronb_floor_divideternaryfuncmp_ass_subscriptob_refcntlong intnb_inplace_multiplytm_isdstnb_inplace_dividemktime_doc_IO_markercmpfunctp_iterintintargfuncPyStructSequence_Fieldnb_inplace_orhashfuncgilstate_counterallocfuncnb_divmodnb_true_dividecurexc_typeintargfuncexc_tracebackprintfuncsigned charclock_doc_IO_FILEPyBufferProcstp_docStructTimeTypetime_mktimeunsigned charmodule_doccodec_search_cachenb_inplace_true_dividenb_floattp_freesq_repeatmp_lengthtp_basenb_inplace_powernb_remainderbf_getwritebufferPyMemberDefchar_IO_lock_tlocaltime_docn_in_sequencetp_hashtimevaltimezonetm_min_IO_read_ptrcodec_search_pathPyTypeObject_posstdincurexc_valuegetattrofuncdlopenflagsPy_tracefuncsq_ass_slicetp_getattroinittimezonesq_slice_Py_NoneStruct_markersexc_valuegetreadbufferprocintintobjargprocreprfunctp_descr_set__fd_maskc_profilefuncPyExc_ValueErrorjanzonetp_dicttv_usecnb_lshiftunaryfunctp_traversetm_secnewfunc_offsetPyExc_IOErrortp_as_mappingnb_inplace_subtracttp_setattrfloorfunctionnb_inplace_addtraverseprocnb_inplace_xorclosuretick_counterbf_getreadbuffernb_and_saveparse_time_double_argstp_strlong unsigned intformatnb_negativeself_flags2getiterfunc__cwtmp_IO_read_basesq_concat__ignore_unused2__quad_toutbufPyNumberMethodsjannamesq_inplace_repeat_typeobjecttracingtp_flags_old_offsetcodec_error_registryargstime_doctp_comparetz_minuteswesttime_convertfracbf_getsegcountcurexc_tracebacklong long inttstate_headstruct_time_type_fields__cwtime_asctimenb_inplace_lshifttm_monc_tracefuncdoubleml_meth_IO_write_endc_profileobjob_sizePyObjectframesecsgetsegcountproctp_iternextnb_hextp_cleartp_calltime_strftimePyCFunctioninquiry_IO_buf_baseunsigned intc_traceobjbuflentime_gmtime__pad1__pad2__pad3__pad4__pad5descrsetfuncjulyname_sbufnb_positiveuse_tracing__suseconds_ttime_strptimetp_memberssetattrfuncPyMappingMethodstime_time_flagscoercion_modetp_setattromoddictsq_inplace_concatnb_invertfds_bitsstruct_time_type_descgetcharbufferprocctime_dociternextfunclong doubletime_clockpwhenFILEdescrgetfuncvisitprocfmtlentm_mdaytime_sleepnb_coercebf_getcharbufferfieldsmp_subscriptlong long unsigned intbuiltins/mirror/zmath/src/Python-2.4.4/Modules/timemodule.cinterpinitproc__off_tsleep_doctp_allocnb_rshiftgmtime_doctm_wdaynb_inplace_andasctime_docfreefunctm_ydaytime_methods__time_ttp_getsetPyStructSequence_Desctp_weaklist_IO_backup_base_shortbuftime_ctimenb_longtp_as_bufferobjobjargprocsq_ass_item_next__off64_trichcmpfuncPyGetSetDefob_itemstrptime_resulttzset_doctime_localtimetp_printtp_getattr_IO_buf_endfloattimePyThreadState_PyTime_DoubleToTimettp_cachetp_basicsizenamebinaryfunctm_gmtoffshort intsetterwhenPySequenceMethodstp_itemsize_frame_vtable_offsetinittimenb_inplace_rshiftasync_excnb_multiplytp_as_numbernb_inplace_floor_divideacceptsetattrofuncgetattrfunctm_zonenb_orstrptime_docnb_octgettmargmodulesPy_IgnoreEnvironmentFlagml_doc_IO_read_endml_flagstp_delsq_containstmtotupledestructor_filenointobjargproctz_dsttimestrptime_moduletp_newsq_lengthob_typetm_yearshort unsigned intstdouttp_descr_get_IO_write_ptrnb_powernb_xorsysdicttime_tzsetnexttp_subclassestv_secml_namestrftime_doctp_dictoffsetthread_idGCC: (GNU) 4.2.4.symtab.strtab.shstrtab.rel.text.data.bss.debug_abbrev.rel.debug_info.rel.debug_line.rodata.str1.1.rodata.str1.4.rel.data.rel.local.rodata.cst4.rodata.cst8.rel.debug_frame.debug_loc.rel.debug_pubnames.rel.debug_aranges.debug_ranges.debug_str.comment.note.GNU-stack@ L}%` +! 0!ZBZ$> LR>CN ^2GZm2tIOI0 | ` K  K(K lM WJ lW  tW0YChhhn \ wo   ~%-;G`Rp_@l {  O  `  p   @ %@ 1 ; gF S`@QjP      ! . D V , c v        # , ? J T !\ 'g -p 3x 9 ? Ec K Q W ] c i o#0AFPW`el{ &;J]jqv  7Hbitimemodule.ctime_strptimegettmargmoddicttime_strftimetime_mktimetime_ctimetime_asctimetime_convertStructTimeTypetime_gmtimetime_sleeptime_clockmodule_doctime_methodsstruct_time_type_desctime_tzsettime_timetime_localtimetime_docclock_docsleep_docgmtime_doclocaltime_docasctime_docctime_docmktime_docstrftime_docstrptime_doctzset_docstruct_time_type_fields.LC0.LC1.LC2.LC3.LC4.LC5.LC7.LC8.LC9.LC10.LC11.LC19.LC12.LC13.LC14.LC15.LC16.LC18.LC17.LC20.LC21.LC22.LC23.LC24.LC25.LC26.LC27.LC28.LC30.LC33.LC34.LC35.LC36.LC37.LC32.LC38.LC40.LC39.LC41.LC42.LC45_GLOBAL_OFFSET_TABLE_PyImport_ImportModulePyObject_CallMethod_PyTime_DoubleToTimetPyExc_ValueErrorPyErr_SetStringPyArg_ParsePyDict_GetItemStringPyInt_TypePyType_IsSubtypePyInt_AsLongPyArg_ParseTupletimelocaltimestrlenstrftimefreemallocPyErr_NoMemoryPyString_FromStringAndSizemktimePyFloat_FromDoublePyExc_OverflowError_Py_NoneStructctimePyString_FromStringPyFloat_AsDoublePyErr_Occurredasctime__errno_locationPyStructSequence_NewPyInt_FromLongPyErr_SetFromErrnogettimeofdaygmtimefmodPyEval_SaveThreadselectPyEval_RestoreThreadPyExc_IOErrorclockinittimezonestrncpyPyModule_AddIntConstantPy_BuildValuePyModule_AddObjectinittimePy_InitModule4Py_IgnoreEnvironmentFlagPyModule_GetDictPyStructSequence_InitTypegetenvtzset \ 2]0 37 4>^ \ 5 6 7`a1 \ 8b 9 cd"e2fe :l`ta ; \ <ghijklmnol. =5`=aU >` ?k @v A B C D \ Eghip4qB FIrQao \ Ggshtuvw"_0wE HL`Ta \ IghixuQ \`_ry z{{{{{{0{?{L{Tw`|w \ Jg s }$ K9 ~U v] w \ L g  M$ 9 E yS Y sn u } | \ N g  M q \ h6 iY l i  O  P  Q  R  S  O ( P2 F QP r T T \   U   9        ( V/ E WK m \v X g U ]   s \ Y g}  KFqYa| \ Zgs} Kivw 00"0/060=0D0K0R0`0g0l0w00000000000000-0<0K0Z0i0x000000000000,0;0J0Y0h0w000000000-0<0O0p0w0|00000000000 0.0<0K0W0e0t00000000000 00)080G0V0e0t0000000000 00(070F0U0e0u00000000000%050E0\0g00000,0R0}000 04 0? 0e 0 0 0 0 0# 01 0? 0M 0[ 0i 0w 0 0 0 0 0 0 0 0 0 0 0 0 0- 0; 0I 0W 0e 0s 0 0 0 0 0 0 0 0 0 0 0 0 00 0C 0Q 0_ 0m 0{ 0 0 0 0 0 0 0 0 0 0 0! 0/ 0= 0K 0Z 0e 0 0 0 0 00,070B0M0n0000000090F0T0b0p000000000)0O00000000000%030A0O0]0k0y000000000000!0/0D0O0000000000(060D0R0b000000,00,0,0,0",3,80B,G0U0aei,r0},,/0,0,00, ,%010<,A0V,[_r,x|,0,00,,,0 ,0+06,S,a,f/u,|0,00,,,0#0/37,@0K,P0[,i,n0//,00000050AEI,R0a0l,q0//0000?0JNR,[0i0s,x0,//,,,/,0,!0/09,@0HLP,b,g/,0,0,000,,,0",+0:0E,S,Y0dhl,u00,00,00,0/'/8<HL[_m0y00000050BW0dy00000$01F0Si0v{00000000  $,04<@DLPT\`dlpt| +<+@\+`++++ 0+4d+h++++(+,P+Tp+t