From e506cb61de797099e2382c0d63be9eebcc10b66c Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Mon, 27 Feb 2023 09:16:38 -0500 Subject: [PATCH 01/25] NANDAT WIP --- src/ancrec.cpp | 4 ++-- src/cnglob.h | 44 +++++++++++++++++++++++++++++++++----------- src/exman.cpp | 6 +++++- 3 files changed, 40 insertions(+), 14 deletions(-) diff --git a/src/ancrec.cpp b/src/ancrec.cpp index 2088c9942..ec55c72ef 100644 --- a/src/ancrec.cpp +++ b/src/ancrec.cpp @@ -454,8 +454,8 @@ RC record::limitCheckFix( // range check, msg, set to min/max void* p = field(fn); if (!ISNANDLEP(p)) { - float* pV = (float*)p; - float v = *pV; + FLOAT* pV = (FLOAT*)p; + FLOAT v = *pV; if (v < vMin || v > vMax) { rc = orMsg(erOp, "%s (%g) must be in range %g - %g", diff --git a/src/cnglob.h b/src/cnglob.h index e848f52a3..bac598d2e 100644 --- a/src/cnglob.h +++ b/src/cnglob.h @@ -307,7 +307,7 @@ template< typename T> T& IvlData( T* ivlData, int ivl) // type to hold a NANDLE or a datum (ptr if string) #if 0 // CSE_ARCH == 64 #define ND3264 // #define to enable general 32/64 bit code TODO (MP) -typedef UI NANDAT; // CAUTION: for fcn args use ptr (NANDAT *) to be sure C does not alter arg bit pattern. +typedef ULI NANDAT; // 64 bit // CAUTION: NANDAT * can pt to only 16 bits (TYSI); check type b4 storing. template NANDAT AsNANDAT(T v) { return *reinterpret_cast(&v); } #define ISUNSET(nandat) (AsNANDAT( nandat)==0xff800000L) // test variable for unset data @@ -318,22 +318,27 @@ template NANDAT AsNANDAT(T v) { return *reinterpret_cast(0xff800000 + h)) // "expr n" ref for float/ptr/LI (or SI in 4 bytes). h = 1..16383. -#elif 0 -#define ISUNSET(nandat) (*reinterpret_cast(&nandat)==0xff800000L) // test variable for unset data -#define ISASING(nandat) (*reinterpret_cast(&nandat)==0xff80ffffL) // test variable for "to be autosized" 6-95 -#define ISNANDLE(nandat) (((*reinterpret_cast(&nandat)) & 0xffff0000L)==0xff800000L) // test for ref to non-constant expr (or unset) -#define ISNANDLEP(pNandat) ((*(reinterpret_cast(pNandat)) & 0xffff0000L)==0xff800000L) // test for ptr to ref to non-constant expr (or unset) -#define EXN(nandle) ((*reinterpret_cast(&nandle)) & 0xffff) // extract expression # from nandle +#elif 1 +// transition aid: 32 bit using AsNANDAT +#define ND3264 // #define to enable general 32/64 bit code TODO (MP) +typedef uint32_t NANDAT; // 32 bit unsigned integer +#define NANDLE(h) (static_cast(0xff800000 + h)) // "expr n" ref for float/ptr/LI (or SI in 4 bytes). h = 1..16383. #define UNSET (NANDLE(0)) // "unset" value for float/ptr/LI. cast as desired. #define ASING (NANDLE(0xffff)) // may be stored in values to be determined by autosizing 6-95 -#define NANDLE(h) (static_cast(0xff800000 + h)) // "expr n" ref for float/ptr/LI (or SI in 4 bytes). h = 1..16383. - +template inline NANDAT AsNANDAT(T& v) { return *reinterpret_cast(&v); } +#define ISUNSET( v) (AsNANDAT( v)==UNSET) // true iff v is UNSET +#define ISASING( v) (AsNANDAT( v)==ASING) // true iff v is "to be autosized" +#define ISNANDLE( v) ((AsNANDAT( v) & 0xffff0000L)==0xff800000L) // true iff v is ref to non-constant expr (or unset) +#define ISNUM(v) ((AsNANDAT(v) & 0x7f800000L) != 0x7f800000L) // true iff float v is number (not UNSET, NANDLE, NCHOICE or other NAN) +#define ISNANDLEP(pNandat) ((*(reinterpret_cast(pNandat)) & 0xffff0000L)==0xff800000L) // test for ptr to ref to non-constant expr (or unset) +#define EXN(nandle) (AsNANDAT(nandle) & 0xffff) // extract expression # from nandle #else typedef void * NANDAT; // CAUTION: for fcn args use ptr (NANDAT *) to be sure C does not alter arg bit pattern. // CAUTION: NANDAT * can pt to only 16 bits (TYSI); check type b4 storing. #define ISUNSET(nandat) ((ULI)*(void**)&(nandat)==0xff800000L) // test variable for unset data #define ISASING(nandat) ((ULI)*(void**)&(nandat)==0xff80ffffL) // test variable for "to be autosized" 6-95 #define ISNANDLE(nandat) (((ULI)*(void**)&(nandat) & 0xffff0000L)==0xff800000L) // test for ref to non-constant expr (or unset) +#define ISNUM(n) (((ULI)CSE_V(n) & 0x7f800000L) != 0x7f800000L) // true iff float n is a number (not UNSET, NANDLE, NCHOICE or other NAN) #define ISNANDLEP(pNandat) (((ULI)*(void**)(pNandat) & 0xffff0000L)==0xff800000L) // test for ptr to ref to non-constant expr (or unset) #define EXN(nandle) ((USI)(ULI)*(void**)&(nandle)) // extract expression # from nandle #define UNSET ((NANDAT)NANDLE(0)) // "unset" value for float/ptr/LI. cast as desired. @@ -358,11 +363,24 @@ typedef void * NANDAT; // CAUTION: for fcn args use ptr (NANDAT *) to be sure C x #define CSE_V *(void **)& #endif +#if 1 +// macro to test if n has an NCHOICE value: +#define ISNCHOICE(n) ((AsNANDAT(n) & 0xff800000L)==0x7f800000L) + +// macro to fetch/store into variable n's hi word. Use w 16-bit flag/choice # dtypes.h C_DTYPE_XXXX constants gen'd by rcdef. +// usage: float y; CHN(y) = C_ABCNC_X; if (CHN(y)==C_ABCNC_X) ... +// #define CHN(n) ((USI)((ULI)(*(void **)&(n)) >> 16)) more portable fetch-only alternative +#define CHN(n) (*(reinterpret_cast(&n)+1)) // access hi word, lvalue use ok. 80x86 DEPENDENT. PCMS<--grep target. + +// macro to generate 32-bit value from 16-bit choice constants, for use where full value needed, as in initialized data +// usage: float y = NCHOICE(C_ABCNC_X); +#define NCHOICE(nck) ((void *)((ULI)(nck) << 16)) // put in hi word. nck already includes 0x7f80. + +#else + // macro to test if n has an NCHOICE value: #define ISNCHOICE(n) (((ULI)CSE_V(n) & 0xff800000L)==0x7f800000L) -// macro to test if float is a number (not UNSET, NANDLE, NCHOICE or other NAN) -#define ISNUM(n) (((ULI)CSE_V(n) & 0x7f800000L) != 0x7f800000L) // macro to fetch/store into variable n's hi word. Use w 16-bit flag/choice # dtypes.h C_DTYPE_XXXX constants gen'd by rcdef. // usage: float y; CHN(y) = C_ABCNC_X; if (CHN(y)==C_ABCNC_X) ... @@ -373,6 +391,10 @@ x #define CSE_V *(void **)& // usage: float y = NCHOICE(C_ABCNC_X); #define NCHOICE(nck) ((void *)((ULI)(nck) << 16)) // put in hi word. nck already includes 0x7f80. + + +#endif + /*---------------------- return codes / error codes ------------------------*/ // RC Return Codes: integers returned by fcns to indicate call outcome diff --git a/src/exman.cpp b/src/exman.cpp index b248bffd5..3299c05d4 100644 --- a/src/exman.cpp +++ b/src/exman.cpp @@ -1173,9 +1173,13 @@ LOCAL RC FC exEvUp( // evaluate expression. If ok and changed, store and incre #if defined( ND3264) // TODO (MP) // believe no need to copy string: code is stable during run so ok to store pointers into it. 10-90. - // (to copy, use v = cuStrsaveIf(*(char **)pv); */ + // (to copy, use v = cuStrsaveIf(*(char **)pv); cupfree( DMPP( ex->v)); // decref/free old str value if in dm (nop if inline in code or UNSET). cueval.cpp. +#if 1 + v = *pv; +#else v = *(char **)pv; // fetch pointer to new string value, used here and below +#endif ex->v = v; // store new value for TYSTR #else // believe no need to copy string: code is stable during run so ok to store pointers into it. 10-90. From 125e887d3e7bb574e7edb5d1c8022c4504ea75e0 Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Tue, 28 Feb 2023 12:55:20 -0500 Subject: [PATCH 02/25] NANDAT progress --- src/cnglob.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cnglob.h b/src/cnglob.h index bac598d2e..fff5464c5 100644 --- a/src/cnglob.h +++ b/src/cnglob.h @@ -370,7 +370,7 @@ x #define CSE_V *(void **)& // macro to fetch/store into variable n's hi word. Use w 16-bit flag/choice # dtypes.h C_DTYPE_XXXX constants gen'd by rcdef. // usage: float y; CHN(y) = C_ABCNC_X; if (CHN(y)==C_ABCNC_X) ... // #define CHN(n) ((USI)((ULI)(*(void **)&(n)) >> 16)) more portable fetch-only alternative -#define CHN(n) (*(reinterpret_cast(&n)+1)) // access hi word, lvalue use ok. 80x86 DEPENDENT. PCMS<--grep target. +#define CHN(n) (*(reinterpret_cast(&n)+1)) // access hi word, lvalue use ok. 80x86 DEPENDENT. PCMS<--grep target. // macro to generate 32-bit value from 16-bit choice constants, for use where full value needed, as in initialized data // usage: float y = NCHOICE(C_ABCNC_X); From 5db4d3fa9216f853fb1e78014f5cc86b62761a22 Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Thu, 2 Mar 2023 15:47:08 -0500 Subject: [PATCH 03/25] CULT changes re NCHOICE --- src/cncult.cpp | 128 ++++++++++++++++++++------------------- src/cnglob.h | 39 ++++++------ src/cul.h | 10 ++- src/cvpak.cpp | 26 +++++++- src/cvpak.h | 13 ++-- src/exman.h | 8 +-- test/unit/CMakeLists.txt | 1 + 7 files changed, 130 insertions(+), 95 deletions(-) diff --git a/src/cncult.cpp b/src/cncult.cpp index fb65339e0..3e1fbfbf4 100644 --- a/src/cncult.cpp +++ b/src/cncult.cpp @@ -196,12 +196,12 @@ static CULT fbT[] = //---------------------------------- FNDBLOCK Cmd Table CULT("*", STAR, 0, 0, 0, 0, 0, 0, N, 0.f, N, fbStarCkf), CULT("fbFnd", DAT, FNDBLOCK_OWNTI, NO_INP | RDFLIN, 0, 0, TYIREF,&FndiB, 0.f, N, N), CULT("fbMat", DAT, FNDBLOCK_MATI, RQD, 0, VEOI, TYREF, &MatiB, N, 0.f, N, N), - CULT("fbX1Ref", DAT, FNDBLOCK_X1REF, 0, 0, VEOI, TYCH, 0, v C_FBXREFCH_WALLINT,0.f, N, N), - CULT("fbZ1Ref", DAT, FNDBLOCK_Z1REF, 0, 0, VEOI, TYCH, 0, v C_FBZREFCH_WALLTOP,0.f, N, N), + CULT("fbX1Ref", DAT, FNDBLOCK_X1REF, 0, 0, VEOI, TYCH, 0, C_FBXREFCH_WALLINT, N, N), + CULT("fbZ1Ref", DAT, FNDBLOCK_Z1REF, 0, 0, VEOI, TYCH, 0, C_FBZREFCH_WALLTOP, N, N), CULT("fbX1", DAT, FNDBLOCK_X1, 0, 0, VEOI, TYFL, 0, 0.f, N, N), CULT("fbZ1", DAT, FNDBLOCK_Z1, 0, 0, VEOI, TYFL, 0, 0.f, N, N), - CULT("fbX2Ref", DAT, FNDBLOCK_X2REF, 0, 0, VEOI, TYCH, 0, v C_FBXREFCH_WALLINT,0.f, N, N), - CULT("fbZ2Ref", DAT, FNDBLOCK_Z2REF, 0, 0, VEOI, TYCH, 0, v C_FBZREFCH_WALLTOP,0.f, N, N), + CULT("fbX2Ref", DAT, FNDBLOCK_X2REF, 0, 0, VEOI, TYCH, 0, C_FBXREFCH_WALLINT, N, N), + CULT("fbZ2Ref", DAT, FNDBLOCK_Z2REF, 0, 0, VEOI, TYCH, 0, C_FBZREFCH_WALLTOP, N, N), CULT("fbX2", DAT, FNDBLOCK_X2, 0, 0, VEOI, TYFL, 0, 0.f, N, N), CULT("fbZ2", DAT, FNDBLOCK_Z2, 0, 0, VEOI, TYFL, 0, 0.f, N, N), CULT("endFndBlock",ENDER,0, 0, 0, VEOI, 0, 0, N, 0.f, N, N), @@ -295,10 +295,10 @@ CULT( "gtDMSHGC", DAT, GT_GTDMSHGC, 0, 0, VEOI, TYFL, 0, N,0.f, N, N) CULT( "gtDMRBSol",DAT, GT_GTDMRBSOL, 0, 0, VEOI, TYFL, 0, N,0.f, N, N), CULT( "gtU", DAT, GT_GTU, 0, 0, VEOI, TYFL, 0, N,0.f, N, N), CULT( "gtUNFRC", DAT, GT_GTUNFRC, 0, 0, VEOI, TYFL, 0, N,0.f, N, N), -CULT( "gtModel", DAT, GT_GTFENMODEL, 0, 0, VEOI, TYCH, 0, v C_FENMODELCH_SHGC,0.f, N, N), +CULT( "gtModel", DAT, GT_GTFENMODEL, 0, 0, VEOI, TYCH, 0, C_FENMODELCH_SHGC, N, N), CULT( "gtNGlz", DAT, GT_GTNGLZ, 0, 0, VEOI, TYSI, 0, v 2, 0.f, N, N), -CULT( "gtExShd", DAT, GT_GTEXSHD, 0, 0, VEOI, TYCH, 0, v C_EXSHDCH_NONE,0.f, N, N), -CULT( "gtInShd", DAT, GT_GTINSHD, 0, 0, VEOI, TYCH, 0, v C_INSHDCH_NONE,0.f, N, N), +CULT( "gtExShd", DAT, GT_GTEXSHD, 0, 0, VEOI, TYCH, 0, C_EXSHDCH_NONE, N, N), +CULT( "gtInShd", DAT, GT_GTINSHD, 0, 0, VEOI, TYCH, 0, C_INSHDCH_NONE, N, N), CULT( "gtDirtLoss",DAT, GT_GTDIRTLOSS, 0, 0, VEOI, TYFL, 0, N,0.f, N, N), CULT( "endGlazeType",ENDER, 0, 0, 0, VEOI, 0, 0, N,0.f, N, N), CULT() @@ -347,7 +347,7 @@ static CULT sgT[] = //------------------------- SGDIST subCmd table for WINDOW CULT( "*", STAR, 0, PRFP, 0, 0, 0, 0, 0.f, v sgStarPrf,N), CULT( "sgWindow", DAT, SGI_OWNTI, NO_INP|RDFLIN, 0, 0, TYIREF, &GziB, 0.f, N, N), CULT( "sgSurf", DAT, SGI_D+SGDIST_TARGTI,RQD, 0, VEOI, TYREF, &SfiB, 0.f, N, N), - CULT( "sgSide", DAT, SGI_SGSIDE, 0, 0, VEOI, TYCH, 0, 0.f, N, N), + CULT( "sgSide", DAT, SGI_SGSIDE, 0, 0, VEOI, TYCH, 0, 0, N, N), /* .targTy is set to SGDTTMASSI/SGDTTQUIKI or SGDTTMASSO/SGDTTQUIKO per sgSide (default, for now 2-91: whichever side of mass is in window's zone) */ CULT( "sgFSO", DAT, SGI_D + SGDIST_FSO, RQD, 0, VMHLY, TYFL, 0, 0.f, N, N), @@ -920,7 +920,7 @@ CULT( "*", STAR, 0, 0, 0, 0, 0, CULT( "*", STAR, 0, 0, 0, 0, 0, 0, 0.f, N, N), CULT( "prZone", DAT, PRI_OWNTI, NO_INP|RDFLIN, 0, 0, TYREF, &ZiB, 0.f, N, N), //TYIREF-->TYREF 10-9-92 CULT( "prXtype", DAT, PRI_X+XSURF_TY, NO_INP, 0, 0, TYSI, 0, v (LI)CTPERIM, 0.f, N, N), //CTPERIM: cnguts.h. -CULT( "prXExCnd", DAT, PRI_X+XSURF_SFEXCND, NO_INP, 0, 0, TYCH, 0, v C_EXCNDCH_AMBIENT,0.f, N, N), //added 2-95 +CULT( "prXExCnd", DAT, PRI_X+XSURF_SFEXCND, NO_INP, 0, 0, TYCH, 0, C_EXCNDCH_AMBIENT, N, N), //added 2-95 CULT( "prLen", DAT, PRI_PRLEN, RQD, 0, VEOI, TYFL, 0, 0.f, N, N), CULT( "prF2", DAT, PRI_PRF2, RQD, 0, VEOI, TYFL, 0, 0.f, N, N), CULT( "endPerimeter",ENDER,0, 0, 0, 0, 0, 0, 0.f, N, N), @@ -964,8 +964,8 @@ CULT( "tuTLh", DAT, TU_TUTLH, 0, 0, VHRLY, TYFL, CULT( "tuQMnLh", DAT, TU_TUQMNLH, 0, 0, VHRLY, TYFL, 0, N, 0.f, N, N), CULT( "tuQMxLh", DAT, TU_TUQMXLH, 0, 0, VHRLY, TYFL, 0, N, 0.f, N, N), CULT( "tuPriLh", DAT, TU_TUPRILH, 0, 0, VFAZLY, TYSI, 0, v 100, 0.f, N, N), -CULT( "tuLhNeedsFlow",DAT, TU_TULHNEEDSFLOW, 0, 0, VFAZLY, TYCH, 0, v C_NOYESCH_NO, 0.f, N, N), -CULT( "tuhcType", DAT, TUHC(COILTY), 0, 0, VFAZLY, TYCH, 0, v C_COILTYCH_NONE, 0.f, N, N), +CULT( "tuLhNeedsFlow",DAT, TU_TULHNEEDSFLOW, 0, 0, VFAZLY, TYCH, 0, C_NOYESCH_NO, N, N), +CULT( "tuhcType", DAT, TUHC(COILTY), 0, 0, VFAZLY, TYCH, 0, C_COILTYCH_NONE, N, N), CULT( "tuhcCaptRat", DAT, TUHC(CAPTRAT), AS_OK, 0, VFAZLY, TYFL, 0, N, 0.f, N, N), CULT( "tuhcFxCap", DAT, TU_FXCAPH, 0, 0, VFAZLY, TYFL, 0, N, 1.1f, N, N), CULT( "tuhcHeatplant",DAT, TUHC(HPI), 0, 0, VEOI, TYREF, &HpiB, N, 0.f, N, N), @@ -977,21 +977,21 @@ CULT( "tuAh", DAT, TU_AI, 0, 0, VEOI, TYREF, CULT( "tuVfMxH", DAT, TU_TUVFMXH, AS_OK, 0, VHRLY, TYFL, 0, N, 0.f, N, N), CULT( "tuVfMxC", DAT, TU_TUVFMXC, AS_OK, 0, VHRLY, TYFL, 0, N, 0.f, N, N), CULT( "tuVfDs", DAT, TU_TUVFDS, 0, 0, VFAZLY, TYFL, 0, N, 0.f, N, N), -CULT( "tuVfMxHC", DAT, TU_TUVFMXHC, 0, 0, VFAZLY, TYCH, 0, v C_DIFFSAMECH_DIFF, 0.f, N, N), +CULT( "tuVfMxHC", DAT, TU_TUVFMXHC, 0, 0, VFAZLY, TYCH, 0, C_DIFFSAMECH_DIFF, N, N), CULT( "tuFxVfHC", DAT, TU_FXVFHC, 0, 0, VFAZLY, TYFL, 0, N, 1.1f, N, N), CULT( "tuPriH", DAT, TU_TUPRIH, 0, 0, VFAZLY, TYSI, 0, v 1, 0.f, N, N), CULT( "tuPriC", DAT, TU_TUPRIC, 0, 0, VFAZLY, TYSI, 0, v 1, 0.f, N, N), CULT( "tuSRLeak", DAT, TU_TUSRLEAK, 0, 0, VFAZLY, TYFL, 0, N, .05f, N, N), CULT( "tuSRLoss", DAT, TU_TUSRLOSS, 0, 0, VFAZLY, TYFL, 0, N, .1f, N, N), // unimpl 4-95 -CULT( "tfanSched", DAT, TU_TFANSCH, 0, 0, VHRLY, TYCH, 0, nc(C_TFANSCHVC_OFF), 0.f, N, N), +CULT( "tfanSched", DAT, TU_TFANSCH, 0, 0, VHRLY, TYCH, 0, nc(C_TFANSCHVC_OFF), N, N), CULT( "tfanOffLeak", DAT, TU_TFANOFFLEAK, 0, 0, VFAZLY, TYFL, 0, N, .1f, N, N), -CULT( "tfanType", DAT, TFAN(FANTY), 0, 0, VFAZLY, TYCH, 0, v C_FANTYCH_NONE, 0.f, N, N), +CULT( "tfanType", DAT, TFAN(FANTY), 0, 0, VFAZLY, TYCH, 0, C_FANTYCH_NONE, N, N), CULT( "tfanVfDs", DAT, TFAN(VFDS), 0, 0, VFAZLY, TYFL, 0, N, 0.f, N, N), CULT( "tfanPress", DAT, TFAN(PRESS), 0, 0, VFAZLY, TYFL, 0, N, .3f, N, N), CULT( "tfanEff", DAT, TFAN(EFF), 0, 0, VFAZLY, TYFL, 0, N, .08f, N, N), CULT( "tfanMtr", DAT, TFAN(MTRI), 0, 0, VEOI, TYREF, &MtriB, N, 0.f, N, N), CULT( "tfanVfMxF", DAT, TFAN(VFMXF), NO_INP, 0, 0, TYFL, 0, N, 1.0f, N, N), -CULT( "tfanMotPos", DAT, TFAN(MOTPOS), NO_INP, 0, 0, TYCH, 0, v C_MOTPOSCH_INFLO, 0, N, N), +CULT( "tfanMotPos", DAT, TFAN(MOTPOS), NO_INP, 0, 0, TYCH, 0, C_MOTPOSCH_INFLO, N, N), CULT( "tfanCurvePy", DAT, TFAN(CURVEPY+PYCUBIC_K), ARRAY, 0, VFAZLY, TYFL, 0, N, 0.f, v 6, N), //incl x0 CULT( "tfanMotEff", DAT, TFAN(MOTEFF), NO_INP, 0, 0, TYFL, 0, N, 1.f, N, N), CULT( "endTerminal", ENDER,0, 0, 0, 0, 0, 0, N, 0.f, N, N), @@ -1037,7 +1037,7 @@ CULT( "gnFrRtn", DAT, GAIN_GNFRRTN, 0, 0, VHRLY, TYFL, 0, N, CULT( "gnDlFrPow", DAT, GAIN_GNDLFRPOW, 0, 0, VHRLY, TYFL, 0, N, 1.f, N, N), CULT( "gnCtrlDHWSYS",DAT, GAIN_DHWSYSI, 0, 0, VEOI, TYREF, &WSiB, N, 0, N, N), CULT( "gnCtrlDHWMETER",DAT, GAIN_DHWMTRI, 0, 0, VEOI, TYREF, &WMtriB,N, 0, N, N), -CULT( "gnCtrlDHWEndUse",DAT,GAIN_DHWENDUSE,0, 0, VEOI, TYCH, 0, v C_DHWEUXCH_TOTAL, 0.f, N, N), +CULT( "gnCtrlDHWEndUse",DAT,GAIN_DHWENDUSE,0, 0, VEOI, TYCH, 0, C_DHWEUXCH_TOTAL, N, N), CULT( "endGain", ENDER, 0, 0, 0, 0, 0, 0, N, 0.f, N, N), CULT() }; // gnT @@ -1109,20 +1109,20 @@ CULT( "rpAh", DAT, RI_AHI, SUM_OK|ALL_OK, 0, VEOI, TYREF, & CULT( "rpDHWMeter", DAT, RI_DHWMTRI, ALL_OK, 0, VEOI, TYREF, &WMtriB, N, 0.f, N, N), CULT( "rpAFMeter", DAT, RI_AFMTRI, SUM_OK|ALL_OK, 0, VEOI, TYREF, &AfMtriB,N, 0.f, N, N), CULT( "rpTu", DAT, RI_TUI, ALL_OK, 0, VEOI, TYREF, &TuiB, N, 0.f, N, N), // 6-95 -CULT( "rpType", DAT, RI_RPTY, RQD, 0, 0, TYCH, 0, v 0, 0.f, N, N), // used in rpStarCkf: no VEOI -CULT( "rpFreq", DAT, RI_RPFREQ, 0, 0, 0, TYCH, 0, v 0, 0.f, N, N), // used in rpStarCkf: no VEOI -CULT( "rpDayBeg", DAT, RI_RPDAYBEG, 0, 0, VEOI, TYDOY, 0, v 0, 0.f, N, N), -CULT( "rpDayEnd", DAT, RI_RPDAYEND, 0, 0, VEOI, TYDOY, 0, v 0, 0.f, N, N), -CULT( "rpBtuSf", DAT, RI_RPBTUSF, 0, 0, VEOI, TYFL, 0, v 0, 1e6, N, N), // show mBtu. Also in cncult4:addRep(). +CULT( "rpType", DAT, RI_RPTY, RQD, 0, 0, TYCH, 0, 0, N, N), // used in rpStarCkf: no VEOI +CULT( "rpFreq", DAT, RI_RPFREQ, 0, 0, 0, TYCH, 0, 0, N, N), // used in rpStarCkf: no VEOI +CULT( "rpDayBeg", DAT, RI_RPDAYBEG, 0, 0, VEOI, TYDOY, 0, 0, N, N), +CULT( "rpDayEnd", DAT, RI_RPDAYEND, 0, 0, VEOI, TYDOY, 0, 0, N, N), +CULT( "rpBtuSf", DAT, RI_RPBTUSF, 0, 0, VEOI, TYFL, 0, 1.e6f, N, N), // show mBtu. Also in cncult4:addRep(). CULT( "rpCond", DAT, RI_RPCOND, 0, 0, VSUBHRLY|EVPSTIVL, // ok if evaluated at end interval TYLLI, // SI condition, dflt TRUE, in LI for NAN - 0, v 1L,0.f, N, N), -CULT( "rpTitle", DAT, RI_RPTITLE, 0, 0, VEOI, TYSTR, 0, v 0, 0.f, N, N), + 0, v 1L, N, N), +CULT( "rpTitle", DAT, RI_RPTITLE, 0, 0, VEOI, TYSTR, 0, v 0, N, N), CULT( "rpCpl", DAT, RI_RPCPL, 0, 0, VEOI, TYSI, 0, -1, N, N), -CULT( "rpHeader", DAT, RI_RPHEADER, 0, 0, VEOI, TYCH, 0, v C_RPTHDCH_YES,0.f, N, N), -CULT( "rpFooter", DAT, RI_RPFOOTER, 0, 0, VEOI, TYCH, 0, v C_NOYESCH_YES,0.f, N, N), +CULT( "rpHeader", DAT, RI_RPHEADER, 0, 0, VEOI, TYCH, 0, C_RPTHDCH_YES, N, N), +CULT( "rpFooter", DAT, RI_RPFOOTER, 0, 0, VEOI, TYCH, 0, C_NOYESCH_YES, N, N), CULT( "reportCol", RATE, 0, 0, 0, 0, 0, &RcoliB, N, 0.f, rpColT, N), -CULT( "isExport", DAT, RI_ISEXPORT, NO_INP, 0, 0, TYSI, 0, v 0, 0.f, N, N), // set 0 for reports +CULT( "isExport", DAT, RI_ISEXPORT, NO_INP, 0, 0, TYSI, 0, 0, N, N), // set 0 for reports CULT( "endReport", ENDER, 0, 0, 0, 0, 0, 0, N, 0.f, N, N), CULT() }; // rpT @@ -1152,19 +1152,19 @@ CULT( "exAh", DAT, RI_AHI, SUM_OK|ALL_OK, 0, VEOI, TYREF, CULT( "exDHWMeter", DAT, RI_DHWMTRI, ALL_OK, 0, VEOI, TYREF, &WMtriB, N, 0.f, N, N), CULT( "exAFMeter", DAT, RI_AFMTRI, ALL_OK, 0, VEOI, TYREF, &AfMtriB,N, 0.f, N, N), CULT( "exTu", DAT, RI_TUI, ALL_OK, 0, VEOI, TYREF, &TuiB, N, 0.f, N, N), // 6-95 -CULT( "exType", DAT, RI_RPTY, RQD, 0, 0, TYCH, 0, v 0, 0.f, N, N), // used in rpStarCkf: no VEOI -CULT( "exFreq", DAT, RI_RPFREQ, 0, 0, 0, TYCH, 0, v 0, 0.f, N, N), // used in rpStarCkf: no VEOI -CULT( "exDayBeg", DAT, RI_RPDAYBEG, 0, 0, VEOI, TYDOY, 0, v 0, 0.f, N, N), -CULT( "exDayEnd", DAT, RI_RPDAYEND, 0, 0, VEOI, TYDOY, 0, v 0, 0.f, N, N), -CULT( "exBtuSf", DAT, RI_RPBTUSF, 0, 0, VEOI, TYFL, 0, v 0, 1e6, N, N), // show mBtu. Also in cncult4:addRep(). +CULT( "exType", DAT, RI_RPTY, RQD, 0, 0, TYCH, 0, 0, N, N), // used in rpStarCkf: no VEOI +CULT( "exFreq", DAT, RI_RPFREQ, 0, 0, 0, TYCH, 0, 0, N, N), // used in rpStarCkf: no VEOI +CULT( "exDayBeg", DAT, RI_RPDAYBEG, 0, 0, VEOI, TYDOY, 0, 0, N, N), +CULT( "exDayEnd", DAT, RI_RPDAYEND, 0, 0, VEOI, TYDOY, 0, 0, N, N), +CULT( "exBtuSf", DAT, RI_RPBTUSF, 0, 0, VEOI, TYFL, 0, 0, 1e6, N, N), // show mBtu. Also in cncult4:addRep(). CULT( "exCond", DAT, RI_RPCOND, 0, 0, VSUBHRLY|EVPSTIVL, // ok if evaluated post interval TYLLI, // SI condition, dflt TRUE, in LI for NAN 0, v 1L,0.f, N, N), CULT( "exTitle", DAT, RI_RPTITLE, 0, 0, VEOI, TYSTR, 0, v 0, 0.f, N, N), -CULT( "exHeader", DAT, RI_RPHEADER, 0, 0, VEOI, TYCH, 0, v C_RPTHDCH_YES,0.f, N, N), -CULT( "exFooter", DAT, RI_RPFOOTER, 0, 0, VEOI, TYCH, 0, v C_NOYESCH_YES,0.f, N, N), +CULT( "exHeader", DAT, RI_RPHEADER, 0, 0, VEOI, TYCH, 0, C_RPTHDCH_YES, N, N), +CULT( "exFooter", DAT, RI_RPFOOTER, 0, 0, VEOI, TYCH, 0, C_NOYESCH_YES, N, N), CULT( "exportCol", RATE, 0, 0, 0, 0, 0, &XcoliB, N, 0.f, exColT, N), -CULT( "isExport", DAT, RI_ISEXPORT, NO_INP, 0, 0, TYSI, 0, v 1, 0.f, N, N), // set 1 for export +CULT( "isExport", DAT, RI_ISEXPORT, NO_INP, 0, 0, TYSI, 0, 1, N, N), // set 1 for export CULT( "endExport", ENDER, 0, 0, 0, 0, 0, 0, N, 0.f, N, N), CULT() }; // exT @@ -1192,8 +1192,8 @@ static CULT rpfT[] = //-------------- REPORTFILE cmd table, used from cnTopCult //------------ ----- ------------- ------- -- ----- ----- - -------------------------- ---- ---- CULT( "*", STAR, 0, 0, 0, 0, 0, 0, N, 0.f, N, rfStarCkf), CULT( "rfFileName", DAT, RFI_FILENAME, RQD, 0, VEOI, TYSTR, 0, N, 0.f, N, N), // set to inputfile.rep for primary - CULT( "rfFileStat", DAT, RFI_FILESTAT, 0, 0, 0, TYCH, 0, v C_FILESTATCH_OVERWRITE,0.f, N, N), // used in rfStarCkf: no VEOI - CULT( "rfPageFmt", DAT, RFI_PAGEFMT, 0, 0, VEOI, TYCH, 0, v C_NOYESCH_NO,0.f, N, N), + CULT( "rfFileStat", DAT, RFI_FILESTAT, 0, 0, 0, TYCH, 0, C_FILESTATCH_OVERWRITE, N, N), // used in rfStarCkf: no VEOI + CULT( "rfPageFmt", DAT, RFI_PAGEFMT, 0, 0, VEOI, TYCH, 0, C_NOYESCH_NO, N, N), CULT( "endReportFile", ENDER, 0, 0, 0, 0, 0, 0, N, 0.f, N, N), CULT( "report", RATE, 0, 0, 0, 0, 0, &RiB, N, 0.f, rpT, N), CULT() @@ -1218,7 +1218,7 @@ static CULT exfT[] = //-------------- EXPORTFILE cmd table, used from cnTopCult //----------- ----- ------------- ------- -- ------ ----- - -------------------------- ---- ---- CULT( "*", STAR, 0, 0, 0, 0, 0, 0, N, 0.f, N, xfStarCkf), CULT( "xfFileName", DAT, RFI_FILENAME, RQD, 0, VEOI, TYSTR, 0, N, 0.f, N, N), // set to inputfile.csv for primary - CULT( "xfFileStat", DAT, RFI_FILESTAT, 0, 0, 0, TYCH, 0, v C_FILESTATCH_OVERWRITE, 0.f, N, N), // used in xfStarCkf: no VEOI + CULT( "xfFileStat", DAT, RFI_FILESTAT, 0, 0, 0, TYCH, 0, C_FILESTATCH_OVERWRITE, N, N), // used in xfStarCkf: no VEOI CULT( "endExportFile",ENDER, 0, 0, 0, 0, 0, 0, N, 0.f, N, N), CULT( "export", RATE, 0, 0, 0, 0, 0, &XiB, N, 0.f, exT, N), CULT() @@ -1240,8 +1240,8 @@ static CULT impfT[] = //-------------- IMPORTFILE cmd table, used from cnTopCult CULT( "imFileName", DAT, IMPF_FILENAME, RQD, 0, VFAZLY, TYSTR, 0, N, 0.f, N, N), CULT( "imTitle", DAT, IMPF_IMTITLE, 0, 0, VFAZLY, TYSTR, 0, N, 0.f, N, N), CULT( "imFreq", DAT, IMPF_IMFREQ, RQD, 0, VEOI, TYCH, 0, N, 0.f, N, N), - CULT( "imHeader", DAT, IMPF_HASHEADER,0, 0, VFAZLY, TYCH, 0, v C_NOYESCH_YES, 0.f, N, N), - CULT( "imBinary", DAT, IMPF_IMBINARY, 0, 0, VEOI, TYCH, 0, v C_NOYESCH_NO, 0.f, N, N), //poss future use + CULT( "imHeader", DAT, IMPF_HASHEADER,0, 0, VFAZLY, TYCH, 0, C_NOYESCH_YES, N, N), + CULT( "imBinary", DAT, IMPF_IMBINARY, 0, 0, VEOI, TYCH, 0, C_NOYESCH_NO, N, N), //poss future use CULT( "endImportFile", ENDER, 0, 0, 0, 0, 0, 0, N, 0.f, N, N), CULT() }; // impfT @@ -2055,7 +2055,7 @@ CULT( "wsVolRunningDes",DAT,DHWSYS_VOLRUNNINGDES,0, 0, VEOI, TYFL, 0, CULT( "wsASHPTSrcDes",DAT, DHWSYS_ASHPTSRCDES,0, 0, VEOI, TYFL, 0, 0.f, N, N), CULT( "wsFxDes", DAT, DHWSYS_FXDES, 0, 0, VEOI, TYFL, 0, 1.f, N, N), CULT( "wsDRMethod", DAT, DHWSYS_DRMETHOD, 0, 0, VEOI, TYCH, 0, C_DHWDRMETH_NONE, N, N), -CULT( "wsDRSignal", DAT, DHWSYS_DRSIGNAL, 0, 0, VHRLY, TYCH, 0, nc( C_DHWDRSIG_ON), 0.f, N, N), +CULT( "wsDRSignal", DAT, DHWSYS_DRSIGNAL, 0, 0, VHRLY, TYCH, 0, nc(C_DHWDRSIG_ON), N, N), CULT( "wsDayUse", DAT, DHWSYS_DAYUSENAME,0, 0, VDAILY, TYSTR, 0, N, N, N), CULT( "wsWHhwMtr", DAT, DHWSYS_WHHWMTRI, 0, 0, VEOI, TYREF, &WMtriB,N, N, N), CULT( "wsFXhwMtr", DAT, DHWSYS_FXHWMTRI, 0, 0, VEOI, TYREF, &WMtriB,N, N, N), @@ -2243,7 +2243,7 @@ CULT( "btMaxChgPwr", DAT, BATTERY_MAXCHGPWR,0, 0, VHRLY, TYFL, 0, CULT( "btMaxDschgPwr",DAT, BATTERY_MAXDSCHGPWR,0, 0, VHRLY, TYFL, 0, 4.f, N, N), CULT( "btChgReq", DAT, BATTERY_CHGREQ, 0, 0, VHRLY|EVENDIVL, TYFL, 0, 0.f, N, N), CULT( "btUseUsrChg", DAT, BATTERY_USEUSRCHG,0, 0, VEOI, TYCH, 0, C_NOYESCH_NO, N, N), -CULT( "btControlAlg", DAT, BATTERY_CONTROLALG,0, 0, VHRLY, TYCH, 0, nc( C_BATCTRLALGVC_DEFAULT), 0.f, N, N), +CULT( "btControlAlg", DAT, BATTERY_CONTROLALG,0, 0, VHRLY, TYCH, 0, nc( C_BATCTRLALGVC_DEFAULT), N, N), CULT( "endBATTERY", ENDER, 0, 0, 0, 0, 0, 0, 0.f, N, N), CULT() }; // btT @@ -2282,9 +2282,9 @@ static CULT ahT[] = // id cs fn f uc evf ty b dfls p2 ckf //--------------- ---- --------------------- ------- -- ------ ----- ----- --------------------- ---- ---- CULT( "*", STAR, 0, 0, 0, 0, 0, 0, N, 0.f, N, N), - CULT( "ahSched", DAT, AH_AHSCH, 0, 0, VHRLY, TYCH, 0, nc(C_AHSCHVC_ON),0.f, N, N), + CULT( "ahSched", DAT, AH_AHSCH, 0, 0, VHRLY, TYCH, 0, nc(C_AHSCHVC_ON), N, N), CULT( "ahFxVfFan", DAT, AH_FXVFFAN, 0, 0, VFAZLY, TYFL, 0, N, 1.1f, N, N), - CULT( "sfanType", DAT, SFAN(FANTY), 0, 0, VFAZLY, TYCH, 0, v C_FANTYCH_DRAWTHRU,0, N, N), + CULT( "sfanType", DAT, SFAN(FANTY), 0, 0, VFAZLY, TYCH, 0, C_FANTYCH_DRAWTHRU, N, N), CULT( "sfanVfDs", DAT, SFAN(VFDS), RQD|AS_OK, 0, VFAZLY, TYFL, 0, N, 0.f, N, N), CULT( "sfanVfMxF", DAT, SFAN(VFMXF), 0, 0, VFAZLY, TYFL, 0, N, 1.3f, N, N), CULT( "sfanPress", DAT, SFAN(PRESS), 0, 0, VFAZLY, TYFL, 0, N, 3.f, N, N), @@ -2292,10 +2292,10 @@ static CULT ahT[] = CULT( "sfanShaftBhp", DAT, SFAN(SHAFTPWR), 0, 0, VFAZLY, TYFL, 0, N, 0.f, N, N), CULT( "sfanElecPwr", DAT, SFAN(ELECPWR), 0, 0, VEOI, TYFL, 0, N, 0.f, N, N), CULT( "sfanMotEff", DAT, SFAN(MOTEFF), 0, 0, VFAZLY, TYFL, 0, N, .9f, N, N), - CULT( "sfanMotPos", DAT, SFAN(MOTPOS), 0, 0, VFAZLY, TYCH, 0, v C_MOTPOSCH_INFLO, 0, N, N), + CULT( "sfanMotPos", DAT, SFAN(MOTPOS), 0, 0, VFAZLY, TYCH, 0, C_MOTPOSCH_INFLO, N, N), CULT( "sfanCurvePy", DAT, SFAN(CURVEPY+PYCUBIC_K),ARRAY, 0, VFAZLY, TYFL, 0, N, 0.f, v 6, N), //incl x0 CULT( "sfanMtr", DAT, SFAN(MTRI), 0, 0, VEOI, TYREF, &MtriB,N, 0.f, N, N), - CULT( "rfanType", DAT, RFAN(FANTY), 0, 0, VFAZLY, TYCH, 0, v C_FANTYCH_NONE, 0.f, N, N), + CULT( "rfanType", DAT, RFAN(FANTY), 0, 0, VFAZLY, TYCH, 0, C_FANTYCH_NONE, N, N), CULT( "rfanVfDs", DAT, RFAN(VFDS), AS_OK, 0, VFAZLY, TYFL, 0, N, 0.f, N, N), CULT( "rfanVfMxF", DAT, RFAN(VFMXF), 0, 0, VFAZLY, TYFL, 0, N, 1.3f, N, N), CULT( "rfanPress", DAT, RFAN(PRESS), 0, 0, VFAZLY, TYFL, 0, N, .75f, N, N), @@ -2303,10 +2303,10 @@ static CULT ahT[] = CULT( "rfanShaftBhp", DAT, RFAN(SHAFTPWR), 0, 0, VFAZLY, TYFL, 0, N, 0.f, N, N), CULT( "rfanElecPwr", DAT, RFAN(ELECPWR), 0, 0, VEOI, TYFL, 0, N, 0.f, N, N), CULT( "rfanMotEff", DAT, RFAN(MOTEFF), 0, 0, VFAZLY, TYFL, 0, N, .9f, N, N), - CULT( "rfanMotPos", DAT, RFAN(MOTPOS), 0, 0, VFAZLY, TYCH, 0, v C_MOTPOSCH_INFLO, 0, N, N), + CULT( "rfanMotPos", DAT, RFAN(MOTPOS), 0, 0, VFAZLY, TYCH, 0, C_MOTPOSCH_INFLO, N, N), CULT( "rfanCurvePy", DAT, RFAN(CURVEPY+PYCUBIC_K),ARRAY, 0, VFAZLY, TYFL, 0, N, 0.f, v 6, N), //incl x0 CULT( "rfanMtr", DAT, RFAN(MTRI), 0, 0, VEOI, TYREF, &MtriB,N, 0.f, N, N), - CULT( "cchCM", DAT, CCH(CCHCM), 0, 0, VFAZLY, TYCH, 0, v C_CCHCM_NONE, 0, N, N), //code dflts + CULT( "cchCM", DAT, CCH(CCHCM), 0, 0, VFAZLY, TYCH, 0, C_CCHCM_NONE, N, N), //code dflts CULT( "cchPMx", DAT, CCH(PMX), 0, 0, VFAZLY, TYFL, 0, N, .4f, N, N), CULT( "cchPMn", DAT, CCH(PMN), 0, 0, VFAZLY, TYFL, 0, N, .04f, N, N), CULT( "cchTMx", DAT, CCH(TMX), 0, 0, VFAZLY, TYFL, 0, N, 0.f, N, N), @@ -2315,8 +2315,8 @@ static CULT ahT[] = CULT( "cchTOn", DAT, CCH(TON), 0, 0, VFAZLY, TYFL, 0, N, 72.f, N, N), CULT( "cchTOff", DAT, CCH(TOFF), 0, 0, VFAZLY, TYFL, 0, N, 72.f, N, N), //code dflts CULT( "cchMtr", DAT, CCH(MTRI), 0, 0, VEOI, TYREF, &MtriB,N, 0.f, N, N), - CULT( "ahhcType", DAT, AHHC(COILTY), 0, 0, VFAZLY, TYCH, 0, v C_COILTYCH_NONE, 0, N, N), - CULT( "ahhcSched", DAT, AHHC(SCHED), 0, 0, VHRLY, TYCH, 0, nc(C_OFFAVAILVC_AVAIL),0, N, N), + CULT( "ahhcType", DAT, AHHC(COILTY), 0, 0, VFAZLY, TYCH, 0, C_COILTYCH_NONE, N, N), + CULT( "ahhcSched", DAT, AHHC(SCHED), 0, 0, VHRLY, TYCH, 0, nc(C_OFFAVAILVC_AVAIL), N, N), CULT( "ahhcCaptRat", DAT, AHHC(CAPTRAT), AS_OK, 0, VHRLY, TYFL, 0, N, 0.f, N, N), //hrly vbl for ahhc only CULT( "ahhcFxCap", DAT, AH_FXCAPH, 0, 0, VFAZLY, TYFL, 0, N, 1.1f, N, N), CULT( "ahhcHeatplant", DAT, AHHC(HPI), 0, 0, VEOI, TYREF, &HpiB, N, 0.f, N, N), @@ -2349,8 +2349,8 @@ static CULT ahT[] = CULT( "ahpCOP47", DAT, AHHC(COP47), 0, 0, VFAZLY, TYFL, 0, N, 0.f, N, N), //RQD by code for AHP CULT( "ahpInIa", DAT, AHHC(INIA), 0, 0, VFAZLY, TYFL, 0, N, .004f, N, N), CULT( "ahpCd", DAT, AHHC(CD), 0, 0, VFAZLY, TYFL, 0, N, .25f, N, N), - CULT( "ahccType", DAT, AHCC(COILTY), 0, 0, VFAZLY, TYCH, 0, v C_COILTYCH_NONE, 0.f, N, N), - CULT( "ahccSched", DAT, AHCC(SCHED), 0, 0, VHRLY, TYCH, 0, nc(C_OFFAVAILVC_AVAIL),0, N, N), + CULT( "ahccType", DAT, AHCC(COILTY), 0, 0, VFAZLY, TYCH, 0, C_COILTYCH_NONE, N, N), + CULT( "ahccSched", DAT, AHCC(SCHED), 0, 0, VHRLY, TYCH, 0, nc(C_OFFAVAILVC_AVAIL), N, N), CULT( "ahccCaptRat", DAT, AHCC(CAPTRAT), AS_OK, 0, VFAZLY, TYFL, 0, N, 0.f, N, N), CULT( "ahccCapsRat", DAT, AHCC(CAPSRAT), 0, 0, VFAZLY, TYFL, 0, N, 0.f, N, N), CULT( "ahccSHRRat", DAT, AHCC(SHRRAT), 0, 0, VFAZLY, TYFL, 0, N, .77f, N, N), // 6-95 @@ -2385,7 +2385,7 @@ static CULT ahT[] = CULT( "ahccNtuoDs", DAT, AHCC(NTUODS), 0, 0, VFAZLY, TYFL, 0, N, 2.f, N, N), CULT( "ahccNtuiDs", DAT, AHCC(NTUIDS), 0, 0, VFAZLY, TYFL, 0, N, 2.f, N, N), CULT( "ahccBypass", DAT, AH_AHCCBYPASS, 0, 0, VHRLY, TYFL, 0, N, 0.f, N, N), - CULT( "ahFanCycles", DAT, AH_AHFANCYCLES, 0, 0, VHRLY, TYCH, 0, nc(C_NOYESVC_NO), 0.f, N, N), + CULT( "ahFanCycles", DAT, AH_AHFANCYCLES, 0, 0, VHRLY, TYCH, 0, nc(C_NOYESVC_NO), N, N), CULT( "ahccMtr", DAT, AHCC(MTRI), 0, 0, VEOI, TYREF, &MtriB, N, 0.f, N, N), CULT( "ahccAux", DAT, AHCC(AUX), 0, 0, VHRLY, TYFL, 0, N, 0.f, N, N), CULT( "ahccAuxMtr", DAT, AHCC(AUXMTRI), 0, 0, VEOI, TYREF, &MtriB, N, 0.f, N, N), @@ -2405,11 +2405,11 @@ static CULT ahT[] = CULT( "ahWzCzns", DAT, AH_AHWZCZNS, ARRAY|ALL_OK, 0, VEOI, TYREF, &ZiB, v TI_ALL, 0.f, v 16, N), CULT( "ahCzCzns", DAT, AH_AHCZCZNS, ARRAY|ALL_OK, 0, VEOI, TYREF, &ZiB, v TI_ALL, 0.f, v 16, N), #endif - CULT( "oaMnCtrl", DAT, AH_OAMNCM, 0, 0, VFAZLY, TYCH, 0, v C_OAMNCH_VOL, 0.f, N, N), + CULT( "oaMnCtrl", DAT, AH_OAMNCM, 0, 0, VFAZLY, TYCH, 0, C_OAMNCH_VOL, N, N), CULT( "oaMnFrac", DAT, AH_OAMNFRAC, 0, 0, VHRLY, TYFL, 0, N, 1.f, N, N), CULT( "oaVfDsMn", DAT, AH_OAVFDSMN, 0, 0, VFAZLY, TYFL, 0, N, 0.f, N, N), - CULT( "oaEcoType", DAT, AH_OAECOTY, 0, 0, VFAZLY, TYCH, 0, v C_ECOTYCH_NONE,0.f, N, N), - CULT( "oaLimT", DAT, AH_OALIMT, 0, 0, VHRLY, TYNC, 0, nc(C_RANC_RA), 0.f, N, N), + CULT( "oaEcoType", DAT, AH_OAECOTY, 0, 0, VFAZLY, TYCH, 0, C_ECOTYCH_NONE, N, N), + CULT( "oaLimT", DAT, AH_OALIMT, 0, 0, VHRLY, TYNC, 0, nc(C_RANC_RA), N, N), CULT( "oaLimE", DAT, AH_OALIME, 0, 0, VHRLY, TYNC, 0, N, 999.f, N, N), // Heat Exchanger for Heat Recovery @@ -2486,7 +2486,7 @@ static CULT hpT[] = // id cs fn f uc evf ty b dfls p2 ckf //--------------- ---- --------------------- ------- -- ------- ----- ----- --------------------- ---- ---- //heatplant user inputs - CULT( "hpSched", DAT, HEATPLANT_HPSCHED, 0, 0, VHRLY, TYCH, 0, nc(C_OFFAVAILONVC_AVAIL),0.f, N, N), + CULT( "hpSched", DAT, HEATPLANT_HPSCHED, 0, 0, VHRLY, TYCH, 0, nc(C_OFFAVAILONVC_AVAIL), N, N), CULT( "hpPipeLossF", DAT, HEATPLANT_HPPIPELOSSF, 0, 0, VFAZLY, TYFL, 0, N, .01f, N, N), CULT( "hpStage1", DAT, HEATPLANT_HPSTAGE1, ARRAY|ALL_OK, 0, VEOI, TYREF, &BlriB, N, 0.f, v 8, N), CULT( "hpStage2", DAT, HEATPLANT_HPSTAGE2, ARRAY|ALL_OK, 0, VEOI, TYREF, &BlriB, N, 0.f, v 8, N), @@ -2559,7 +2559,7 @@ static CULT cpT[] = // id cs fn f uc evf ty b dfls p2 ckf //--------------- ---- --------------------- ------- -- ------- ----- ----- --------------------- ---- ---- //coolplant user inputs - CULT( "cpSched", DAT, COOLPLANT_CPSCHED, 0, 0, VHRLY, TYCH, 0, nc(C_OFFAVAILONVC_AVAIL),0.f, N, N), + CULT( "cpSched", DAT, COOLPLANT_CPSCHED, 0, 0, VHRLY, TYCH, 0, nc(C_OFFAVAILONVC_AVAIL), N, N), CULT( "cpTsSp", DAT, COOLPLANT_CPTSSP, 0, 0, VHRLY, TYFL, 0, N, 44.f, N, N), CULT( "cpPipeLossF", DAT, COOLPLANT_CPPIPELOSSF, 0, 0, VFAZLY, TYFL, 0, N, .01f, N, N), CULT( "cpTowerplant", DAT, COOLPLANT_CPTOWI, RQD, 0, VEOI, TYREF, &TpiB, N, 0.f, N, N), @@ -2586,10 +2586,10 @@ static CULT tpT[] = //--------------- ---- --------------------- ------- -- ------ ----- ----- --------------------- ---- ---- //towerplant user inputs CULT( "ctN", DAT, TP(CTN), 0, 0, VFAZLY, TYSI, 0, v 1, 0.f, N, N), - CULT( "tpStg", DAT, TP(TPSTG), 0, 0, VFAZLY, TYCH, 0, v C_TPSTGCH_TOGETHER, 0.f, N, N), + CULT( "tpStg", DAT, TP(TPSTG), 0, 0, VFAZLY, TYCH, 0, C_TPSTGCH_TOGETHER, N, N), CULT( "tpTsSp", DAT, TP(TPTSSP), 0, 0, VHRLY, TYFL, 0, N, 85.f, N, N), CULT( "tpMtr", DAT, TP(TPMTR), 0, 0, VEOI, TYREF, &MtriB, N, 0.f, N, N), - CULT( "ctType", DAT, TP(CTTY), 0, 0, VFAZLY, TYCH, 0, v C_CTTYCH_ONESPEED, 0.f, N, N), + CULT( "ctType", DAT, TP(CTTY), 0, 0, VFAZLY, TYCH, 0, C_CTTYCH_ONESPEED, N, N), CULT( "ctLoSpd", DAT, TP(CTLOSPD), 0, 0, VFAZLY, TYFL, 0, N, .5f, N, N), CULT( "ctShaftBhp", DAT, TP(CTSHAFTPWR), 0, 0, VFAZLY, TYFL, 0, N, 0.f, N, N), //code defaults (BRUCEDFL, was RQD) CULT( "ctMotEff", DAT, TP(CTMOTEFF), 0, 0, VFAZLY, TYFL, 0, N, .88f, N, N), @@ -2777,7 +2777,7 @@ CULT cnTopCult[] = // Top level table, points to all other tables, used in cal CULT( "dbgPrintMask",DAT, TOPRAT_DBGPRINTMASK,0, 0, VHRLY, TYLLI, 0, 0, N, N), CULT( "dbgPrintMaskC",DAT, TOPRAT_DBGPRINTMASKC,0, 0, VEOI, TYLLI, 0, 0, N, N), CULT( "dbgFlag", DAT, TOPRAT_DBGFLAG, 0, 0, VSUBHRLY,TYLLI,0, 0, N, N), - CULT( "ventAvail", DAT, TOPRAT_VENTAVAIL, 0, 0, VHRLY, TYCH, 0, nc( C_VENTAVAILVC_WHOLEBLDG), 0.f, N, N), + CULT( "ventAvail", DAT, TOPRAT_VENTAVAIL, 0, 0, VHRLY, TYCH, 0, nc( C_VENTAVAILVC_WHOLEBLDG), N, N), // TOP autosizing CULT( "auszTol", DAT, TOPRAT_AUSZTOL, 0, 0, VEOI, TYFL, 0, .005f, N, N), // .03->.01, 7-95 @@ -3217,13 +3217,16 @@ int CULTDOC::cu_Doc1( // document CULT table and children } // CULTDOC::cu_Doc1 //--------------------------------------------------------------------------- int CULT::cu_ShowDoc( // document this CULT - int options /*=0*/) const + int options /*=0*/) const // 1: show all members (re validation after changes) // returns 0 if info displayed // 1 if no display (id=="*" or NO_INP) { options; int ret = 0; - if (strcmp( id, "*") == 0 + if (options&1) + printf(" %-20s cs=%-2d fn=%-3d f=%-4d uc=%d evf=%-4d ty=%-5d b=%p dfpi=%p dff=%-10g p2=%p chkf=%p\n", + id, cs, fn, f, uc, evf, ty, b, dfpi, dff, p2, ckf); + else if (strcmp( id, "*") == 0 || (f & NO_INP)) ret = 1; else @@ -3236,6 +3239,7 @@ int CULT::cu_ShowDoc( // document this CULT int culShowDoc( // public function: display all input int options/*=0*/) { + options = 1; CULTDOC cultDoc( options); // local class int ret = cultDoc.cu_Doc(); return ret; diff --git a/src/cnglob.h b/src/cnglob.h index c7eaa2d99..b5544045a 100644 --- a/src/cnglob.h +++ b/src/cnglob.h @@ -331,8 +331,8 @@ template inline NANDAT AsNANDAT(T& v) { return *reinterpret_cast(pNandat)) & 0xffff0000L)==0xff800000L) // test for ptr to ref to non-constant expr (or unset) -#define EXN(nandle) (AsNANDAT(nandle) & 0xffff) // extract expression # from nandle +#define ISNANDLEP(pV) ((*(reinterpret_cast(pV)) & 0xffff0000L)==0xff800000L) // test for ptr to ref to non-constant expr (or unset) +#define EXN(v) (AsNANDAT(v) & 0xffff) // extract expression # from nandle #else typedef void * NANDAT; // CAUTION: for fcn args use ptr (NANDAT *) to be sure C does not alter arg bit pattern. // CAUTION: NANDAT * can pt to only 16 bits (TYSI); check type b4 storing. @@ -347,15 +347,7 @@ typedef void * NANDAT; // CAUTION: for fcn args use ptr (NANDAT *) to be sure C #define NANDLE(h) ((NANDAT)(0xff800000L + h)) // "expr n" ref for float/ptr/LI (or SI in 4 bytes). h = 1..16383. #endif -// NCHOICEs are values which can represent one of several choices and which can -// be stored in a float and distinguished from all numeric values. 2-92. -// NCHOICEs are used in CHOICN data types, definable thru rcdef.exe per input file cndtypes.def. -// NCHOICES are stored as IEEE NAN's (not-a-number's) in the form 0x7f80 plus the choice number 1-7f in the hi word. -// NCHOICES must be kept distinct from UNSET and NANDLES (hi word ff8x) (above/exman.h). -// CAUTION: to test a float's bit pattern, cast to a pointer then to ULI. -// Casting directly to ULI causes its numeric value to be converted, altering the bit pattern -#define NCNAN 0x7f80 // bits that make nchoice a nan; is combined with choice index 1-7f to form stored value // macro to access a float that may contain a NAN: don't let compiler treat as floats til numeric content verified. #if 1 // re 64 bits, 11-2022 @@ -364,30 +356,39 @@ typedef void * NANDAT; // CAUTION: for fcn args use ptr (NANDAT *) to be sure C x #define CSE_V *(void **)& #endif +// NCHOICEs are values which can represent one of several choices and which can +// be stored in a float and distinguished from all numeric values. 2-92. +// NCHOICEs are used in CHOICN data types, definable thru rcdef.exe per input file cndtypes.def. +// NCHOICES are stored as IEEE NAN's (not-a-number's) in the form 0x7f80 plus the choice number 1-7f in the hi word. +// NCHOICES must be kept distinct from UNSET and NANDLEs (hi word ff8x) (above/exman.h). +// CAUTION: to test a float's bit pattern, cast to a pointer then to ULI. +// Casting directly to ULI causes its numeric value to be converted, altering the bit pattern + #if 1 -// macro to test if n has an NCHOICE value: -#define ISNCHOICE(n) ((AsNANDAT(n) & 0xff800000L)==0x7f800000L) // macro to fetch/store into variable n's hi word. Use w 16-bit flag/choice # dtypes.h C_DTYPE_XXXX constants gen'd by rcdef. // usage: float y; CHN(y) = C_ABCNC_X; if (CHN(y)==C_ABCNC_X) ... // #define CHN(n) ((USI)((ULI)(*(void **)&(n)) >> 16)) more portable fetch-only alternative -#define CHN(n) (*(reinterpret_cast(&n)+1)) // access hi word, lvalue use ok. 80x86 DEPENDENT. PCMS<--grep target. +#define CHN(n) (*((uint16_t*)&(n)+1)) // access hi word, lvalue use ok. 80x86 DEPENDENT. PCMS<--grep target. +// #define CHN(n) (*((USI *)&(n)+1)) // access hi word, lvalue use ok. 80x86 DEPENDENT. PCMS<--grep target. + +#define NCNAN 0x7f80 // bits that make nchoice a nan; is combined with choice index 1-7f to form stored value +// macro to test if n has an NCHOICE value: +#define ISNCHOICE(n) ((AsNANDAT(n) & 0xff800000L)==0x7f800000L) // macro to generate 32-bit value from 16-bit choice constants, for use where full value needed, as in initialized data // usage: float y = NCHOICE(C_ABCNC_X); -#define NCHOICE(nck) ((void *)((ULI)(nck) << 16)) // put in hi word. nck already includes 0x7f80. +#define NCHOICE(nck) ((void *)(static_cast(nck) << 16)) // put in hi word. nck must include 0x7f80. #else - -// macro to test if n has an NCHOICE value: -#define ISNCHOICE(n) (((ULI)CSE_V(n) & 0xff800000L)==0x7f800000L) - - // macro to fetch/store into variable n's hi word. Use w 16-bit flag/choice # dtypes.h C_DTYPE_XXXX constants gen'd by rcdef. // usage: float y; CHN(y) = C_ABCNC_X; if (CHN(y)==C_ABCNC_X) ... // #define CHN(n) ((USI)((ULI)(*(void **)&(n)) >> 16)) more portable fetch-only alternative #define CHN(n) (*((USI *)&(n)+1)) // access hi word, lvalue use ok. 80x86 DEPENDENT. PCMS<--grep target. +#define NCNAN 0x7f80 // bits that make nchoice a nan; is combined with choice index 1-7f to form stored value +// macro to test if n has an NCHOICE value: +#define ISNCHOICE(n) (((ULI)CSE_V(n) & 0xff800000L)==0x7f800000L) // macro to generate 32-bit value from 16-bit choice constants, for use where full value needed, as in initialized data // usage: float y = NCHOICE(C_ABCNC_X); #define NCHOICE(nck) ((void *)((ULI)(nck) << 16)) // put in hi word. nck already includes 0x7f80. diff --git a/src/cul.h b/src/cul.h index fe435fa75..e7f01fe15 100644 --- a/src/cul.h +++ b/src/cul.h @@ -48,7 +48,7 @@ enum CULPHASE #endif -/*================= CULT: Cal[non]res User Language Table =================*/ +/*================= CULT: CSE User Language Table =================*/ /* UFCNPTR: type for ptrs to optional user fcns (see "CULT user fcn calls" comments below): init/default fcn (itf) ptr, in CULT.p2 or non-data CULT.dfpi, @@ -101,13 +101,19 @@ struct CULT : public STBK // for initialized data to drive user interface : STBK( _id), cs( _cs), fn( _fn), f( _f), uc( _uc), evf( _evf), ty( _ty), b( _b), dfpi( _dfpi), dff( _dff), p2( _p2), ckf( _ckf) { } + // variant: void* default + CULT(const char* _id, unsigned _cs, unsigned _fn, USI _f, unsigned _uc, unsigned _evf, + SI _ty, void* _b, void* _dfpi, void* _p2, UFCNPTR _ckf) + : STBK(_id), cs(_cs), fn(_fn), f(_f), uc(_uc), evf(_evf), + ty(_ty), b(_b), dfpi(_dfpi), dff( 0.f), p2(_p2), ckf(_ckf) { } + // variant: float default only CULT( const char* _id, unsigned _cs, unsigned _fn, USI _f, unsigned _uc, unsigned _evf, SI _ty, void* _b, float _dff, void* _p2, UFCNPTR _ckf) : STBK( _id), cs( _cs), fn( _fn), f( _f), uc( _uc), evf( _evf), ty( _ty), b( _b), dfpi( NULL), dff( _dff), p2( _p2), ckf( _ckf) { } - // variant: choice default only + // variant: integer (non-NCHOICE) choice default only CULT( const char* _id, unsigned _cs, unsigned _fn, USI _f, unsigned _uc, unsigned _evf, SI _ty, void* _b, int _dfpi, void* _p2, UFCNPTR _ckf) : STBK( _id), cs( _cs), fn( _fn), f( _f), uc( _uc), evf( _evf), diff --git a/src/cvpak.cpp b/src/cvpak.cpp index bdbe71833..70d75450d 100644 --- a/src/cvpak.cpp +++ b/src/cvpak.cpp @@ -312,7 +312,25 @@ p break; case DTFLOAT: floatCase: // number-choice comes here (from default) if does not contain choice - +#if 1 + { + NANDAT nd = *(NANDAT *)data; + if (!ISNUM(nd)) // check for non-number, cnglob.h macro, debug aid 2-27-92. + { + if (ISNCHOICE(nd)) // if number-choice choice (nan; unexpected here) + goto choiceCase; + if (ISNANDLE(nd)) // if unset or expr n (nan's) (insurance) + { + if (ISUNSET(nd)) + strcpy(str, ""); // say + else + sprintf(str, "", EXN(nd)); // say + break; + } + } + val = *(float*)data; // conver float value to print to double + } +#else if (!ISNUM( *(void **)data)) // check for non-number, cnglob.h macro, debug aid 2-27-92. { if (ISNCHOICE( *(void **)data)) // if number-choice choice (nan; unexpected here) @@ -327,6 +345,7 @@ p break; } } val = *(float *)data; // conver float value to print to double +#endif valValue: // double, [percent] join here val = cvIntoEx( val, units); // convert value to ext units #ifdef FMTPVMASK @@ -1425,7 +1444,11 @@ RC FC cvS2Choi( // convert string to choice value for given data type else for continue; if (dt & DTBCHOICN) // for choice in number-choice store bit pattern of { if (pv) +#if defined( ND3264) + *reinterpret_cast(pv) = NCHOICE(v | NCNAN); +#else *(void **)pv = NCHOICE( v | NCNAN); +#endif // .. NCNAN (7f80, cnglob.h) + choice 1,2,3.. in hi word of float. if (pSz) *pSz = sizeof(float); // tell caller value size is 4 bytes @@ -2098,6 +2121,7 @@ RC FC cvatof2( /* Substring variant of cvatof() */ *s2 = c; return rc; } /* cvatof2 */ + #if 1 /* restore back prior options only, chip 7-25-90 */ #pragma optimize("",on) /* restore cmd line/default optimization */ #else diff --git a/src/cvpak.h b/src/cvpak.h index cfc99ec1d..e170ddaa6 100644 --- a/src/cvpak.h +++ b/src/cvpak.h @@ -45,13 +45,13 @@ p * 11-91 CSE: removed despite the previously-perceived difficulty */ #define FMTOVFK 0x0000 // K format #define FMTOVFE 0x0100 // E format -#define FMTUNITS 0x0200 // Add units to string -- space and units tag -#define FMTPU 0x2000 // Add units in parens, no spaces (for crb res loads; can remove if format changed. 2-90) - // 0x0400 unused in CSE (formerly FMTNODATA) -#define FMTRTZ 0x0800 /* Trim trailing 0's from FLOAT values. Makes DFW be total sig digits, not dig after point. - Used in wcpak.cpp and text data files. +#define FMTUNITS 0x0200 // Add units to string -- space and units tag +#define FMTPU 0x2000 // Add units in parens, no spaces (for crb res loads; can remove if format changed. 2-90) + // 0x0400 unused in CSE (formerly FMTNODATA) +#define FMTRTZ 0x0800 // Trim trailing 0's from FLOAT values. Makes DFW be total sig digits, not dig after point. + // Used in wcpak.cpp and text data files. - Now (b4 10-88!) kludged w/ g format; Better soon. + /* Now(b4 10 - 88!) kludged w / g format; Better soon. ??? 10-88: what is wrong with g format method??? Internal fcn cvttz() added for inches may be pertinent. rob. >> 9-89 A Problem with G FORMAT is that it goes into e format too easily @@ -80,7 +80,6 @@ int getChoiTxTyX( const char* chtx); const char* getChoiTxI( USI dt, SI chan, int* pTyX=NULL, int options=0); RC FC cvS2Choi( const char *s, USI dt, void *pv, USI *pSz, const char** pms); -// cvatoxxx.cpp functions RC FC cvatof( const char *_str, double *vp, SI percent ); #if 0 x RC FC cvatol(char* s, LI* pn, SI hexoct); // convert string to long integer diff --git a/src/exman.h b/src/exman.h index 8f22378cf..663af5ded 100644 --- a/src/exman.h +++ b/src/exman.h @@ -14,13 +14,13 @@ for data whose value is not known at input time, and also to specify UNSET (no value assigned yet). - During input, NANDLES are stored in place of string and float + During input, NANDLEs are stored in place of string and float values and moved and copied freely; after input is set up, the data - is searched for NANDLES to build the expression table that drives + is searched for NANDLEs to build the expression table that drives evaluating and storing expressions during the run. (SI data is extended to 32 bits (TYLLI) where necessary to allow for NANDLEs.) - The bit format of a NANDLE is: 0xFF800000 + n: corrected from FF000000 2-92. + The bit format of a NANDLE is: 0xFF800000 + n: n = 0 to indicate unset; n = expression number 1-16383 to indicate place to store expression. @@ -30,7 +30,7 @@ data pointers as ROM is there); depends on user caution to limit SI data stored in LI to 16 bits to insure data not looking like a NANDLE. - must be kept distinct from NCHOICES (cnglob.h?): 7F8x hi word. */ + must be kept distinct from NCHOICEs (cnglob.h): 7F8x hi word. */ /*------------------------- FUNCTION DECLARATIONS -------------------------*/ diff --git a/test/unit/CMakeLists.txt b/test/unit/CMakeLists.txt index ff1cbac72..8bd58eb00 100644 --- a/test/unit/CMakeLists.txt +++ b/test/unit/CMakeLists.txt @@ -2,6 +2,7 @@ set(source cse_tests.unit.cpp strpak.unit.cpp xiopak.unit.cpp + cvpak.unit.cpp $ ) From dcedf8747a67cde880aebb1c8f8f293f36628c7e Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Thu, 2 Mar 2023 15:51:34 -0500 Subject: [PATCH 04/25] Resolve cncult.cpp merge conflicts --- src/cncult.cpp | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/cncult.cpp b/src/cncult.cpp index 858884a56..3a9ab099f 100644 --- a/src/cncult.cpp +++ b/src/cncult.cpp @@ -3223,21 +3223,6 @@ int CULTDOC::cu_Doc1( // document CULT table and children return ret; } // CULTDOC::cu_Doc1 //--------------------------------------------------------------------------- -<<<<<<< HEAD -int CULT::cu_ShowDoc( // document this CULT - int options /*=0*/) const // 1: show all members (re validation after changes) -// returns 0 if info displayed -// 1 if no display (id=="*" or NO_INP) -{ - options; - int ret = 0; - if (options&1) - printf(" %-20s cs=%-2d fn=%-3d f=%-4d uc=%d evf=%-4d ty=%-5d b=%p dfpi=%p dff=%-10g p2=%p chkf=%p\n", - id, cs, fn, f, uc, evf, ty, b, dfpi, dff, p2, ckf); - else if (strcmp( id, "*") == 0 - || (f & NO_INP)) - ret = 1; -======= std::string CULT::cu_MakeDoc( // documentation string for this CULT int options /*=0*/) const // 1: detailed -- show all CULT members (re validation) // 0: id only @@ -3246,7 +3231,6 @@ std::string CULT::cu_MakeDoc( // documentation string for this CULT std::string doc; if (!options) doc = id; ->>>>>>> cultdump else { const char* bName = b ? reinterpret_cast(b)->what : ""; @@ -3259,7 +3243,6 @@ std::string CULT::cu_MakeDoc( // documentation string for this CULT int culShowDoc( // public function: display all input int options/*=0*/) { - options = 1; CULTDOC cultDoc( options); // local class int ret = cultDoc.cu_Doc( printf); return ret; From 982a71e77e546677dc67a8ab6c545d6e11a1b7b2 Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Wed, 8 Mar 2023 12:42:04 -0500 Subject: [PATCH 05/25] CULSTR initial implementation --- src/strpak.cpp | 200 +++++++++++++++++++++++++++++--------- src/strpak.h | 68 +++++++++++-- test/unit/strpak.unit.cpp | 31 ++++++ 3 files changed, 249 insertions(+), 50 deletions(-) diff --git a/src/strpak.cpp b/src/strpak.cpp index 2bba0d2cc..6d9bac319 100644 --- a/src/strpak.cpp +++ b/src/strpak.cpp @@ -21,51 +21,163 @@ static char THIS_FILE[] = __FILE__; #endif -/*------------------------------- VARIABLES -------------------------------*/ -// General temporary string buffer. Many uses, via strtemp(). -static int TmpstrNx = 0; // Next available byte in Tmpstr[]. -/*--------------------------- PUBLIC VARIABLES ----------------------------*/ -// temporary string buffer and access macro -const size_t TMPSTRSZ = 400000; // size of Temp str buffer Tmpstr[]. -static char Tmpstr[ TMPSTRSZ+2]; // buffer. When full, buffer is re-used from start. +// Tmpstr: General temporary string buffer. Many uses, via strtemp(). +// Implemented as a ring buffer. When full, buffer is re-used from start. +// Thus strings in buffer survive "for a while". Do not use for permanent strings. +const size_t TMPSTRSZ = 400000; // size of Tmpstr[]. +static char Tmpstr[ TMPSTRSZ+2]; // buffer. // Each allocation is followed by prior TmpstrNx value for rev-order dealloc (strtempPop). -// TMPSTRSZ: strpak.h. +2 extra bytes at end hold flag re overwrite check (obsolete? 7-10) -// see envpak.cpp - -/*=============================== TEST CODE ================================*/ -/* #define TEST */ -#ifdef TEST -t -t main() -t{ -t SI i, off; -t static char s[100]="This is a test"; -t char *snake, *p, *ptok; -t -t -t #ifdef PATHPARTSTEST -t p = "C:\\bob\\DOG.X"; -t printf( "Starting with: %s\n", p); -t for (i = 0; i < 16; i++) -t printf( " %x [%s]\n", (UI)i, strpathparts( p, i)); -t #endif -t -t #ifdef OTHERTESTS -t i = 0; -t loop: -t printf( "'%s' '%s'\n", strncpy0( NULL, s+i, 3), strntrim( NULL, s+i, 3) ); -t goto loop; -t #endif -t -t #define XTOKTEST -t #ifdef XTOKTEST -t p = " Token / , test ing,,1 "; -t printf("\n[%s]\n",p); -t while (ptok = strxtok( NULL, p, " ,/", TRUE)) -t printf( "[%s] %p\n", ptok, p); -t #endif /* XTOKTEST */ -t} -#endif /* TEST */ +// +2 extra bytes at end hold flag re overwrite check (obsolete? 7-10) +static int TmpstrNx = 0; // Next available byte in Tmpstr[]. + +#if 1 +// Str +static USTRMGR UStrMgr; + +CULSTR::CULSTR() : us_hStr(0) +{ +} +//----------------------------------------------------------------------------- +CULSTR::CULSTR(const CULSTR& culStr) : us_hStr( 0) +{ + Set(culStr.c_str()); +} +//----------------------------------------------------------------------------- +CULSTR::CULSTR(const char* str) : us_hStr( 0) +{ + Set(str); + +} +//----------------------------------------------------------------------------- +CULSTR::~CULSTR() +{ + Set(nullptr); +} +//----------------------------------------------------------------------------- +bool CULSTR::IsNull() const +{ + return UStrMgr.us_IsNull(us_hStr); +} +//----------------------------------------------------------------------------- +const char* CULSTR::c_str() const +{ + return UStrMgr.us_CStr(us_hStr); + +} +//----------------------------------------------------------------------------- +void CULSTR::Set( + const char* str) +{ + if (!str) + { + UStrMgr.us_Release(us_hStr); + us_hStr = 0; + } + else + { + if (IsNull()) + { + if (UStrMgr.us_AllocMightMove()) + str = strtmp(str); + us_hStr = UStrMgr.us_Alloc(); // can move! + } + + UStrMgr.us_Set(us_hStr, str); + } + + + +} +//----------------------------------------------------------------------------- +USTREL::USTREL(int size /*=-1*/) + : us_str(), us_status(0) +{ + + if (size > 0) + us_str.reserve(size); +} +//----------------------------------------------------------------------------- +USTREL::~USTREL() +{ + us_status = 0; +} +//----------------------------------------------------------------------------- +USTRMGR::USTRMGR() + : us_freeChainHead( 0) +{ + + us_Alloc(); // element 0 (reserved) + +} +//----------------------------------------------------------------------------- +USTRMGR::~USTRMGR() +{ + +} +//----------------------------------------------------------------------------- +bool USTRMGR::us_IsNull(XXSTR hStr) const +{ + return hStr==0 || us_strels[hStr].us_status != 0; + +} // USTRMGR::us_IsNULL +//----------------------------------------------------------------------------- +bool USTRMGR::us_AllocMightMove() const +{ + return us_freeChainHead == 0 + && us_strels.size() == us_strels.capacity(); + +} +//----------------------------------------------------------------------------- +XXSTR USTRMGR::us_Alloc( + int size /*=-1*/) +{ + XXSTR hStr = 0; + if (us_freeChainHead) + { hStr = us_freeChainHead; + us_freeChainHead = us_strels[hStr].us_status; + } + else + { us_strels.emplace_back(size); + hStr = us_strels.size() - 1; + } + + return hStr; + +} +//----------------------------------------------------------------------------- +void USTRMGR::us_Release( + XXSTR hStr) +{ + if (!hStr) + return; + + us_strels[hStr].us_status = us_freeChainHead; + + us_freeChainHead = hStr; + +} +//----------------------------------------------------------------------------- +void USTRMGR::us_Set( + XXSTR hStr, + const char* str) +{ + + us_strels[hStr].us_str = str; + +} +//----------------------------------------------------------------------------- +const char* USTRMGR::us_CStr( + XXSTR hStr) const + +{ + return us_strels[hStr].us_str.c_str(); + +} + +#endif + + +/////////////////////////////////////////////////////////////////////////////// //----------------------------------------------------------------------------- int strCheckPtr( DMP p) // check DM ptr for strpak conflict diff --git a/src/strpak.h b/src/strpak.h index 08e220b58..749c4e84a 100644 --- a/src/strpak.h +++ b/src/strpak.h @@ -1,4 +1,4 @@ -// Copyright (c) 1997-2019 The CSE Authors. All rights reserved. +// Copyright (c) 1997-2023 The CSE Authors. All rights reserved. // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file. @@ -7,11 +7,60 @@ #if !defined( _STRPAK_H) #define _STRPAK_H -// definitions for strpathparts() -const int STRPPDRIVE = 1; -const int STRPPDIR = 2; -const int STRPPFNAME = 4; -const int STRPPEXT = 8; +#if 1 +// #include + +using XXSTR = uint32_t; // string handle + +struct CULSTR +{ + CULSTR(); + CULSTR(const CULSTR& ulstr); + CULSTR(const char* s); + ~CULSTR(); + + XXSTR us_hStr; + + operator const char* () { return c_str(); }; + const char* c_str() const; + void Set(const char* str); + bool IsNull() const; + +}; + +struct USTREL +{ + USTREL(int size = -1); + ~USTREL(); + + std::string us_str; + int us_status; +}; + +class USTRMGR +{ +public: + USTRMGR(); + ~USTRMGR(); + + bool us_IsNull( XXSTR hStr) const; + bool us_AllocMightMove() const; + XXSTR us_Alloc(int size = -1); + void us_Release(XXSTR hStr); + void us_Set(XXSTR hStr, const char* str); + const char* us_CStr(XXSTR hStr) const; + + +private: + std::vector us_strels; + XXSTR us_freeChainHead; + + + +}; + +#endif + /////////////////////////////////////////////////////////////////////////// // public fcns @@ -80,8 +129,15 @@ char * FC strpad( char *s, const char *pads, int n); char* strSpacePad( char* d, size_t n, const char* s=NULL); char * FC strffix( const char *name, const char *ext); char* strffix2( const char* name, const char* ext, int options=0); + char * FC strtPathCat( const char *path, const char *namExt); +// for strpathparts() +const int STRPPDRIVE = 1; +const int STRPPDIR = 2; +const int STRPPFNAME = 4; +const int STRPPEXT = 8; char * FC strpathparts( const char *path, int partswanted, char* pcombo=NULL); + char * FC strtBsDouble( char *s); char * FC strBsUnDouble( char *s); char * FC strsave( const char *s); diff --git a/test/unit/strpak.unit.cpp b/test/unit/strpak.unit.cpp index da0e31626..f5b31904c 100644 --- a/test/unit/strpak.unit.cpp +++ b/test/unit/strpak.unit.cpp @@ -95,3 +95,34 @@ TEST(strpak, find_and_replace_functions) { EXPECT_STREQ(buf, "Medium siXXed original Ztr"); } } + +#if 1 +TEST(strpak, CULSTR_funtions) { + + CULSTR us1; + + // "null" string + EXPECT_EQ(us1.IsNull(), true); + const char* s1 = us1.c_str(); + EXPECT_STREQ(s1, ""); + + const char* sTest = "Testing"; + us1.Set( sTest); + EXPECT_EQ(us1.IsNull(), false); + s1 = us1.c_str(); + EXPECT_STREQ(s1, sTest); + + CULSTR us2("A rather longer string"); + CULSTR us3(us1); + EXPECT_STREQ(us3.c_str(), sTest); + + us2.Set(nullptr); + CULSTR us4("Here is another string that should go in slot 2"); + EXPECT_EQ(us4.us_hStr, 2); + + EXPECT_STREQ((const char*)us1, sTest); + + +} +#endif + From d3551cf6a29768dfca361865aa463e660cc2319e Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Wed, 8 Mar 2023 17:18:21 -0500 Subject: [PATCH 06/25] CULSTR conversion (compiles, does not run) --- src/CNDTYPES.DEF | 4 +- src/CNFIELDS.DEF | 3 +- src/CNRECS.DEF | 56 ++++---- src/RCDEF/dtypes.h | 293 +++++++++++++++++++------------------- src/cgresult.cpp | 14 +- src/cncult2.cpp | 2 +- src/cncult4.cpp | 19 ++- src/cnguts.cpp | 6 +- src/cnloads.cpp | 12 +- src/cse.cpp | 16 ++- src/cul.cpp | 2 +- src/cul.h | 2 +- src/cuparse.cpp | 2 +- src/cuprobe.cpp | 2 +- src/cvpak.cpp | 4 +- src/dhwcalc.cpp | 8 +- src/exman.cpp | 4 +- src/impf.cpp | 50 +++---- src/impf.h | 4 +- src/pp.cpp | 21 ++- src/pp.h | 5 +- src/strpak.cpp | 6 +- src/strpak.h | 14 +- test/unit/strpak.unit.cpp | 6 +- 24 files changed, 290 insertions(+), 265 deletions(-) diff --git a/src/CNDTYPES.DEF b/src/CNDTYPES.DEF index da21b8414..da1931ca0 100644 --- a/src/CNDTYPES.DEF +++ b/src/CNDTYPES.DEF @@ -77,8 +77,8 @@ FLOATP -- "float *" VOIDP -- "void *" DOW -- "short" // day of week, sun=0 in tdpak (1 less than DOWCH) MONTH -- "short" // month, jan=1 in tdpak -CH XCH "char" -CHP -- "char *" +CH XCH "char" +CULSTR -- "struct CULSTR" UCH -- "unsigned char" TI -- "SI" // (rat) table index (subscript); 0 means unset. diff --git a/src/CNFIELDS.DEF b/src/CNFIELDS.DEF index 725f9621b..59ccdbc35 100644 --- a/src/CNFIELDS.DEF +++ b/src/CNFIELDS.DEF @@ -42,8 +42,7 @@ DOY DOY LMDOY UNNONE SHOY SHOY LMNONE UNNONE USI USI LMNONE UNNONE LI LI LMNONE UNNONE -//CH CH LMNONE UNNONE unused 5-95, restore when desired -CHP CHP LMNONE UNNONE +CULSTR CULSTR LMNONE UNNONE FLOAT FLOAT LMNONE UNNONE FLOAT_GEZ FLOAT LMGEZ UNNONE FLOAT_GZ FLOAT LMGZ UNNONE diff --git a/src/CNRECS.DEF b/src/CNRECS.DEF index 897c104ad..f8da8130b 100644 --- a/src/CNRECS.DEF +++ b/src/CNRECS.DEF @@ -180,8 +180,8 @@ RECORD TOPRAT "top" *RAT /* top level RAT: contains control info and all once-on // see tp_SetCheckTimesteps() //TOP: inputs: location/air properties/ground properties - *f CHP tp_wfName // weather file path string - *f CHP tp_TDVfName // TDV (time dependent value) file path string + *f CULSTR tp_wfName // weather file path string + *f CULSTR tp_TDVfName // TDV (time dependent value) file path string *r LEN elevation // site elevation (for determining air density) (ft). defaults from weather file 1-95. *f TEMP refTemp // temp for computing the hum ratio (w) used in air-density calculations, default 70 F *f FRAC_GZ refRH // relative humidity (as fraction) ditto, default .6 (60%). @@ -299,35 +299,35 @@ RECORD TOPRAT "top" *RAT /* top level RAT: contains control info and all once-on *i *ARRAY 13 TI tp_coolDsCond // TI[ 13] DESCOND idx(s) + 0 terminator //TOP: inputs: reporting and exporting - *r CHP tp_exePath // full path to current .exe - *r CHP tp_exeInfo // info about current .exe (from header) + *r CULSTR tp_exePath // full path to current .exe + *r CULSTR tp_exeInfo // info about current .exe (from header) // build timestame, linker version, code size *r INT tp_exeCodeSize // code size, bytes (from exe header) - *r CHP tp_progVersion // program version identifier as string (for probing); set from ::ProgVersion - *r CHP tp_HPWHVersion // Ecotope HPWH (heat pump water heater) model version - *r CHP tp_cmdLineArgs // command line args for current input file + *r CULSTR tp_progVersion // program version identifier as string (for probing); set from ::ProgVersion + *r CULSTR tp_HPWHVersion // Ecotope HPWH (heat pump water heater) model version + *r CULSTR tp_cmdLineArgs // command line args for current input file // updated during session if multiple input files specified on command line *i SI runSerial // run #, 000-999, per (future 11-91) status file (meanwhile, see cnguts:cnRunSerial 7-92). - *i CHP runTitle // user text for report titles, footers, export title 11-22-91. - *r CHP runDateTime // run date & time string, set by cncult2.cpp:topStarPrf2(), used in reports & bin res file, 9-94. + *i CULSTR runTitle // user text for report titles, footers, export title 11-22-91. + *r CULSTR runDateTime // run date & time string, set by cncult2.cpp:topStarPrf2(), used in reports & bin res file, 9-94. //inputs for binary results files, for NREL, rob 11-93. *r cuz settable from cmd line switches. *r NOYESCH tp_brs // YES to generate basic binary results file, default NO. From input file or cmd line switch. *r NOYESCH tp_brHrly // YES to generate hourly binary results file, default NO. From input file or cmd line. // brf and brfHrly are intended to be independent, except monthly-hourly averages // in basic file may only be computed if brfHrly is also on, 11-20-93. - *i CHP tp_brFileName // file name for binary results, extension .brs and/or .bhr added. default: input file name. - // settable in DLL version only, only by command line switches. Default is file output (if brs/brHrly) only. + *i CULSTR tp_brFileName // file name for binary results, extension .brs and/or .bhr added. default: input file name. + // settable in DLL version only, only by command line switches. Default is file output (if brs/brHrly) only. *r BOO tp_brMem // Put binary results in Windows global memory and return handles; do not write file. *r BOO tp_brDiscardable // Put binary results in discardable memory as well as file, return handles. overrides brfMem. -//TOP: inputs: report page formatting 11-91 - *i CHP repHdrL // user-spec'd text for left end of report header line - *i CHP repHdrR // .. right +//TOP: inputs: report page formatting + *i CULSTR repHdrL // user-spec'd text for left end of report header line + *i CULSTR repHdrR // .. right *i SI repCpl // report characters per line *i SI repLpp // total number of lines per page (paper size) *i SI repTopM // top margin in lines; # newlines written above header *i SI repBotM // bottom margin in lines; not actually output - *i CHP tp_repTestPfx // prefix pre-pended to e.g. footer lines re hiding lines re automated testing + *i CULSTR tp_repTestPfx // prefix pre-pended to e.g. footer lines re hiding lines re automated testing // "" for normal runs, "!" re 3-2010 test framework. new 3-28-10 *declare "const char* tp_RepTestPfx() const;" @@ -444,7 +444,7 @@ RECORD TOPRAT "top" *RAT /* top level RAT: contains control info and all once-on //TOP: runtime: simulation date/time variables *m ANAME monStr // Month being simulated as (non-heap) string // autoSizing: "heating design day", or month for cooling. - *d CHP dateStr // Date being simulated as heap string + *d CULSTR dateStr // Date being simulated as heap string // autoSizing: eg "heating design day" or "Jul cooling design day". *d IDATE tp_date // Date: .month is 1-12, .mday 1-31, .wday 0-6. set/used: cnguts. used:cuparse;cgsolar;cgresult;cgenbal. // autoSizing: cool: near-mid-month day as used for solar calcs; heat: Dec 21. jDay ditto. @@ -1689,7 +1689,7 @@ RECORD RFI "reportFile" *RAT // REPORTFILE (RfiB) and EXPORTFILE (XfiB) (.what a *declare "RC rf_CheckForDupFileName();" *declare "int rf_CheckAccessAndAlias( const char* fName, char* &fNameAlias, const char** ppMsg=NULL);" //input - *i CHP fileName // file name, path optional, in dm (or pseudocode, but not "text"). *i cuz VEOI in cncult. + *i CULSTR fileName // file name, path optional, in dm (or pseudocode, but not "text"). *i cuz VEOI in cncult. *r FILESTATCH fileStat // fresh(overwrite,default)/new(err if exists)/append *i NOYESCH pageFmt // page formatting on no/yes //derived @@ -1718,7 +1718,7 @@ RECORD RI "report" *RAT // REPORT (RiB) and EXPORT (XiB) (.what altered) input r *i DOY rpDayEnd // end .. *i FLOAT_GZ rpBtuSf // energy (Btu) scale factor *s *e LI rpCond // condition: if given, rpt lines omitted when FALSE (SI; LI used to hold NAN) (LI currently unprobeable) - *i CHP rpTitle // title, for UDT, in dm + *i CULSTR rpTitle // title, for UDT, in dm *i SI rpCpl // chars per line, inputtable re UDT's (default -1="as wide as needed") *i RPTHDCH rpHeader // table header or export header yes/no (default yes) *i NOYESCH rpFooter // table footer (summary line) or export footer (just blank line?) yes/no (default yes) @@ -1741,12 +1741,12 @@ RECORD COL "reportCol" *RAT // holds info for columns in user-defined table repo *declare "virtual RC Validate( int options=0);" //input .ownTi is RI subscript of owning report/export. Column order is order of input. - *i CHP colHead // column head string, in dm. *i cuz VEOI in cncult.cpp:rpColT[]. + *i CULSTR colHead // column head string, in dm. *i cuz VEOI in cncult.cpp:rpColT[]. *i SI_GEZ colGap // space to left of column, default 1 *i SI colWid // column width *i SI colDec // colDecimals: max digits after point *i JUSTCH colJust // justification: C_JUSTCH_L or _R - *s *p VALNDT colVal // value .val and data type .dt (TYFL/TYSTR in input, DTFLOAT/DTCHP in run), used at end report interval. + *s *p VALNDT colVal // value .val and data type .dt (TYFL/TYSTR in input, DTFLOAT/DTCULSTR in run), used at end report interval. //derived TI nxColi // for runtime: COL subscript of next column in this report, 0 if last one *END // COL @@ -1774,7 +1774,7 @@ RECORD DVRI "dvri" *hideall *RAT // Date-dependent Virtual Report Info -- at run *r float rpBtuSf // energy (Btu) scale factor *s LI rpCond // condition: if given, report lines omitted when FALSE (SI; LI used to hold NAN for expression) *r SI rpCondGiven // nz if user-given condition: may be reflected in title (when 0, rpCond is TRUE). - *r CHP rpTitle // title, for UDT, in dm + *r CULSTR rpTitle // title, for UDT, in dm *r SI rpCpl // chars per line, inputtable for UDT's *r RPTHDCH rpHeader // table header or export header yes/no/col (default yes) *r NOYESCH rpFooter // table footer (summary line) or export footer (just blank line) yes/no (default yes) @@ -1800,8 +1800,8 @@ RECORD IMPF "importFile" *RAT // IMPORTFILE input (Impfib) and run (ImpfiB) reco *declare "void FC close();" *declare "void FC fnrtAl(SI nNfnr);" //input. name is required. - *f CHP fileName // file name, path optional, in heap or pseudocode. *i cuz VEOI in cncult. RQD. - *f CHP imTitle // title string. If given, file's must match. + *f CULSTR fileName // file name, path optional, in heap or pseudocode. *i cuz VEOI in cncult. RQD. + *f CULSTR imTitle // title string. If given, file's must match. *z SI imPhaseSpare // for possible future AUTOSIZE/MAINSIM/BOTH choice 6-95 *i IVLCH imFreq // frequency of record reads, Y M D H; HS and Subhour not allowed. RQD. *f NOYESCH hasHeader // file has header no/yes, default yes. @@ -1815,7 +1815,7 @@ RECORD IMPF "importFile" *RAT // IMPORTFILE input (Impfib) and run (ImpfiB) reco *declare "FILE* fh;" // file handle. Initial value, NULL, is not a valid file handle. *r LI posEndHdr // file pointer after header, for repositioning file after warmup //buffer - *r *hide CHP buf // file buffer, in heap + *declare "char* buf;" // file buffer, in heap *r USI bufSz // 0 or allocated size of buffer (actually 1 larger to hold \0) *h USI bufN // number of characters in buffer === subscript of 1st unused byte *h BOO eofRead // TRUE after end file has been input to buffer (unused records may remain in buffer) @@ -3378,7 +3378,7 @@ x *declare "RC rs_SetDefaultsClg();" *declare "enum { rsmOFF, rsmHEAT, rsmCOOL, rsmOAV, rsmCOUNT };" *i RSYSTY rs_type // system type (ACFURN, ACRES, ASHP, AC, FURN, RES) -*i CHP rs_desc // optional description string (e.g. model #) +*i CULSTR rs_desc // optional description string (e.g. model #) // included in perf map, *i NOYESCH rs_perfMap // if YES, make performance map (development aid) // writes file .csv @@ -4182,10 +4182,10 @@ RECORD DHWSYS "DHWSys" *RAT // input / runtime DHW system *s *e FLOAT ws_tOutPrimLT; // primary water heater outlet temp, F // for HPWH only, re DHWLOOPHEATER entering temp // best estimate from prior 1-min tick - *d TI ws_dayUsei; // idx of DHWDAYUSE - *d CHP ws_dayUseName; // name of DHWDAYUSE (resolved at runtime) + *d TI ws_dayUsei; // idx of DHWDAYUSE + *d CULSTR ws_dayUseName; // name of DHWDAYUSE (resolved at runtime) *r INT ws_childDHWDAYUSEFlag; // nz iff at least one child DHWSYS has specified ws_dayUseName - *declare "bool ws_HasDHWDAYUSEDraws() const { return ws_dayUseName != NULL || ws_childDHWDAYUSEFlag; }" + *declare "bool ws_HasDHWDAYUSEDraws() const { return !ws_dayUseName.IsNull() || ws_childDHWDAYUSEFlag; }" *h FLOAT_GEZ ws_parElec; // electrical parasitic power, W // for e.g. unmodeled recirculation pumps *i FLOAT_GZ ws_SDLM; // standard distribution loss multiplier diff --git a/src/RCDEF/dtypes.h b/src/RCDEF/dtypes.h index 0c1215f6c..c5862df8f 100644 --- a/src/RCDEF/dtypes.h +++ b/src/RCDEF/dtypes.h @@ -1,4 +1,4 @@ -/* DTYPES.H: data types include file automatically generated by rcdef.exe. */ +/* dtypes.h: data types include file automatically generated by rcdef.exe. */ /* this file is #included in cnglob.h. */ @@ -27,30 +27,20 @@ (Structures for records (as specified in records.def) are not here, but in several RCxxxx.H files whose names are given in records.def). */ -#if 0 -// debug aid: confirms that correct dtypes.h is being used in build -#pragma message( "RCDEF dtypes.h") -#endif - typedef int INT; typedef int* INTP; typedef short SI; typedef short BOO; typedef unsigned short USI; -#if CSE_ARCH == 64 -typedef int64_t LI; -typedef uint64_t ULI; -#else typedef long LI; typedef unsigned long ULI; -#endif typedef float FLOAT; typedef float * FLOATP; typedef void * VOIDP; typedef short DOW; typedef short MONTH; typedef char CH; -typedef char * CHP; +typedef struct CULSTR CULSTR; typedef unsigned char UCH; typedef SI TI; typedef char ANAME[64]; @@ -187,7 +177,7 @@ typedef float RANC; /* Data type defines names are DT Values stored in the field information in a record descriptor (also for - general use) consisting of Dttab offset plus bits (rcpak.h) as follows: + general use) consisting of Dttab offset plus bits as follows: DTBCHOICB (0x2000) Multiple-choice, "improved and simplified" CN style (see srd.h): takes one of several values given @@ -208,7 +198,7 @@ typedef float RANC; The position in Dttab comes from the "type handle" specified in dtypes.h; changing these invalidates compiled code. */ -#define DTNONE 0x0000 // supplied by rcdef (rob 12-1-91) +#define DTNONE 0x0000 // supplied by rcdef #define DTUNDEF 0xc000 // supplied by rcdef #define DTNA 0xc001 // supplied by rcdef #define DTINT 0x01 @@ -224,7 +214,7 @@ typedef float RANC; #define DTDOW 0x0b #define DTMONTH 0x0c #define DTCH 0x0d -#define DTCHP 0x0e +#define DTCULSTR 0x0e #define DTUCH 0x0f #define DTTI 0x10 #define DTANAME 0x11 @@ -290,55 +280,55 @@ typedef float RANC; #define DTWHHEATSRCCH 0x20ca #define DTWHTYPECH 0x20d0 #define DTWHASHPTYCH 0x20d7 -#define DTWHRESTYCH 0x2138 -#define DTDHWEUCH 0x213b -#define DTDHWEUXCH 0x2142 -#define DTDHWBRANCHMODELCH 0x214b -#define DTDHWLSEGTYCH 0x214f -#define DTDWHRTYCH 0x2152 -#define DTDHWDRMETH 0x2156 -#define DTPVMODCH 0x2159 -#define DTPVARRCH 0x215e -#define DTMOUNTCH 0x2163 -#define DTFENMODELCH 0x2166 -#define DTSIDECH 0x2169 -#define DTFILESTATCH 0x216c -#define DTIVLCH 0x2170 -#define DTRPTYCH 0x2177 -#define DTRPTHDCH 0x2188 -#define DTJUSTCH 0x218e -#define DTENDUSECH 0x2191 -#define DTAFCAT 0x21aa -#define DTHDAYCASECH 0x21b8 -#define DTFANAPPCH 0x21be -#define DTFANTYCH 0x21c6 -#define DTMOTTYCH 0x21cf -#define DTMOTPOSCH 0x21d2 -#define DTFANPLCH 0x21d6 -#define DTCOILAPPCH 0x21de -#define DTCOILTYCH 0x21e2 -#define DTECOTYCH 0x21eb -#define DTDUCTTYCH 0x21f0 -#define DTOAMNCH 0x21f3 -#define DTEXSHDCH 0x21f6 -#define DTINSHDCH 0x21f9 -#define DTHUMTHCH 0x21fc -#define DTOFFONCH 0x21ff -#define DTTPSTGCH 0x2202 -#define DTCTTYCH 0x2205 -#define DTCCHCM 0x2209 -#define DTDIFFSAMECH 0x2210 -#define DTAHSCHVC 0x4213 -#define DTOFFAVAILVC 0x4216 -#define DTTFANSCHVC 0x4219 -#define DTOFFONVC 0x421e -#define DTNOYESVC 0x4221 -#define DTOFFAVAILONVC 0x4224 -#define DTVENTAVAILVC 0x4228 -#define DTBATCTRLALGVC 0x422d -#define DTDHWDRSIG 0x4230 -#define DTTSCMNC 0x423c -#define DTRANC 0x4242 +#define DTWHRESTYCH 0x213b +#define DTDHWEUCH 0x213e +#define DTDHWEUXCH 0x2145 +#define DTDHWBRANCHMODELCH 0x214e +#define DTDHWLSEGTYCH 0x2152 +#define DTDWHRTYCH 0x2155 +#define DTDHWDRMETH 0x2159 +#define DTPVMODCH 0x215c +#define DTPVARRCH 0x2161 +#define DTMOUNTCH 0x2166 +#define DTFENMODELCH 0x2169 +#define DTSIDECH 0x216c +#define DTFILESTATCH 0x216f +#define DTIVLCH 0x2173 +#define DTRPTYCH 0x217a +#define DTRPTHDCH 0x218b +#define DTJUSTCH 0x2191 +#define DTENDUSECH 0x2194 +#define DTAFCAT 0x21ad +#define DTHDAYCASECH 0x21bb +#define DTFANAPPCH 0x21c1 +#define DTFANTYCH 0x21c9 +#define DTMOTTYCH 0x21d2 +#define DTMOTPOSCH 0x21d5 +#define DTFANPLCH 0x21d9 +#define DTCOILAPPCH 0x21e1 +#define DTCOILTYCH 0x21e5 +#define DTECOTYCH 0x21ee +#define DTDUCTTYCH 0x21f3 +#define DTOAMNCH 0x21f6 +#define DTEXSHDCH 0x21f9 +#define DTINSHDCH 0x21fc +#define DTHUMTHCH 0x21ff +#define DTOFFONCH 0x2202 +#define DTTPSTGCH 0x2205 +#define DTCTTYCH 0x2208 +#define DTCCHCM 0x220c +#define DTDIFFSAMECH 0x2213 +#define DTAHSCHVC 0x4216 +#define DTOFFAVAILVC 0x4219 +#define DTTFANSCHVC 0x421c +#define DTOFFONVC 0x4221 +#define DTNOYESVC 0x4224 +#define DTOFFAVAILONVC 0x4227 +#define DTVENTAVAILVC 0x422b +#define DTBATCTRLALGVC 0x4230 +#define DTDHWDRSIG 0x4233 +#define DTTSCMNC 0x423f +#define DTRANC 0x4245 /* Choice data type CHOICE INDEX defines @@ -501,92 +491,95 @@ typedef float RANC; #define C_WHASHPTYCH_AOSMITHHPTU80 8 #define C_WHASHPTYCH_AOSMITHHPTU80DR 9 #define C_WHASHPTYCH_AOSMITHCAHP120 10 -#define C_WHASHPTYCH_SANDEN40 11 -#define C_WHASHPTYCH_SANDEN80 12 -#define C_WHASHPTYCH_SANDEN120 13 -#define C_WHASHPTYCH_SANDENGS3 14 -#define C_WHASHPTYCH_GE2012 15 -#define C_WHASHPTYCH_GE2014 16 -#define C_WHASHPTYCH_GE2014_80 17 -#define C_WHASHPTYCH_GE2014_80DR 18 -#define C_WHASHPTYCH_GE2014STDMODE 19 -#define C_WHASHPTYCH_GE2014STDMODE_80 20 -#define C_WHASHPTYCH_BWC202065 21 -#define C_WHASHPTYCH_RHEEMHB50 22 -#define C_WHASHPTYCH_RHEEMHBDR2250 23 -#define C_WHASHPTYCH_RHEEMHBDR4550 24 -#define C_WHASHPTYCH_RHEEMHBDR2265 25 -#define C_WHASHPTYCH_RHEEMHBDR4565 26 -#define C_WHASHPTYCH_RHEEMHBDR2280 27 -#define C_WHASHPTYCH_RHEEMHBDR4580 28 -#define C_WHASHPTYCH_RHEEM2020PREM40 29 -#define C_WHASHPTYCH_RHEEM2020PREM50 30 -#define C_WHASHPTYCH_RHEEM2020PREM65 31 -#define C_WHASHPTYCH_RHEEM2020PREM80 32 -#define C_WHASHPTYCH_RHEEM2020BUILD40 33 -#define C_WHASHPTYCH_RHEEM2020BUILD50 34 -#define C_WHASHPTYCH_RHEEM2020BUILD65 35 -#define C_WHASHPTYCH_RHEEMHBDRBUILD80 36 -#define C_WHASHPTYCH_RHEEMPLUGINSHARED40 37 -#define C_WHASHPTYCH_RHEEMPLUGINSHARED50 38 -#define C_WHASHPTYCH_RHEEMPLUGINSHARED65 39 -#define C_WHASHPTYCH_RHEEMPLUGINSHARED80 40 -#define C_WHASHPTYCH_RHEEMPLUGINDEDICATED40 41 -#define C_WHASHPTYCH_RHEEMPLUGINDEDICATED50 42 -#define C_WHASHPTYCH_STIEBEL220E 43 -#define C_WHASHPTYCH_AOSMITHSHPT50 44 -#define C_WHASHPTYCH_AOSMITHSHPT66 45 -#define C_WHASHPTYCH_AOSMITHSHPT80 46 -#define C_WHASHPTYCH_GENERIC1 47 -#define C_WHASHPTYCH_GENERIC2 48 -#define C_WHASHPTYCH_GENERIC3 49 -#define C_WHASHPTYCH_GENERIC 50 -#define C_WHASHPTYCH_UEF2GENERIC 51 -#define C_WHASHPTYCH_WORSTCASEMEDIUM 52 -#define C_WHASHPTYCH_AWHSTIER3GENERIC40 53 -#define C_WHASHPTYCH_AWHSTIER3GENERIC50 54 -#define C_WHASHPTYCH_AWHSTIER3GENERIC65 55 -#define C_WHASHPTYCH_AWHSTIER3GENERIC80 56 -#define C_WHASHPTYCH_COLMACCXV5_SP 57 -#define C_WHASHPTYCH_COLMACCXA10_SP 58 -#define C_WHASHPTYCH_COLMACCXA15_SP 59 -#define C_WHASHPTYCH_COLMACCXA20_SP 60 -#define C_WHASHPTYCH_COLMACCXA25_SP 61 -#define C_WHASHPTYCH_COLMACCXA30_SP 62 -#define C_WHASHPTYCH_COLMACCXV5_MP 63 -#define C_WHASHPTYCH_COLMACCXA10_MP 64 -#define C_WHASHPTYCH_COLMACCXA15_MP 65 -#define C_WHASHPTYCH_COLMACCXA20_MP 66 -#define C_WHASHPTYCH_COLMACCXA25_MP 67 -#define C_WHASHPTYCH_COLMACCXA30_MP 68 -#define C_WHASHPTYCH_NYLEC25A_SP 69 -#define C_WHASHPTYCH_NYLEC60A_SP 70 -#define C_WHASHPTYCH_NYLEC90A_SP 71 -#define C_WHASHPTYCH_NYLEC125A_SP 72 -#define C_WHASHPTYCH_NYLEC185A_SP 73 -#define C_WHASHPTYCH_NYLEC250A_SP 74 -#define C_WHASHPTYCH_NYLEC60AC_SP 75 -#define C_WHASHPTYCH_NYLEC90AC_SP 76 -#define C_WHASHPTYCH_NYLEC125AC_SP 77 -#define C_WHASHPTYCH_NYLEC185AC_SP 78 -#define C_WHASHPTYCH_NYLEC250AC_SP 79 -#define C_WHASHPTYCH_MITSU_QAHVN136TAUHPB_SP 80 -#define C_WHASHPTYCH_NYLEC60A_MP 81 -#define C_WHASHPTYCH_NYLEC90A_MP 82 -#define C_WHASHPTYCH_NYLEC125A_MP 83 -#define C_WHASHPTYCH_NYLEC185A_MP 84 -#define C_WHASHPTYCH_NYLEC250A_MP 85 -#define C_WHASHPTYCH_NYLEC60AC_MP 86 -#define C_WHASHPTYCH_NYLEC90AC_MP 87 -#define C_WHASHPTYCH_NYLEC125AC_MP 88 -#define C_WHASHPTYCH_NYLEC185AC_MP 89 -#define C_WHASHPTYCH_NYLEC250AC_MP 90 -#define C_WHASHPTYCH_RHEEM_HPHD60HNU_201_MP 91 -#define C_WHASHPTYCH_RHEEM_HPHD60VNU_201_MP 92 -#define C_WHASHPTYCH_RHEEM_HPHD135HNU_483_MP 93 -#define C_WHASHPTYCH_RHEEM_HPHD135VNU_483_MP 94 -#define C_WHASHPTYCH_SCALABLE_SP 95 -#define C_WHASHPTYCH_SCALABLE_MP 96 +#define C_WHASHPTYCH_AOSMITHHPTS50 11 +#define C_WHASHPTYCH_AOSMITHHPTS66 12 +#define C_WHASHPTYCH_AOSMITHHPTS80 13 +#define C_WHASHPTYCH_SANDEN40 14 +#define C_WHASHPTYCH_SANDEN80 15 +#define C_WHASHPTYCH_SANDEN120 16 +#define C_WHASHPTYCH_SANDENGS3 17 +#define C_WHASHPTYCH_GE2012 18 +#define C_WHASHPTYCH_GE2014 19 +#define C_WHASHPTYCH_GE2014_80 20 +#define C_WHASHPTYCH_GE2014_80DR 21 +#define C_WHASHPTYCH_GE2014STDMODE 22 +#define C_WHASHPTYCH_GE2014STDMODE_80 23 +#define C_WHASHPTYCH_BWC202065 24 +#define C_WHASHPTYCH_RHEEMHB50 25 +#define C_WHASHPTYCH_RHEEMHBDR2250 26 +#define C_WHASHPTYCH_RHEEMHBDR4550 27 +#define C_WHASHPTYCH_RHEEMHBDR2265 28 +#define C_WHASHPTYCH_RHEEMHBDR4565 29 +#define C_WHASHPTYCH_RHEEMHBDR2280 30 +#define C_WHASHPTYCH_RHEEMHBDR4580 31 +#define C_WHASHPTYCH_RHEEM2020PREM40 32 +#define C_WHASHPTYCH_RHEEM2020PREM50 33 +#define C_WHASHPTYCH_RHEEM2020PREM65 34 +#define C_WHASHPTYCH_RHEEM2020PREM80 35 +#define C_WHASHPTYCH_RHEEM2020BUILD40 36 +#define C_WHASHPTYCH_RHEEM2020BUILD50 37 +#define C_WHASHPTYCH_RHEEM2020BUILD65 38 +#define C_WHASHPTYCH_RHEEMHBDRBUILD80 39 +#define C_WHASHPTYCH_RHEEMPLUGINSHARED40 40 +#define C_WHASHPTYCH_RHEEMPLUGINSHARED50 41 +#define C_WHASHPTYCH_RHEEMPLUGINSHARED65 42 +#define C_WHASHPTYCH_RHEEMPLUGINSHARED80 43 +#define C_WHASHPTYCH_RHEEMPLUGINDEDICATED40 44 +#define C_WHASHPTYCH_RHEEMPLUGINDEDICATED50 45 +#define C_WHASHPTYCH_STIEBEL220E 46 +#define C_WHASHPTYCH_AOSMITHSHPT50 47 +#define C_WHASHPTYCH_AOSMITHSHPT66 48 +#define C_WHASHPTYCH_AOSMITHSHPT80 49 +#define C_WHASHPTYCH_GENERIC1 50 +#define C_WHASHPTYCH_GENERIC2 51 +#define C_WHASHPTYCH_GENERIC3 52 +#define C_WHASHPTYCH_GENERIC 53 +#define C_WHASHPTYCH_UEF2GENERIC 54 +#define C_WHASHPTYCH_WORSTCASEMEDIUM 55 +#define C_WHASHPTYCH_AWHSTIER3GENERIC40 56 +#define C_WHASHPTYCH_AWHSTIER3GENERIC50 57 +#define C_WHASHPTYCH_AWHSTIER3GENERIC65 58 +#define C_WHASHPTYCH_AWHSTIER3GENERIC80 59 +#define C_WHASHPTYCH_COLMACCXV5_SP 60 +#define C_WHASHPTYCH_COLMACCXA10_SP 61 +#define C_WHASHPTYCH_COLMACCXA15_SP 62 +#define C_WHASHPTYCH_COLMACCXA20_SP 63 +#define C_WHASHPTYCH_COLMACCXA25_SP 64 +#define C_WHASHPTYCH_COLMACCXA30_SP 65 +#define C_WHASHPTYCH_COLMACCXV5_MP 66 +#define C_WHASHPTYCH_COLMACCXA10_MP 67 +#define C_WHASHPTYCH_COLMACCXA15_MP 68 +#define C_WHASHPTYCH_COLMACCXA20_MP 69 +#define C_WHASHPTYCH_COLMACCXA25_MP 70 +#define C_WHASHPTYCH_COLMACCXA30_MP 71 +#define C_WHASHPTYCH_NYLEC25A_SP 72 +#define C_WHASHPTYCH_NYLEC60A_SP 73 +#define C_WHASHPTYCH_NYLEC90A_SP 74 +#define C_WHASHPTYCH_NYLEC125A_SP 75 +#define C_WHASHPTYCH_NYLEC185A_SP 76 +#define C_WHASHPTYCH_NYLEC250A_SP 77 +#define C_WHASHPTYCH_NYLEC60AC_SP 78 +#define C_WHASHPTYCH_NYLEC90AC_SP 79 +#define C_WHASHPTYCH_NYLEC125AC_SP 80 +#define C_WHASHPTYCH_NYLEC185AC_SP 81 +#define C_WHASHPTYCH_NYLEC250AC_SP 82 +#define C_WHASHPTYCH_MITSU_QAHVN136TAUHPB_SP 83 +#define C_WHASHPTYCH_NYLEC60A_MP 84 +#define C_WHASHPTYCH_NYLEC90A_MP 85 +#define C_WHASHPTYCH_NYLEC125A_MP 86 +#define C_WHASHPTYCH_NYLEC185A_MP 87 +#define C_WHASHPTYCH_NYLEC250A_MP 88 +#define C_WHASHPTYCH_NYLEC60AC_MP 89 +#define C_WHASHPTYCH_NYLEC90AC_MP 90 +#define C_WHASHPTYCH_NYLEC125AC_MP 91 +#define C_WHASHPTYCH_NYLEC185AC_MP 92 +#define C_WHASHPTYCH_NYLEC250AC_MP 93 +#define C_WHASHPTYCH_RHEEM_HPHD60HNU_201_MP 94 +#define C_WHASHPTYCH_RHEEM_HPHD60VNU_201_MP 95 +#define C_WHASHPTYCH_RHEEM_HPHD135HNU_483_MP 96 +#define C_WHASHPTYCH_RHEEM_HPHD135VNU_483_MP 97 +#define C_WHASHPTYCH_SCALABLE_SP 98 +#define C_WHASHPTYCH_SCALABLE_MP 99 #define C_WHRESTYCH_TYPICAL 1 #define C_WHRESTYCH_SWINGTANK 2 #define C_DHWEUCH_FAUCET 1 diff --git a/src/cgresult.cpp b/src/cgresult.cpp index 8c9316ab3..590748c13 100644 --- a/src/cgresult.cpp +++ b/src/cgresult.cpp @@ -1755,7 +1755,7 @@ LOCAL void FC vpUdtRpColHeads( DVRI *dvrip) // user-defined report column heads p = q + colp->colGap; // nominal start of column, to adjust for overflow / justification q = p + colWid + sTween; // nominal start of next column's gap, if there is another col //s is next avail position in buffer = min value for p - dt = colp->colVal.ty; // data type, DTFLOAT or DTCHP, from VALNDT struct member + dt = colp->colVal.ty; // data type, DTFLOAT or DTCULSTR, from VALNDT struct member jus = colp->colJust; // justification if (!jus) jus = dt==DTFLOAT ? C_JUSTCH_R : C_JUSTCH_L; // default right-justified for numbers, left for strings @@ -1857,7 +1857,7 @@ LOCAL void FC vpUdtRpRow( DVRI *dvrip) // virtual print current interval row fo // format data - int dt = colp->colVal.ty; // data type, DTFLOAT or DTCHP, from VALNDT struct member + int dt = colp->colVal.ty; // data type, DTFLOAT or DTCULSTR, from VALNDT struct member JUSTCH jus = colp->colJust; // justification if (!jus) jus = dt==DTFLOAT ? C_JUSTCH_R : C_JUSTCH_L; // default right-justified for numbers, left for strings @@ -1907,7 +1907,7 @@ LOCAL void FC vpUdtRpRow( DVRI *dvrip) // virtual print current interval row fo #endif break; - case DTCHP: + case DTCULSTR: text = (char *)colp->colVal.val; break; // string: no conversion @@ -1957,7 +1957,7 @@ LOCAL void FC vpUdtExRow( DVRI *dvrip) // virtual print current interval row for // format data - USI dt = colp->colVal.ty; // data type, DTFLOAT or DTCHP, from VALNDT struct member + USI dt = colp->colVal.ty; // data type, DTFLOAT or DTCULSTR, from VALNDT struct member char* text; if (ISNANDLE(colp->colVal.val)) // if UNSET (bug)(exman.h) or expression not evaluated yet, show "?". text = "?"; // show "?". Issue message? treat UNSET differently? @@ -1981,7 +1981,7 @@ LOCAL void FC vpUdtExRow( DVRI *dvrip) // virtual print current interval row for break; } - case DTCHP: + case DTCULSTR: text = (char *)(colp->colVal.val); break; // string: no conversion; supply quotes @@ -1992,10 +1992,10 @@ LOCAL void FC vpUdtExRow( DVRI *dvrip) // virtual print current interval row for // store text, quoted if string, and separating comma - if (dt==DTCHP) + if (dt==DTCULSTR) *s++ = '"'; memcpyPass( s, text, strlenInt(text) ); // store text / point past - if (dt==DTCHP) + if (dt==DTCULSTR) *s++ = '"'; if (colp->nxColi) // if not last column *s++ = ','; // separating comma diff --git a/src/cncult2.cpp b/src/cncult2.cpp index 99e7148ea..db2447e22 100644 --- a/src/cncult2.cpp +++ b/src/cncult2.cpp @@ -844,7 +844,7 @@ void TOPRAT::freeDM() // free child objects in DM const char* TOPRAT::When( IVLCH _ivl) const // date / time doc for error messages // result is in TmpStr[] = transient / do not delete { - const char* dateStrX = dateStr ? dateStr : "(no date)"; + const char* dateStrX = dateStr.CStrDflt("(no date)"); const char* s = NULL; switch (_ivl) { diff --git a/src/cncult4.cpp b/src/cncult4.cpp index 67b728f1a..3e043edaf 100644 --- a/src/cncult4.cpp +++ b/src/cncult4.cpp @@ -322,7 +322,7 @@ RC topCol( int isExport) colp->colVal.ty = DTFLOAT; break; // set data type to use when converting to print during run case TYSTR: - colp->colVal.ty = DTCHP; + colp->colVal.ty = DTCULSTR; break; default: colip->oer( (char *)MH_S0547, colip->colVal.ty); // "Bad data type (colVal.dt) %d" @@ -1404,25 +1404,29 @@ COL::COL( basAnc* b, TI i, SI noZ /*=0*/) //----------------------------------------------------------------------------- COL::~COL() { +#if 0 +?CULSTR? // free (or decrement reference count of) derived class heap pointers in record being destroyed cupfree( DMPP( colHead)); - if (colVal.ty==TYSTR || colVal.ty==DTCHP) // if colVal.val contains a string (not a float or nothing) + if (colVal.ty==TYSTR || colVal.ty==DTCULSTR) // if colVal.val contains a string (not a float or nothing) cupfree( DMPP( colVal.val)); /* if not UNSET or NANDLE, and if not a pointer to string constant inline in pseudo-code, dmfree it. cueval.cpp. */ +#endif + } // COL::~COL //----------------------------------------------------------------------------- /*virtual*/ void COL::Copy( const record* pSrc, int options/*=0*/) { // free (or decr ref count for) derived class heap pointer(s) in record about to be overwritten cupfree( DMPP( colHead)); - if (colVal.ty==TYSTR || colVal.ty==DTCHP) // if contains a string, not a float + if (colVal.ty==TYSTR || colVal.ty==DTCULSTR) // if contains a string, not a float cupfree( DMPP( colVal.val)); /* if not UNSET or NANDLE, and if not a pointer to string constant inline in pseudo-code, dmfree it. cueval.cpp. */ // use base class Copy. Copies derived class members too, per record type (.rt): RECORD MUST BE CONSTRUCTED record::Copy( pSrc, options); // verfies that src and this are same record type. lib\ancrec.cpp. // increment reference count for pointer(s) just copied cupIncRef( DMPP( colHead)); - if (colVal.ty==TYSTR || colVal.ty==DTCHP) + if (colVal.ty==TYSTR || colVal.ty==DTCULSTR) cupIncRef( DMPP( colVal.val)); // if not UNSET or NANDLE, and if not a pointer to string constant } // COL::Copy //----------------------------------------------------------------------------- @@ -1433,14 +1437,14 @@ COL::~COL() #endif // free (or decr ref count for) derived class heap pointer(s) in record about to be overwritten cupfree( DMPP( colHead)); - if (colVal.ty==TYSTR || colVal.ty==DTCHP) // if contains a string, not a float + if (colVal.ty==TYSTR || colVal.ty==DTCULSTR) // if contains a string, not a float cupfree( DMPP( colVal.val)); /* if not UNSET or NANDLE, and if not a pointer to string constant inline in pseudo-code, dmfree it. cueval.cpp. */ // use base class Copy. Copies derived class members too, per record type (.rt): RECORD MUST BE CONSTRUCTED record::CopyFrom( pSrc, copyName, dupPtrs); // verfies that src and this are same record type. lib\ancrec.cpp. // increment reference count for pointer(s) just copied cupIncRef( DMPP( colHead)); - if (colVal.ty==TYSTR || colVal.ty==DTCHP) + if (colVal.ty==TYSTR || colVal.ty==DTCULSTR) cupIncRef( DMPP( colVal.val)); // if not UNSET or NANDLE, and if not a pointer to string constant #if defined( _DEBUG) Validate(); @@ -1452,11 +1456,14 @@ COL::~COL() int options/*=0*/) // options bits { RC rc = record::Validate(options); +#if 0 + ?CULSTR? if (rc == RCOK) { if (colHead && !dmIsGoodPtr(colHead, "COL::Validate", WRN)) rc = RCBAD; } +#endif return rc; } // COL::Validate //--------------------------------------------------------------------------------------- diff --git a/src/cnguts.cpp b/src/cnguts.cpp index 1fd834d7f..070a6db7a 100644 --- a/src/cnguts.cpp +++ b/src/cnguts.cpp @@ -2570,12 +2570,12 @@ void TOPRAT::tp_DoDateDowStuff() // do date, day of week, and holiday stuff for tp_date.mday, tddMonAbbrev( tp_date.month)); else t = monStr; - strcat( strcpy( dateStr, t), " cooling design day"); // eg "Jan cooling design day" + dateStr = strtcat(t, " cooling design day"); // eg "Jan cooling design day" } else // heating design day. Not month-specific. { strncpy0( monStr, "heating design day", sizeof( monStr)); // inconsistent with cooling just above - strcpy( dateStr, "heating design day"); + dateStr = "heating design day"; } } @@ -2591,7 +2591,7 @@ void TOPRAT::tp_DoDateDowStuff() // do date, day of week, and holiday stuff for tddyi( tp_date, jDay, year); // convert current simulation julian date to month-day, tdpak.cpp. // sets tp_date.month (1-12), .mday (1-31), .wday (0=Sun). - tddis( tp_date, dateStr); // convert to string for rpt hdrs. tdpak.cpp. + dateStr = tddis( tp_date); // convert to string for rpt hdrs. tdpak.cpp. // main sim beginning of month flag, month string, local end of month date diff --git a/src/cnloads.cpp b/src/cnloads.cpp index f76fdea81..d7e52eee9 100644 --- a/src/cnloads.cpp +++ b/src/cnloads.cpp @@ -1487,7 +1487,7 @@ RC ZNR::zn_AirFlowVsTsup() f = fopen(strtprintf("AirCurves.csv"), "wt"); if (!f) return RCBAD; // can't open file - fprintf(f, "%s\n", rs->rs_desc ? rs->rs_desc : "Curves"); + fprintf(f, "%s\n", rs->rs_desc.CStrDflt( "Curves")); fprintf(f, "Mon,Day,Hr,Sh,fAmf,amf,tReg,amfNeeded\n"); @@ -4023,7 +4023,7 @@ static float tdbO[] = { 75.f, 85.f, 95.f, 105.f, 115.f, 125.f, 0.f }; RSYS rsSave( *this); // save for restore at exit // (we alter mbrs here) - fprintf( f, "%s\n", rs_desc ? rs_desc : nameX); + fprintf(f, "%s\n", rs_desc.CStrDflt(nameX)); fprintf( f, "cfm,IDB (F),IWB (F),ODB (F),CapTot (kBtuh),CapSen (kBtuh),Pwr (kW)\n"); @@ -4087,7 +4087,7 @@ RC RSYS::rs_ExportCorrelationValues() // write CSV file containing values from R RSYS rsSave(*this); // save for restore at exit // (we alter mbrs here) - fprintf(f, "%s\n", rs_desc ? rs_desc : nameX); + fprintf(f, "%s\n", rs_desc.CStrDflt(nameX)); fprintf(f, "cfm/ton,ODB (F),EDB (F),EWB (F),RH,SHR,fCap,fEER,fInp\n"); @@ -4150,9 +4150,9 @@ RC RSYS::rs_PerfDataASHP() // (we alter mbrs here) fprintf( f, "%s,All values include rating fan power,,%s,CSE %s\n", - rs_desc ? rs_desc : nameX, - Top.runDateTime, - Top.tp_progVersion); + rs_desc.CStrDflt( nameX), + Top.runDateTime.CStr(), + Top.tp_progVersion.CStr()); fprintf( f, "HSPF=%0.2f, HSPF CSE=%0.3f,,HSPF MP=%0.3f,,HSPF ESL=%0.3f,,HSPF E+=%0.3f\n", rs_HSPF, diff --git a/src/cse.cpp b/src/cse.cpp index 764b124de..df8c129a5 100644 --- a/src/cse.cpp +++ b/src/cse.cpp @@ -1291,18 +1291,19 @@ void TOPRAT::tp_SetOptions() // apply command line options etc. to Top record if (_repTestPfx) // if command line prefix specified { // overwrite prefix from input (if any) - strsave( tp_repTestPfx, _repTestPfx); + tp_repTestPfx = _repTestPfx; } - strsave( tp_progVersion, ::ProgVersion); // program version text (for probes) + + tp_progVersion = ::ProgVersion; // program version text (for probes) WStr tExePath = enExePath(); - strsave( tp_exePath, tExePath.c_str()); + tp_exePath = tExePath; - strsave( tp_HPWHVersion, DHWHEATER::wh_GetHPWHVersion().c_str()); + tp_HPWHVersion = DHWHEATER::wh_GetHPWHVersion(); - strsave( tp_exeInfo, enExeInfo( tExePath, tp_exeCodeSize).c_str()); + tp_exeInfo = enExeInfo( tExePath, tp_exeCodeSize); - strsave( tp_cmdLineArgs, cmdLineArgs); + tp_cmdLineArgs = cmdLineArgs; setScreenQuiet( verbose == -1); // per user input, set rmkerr.cpp flag // suppresses non-error screen messages @@ -1311,7 +1312,8 @@ void TOPRAT::tp_SetOptions() // apply command line options etc. to Top record } // TOPRAT::tp_SetOptions //----------------------------------------------------------------------------- const char* TOPRAT::tp_RepTestPfx() const -{ return tp_repTestPfx ? tp_repTestPfx : ""; +{ + return tp_repTestPfx.CStrDflt(""); // prefix or "" if no prefix } // TOPRAT::tp_RepTestPfx //----------------------------------------------------------------------------- RC TOPRAT::tp_CheckOutputFilePath( // check output file name diff --git a/src/cul.cpp b/src/cul.cpp index 4a6432827..94720acc0 100644 --- a/src/cul.cpp +++ b/src/cul.cpp @@ -2432,7 +2432,7 @@ x } case TYID: case TYSTR: - dtMustBe = DTCHP; // others dt's too? + dtMustBe = DTCULSTR; // others dt's too? sz = 4; break; diff --git a/src/cul.h b/src/cul.h index 484de4bb2..0354d2d27 100644 --- a/src/cul.h +++ b/src/cul.h @@ -233,7 +233,7 @@ III. Member Input // TYSI DTSI TYSI cannot accept exprs. // TYLLI DTLI ? add SI limits? // TYFL DTFLOAT -// TYSTR DTCHP Dm char * is stored +// TYSTR DTCULSTR Dm char * is stored #define TYREF 0x2000 // TI Reference to record in basAnc .b. Input by name (like TYID); looked up and subscr stored at RUN. #define TYIREF 0x3000 // TI. Immediate-resolution reference to already-defined entry in basAnc .b. Input like TYID. // TYIREF not TYREF used in ownTi's of rats that may own entries in others rats, diff --git a/src/cuparse.cpp b/src/cuparse.cpp index f6f5e6fec..3112bce4d 100644 --- a/src/cuparse.cpp +++ b/src/cuparse.cpp @@ -2082,7 +2082,7 @@ LOCAL RC FC fcnImport( SFST *f) (char *)f->id, // cast near ptr to far (INT)1, parSp->evf ? evfTx(parSp->evf,1) : ""); // evf bit expected, but if none, omit explanation. - char *impfName = *(char **)pv; // fetch pointer to import file name text in code frame + const char* impfName = *(char **)pv; // fetch pointer to import file name text in code frame // parse stack frame must be retained till impfName used in impFcn call, then dropped. if (tokeNot(CUTCOM)) // get comma between args diff --git a/src/cuprobe.cpp b/src/cuprobe.cpp index 2844ff2a0..b639524cd 100644 --- a/src/cuprobe.cpp +++ b/src/cuprobe.cpp @@ -644,7 +644,7 @@ LOCAL RC FC lopNty4dt( // for DT- data type, get TY- type and PSOP to load it f sz = 4; break; - case DTCHP: + case DTCULSTR: lop = PSRATLODS; // record load string: loads char * from record, duplicates. ty = TYSTR; sz = 4; diff --git a/src/cvpak.cpp b/src/cvpak.cpp index bdbe71833..0519dc773 100644 --- a/src/cvpak.cpp +++ b/src/cvpak.cpp @@ -150,7 +150,7 @@ char * FC cvin2sBuf( char *buf, void *data, USI dt, SI units, USI _mfw, USI _fmt char * FC cvin2s( // Convert internal format data to external format string in Tmpstr const void* data, // Pointer to data in internal form, or NULL to do nothing and return NULL - // (for DTCHP, is ptr to ptr to string to print, 11-91) */ + // (for DTCULSTR, is ptr to ptr to string to print, 11-91) */ USI dt, // Data type of internal data, or DTNA for "--" or DTUNDEF for "?" from cvfddisp() SI units, // Units of internal data (made signed 5-89) USI _mfw, // Maximum field width (not including '\0'). If requested format results in string longer @@ -398,7 +398,7 @@ x } goto strjust; #endif - case DTCHP: + case DTCULSTR: data = *(char * *)data; goto strjust; // data is pointer to string diff --git a/src/dhwcalc.cpp b/src/dhwcalc.cpp index 0459970f6..25551c818 100644 --- a/src/dhwcalc.cpp +++ b/src/dhwcalc.cpp @@ -1955,7 +1955,7 @@ RC DHWSYS::ws_WriteDrawCSV()// write this hour draw info to CSV } else { // headings - fprintf(ws_pFDrawCSV, "%s,%s\n", name, Top.runDateTime); + fprintf(ws_pFDrawCSV, "%s,%s\n", name, Top.runDateTime.CStr()); fprintf(ws_pFDrawCSV, "%s %s\n", ProgName, ProgVersion); fprintf(ws_pFDrawCSV, "Mon,Day,DOW,Hr,MinHr,MinDay,tIn (F),tInHR (F),tHot (F),vHot (gal)\n"); } @@ -3497,10 +3497,10 @@ RC HPWHLINK::hw_DoSubhrTick( // calcs for 1 tick else { // headings fprintf(hw_pFCSV, "%s,%s,%s\n", - hw_pOwner->GetDescription(), Top.repHdrL, Top.runDateTime); + hw_pOwner->GetDescription(), Top.repHdrL.CStr(), Top.runDateTime.CStr()); fprintf(hw_pFCSV, "%s%s %s %s HPWH %s\n", Top.tp_RepTestPfx(), ProgName, ProgVersion, ProgVariant, - Top.tp_HPWHVersion); + Top.tp_HPWHVersion.CStr()); #if defined( HPWH_DUMPSMALL) fprintf(wh_pFCSV, "minYear,draw( L)\n"); #else @@ -5154,7 +5154,7 @@ static float tpIX[] = { 40.f, 50.f, 60.f, 70.f, -1.f }; if (!pF) return; // headings - fprintf(pF, "DWHR efficiency,%s\n", Top.runDateTime); + fprintf(pF, "DWHR efficiency,%s\n", Top.runDateTime.CStr()); fprintf(pF, "effRated,%0.2f\n", wr_effRated); fprintf(pF, "tdI, tpI, vd, vp, ef\n"); diff --git a/src/exman.cpp b/src/exman.cpp index d366289fe..adda4158a 100644 --- a/src/exman.cpp +++ b/src/exman.cpp @@ -811,7 +811,7 @@ RC FC exWalkRecs() for (int f = 0; f < b->nFlds; f++) // loop fields in record { USI dt = sFdtab[ b->fir[f].fdTy ].dtype; // get data type from field info - if ( GetDttab(dt).size==4 // if any 4-byte field (FLOAT, CHP, ... ) (GetDttab: srd.h) + if ( GetDttab(dt).size==4 // if any 4-byte field (FLOAT, CULSTR, ... ) (GetDttab: srd.h) || dt==DTVALNDT ) /* or value+data type substruct, which begins with a 4-byte value field (for reportCol 11-91) */ { @@ -1513,7 +1513,7 @@ RC rerIV( // inner fcn to issue runtime error message; msg handle ok for fmt; t isWhat, Top.tp_autoSizing ? "autoSizing " : ""); else if (!Top.tp_autoSizing) // main sim sprintf( when, "%s at hour/subhour %d/%d on %s of simulation%s", - isWhat, Top.iHr+1, Top.iSubhr, Top.dateStr, Top.isWarmup ? " warmup" : "" ); + isWhat, Top.iHr+1, Top.iSubhr, Top.dateStr.CStr(), Top.isWarmup ? " warmup" : ""); else // autoSizing { int nIt = Top.tp_auszDsDayItr; diff --git a/src/impf.cpp b/src/impf.cpp index 2a661c90c..d9074bb75 100644 --- a/src/impf.cpp +++ b/src/impf.cpp @@ -81,15 +81,15 @@ TODO 11-2016 (when documentation written) // local classes /////////////////////////////////////////////////////////////////////////////// struct FNRT // fields-by-number table struct for IMPF.fnrt[] in heap -{ CHP fieldName; // NULL or field name (in heap) per file header, for error messages - SI fnmi; // 0 or field name info subscript for IFFNM.p[iffnmi].fnm[] - CHP fp; // NULL or pointer to field's null-terminated text in current record in .buf (do not free here) - BOO nDecoded; // TRUE if numeric value of field in current record has been decoded - FLOAT fnv; // if nDecoded, this is the numeric value -- don't decode twice +{ const char* fieldName; // NULL or field name (in heap) per file header, for error messages + SI fnmi; // 0 or field name info subscript for IFFNM.p[iffnmi].fnm[] + char* fp; // NULL or pointer to field's null-terminated text in current record in .buf (do not free here) + BOO nDecoded; // TRUE if numeric value of field in current record has been decoded + FLOAT fnv; // if nDecoded, this is the numeric value -- don't decode twice }; //============================================================================= struct FNMT // field names table struct for IFFNM.fnmt[] in heap -{ CHP fieldName; // field name used in Import() (no entry for fields not used by name in Import()s) +{ char* fieldName; // field name used in Import() (no entry for fields not used by name in Import()s) SI fnr; // field NUMBER established when file opened }; //============================================================================= @@ -104,11 +104,11 @@ class ImpFldDcdr // re errors RC rc1; // RCOK if axFile successfully completed RC rc2; // RCOK if axscanFnm or -Fnr successfully completed - char *impfName; // "" or import file name or object name text to use in error messages + const char* impfName; // "" or import file name or object name text to use in error messages int fileIx; // CSE input file name index for use in error messages const char* srcFile; // text for fileIx: "" or CSE source file in which import() occurred int line; // line # in cse source file - char *fieldName; // field name text for error messages, when known (no names if no file header) + const char* fieldName; // field name text for error messages, when known (no names if no file header) const char** pms; // c'tor arg: where to return TmpStr error msg pointer, so caller can embed in msg giving context. public: ImpFldDcdr( int fileIx, int line, const char** pms); // c'tor. *pms receives TmpStr error submessage pointer. @@ -160,8 +160,8 @@ RC FC ImpFldDcdr::axFile( int iffnmi) // access import file, set .iffnmi, .iffn " Import file subscript %d out of range 1 to %d." */ srcFile, line, impfi, ImpfB.n )); impf = &ImpfB.p[impfi]; // point Import File record - impfName = impf->fileName && *impf->fileName // name for error messages: dos pathName if present, - ? impf->fileName : impf->name; // else object name, which is "" if not given + impfName = impf->fileName.CStrDflt(impf->name); // name for error messages: pathName if present, + // else object name, which is "" if not given if (!impf->isOpen) // unless file is open and buffer allocated ok return IMPERR(( (char *)MH_R1907, /* "%s(%d): Internal error:\n" " Import file %s was not opened successfully." */ @@ -246,8 +246,8 @@ RC FC ImpFldDcdr::axscanFnr(int _fnr) // access and scan field by number, set .f this->fnr = _fnr; // store field #. scanNextField has alloc'd .fnrt[] this big. used eg in decNum. fnrt = impf->fnrt + _fnr; // store pointer to field names info entry - if (fnrt->fieldName) // for NULL (eg no header), leave "" stored by c'tor - fieldName = fnrt->fieldName; // retrieve field name for number -- set at open if file had header + if (fnrt->fieldName) // for NULL (eg no header), leave "" stored by c'tor + fieldName = fnrt->fieldName; // retrieve field name for number -- set at open if file had header rc2 = RCOK; // say field accessed and scanned successfully return RCOK; @@ -331,7 +331,7 @@ Import() function compiling: cuparse.cpp does syntax, calling code here to handle IFFNM records, cuparse.cpp emits pseudo-code. */ -LOCAL RC impFcnFile( char *impfName, TI *pIffnmi, USI fileIx, int line, IVLCH *imFreq, IFFNM **ppIffnm); +LOCAL RC impFcnFile( const char* impfName, TI *pIffnmi, USI fileIx, int line, IVLCH *imFreq, IFFNM **ppIffnm); //-------------------------------------------------------------------------- // Following 2 fcns make IFFNM record if new name, return its subscript. @@ -339,7 +339,7 @@ LOCAL RC impFcnFile( char *impfName, TI *pIffnmi, USI fileIx, int line, IVLCH *i //-------------------------------------------------------------------------- RC impFcn( // compile support for Import() of field by field number - char *impfName, // IMPORTFILE object name (1st arg of IMPORT()) + const char* impfName, // IMPORTFILE object name (1st arg of IMPORT()) TI *pIffnmi, // receives subscript of IFFNM record (added here if new) for use in pseudo-code int fileIx, // file name index of CSE input file being compiled: put in IFFNM record when created ... int line, // line number in srcFile ... so errors can show location of first use. @@ -363,12 +363,12 @@ RC impFcn( // compile support for Import() of field by field number //--------------------------------------------------------------------------------------------------------------------------- RC impFcn( // compile support for Import() of named field - char *impfName, // IMPORTFILE object name (1st arg of IMPORT()) - TI *pIffnmi, // receives subscript of IFFNM record (added here if new) for use in pseudo-code + const char* impfName, // IMPORTFILE object name (1st arg of IMPORT()) + TI* pIffnmi, // receives subscript of IFFNM record (added here if new) for use in pseudo-code int fileIx, // file name index of input file being compiled: put in IFFNM record when created ... int line, // line number in srcFile ... so errors can show location of first use. - IVLCH *imFreq, // receives frequency (hour-day-month-year) of import file, or safe assumption if fwd reference. - char *fieldName, // requested field name: saved here in table in IFFNM record for resolution at file open + IVLCH* imFreq, // receives frequency (hour-day-month-year) of import file, or safe assumption if fwd reference. + const char* fieldName, // requested field name: saved here in table in IFFNM record for resolution at file open SI *fnmi ) // receives find name index for use in pseudo-code // called from cuparse.cpp. May be declared in impf.h not cncult.h. @@ -417,12 +417,12 @@ RC impFcn( // compile support for Import() of named field //--------------------------------------------------------------------------------------------------------------------------- LOCAL RC impFcnFile( // find or add IFFNM record - char *impfName, // import file object name (1st arg in Import() fcn) - TI *pIffnmi, // receives IffnmB subscript of IFFNM record - USI fileIx, // file name index of CSE input file being compiled: put in IFFNM record when created ... - int line, // line number in srcFile ... so errors can show location of (first) use. - IVLCH *imFreq, // receives frequency (hour-day-month-year) of import file, or safe assumption if fwd reference. - IFFNM **ppIffnm ) // receives pointer to record + const char* impfName, // import file object name (1st arg in Import() fcn) + TI* pIffnmi, // receives IffnmB subscript of IFFNM record + USI fileIx, // file name index of CSE input file being compiled: put in IFFNM record when created ... + int line, // line number in srcFile ... so errors can show location of (first) use. + IVLCH* imFreq, // receives frequency (hour-day-month-year) of import file, or safe assumption if fwd reference. + IFFNM** ppIffnm ) // receives pointer to record // this is common part of named and numbered field impFcn() fcns. { @@ -831,7 +831,7 @@ IMPF::~IMPF() // IMPORTFILE destructor for (int fnr = 1; fnr < fnrtNAl; fnr++) // loop over table entries { dmfree( DMPP( fnrt[fnr].fieldName)); // decref/free string member - //note member CHP fp points into buf, not to own heap block. + // note member fp points into buf, not to own heap block. } dmfree( DMPP( fnrt)); // free the table block if allocated, and NULL pointer. dmpak.cpp. fnrtNAl = 0; // say none allocated diff --git a/src/impf.h b/src/impf.h index 8d1b8dacb..dd60f5911 100644 --- a/src/impf.h +++ b/src/impf.h @@ -9,8 +9,8 @@ const int FNRMAX = 1024; // compile support functions used from cuparse.cpp -RC impFcn( char *impfName, TI *iffnmi, int fileIx, int line, IVLCH *imFreq, char *fieldName, SI *fnmi); -RC impFcn( char *impfName, TI *iffnmi, int fileIx, int line, IVLCH *imFreq, SI fnr); +RC impFcn( const char* impfName, TI* iffnmi, int fileIx, int line, IVLCH* imFreq, const char* fieldName, SI* fnmi); +RC impFcn( const char* impfName, TI* iffnmi, int fileIx, int line, IVLCH* imFreq, SI fnr); RC FC clearImpf(); // Import stuff special clear function RC FC topImpf(); // check/process ImportFiles at end of input diff --git a/src/pp.cpp b/src/pp.cpp index db4b573b2..5235349e1 100644 --- a/src/pp.cpp +++ b/src/pp.cpp @@ -494,15 +494,15 @@ void ppAddPath( const char* paths) // add ;-separated path(s) to be searched for ppPath.add(paths); } // ppAddPath //========================================================================== -BOO ppFindFile( // find file using paths specified with ppAddPaths. Issues no message. +bool ppFindFile( // find file using paths specified with ppAddPaths. Issues no message. const char* fname, - char *fullPath ) // receives full path if RCOK is returned. [CSE_MAX_PATH] -// returns TRUE iff found + char* fullPath ) // receives full path if RCOK is returned. [CSE_MAX_PATH] +// returns true iff found { return ppPath.find( fname, fullPath); } // ppFindFile //========================================================================== -BOO ppFindFile( // find file using paths specified with ppAddPaths. Issues no message. +bool ppFindFile( // find file using paths specified with ppAddPaths. Issues no message. char* &fname) // file to find // returned updated to full path iff found // returns TRUE iff found @@ -516,6 +516,19 @@ BOO ppFindFile( // find file using paths specified with ppAddPaths. Issues no m return bFound; } // ppFindFile //========================================================================== +bool ppFindFile( // find file using paths specified with ppAddPaths. Issues no message. + CULSTR& fname) // file to find + // returned updated to full path iff found +// returns TRUE iff found +{ + char fullPath[CSE_MAX_PATH]; + bool bFound = ppPath.find(fname, fullPath); + if (bFound && _stricmp(fname.CStr(), fullPath)) // if found path different (else don't save for less fragmentation) + fname = fullPath; // replace name with full pathname + + return bFound; +} // ppFindFile +//========================================================================== RC FC ppOpen( const char* fname, char *defex) // open and init cal non-res user language main input source file // searches current directory, and drives/directories per preceding ppAddPath calls. diff --git a/src/pp.h b/src/pp.h index 99b911f9d..70d9f5e46 100644 --- a/src/pp.h +++ b/src/pp.h @@ -17,8 +17,9 @@ SI FC ppClargIf( const char* s, RC *prc /*,era?*/ ); // pp.cpp...: re getting preprocessed text (see pp.cpp for local fcns) void FC ppClean( CLEANCASE cs); // init/cleanup void ppAddPath( const char* paths); // add path(s) to search for input/include files. 2-21-95. -BOO ppFindFile( const char *fname, char *fullPath); // search pp paths, return full file path. 2-21-95. -BOO ppFindFile( char* &fname); // ditto, update fname to path found +bool ppFindFile( const char *fname, char *fullPath); // search pp paths, return full file path. 2-21-95. +bool ppFindFile( char* &fname); // ditto, update fname to path found +bool ppFindFile(CULSTR& fname); // ditto, update fname to path found RC FC ppOpen( const char* fname, char *defex); // open file void FC ppClose(); // close file(s) USI FC ppGet( char *p, USI n); // get preprocessed text diff --git a/src/strpak.cpp b/src/strpak.cpp index 6d9bac319..727fac8ad 100644 --- a/src/strpak.cpp +++ b/src/strpak.cpp @@ -40,7 +40,7 @@ CULSTR::CULSTR() : us_hStr(0) //----------------------------------------------------------------------------- CULSTR::CULSTR(const CULSTR& culStr) : us_hStr( 0) { - Set(culStr.c_str()); + Set(culStr.CStr()); } //----------------------------------------------------------------------------- CULSTR::CULSTR(const char* str) : us_hStr( 0) @@ -53,13 +53,15 @@ CULSTR::~CULSTR() { Set(nullptr); } +#if 0 //----------------------------------------------------------------------------- bool CULSTR::IsNull() const { return UStrMgr.us_IsNull(us_hStr); } +#endif //----------------------------------------------------------------------------- -const char* CULSTR::c_str() const +const char* CULSTR::CStr() const { return UStrMgr.us_CStr(us_hStr); diff --git a/src/strpak.h b/src/strpak.h index 749c4e84a..1279db0de 100644 --- a/src/strpak.h +++ b/src/strpak.h @@ -21,10 +21,18 @@ struct CULSTR XXSTR us_hStr; - operator const char* () { return c_str(); }; - const char* c_str() const; + operator const char* () { return CStr(); }; + CULSTR& operator =(const char* s) { Set(s); return *this; } + CULSTR& operator =(const std::string& s) { Set(s); return *this; } + const char* CStr() const; + const char* CStrDflt(const char* sDflt) const + { return IsSet() ? CStr() : sDflt; + } void Set(const char* str); - bool IsNull() const; + void Set(const std::string& s) { Set(s.c_str()); } + + bool IsNull() const { return us_hStr == 0; } + bool IsSet() const { return us_hStr != 0; } }; diff --git a/test/unit/strpak.unit.cpp b/test/unit/strpak.unit.cpp index f5b31904c..0f2451c1b 100644 --- a/test/unit/strpak.unit.cpp +++ b/test/unit/strpak.unit.cpp @@ -103,18 +103,18 @@ TEST(strpak, CULSTR_funtions) { // "null" string EXPECT_EQ(us1.IsNull(), true); - const char* s1 = us1.c_str(); + const char* s1 = us1.CStr(); EXPECT_STREQ(s1, ""); const char* sTest = "Testing"; us1.Set( sTest); EXPECT_EQ(us1.IsNull(), false); - s1 = us1.c_str(); + s1 = us1.CStr(); EXPECT_STREQ(s1, sTest); CULSTR us2("A rather longer string"); CULSTR us3(us1); - EXPECT_STREQ(us3.c_str(), sTest); + EXPECT_STREQ(us3.CStr(), sTest); us2.Set(nullptr); CULSTR us4("Here is another string that should go in slot 2"); From b5abdfbdc92e141cca0968043e445c936a83afd5 Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Thu, 9 Mar 2023 19:09:11 -0500 Subject: [PATCH 07/25] CULSTR progress --- src/cncult2.cpp | 33 +++--- src/cueval.cpp | 28 ++++++ src/cueval.h | 5 +- src/pp.cpp | 2 + src/pp.h | 6 +- src/strpak.cpp | 204 +++++++++++++++++++++++--------------- src/strpak.h | 54 +++------- test/unit/strpak.unit.cpp | 8 +- 8 files changed, 202 insertions(+), 138 deletions(-) diff --git a/src/cncult2.cpp b/src/cncult2.cpp index db2447e22..7a96239cc 100644 --- a/src/cncult2.cpp +++ b/src/cncult2.cpp @@ -789,21 +789,21 @@ RC TOPRAT::brFileCk() // check/clean up inputs re binary results files, rob 12-2 record::Copy( pSrc); // verifies class (rt) same, copies whole derived class record. ancrec.cpp. - cupIncRef( DMPP(tp_wfName)); // incr reference counts of dm strings if nonNULL - cupIncRef( DMPP(tp_TDVfName)); - cupIncRef( DMPP(runTitle)); // cupIncRef: cueval.cpp: if pointer is not NANDLE nor pointer to - cupIncRef( DMPP(runDateTime)); // "text" embedded in pseudocode, call dmpak:dmIncRef to increment - cupIncRef( DMPP(repHdrL)); // block's reference count (or dup block). - cupIncRef( DMPP(repHdrR)); - cupIncRef( DMPP(dateStr)); - cupIncRef( DMPP( tp_repTestPfx)); - cupIncRef( DMPP( tp_progVersion)); - cupIncRef( DMPP( tp_HPWHVersion)); - cupIncRef( DMPP( tp_exePath)); - cupIncRef( DMPP( tp_exeInfo)); - cupIncRef( DMPP( tp_cmdLineArgs)); + cupFixAfterCopy( tp_wfName); // fix CULSTRs (duplicate non-null strings) + cupFixAfterCopy( tp_TDVfName); + cupFixAfterCopy( runTitle); + cupFixAfterCopy( runDateTime); + cupFixAfterCopy( repHdrL); + cupFixAfterCopy( repHdrR); + cupFixAfterCopy( dateStr); + cupFixAfterCopy( tp_repTestPfx); + cupFixAfterCopy( tp_progVersion); + cupFixAfterCopy( tp_HPWHVersion); + cupFixAfterCopy( tp_exePath); + cupFixAfterCopy( tp_exeInfo); + cupFixAfterCopy( tp_cmdLineArgs); #ifdef BINRES - cupIncRef( DMPP( tp_brFileName)); + cupFixAfterCopy( ( tp_brFileName)); #endif // monStr does not point into dm. @@ -816,6 +816,8 @@ TOPRAT::~TOPRAT() //----------------------------------------------------------------------------- void TOPRAT::freeDM() // free child objects in DM { +#if 0 +?CULSTR? cupfree( DMPP( tp_wfName)); // decRef or free dm (heap) strings cupfree( DMPP( tp_TDVfName)); // decRef or free dm (heap) strings cupfree( DMPP( runTitle)); // cupfree: cueval.cpp: if pointer is not NANDLE nor pointer to @@ -833,6 +835,9 @@ void TOPRAT::freeDM() // free child objects in DM #ifdef BINRES cupfree( DMPP(tp_brFileName)); #endif +#endif + + delete tp_pAirNet; tp_pAirNet = NULL; diff --git a/src/cueval.cpp b/src/cueval.cpp index ecb568141..36cff2399 100644 --- a/src/cueval.cpp +++ b/src/cueval.cpp @@ -1309,6 +1309,34 @@ RC FC cupIncRef( DMP* pp, int erOp/*=ABT*/) // if dm pointer, duplicate block or return RCOK; // like dmIncRef() } // cupIncRef //============================================================================ +void cupFixAfterCopy( CULSTR& culStr) // if dm pointer, duplicate block or ++ref count after pointer copied; +// do not disturb if NANDLE or pointer to constant in pseudo-code. +// nop if s is NULL. +{ + if (culStr.IsSet()) + { + const char* p = culStr.CStr(); + if (!ISNANDLE(p)) // nop if expression handle + { + if (IsDM(DMP( p))) + culStr.FixAfterCopy(); + // else: probably a PSPKONN constant in code; don't duplicate + } + } +} // cupFixAfterCopy +//---------------------------------------------------------------------------- +void cupRelease( // free a dm string without disturbing a NANDLE or string constant in code + CULSTR& culStr) // string +{ + if (culStr.IsSet()) + { const char* p = culStr.CStr(); + if (!ISNANDLE(p)) // nop if expression handle + { + culStr.Release( !IsDM( DMP( p))); + } + } +} // cupRelease +//============================================================================ char * FC cuStrsaveIf( char *s) // save a copy of string in dm if string is now inline in pseudo-code // use when desired to retain string result of cuEval() but delete the pseudo-code that produced it diff --git a/src/cueval.h b/src/cueval.h index f4ea3ab8d..f90901f14 100644 --- a/src/cueval.h +++ b/src/cueval.h @@ -228,9 +228,12 @@ XSI runtrace; // non-0 to display debugging info during execution // cueval.c RC FC cuEvalTop( void *ip); RC FC cuEvalR( void *ip, void **ppv, const char **pmsg, USI *pBadH); -RC FC cupfree( DMP *p); // was RC FC cupfree( void **pp); 7-92 +RC FC cupfree( DMP *p); RC FC cupIncRef( DMP *p, int erOp=ABT); char * FC cuStrsaveIf( char *s); +void cupRelease(CULSTR& culStr); +void cupFixAfterCopy(CULSTR& culStr); + int CDEC printif( int flag, const char* fmt, ... ); // end of cueval.h diff --git a/src/pp.cpp b/src/pp.cpp index 5235349e1..5074c8a5e 100644 --- a/src/pp.cpp +++ b/src/pp.cpp @@ -502,6 +502,7 @@ bool ppFindFile( // find file using paths specified with ppAddPaths. Issues no return ppPath.find( fname, fullPath); } // ppFindFile //========================================================================== +#if 0 bool ppFindFile( // find file using paths specified with ppAddPaths. Issues no message. char* &fname) // file to find // returned updated to full path iff found @@ -515,6 +516,7 @@ bool ppFindFile( // find file using paths specified with ppAddPaths. Issues no } return bFound; } // ppFindFile +#endif //========================================================================== bool ppFindFile( // find file using paths specified with ppAddPaths. Issues no message. CULSTR& fname) // file to find diff --git a/src/pp.h b/src/pp.h index 70d9f5e46..c3f8cdb65 100644 --- a/src/pp.h +++ b/src/pp.h @@ -16,9 +16,11 @@ SI FC ppClargIf( const char* s, RC *prc /*,era?*/ ); // pp.cpp...: re getting preprocessed text (see pp.cpp for local fcns) void FC ppClean( CLEANCASE cs); // init/cleanup -void ppAddPath( const char* paths); // add path(s) to search for input/include files. 2-21-95. -bool ppFindFile( const char *fname, char *fullPath); // search pp paths, return full file path. 2-21-95. +void ppAddPath( const char* paths); // add path(s) to search for input/include files +bool ppFindFile( const char *fname, char *fullPath); // search pp paths, return full file path +#if 0 bool ppFindFile( char* &fname); // ditto, update fname to path found +#endif bool ppFindFile(CULSTR& fname); // ditto, update fname to path found RC FC ppOpen( const char* fname, char *defex); // open file void FC ppClose(); // close file(s) diff --git a/src/strpak.cpp b/src/strpak.cpp index 727fac8ad..013d2e7c9 100644 --- a/src/strpak.cpp +++ b/src/strpak.cpp @@ -21,7 +21,8 @@ static char THIS_FILE[] = __FILE__; #endif -// Tmpstr: General temporary string buffer. Many uses, via strtemp(). +// === Tmpstr === +// General temporary string buffer. Many uses, via strtemp(). // Implemented as a ring buffer. When full, buffer is re-used from start. // Thus strings in buffer survive "for a while". Do not use for permanent strings. const size_t TMPSTRSZ = 400000; // size of Tmpstr[]. @@ -30,40 +31,87 @@ static char Tmpstr[ TMPSTRSZ+2]; // buffer. // +2 extra bytes at end hold flag re overwrite check (obsolete? 7-10) static int TmpstrNx = 0; // Next available byte in Tmpstr[]. -#if 1 -// Str -static USTRMGR UStrMgr; +// == CULTSTR == +// Persistent string type that can be manipulated in the CUL realm. +// (e.g. user input data and expressions, probes etc.) +// Implemented as indicies into a vector of std::string. +// Important motivation is 4-byte size (same as float). +// Cannot use char * due to 8-byte size on 64 bit. -CULSTR::CULSTR() : us_hStr(0) +// CULSTREL: one element in vector of strings +// = std::string plus integer that chains free elements. +struct CULSTREL { -} + CULSTREL() : usl_freeChainNext{ 0 }, usl_str{ nullptr } + { } +#if 0 + CULSTREL(int size) : usl_freeChainNext{ 0 }, usl_str{ nullptr } + { + if (size > 0) + dmal(DMPP(usl_str), size, ABT); + } +#endif + CULSTREL(CULSTREL&& src) noexcept + : usl_str{ src.usl_str }, usl_freeChainNext{ src.usl_freeChainNext } + { + src.usl_str = nullptr; + } + ~CULSTREL() + { + usl_freeChainNext = 0; + dmfree(DMPP(usl_str)); + } + + char* usl_str; // string data + HCULSTR usl_freeChainNext; // next element in chain of + // unused CULTRELs + char* usl_Set(const char* str); + +}; // struct CULSTREL //----------------------------------------------------------------------------- -CULSTR::CULSTR(const CULSTR& culStr) : us_hStr( 0) +char* CULSTREL::usl_Set(const char* s) { - Set(culStr.CStr()); -} -//----------------------------------------------------------------------------- -CULSTR::CULSTR(const char* str) : us_hStr( 0) + int sz = strlen(s) + 1; + dmral(DMPP(usl_str), sz, ABT); + return strcpy(usl_str, s); +} // CULSTREL::usl_Set + +//============================================================================= +class CULSTRMGR { - Set(str); +public: + CULSTRMGR(); + ~CULSTRMGR() { }; -} + bool us_IsNull(HCULSTR hCulStr) const; + bool us_AllocMightMove() const; + HCULSTR us_Alloc(); + void us_Release(HCULSTR& hCulStr, bool bNullPtr = false); + void us_Set(HCULSTR hCulStr, const char* str); + const char* us_CStr(HCULSTR hCulStr) const; + + +private: + std::vector us_vectCULSTREL; + HCULSTR us_freeChainHead; +}; // class CULSTRMGR + +static CULSTRMGR CulStrMgr; //----------------------------------------------------------------------------- -CULSTR::~CULSTR() +CULSTR::CULSTR(const CULSTR& culStr) : us_hCulStr( 0) { - Set(nullptr); + Set(culStr.CStr()); } -#if 0 //----------------------------------------------------------------------------- -bool CULSTR::IsNull() const +CULSTR::CULSTR(const char* str) : us_hCulStr( 0) { - return UStrMgr.us_IsNull(us_hStr); + Set(str); + } -#endif //----------------------------------------------------------------------------- const char* CULSTR::CStr() const { - return UStrMgr.us_CStr(us_hStr); + return CulStrMgr.us_CStr(us_hCulStr); } //----------------------------------------------------------------------------- @@ -72,113 +120,113 @@ void CULSTR::Set( { if (!str) { - UStrMgr.us_Release(us_hStr); - us_hStr = 0; + CulStrMgr.us_Release( us_hCulStr); + // us_hCulStr = 0 in us_Release } else { if (IsNull()) - { - if (UStrMgr.us_AllocMightMove()) - str = strtmp(str); - us_hStr = UStrMgr.us_Alloc(); // can move! + { // this CULSTR does not have an allocated slot + if (CulStrMgr.us_AllocMightMove()) + str = strtmp(str); // str may be pointing into string vector + us_hCulStr = CulStrMgr.us_Alloc(); // can move! } - UStrMgr.us_Set(us_hStr, str); + CulStrMgr.us_Set(us_hCulStr, str); } - - - } //----------------------------------------------------------------------------- -USTREL::USTREL(int size /*=-1*/) - : us_str(), us_status(0) +void CULSTR::Release( + bool bNullPtr /*= false*/) +// do not call for special cases (not DM, NANDAT, ) { - - if (size > 0) - us_str.reserve(size); -} + CulStrMgr.us_Release(us_hCulStr, bNullPtr); +} // CULSTR::FixAfterCopy //----------------------------------------------------------------------------- -USTREL::~USTREL() +void CULSTR::FixAfterCopy() +// do not call for special cases (not DM, NANDAT, ) { - us_status = 0; -} -//----------------------------------------------------------------------------- -USTRMGR::USTRMGR() + if (IsSet()) + { + const char* culStr = CStr(); + us_hCulStr = 0; + Set(culStr); + } +} // CULSTR::FixAfterCopy + +//============================================================================= +CULSTRMGR::CULSTRMGR() : us_freeChainHead( 0) { - us_Alloc(); // element 0 (reserved) - } //----------------------------------------------------------------------------- -USTRMGR::~USTRMGR() +bool CULSTRMGR::us_IsNull(HCULSTR hCulStr) const { + return hCulStr==0 || us_vectCULSTREL[hCulStr].usl_freeChainNext != 0; -} -//----------------------------------------------------------------------------- -bool USTRMGR::us_IsNull(XXSTR hStr) const -{ - return hStr==0 || us_strels[hStr].us_status != 0; - -} // USTRMGR::us_IsNULL +} // CULSTRMGR::us_IsNULL //----------------------------------------------------------------------------- -bool USTRMGR::us_AllocMightMove() const +bool CULSTRMGR::us_AllocMightMove() const { return us_freeChainHead == 0 - && us_strels.size() == us_strels.capacity(); - + && us_vectCULSTREL.size() == us_vectCULSTREL.capacity(); } //----------------------------------------------------------------------------- -XXSTR USTRMGR::us_Alloc( - int size /*=-1*/) +HCULSTR CULSTRMGR::us_Alloc() { - XXSTR hStr = 0; + HCULSTR hCulStr = 0; if (us_freeChainHead) - { hStr = us_freeChainHead; - us_freeChainHead = us_strels[hStr].us_status; + { hCulStr = us_freeChainHead; + us_freeChainHead = us_vectCULSTREL[hCulStr].usl_freeChainNext; } else - { us_strels.emplace_back(size); - hStr = us_strels.size() - 1; + { + us_vectCULSTREL.emplace_back(); + hCulStr = us_vectCULSTREL.size() - 1; } - return hStr; + return hCulStr; } //----------------------------------------------------------------------------- -void USTRMGR::us_Release( - XXSTR hStr) +void CULSTRMGR::us_Release( + HCULSTR& hCulStr, + bool bNullPtr /*=false*/) // true: set { - if (!hStr) + if (!hCulStr) return; - us_strels[hStr].us_status = us_freeChainHead; + CULSTREL& el = us_vectCULSTREL[hCulStr]; - us_freeChainHead = hStr; + // string pointer: do not free (memory will be reused) + if (bNullPtr) + el.usl_str = nullptr; // but maybe set null + // caller says it does not point to heap -} + el.usl_freeChainNext = us_freeChainHead; + us_freeChainHead = hCulStr; + + hCulStr = 0; + +} // CULSTRMGR::us_Release //----------------------------------------------------------------------------- -void USTRMGR::us_Set( - XXSTR hStr, +void CULSTRMGR::us_Set( + HCULSTR hCulStr, const char* str) { - us_strels[hStr].us_str = str; + us_vectCULSTREL[hCulStr].usl_Set(str); } //----------------------------------------------------------------------------- -const char* USTRMGR::us_CStr( - XXSTR hStr) const +const char* CULSTRMGR::us_CStr( + HCULSTR hCulStr) const { - return us_strels[hStr].us_str.c_str(); + return hCulStr ? us_vectCULSTREL[hCulStr].usl_str : ""; } - -#endif - - /////////////////////////////////////////////////////////////////////////////// //----------------------------------------------------------------------------- diff --git a/src/strpak.h b/src/strpak.h index 1279db0de..13df84060 100644 --- a/src/strpak.h +++ b/src/strpak.h @@ -7,19 +7,19 @@ #if !defined( _STRPAK_H) #define _STRPAK_H -#if 1 -// #include +// == CULSTR == +// Persistent string type that can be manipulated in the CUL realm. -using XXSTR = uint32_t; // string handle +using HCULSTR = uint32_t; // string handle struct CULSTR { - CULSTR(); - CULSTR(const CULSTR& ulstr); + CULSTR() : us_hCulStr(0) {} + CULSTR(const CULSTR& culStr); CULSTR(const char* s); - ~CULSTR(); + ~CULSTR() { Set(nullptr); }; - XXSTR us_hStr; + HCULSTR us_hCulStr; operator const char* () { return CStr(); }; CULSTR& operator =(const char* s) { Set(s); return *this; } @@ -31,43 +31,13 @@ struct CULSTR void Set(const char* str); void Set(const std::string& s) { Set(s.c_str()); } - bool IsNull() const { return us_hStr == 0; } - bool IsSet() const { return us_hStr != 0; } + void Release(bool bNullPtr = false); + void FixAfterCopy(); -}; + bool IsNull() const { return us_hCulStr == 0; } + bool IsSet() const { return us_hCulStr != 0; } -struct USTREL -{ - USTREL(int size = -1); - ~USTREL(); - - std::string us_str; - int us_status; -}; - -class USTRMGR -{ -public: - USTRMGR(); - ~USTRMGR(); - - bool us_IsNull( XXSTR hStr) const; - bool us_AllocMightMove() const; - XXSTR us_Alloc(int size = -1); - void us_Release(XXSTR hStr); - void us_Set(XXSTR hStr, const char* str); - const char* us_CStr(XXSTR hStr) const; - - -private: - std::vector us_strels; - XXSTR us_freeChainHead; - - - -}; - -#endif +}; // struct CULSTR /////////////////////////////////////////////////////////////////////////// diff --git a/test/unit/strpak.unit.cpp b/test/unit/strpak.unit.cpp index 0f2451c1b..bfca2b655 100644 --- a/test/unit/strpak.unit.cpp +++ b/test/unit/strpak.unit.cpp @@ -118,10 +118,16 @@ TEST(strpak, CULSTR_funtions) { us2.Set(nullptr); CULSTR us4("Here is another string that should go in slot 2"); - EXPECT_EQ(us4.us_hStr, 2); + EXPECT_EQ(us4.us_hCulStr, 2); EXPECT_STREQ((const char*)us1, sTest); + CULSTR us5; + us5.us_hCulStr = us3.us_hCulStr; + us5.FixAfterCopy(); + EXPECT_STREQ(us3.CStr(), sTest); + EXPECT_STREQ(us5.CStr(), sTest); + EXPECT_NE(us3.us_hCulStr, us5.us_hCulStr); } #endif From a2ee030be4837382b6da5240df097d01ed125572 Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Mon, 13 Mar 2023 16:02:22 -0400 Subject: [PATCH 08/25] CULSTR WIP (before ANAME change) --- src/cgresult.cpp | 4 +- src/cncult.cpp | 1 - src/cncult2.cpp | 43 +++++------- src/cncult4.cpp | 81 ++++++++--------------- src/cncult6.cpp | 1 - src/cnloads.cpp | 1 - src/cueval.cpp | 12 ---- src/cueval.h | 1 - src/cul.cpp | 33 +++++----- src/dhwcalc.cpp | 5 ++ src/exman.cpp | 16 +++-- src/impf.cpp | 20 ++---- src/strpak.cpp | 168 ++++++++++++++++++++++++++++------------------- src/strpak.h | 13 +++- 14 files changed, 195 insertions(+), 204 deletions(-) diff --git a/src/cgresult.cpp b/src/cgresult.cpp index 590748c13..f5408122e 100644 --- a/src/cgresult.cpp +++ b/src/cgresult.cpp @@ -1863,7 +1863,7 @@ LOCAL void FC vpUdtRpRow( DVRI *dvrip) // virtual print current interval row fo jus = dt==DTFLOAT ? C_JUSTCH_R : C_JUSTCH_L; // default right-justified for numbers, left for strings SI dec = colp->colDec; // decimals, defaulted to -1 if not given int ptAdj = 0; // rob's decimal point position adjustment - char* text = NULL; + const char* text = NULL; USI cvFmt; float fv; if (ISNANDLE(colp->colVal.val)) // if UNSET (bug)(exman.h) or expression not evaluated yet, show "?". @@ -1908,7 +1908,7 @@ LOCAL void FC vpUdtRpRow( DVRI *dvrip) // virtual print current interval row fo break; case DTCULSTR: - text = (char *)colp->colVal.val; + text = (*reinterpret_cast(&colp->colVal.val)).CStr(); break; // string: no conversion default: diff --git a/src/cncult.cpp b/src/cncult.cpp index e1ec215e1..fe3a4f8e8 100644 --- a/src/cncult.cpp +++ b/src/cncult.cpp @@ -40,7 +40,6 @@ cnculti.h: cncult internal functions shared only amoung cncult,2,3,4,5,6.cpp */ #include "cuparse.h" // TYFL TYSTR evfTx #include "cuevf.h" // evf's & variabilities: VMHLY VSUBHRLY #include "cul.h" // CULT RATE KDAT TYIREF TYREF RQD -#include "cueval.h" // cupfree cupIncRef // declaration for this file: #include "cncult.h" // use classes, globally used functions diff --git a/src/cncult2.cpp b/src/cncult2.cpp index 7a96239cc..624bb3daf 100644 --- a/src/cncult2.cpp +++ b/src/cncult2.cpp @@ -739,8 +739,8 @@ RC TOPRAT::brFileCk() // check/clean up inputs re binary results files, rob 12-2 // clean up binary results file name if given - if ( sstat[TOPRAT_BRFILENAME] & FsVAL // if binary result filename given (and stored -- insurance) - && *tp_brFileName ) // and not just "" to negate filename in earlier run + if ( IsVal( TOPRAT_BRFILENAME)) // if binary result filename given (and stored -- insurance) + && *tp_brFileName.CStr() ) // and not just "" to negate filename in earlier run { char *s = strffix( tp_brFileName, ""); // standardize: deblank, uppercase. "": no default extension. to TmpStr. char *dot = strrchr( s, '.'); // point last period in pathName @@ -754,12 +754,7 @@ RC TOPRAT::brFileCk() // check/clean up inputs re binary results files, rob 12-2 } if (!*strpathparts( s, STRPPDRIVE|STRPPDIR)) // if contains no drive nor directory (strpak.cpp fcn) s = strtPathCat( InputDirPath, s); // default to INPUT FILE path (rundata.cpp variable) 2-95 - if (_stricmp( s, tp_brFileName)) /* store only if different: reduce fragmentation if no change, - if 2nd run, if redundant call, etc. (_strIcmp 5-22; believe moot.) */ - { - cupfree( DMPP( tp_brFileName)); // dmfree it if not a pointer to "text" embedded in pseudocode. cueval.cpp. - tp_brFileName = strsave(s); // copy s to new heap block, store pointer thereto. - } + tp_brFileName.Set(s); // store in record // warnings if file name given when it won't be used (why tp_SetOptions() must be called first, 12-94) @@ -816,27 +811,23 @@ TOPRAT::~TOPRAT() //----------------------------------------------------------------------------- void TOPRAT::freeDM() // free child objects in DM { -#if 0 -?CULSTR? - cupfree( DMPP( tp_wfName)); // decRef or free dm (heap) strings - cupfree( DMPP( tp_TDVfName)); // decRef or free dm (heap) strings - cupfree( DMPP( runTitle)); // cupfree: cueval.cpp: if pointer is not NANDLE nor pointer to - cupfree( DMPP( runDateTime)); // "text" embedded in pseudocode, call dmpak:dmfree to free its block - cupfree( DMPP( repHdrL)); // or decrement its ref count, and NULL the pointer here. - cupfree( DMPP( repHdrR)); - cupfree( DMPP( dateStr)); - cupfree( DMPP( tp_repTestPfx)); - cupfree( DMPP( tp_progVersion)); - cupfree( DMPP( tp_HPWHVersion)); - cupfree( DMPP( tp_exePath)); - cupfree( DMPP( tp_exeInfo)); - cupfree( DMPP( tp_cmdLineArgs)); + tp_wfName.Release(); + tp_TDVfName.Release(); + runTitle.Release(); + runDateTime.Release(); + repHdrL.Release(); + repHdrR.Release(); + dateStr.Release(); + tp_repTestPfx.Release(); + tp_progVersion.Release(); + tp_HPWHVersion.Release(); + tp_exePath.Release(); + tp_exeInfo.Release(); + tp_cmdLineArgs.Release(); // monStr is not in heap. #ifdef BINRES - cupfree( DMPP(tp_brFileName)); + tp_brFileName.Release(); #endif -#endif - delete tp_pAirNet; tp_pAirNet = NULL; diff --git a/src/cncult4.cpp b/src/cncult4.cpp index 3e043edaf..2ea44d1f3 100644 --- a/src/cncult4.cpp +++ b/src/cncult4.cpp @@ -1172,19 +1172,16 @@ RC buildUnspoolInfo() //=========================================================================== /*virtual*/ void RFI::Copy(const record* pSrc, int options/*=0*/) { -// free (or decr ref count for) derived class heap pointer(s) in record about to be overwritten. dmfree: lib\dmpak.cpp. - cupfree( DMPP( fileName)); // dmfree unless NANDLE or constant inline in pseudocode, cueval.cpp. +// release CULSTR(s) that will be overwritten + fileName.Release(); // use base class Copy. Copies derived class members too, per record type (.rt): RECORD MUST BE CONSTRUCTED record::Copy( pSrc, options); // verfies that src and this are same record type. lib\ancrec.cpp. -// increment reference count for pointer(s) just copied. dmIncRec: lib\dmpak.cpp. - cupIncRef( DMPP( fileName)); // dmIncRef unless NANDLE or constant inline in pseudocode, cueval.cpp. +// duplicate CULSTR contents after overwrite + fileName.FixAfterCopy(); } // RFI::Copy //=========================================================================== RFI::~RFI() { -// free (or decrement reference count of) derived class heap pointers in record being destroyed. dmfree:lib\dmpak.cpp. - cupfree( DMPP( fileName)); // dmfree unless NANDLE or constant inline in pseudocode, cueval.cpp. - //record::~record() (automatically called) zeroes .gud to mark space unused. } // RFI::~RFI //----------------------------------------------------------------------------- RC RFI::rf_CkF( // REPORTFILE / EXPORTFILE check @@ -1198,7 +1195,7 @@ RC RFI::rf_CkF( // REPORTFILE / EXPORTFILE check // standardize filename and default extension char* s = strffix( fileName, fileExt); // uppercase, deblank, append ext if none - if (!xfisabsolutepath(s)) // if path is not absolute + if (!xfisabsolutepath(s)) // if path is not absolute s = strtPathCat( InputDirPath, s); // default to INPUT FILE path (rundata.cpp variable) 2-95 // check if file can be written @@ -1217,11 +1214,7 @@ RC RFI::rf_CkF( // REPORTFILE / EXPORTFILE check s = sAlias; } - if (_stricmp( s, fileName)) // store only if different (may get here twice) to reduce fragmentation - { - cupfree( DMPP( fileName)); - fileName = strsave(s); - } + fileName.Set(s); // store in record // check against ExportFiles and ReportFiles for duplicate filename // Does not check for different expressions of same path; will (we hope) get open error later. @@ -1383,18 +1376,16 @@ int RFI::rf_CheckAccessAndAlias( //=========================================================================== /*virtual*/ void RI::Copy( const record* pSrc, int options /*=0*/) { -// free (or decr ref count for) derived class heap pointer(s) in record about to be overwritten - cupfree( DMPP( rpTitle)); +// release CULSTR to be overwritten + rpTitle.Release(); // use base class Copy. Copies derived class members too, per record type (.rt): RECORD MUST BE CONSTRUCTED record::Copy( pSrc, options); // verfies that src and this are same record type. lib\ancrec.cpp. -// increment reference count for pointer(s) just copied - cupIncRef( DMPP( rpTitle)); +// duplicate CULSTR after overwrite + rpTitle.FixAfterCopy(); } // RI::Copy //=========================================================================== RI::~RI() { -// free (or decrement reference count of) derived class heap pointers in record being destroyed - cupfree( DMPP( rpTitle)); } // RI::~RI //=========================================================================== COL::COL( basAnc* b, TI i, SI noZ /*=0*/) @@ -1404,30 +1395,24 @@ COL::COL( basAnc* b, TI i, SI noZ /*=0*/) //----------------------------------------------------------------------------- COL::~COL() { -#if 0 -?CULSTR? -// free (or decrement reference count of) derived class heap pointers in record being destroyed - cupfree( DMPP( colHead)); - if (colVal.ty==TYSTR || colVal.ty==DTCULSTR) // if colVal.val contains a string (not a float or nothing) - cupfree( DMPP( colVal.val)); /* if not UNSET or NANDLE, and if not a pointer to string - constant inline in pseudo-code, dmfree it. cueval.cpp. */ -#endif + if (colVal.ty == TYSTR || colVal.ty == DTCULSTR) // if colVal.val contains a string (not a float or nothing) + (*reinterpret_cast< CULSTR *>(&colVal.val)).Release(); } // COL::~COL //----------------------------------------------------------------------------- /*virtual*/ void COL::Copy( const record* pSrc, int options/*=0*/) { // free (or decr ref count for) derived class heap pointer(s) in record about to be overwritten - cupfree( DMPP( colHead)); + colHead.Release(); if (colVal.ty==TYSTR || colVal.ty==DTCULSTR) // if contains a string, not a float - cupfree( DMPP( colVal.val)); /* if not UNSET or NANDLE, and if not a pointer to string constant - inline in pseudo-code, dmfree it. cueval.cpp. */ + (*reinterpret_cast(&colVal.val)).Release(); + // use base class Copy. Copies derived class members too, per record type (.rt): RECORD MUST BE CONSTRUCTED record::Copy( pSrc, options); // verfies that src and this are same record type. lib\ancrec.cpp. -// increment reference count for pointer(s) just copied - cupIncRef( DMPP( colHead)); +// duplicate copied CULSTRs + colHead.FixAfterCopy(); if (colVal.ty==TYSTR || colVal.ty==DTCULSTR) - cupIncRef( DMPP( colVal.val)); // if not UNSET or NANDLE, and if not a pointer to string constant + (*reinterpret_cast(&colVal.val)).FixAfterCopy(); } // COL::Copy //----------------------------------------------------------------------------- /*virtual*/ record& COL::CopyFrom( const record* pSrc, int copyName/*=1*/, int dupPtrs/*=0*/) @@ -1435,17 +1420,17 @@ COL::~COL() #if 0 && defined( _DEBUG) pSrc->Validate(); #endif -// free (or decr ref count for) derived class heap pointer(s) in record about to be overwritten - cupfree( DMPP( colHead)); + colHead.Release(); if (colVal.ty==TYSTR || colVal.ty==DTCULSTR) // if contains a string, not a float - cupfree( DMPP( colVal.val)); /* if not UNSET or NANDLE, and if not a pointer to string constant - inline in pseudo-code, dmfree it. cueval.cpp. */ + (*reinterpret_cast(&colVal.val)).Release(); + // use base class Copy. Copies derived class members too, per record type (.rt): RECORD MUST BE CONSTRUCTED record::CopyFrom( pSrc, copyName, dupPtrs); // verfies that src and this are same record type. lib\ancrec.cpp. -// increment reference count for pointer(s) just copied - cupIncRef( DMPP( colHead)); + + colHead.FixAfterCopy(); if (colVal.ty==TYSTR || colVal.ty==DTCULSTR) - cupIncRef( DMPP( colVal.val)); // if not UNSET or NANDLE, and if not a pointer to string constant + (*reinterpret_cast(&colVal.val)).FixAfterCopy(); + #if defined( _DEBUG) Validate(); #endif @@ -1456,34 +1441,22 @@ COL::~COL() int options/*=0*/) // options bits { RC rc = record::Validate(options); -#if 0 - ?CULSTR? - if (rc == RCOK) - { - if (colHead && !dmIsGoodPtr(colHead, "COL::Validate", WRN)) - rc = RCBAD; - } -#endif return rc; } // COL::Validate //--------------------------------------------------------------------------------------- DVRI::~DVRI() { -// free (or decrement reference count of) derived class heap pointers in record being destroyed - cupfree( DMPP( rpTitle)); // dmfree unless UNSET or inline "text" in pseudocode, cueval.cpp. } // DVRI::~DVRI //--------------------------------------------------------------------------------------- /*virtual*/ void DVRI::Copy( const record* pSrc, int options/*=0*/) // overrides record::Copy. declaration must be same. { -// free (or decr ref count for) derived class heap pointer(s) in record about to be overwritten - cupfree( DMPP( rpTitle)); // dmfree unless UNSET or inline "text" in pseudocode, cueval.cpp. + rpTitle.Release(); // use base class Copy. Copies derived class members too, per record type (.rt): RECORD MUST BE CONSTRUCTED record::Copy( pSrc, options); // verfies that src and this are same record type. lib\ancrec.cpp. -// increment reference count for pointer(s) just copied - cupIncRef( DMPP( rpTitle)); + rpTitle.FixAfterCopy(); } // DVRI::Copy //==================================================================================== diff --git a/src/cncult6.cpp b/src/cncult6.cpp index bbe5664f3..38b8bde9d 100644 --- a/src/cncult6.cpp +++ b/src/cncult6.cpp @@ -20,7 +20,6 @@ //#include // perl //#include // ISNANDLE ISUNSET #include "cul.h" // FsSET oer oWarn -//#include // cupfree cupIncRef //declaration for this file: //#include // use classes, globally used functions diff --git a/src/cnloads.cpp b/src/cnloads.cpp index d7e52eee9..22f4ae96a 100644 --- a/src/cnloads.cpp +++ b/src/cnloads.cpp @@ -1987,7 +1987,6 @@ bool ZNR::zn_IsAirHVACActive() const // determine air motion //============================================================================= /*virtual*/ RSYS::~RSYS() { - cupfree( DMPP( rs_desc)); delete rs_pRgiHtg[0]; delete rs_pRgiHtg[1]; rs_pRgiHtg[0] = rs_pRgiHtg[1] = nullptr; diff --git a/src/cueval.cpp b/src/cueval.cpp index 36cff2399..e2442bf18 100644 --- a/src/cueval.cpp +++ b/src/cueval.cpp @@ -1324,18 +1324,6 @@ void cupFixAfterCopy( CULSTR& culStr) // if dm pointer, duplicate block or ++ref } } } // cupFixAfterCopy -//---------------------------------------------------------------------------- -void cupRelease( // free a dm string without disturbing a NANDLE or string constant in code - CULSTR& culStr) // string -{ - if (culStr.IsSet()) - { const char* p = culStr.CStr(); - if (!ISNANDLE(p)) // nop if expression handle - { - culStr.Release( !IsDM( DMP( p))); - } - } -} // cupRelease //============================================================================ char * FC cuStrsaveIf( char *s) // save a copy of string in dm if string is now inline in pseudo-code diff --git a/src/cueval.h b/src/cueval.h index f90901f14..db76d8597 100644 --- a/src/cueval.h +++ b/src/cueval.h @@ -231,7 +231,6 @@ RC FC cuEvalR( void *ip, void **ppv, const char **pmsg, USI *pBadH); RC FC cupfree( DMP *p); RC FC cupIncRef( DMP *p, int erOp=ABT); char * FC cuStrsaveIf( char *s); -void cupRelease(CULSTR& culStr); void cupFixAfterCopy(CULSTR& culStr); int CDEC printif( int flag, const char* fmt, ... ); diff --git a/src/cul.cpp b/src/cul.cpp index 94720acc0..228206c2c 100644 --- a/src/cul.cpp +++ b/src/cul.cpp @@ -2041,8 +2041,6 @@ LOCAL RC FC culCLEAR() // do cul CLEAR command return RCOK; // other returns above including F macros } // culCLEAR //=========================================================================== -/* see if fixes bad compile in which fsj init'd in ebx, stored in ebp-0c, - but then used at "setFsVAL:" in ebx without reloading register. 3-4-92. DID NOT FIX IT. */ LOCAL RC culDAT() // do cul DAT case per xSp /* returns: RCOK: succesful @@ -2696,7 +2694,7 @@ LOCAL RC xpr( // our local expression compiler interface / checker // ARRAY and ALL_OK: also accept "all_but" (returns RC_ALLBUT) // [ELECTRIC_OK (cul.h): accept "all" (returns RC_ELECTRIC)] char *what, // token text for errMsgs or NULL to use xSp->c->id. - NANDAT *pp, // receives result (dm ptr for TYSTR), or "NANDLE" (see exman.h) if a run-time expr. + NANDAT* pp, // receives result or "NANDLE" (see exman.h) if a run-time expr. USI *pGotTy, // NULL or rcvs cuparse type found, eg TYFL or TYSTR for ty=TYFLSTR, TYSI for TYDOY. 11-91. USI *pGotEvf ) // NULL or rcvs variability gotten -- 0 constant (already stored), EVEOI, EVFHRLY, etc. @@ -2735,10 +2733,8 @@ LOCAL RC xpr( // our local expression compiler interface / checker // compile expression -#if 1 // 9-11-2017 if (_evfOK & EVPSTIVL) // if post-interval is acceptable _evfOK |= EVENDIVL; // then end-interval OK too -#endif rc = exPile( // exman.cpp. only call 11-91. -1, // say parse to ; or CUTVRB, etc @@ -2770,19 +2766,20 @@ LOCAL RC xpr( // our local expression compiler interface / checker // check returned value for reserved words 'sum' and 'all' 1-92. rc=RCOK here. if (gotTy==TYSTR) // if string found { - char *p = *(char **)pp; // fetch result (pointer for TYSTR) - if (!ISNANDLE(p)) // if constant, not expression, found (don't allow exprs and sum/all in same call!) - if (!_stricmp( p, "sum")) - if (f & SUM_OK) rc = RC_SUM; - else rc = perNx( (char *)MH_S0250); // "'SUM' cannot be used here" - else if (!_stricmp( p, "all")) - if (f & ALL_OK) rc = RC_ALL; - else rc = perNx( (char *)MH_S0251); // "'ALL' cannot be used here" - else if (!_stricmp( p, "all_but")) - if (f & ALL_OK && f & ARRAY) rc = RC_ALLBUT; - else rc = perNx( (char *)MH_S0252); // "'ALL_BUT' cannot be used here" - if (rc) // if sum or all (whether error or ok) - dmfree( DMPP( *pp)); // discard the string + // char *p = *(char **)pp; // fetch result (pointer for TYSTR) + CULSTR& cs = (*reinterpret_cast(pp)); + + if (!cs.IsNANDLE()) // if constant, not expression, found (don't allow exprs and sum/all in same call!) + { const char* p = cs.CStr(); + if (!_stricmp(p, "sum")) + rc = (f & SUM_OK) ? RC_SUM : perNx((char*)MH_S0250); // "'SUM' cannot be used here" + else if (!_stricmp(p, "all")) + rc = (f & ALL_OK) ? RC_ALL : perNx((char*)MH_S0251); // "'ALL' cannot be used here" + else if (!_stricmp(p, "all_but")) + rc = (f & ALL_OK && f & ARRAY) ? RC_ALLBUT : perNx((char*)MH_S0252); // "'ALL_BUT' cannot be used here" + if (rc) // if sum or all (whether error or ok) + cs.Release(); // discard the string + } } if (pGotTy) *pGotTy = gotTy; // return type if caller wants it diff --git a/src/dhwcalc.cpp b/src/dhwcalc.cpp index 25551c818..c14ec0fe2 100644 --- a/src/dhwcalc.cpp +++ b/src/dhwcalc.cpp @@ -745,12 +745,17 @@ RC DHWSIZER::wz_DeriveSize() // calc required heating and storage volume DHWSYS::~DHWSYS() { +#if 1 + ws_dayUseName.Release(); +#else + ? CULSTR ? // omit cupfree(DMPP(ws_dayUseName)); // WHY: causes access exception if ws_dayUseName is string expression // when there is a runtime error (works OK on normal termination). // Something to do with cleanup order? // Suspect general problem with string expressions? ws_dayUseName = nullptr; +#endif delete[] ws_ticks; ws_ticks = nullptr; delete[] ws_fxList; diff --git a/src/exman.cpp b/src/exman.cpp index adda4158a..a73d0515a 100644 --- a/src/exman.cpp +++ b/src/exman.cpp @@ -337,16 +337,18 @@ RC FC exPile( // compile an expression from current input /* check/return constant now */ if (isKon) { - CSE_E( uniLimCt( fdTy, gotTy, _ermTx, &v) ) // check limits & apply units, with errMsg suitable for compile time. below. + CSE_E(uniLimCt(fdTy, gotTy, _ermTx, &v)); // check limits & apply units, with errMsg suitable for compile time. below. - if ( gotTy==TYSI // return the constant value in destination. SI has 16 bit storage only - || gotTy==TYCH && choiDt & DTBCHOICB ) // choice types with this bit on are 16 bits only + if (gotTy == TYSI // return the constant value in destination. SI has 16 bit storage only + || gotTy == TYCH && choiDt & DTBCHOICB) // choice types with this bit on are 16 bits only { - *(SI *)pDest = (SI)(LI)v; // return lo 16 bits of value - if (ISNCHOICE(v)) // redundantly check for not a 4-byte choice value (cnglob.h macro) - perlc( (char *)MH_E0093); /* "exman.cpp:exPile: Internal error:\n" - " 4-byte choice value returned by exOrk for 2-byte type". devel aid */ + *(SI*)pDest = (SI)(LI)v; // return lo 16 bits of value + if (ISNCHOICE(v)) // redundantly check for not a 4-byte choice value (cnglob.h macro) + perlc((char*)MH_E0093); // "exman.cpp:exPile: Internal error:\n" + // " 4-byte choice value returned by exOrk for 2-byte type". devel aid } + else if (gotTy == TYSTR) + (*reinterpret_cast(pDest)).Set((const char*)v); else *pDest = v; // all other types return 32 bits diff --git a/src/impf.cpp b/src/impf.cpp index d9074bb75..38938a746 100644 --- a/src/impf.cpp +++ b/src/impf.cpp @@ -775,9 +775,6 @@ IFFNM::~IFFNM() // record destructor { // free (or decrement reference count of) derived class heap pointers in record being destroyed. dmfree:lib\dmpak.cpp. - // input strings -- none - //cupfree( DMPP( ..)); // dmfree unless NANDLE or constant inline in pseudocode, cueval.cpp. - // fields names table if (fnmt) // if table allocated for (int fnmi = 1; fnmi < fnmtNAl; fnmi++) // loop over table entries. Entry 0 unused. @@ -818,12 +815,8 @@ IMPF::~IMPF() // IMPORTFILE destructor // free (or decrement reference count of) derived class heap pointers in record being destroyed. dmfree:lib\dmpak.cpp. - // input strings - cupfree( DMPP( fileName)); // dmfree unless NANDLE or constant inline in pseudocode, cueval.cpp. - cupfree( DMPP( imTitle)); // dmfree unless NANDLE or constant inline in pseudocode, cueval.cpp. - // buffer - dmfree( DMPP( buf)); // (decr ref count or) free heap block & NULL ptr, subset of cupfree, dmpak.cpp. + dmfree( DMPP( buf)); // (decr ref count or) free heap block & NULL ptr bufSz = 0; // say no buffer: insurance: beleived unnecessary but harmless at destruction // fields-by-number table @@ -846,17 +839,18 @@ IMPF::~IMPF() // IMPORTFILE destructor err( PWRN, (char *)MH_S0577); // "Unexpected call to IMPF::Copy". if msg occurs, complete code re .fnrt, .buf // free (or decr ref count for) derived class heap pointer(s) in record about to be overwritten. dmfree: lib\dmpak.cpp. - cupfree( DMPP( fileName)); // dmfree unless NANDLE or constant inline in pseudocode, cueval.cpp. - cupfree( DMPP( imTitle)); // dmfree unless NANDLE or constant inline in pseudocode, cueval.cpp. + fileName.Release(); + imTitle.Release(); + // field numbers table .fnrt[] not handled: if non-NULL, must dmfree .fieldNames. before dmfree'ing table pointer. // buffer .buf not handled. if non-NULL, must free. // use base class Copy. Copies derived class members too, per record type (.rt): RECORD MUST BE CONSTRUCTED. record::Copy( pSrc, options); // verfies that src and this are same record type. lib\ancrec.cpp. -// increment reference count for pointer(s) just copied. dmIncRec: lib\dmpak.cpp. - cupIncRef( DMPP( fileName)); // dmIncRef unless NANDLE or constant inline in pseudocode, cueval.cpp. - cupIncRef( DMPP( imTitle)); // dmIncRef unless NANDLE or constant inline in pseudocode, cueval.cpp. + fileName.FixAfterCopy(); + imTitle.FixAfterCopy(); + // field numbers table .fnrt[] not handled: if non-NULL, must copy and incref .fieldNames. // buffer .buf not handled. if non-NULL, must copy. } // IMPF::Copy diff --git a/src/strpak.cpp b/src/strpak.cpp index 013d2e7c9..f152cf798 100644 --- a/src/strpak.cpp +++ b/src/strpak.cpp @@ -42,61 +42,55 @@ static int TmpstrNx = 0; // Next available byte in Tmpstr[]. // = std::string plus integer that chains free elements. struct CULSTREL { - CULSTREL() : usl_freeChainNext{ 0 }, usl_str{ nullptr } + enum { uslEMPTY, uslDM, uslOTHER}; + CULSTREL() : usl_str{ nullptr }, usl_freeChainNext( 0), usl_status( uslEMPTY) { } -#if 0 - CULSTREL(int size) : usl_freeChainNext{ 0 }, usl_str{ nullptr } + CULSTREL(const char* str) : CULSTREL() { - if (size > 0) - dmal(DMPP(usl_str), size, ABT); + usl_Set( str); } -#endif CULSTREL(CULSTREL&& src) noexcept - : usl_str{ src.usl_str }, usl_freeChainNext{ src.usl_freeChainNext } + : usl_str{ src.usl_str }, usl_freeChainNext{ src.usl_freeChainNext }, + usl_status{ src.usl_status } { - src.usl_str = nullptr; + src.usl_str = nullptr; // prevent dmfree of string in moved-out-of source } ~CULSTREL() { usl_freeChainNext = 0; - dmfree(DMPP(usl_str)); + if (usl_status == uslDM) + dmfree(DMPP(usl_str)); + else + usl_str = nullptr; + usl_status = uslEMPTY; } char* usl_str; // string data - HCULSTR usl_freeChainNext; // next element in chain of - // unused CULTRELs + int usl_status; // uslEMPTY: empty (usl_str may or may not be nullptr) + // uslDM: in use, usl_str points to heap + // uslOTHER: in use, usl_str points elsewhere (do not dmfree) + HCULSTR usl_freeChainNext; // next element in chain of unused CULTRELs char* usl_Set(const char* str); }; // struct CULSTREL //----------------------------------------------------------------------------- -char* CULSTREL::usl_Set(const char* s) +char* CULSTREL::usl_Set( + const char* s) // source string (will be copied) { + if (usl_status == uslOTHER) + usl_str = nullptr; int sz = strlen(s) + 1; dmral(DMPP(usl_str), sz, ABT); + usl_status = uslDM; return strcpy(usl_str, s); } // CULSTREL::usl_Set - //============================================================================= -class CULSTRMGR -{ -public: - CULSTRMGR(); - ~CULSTRMGR() { }; - - bool us_IsNull(HCULSTR hCulStr) const; - bool us_AllocMightMove() const; - HCULSTR us_Alloc(); - void us_Release(HCULSTR& hCulStr, bool bNullPtr = false); - void us_Set(HCULSTR hCulStr, const char* str); - const char* us_CStr(HCULSTR hCulStr) const; - -private: - std::vector us_vectCULSTREL; - HCULSTR us_freeChainHead; -}; // class CULSTRMGR +/*static*/ std::vector CULSTR::us_vectCULSTREL /*= { CULSTREL() }*/; +/*static*/ HCULSTR CULSTR::us_freeChainHead{ 0 }; -static CULSTRMGR CulStrMgr; +//----------------------------------------------------------------------------- +CULSTR::CULSTR() : us_hCulStr(0) {} //----------------------------------------------------------------------------- CULSTR::CULSTR(const CULSTR& culStr) : us_hCulStr( 0) { @@ -111,37 +105,40 @@ CULSTR::CULSTR(const char* str) : us_hCulStr( 0) //----------------------------------------------------------------------------- const char* CULSTR::CStr() const { - return CulStrMgr.us_CStr(us_hCulStr); + return us_hCulStr ? us_vectCULSTREL[us_hCulStr].usl_str : ""; -} +} // CULSTR::CStr() +//----------------------------------------------------------------------------- +bool CULSTR::IsNANDLE() const +{ + return ISNANDLE(us_hCulStr); +} // CULSTR::IsNANDLE +//----------------------------------------------------------------------------- +bool CULSTR::us_HasCULSTREL() const +{ + return !IsNANDLE() && !IsNull(); +} // CULSTR::us_HasCULSTREL //----------------------------------------------------------------------------- void CULSTR::Set( const char* str) { if (!str) { - CulStrMgr.us_Release( us_hCulStr); + Release(); // us_hCulStr = 0 in us_Release } else { - if (IsNull()) + if (!us_HasCULSTREL()) { // this CULSTR does not have an allocated slot - if (CulStrMgr.us_AllocMightMove()) + if (us_AllocMightMove()) str = strtmp(str); // str may be pointing into string vector - us_hCulStr = CulStrMgr.us_Alloc(); // can move! + us_Alloc(); // can move! } - CulStrMgr.us_Set(us_hCulStr, str); + us_vectCULSTREL[us_hCulStr].usl_Set(str); } -} -//----------------------------------------------------------------------------- -void CULSTR::Release( - bool bNullPtr /*= false*/) -// do not call for special cases (not DM, NANDAT, ) -{ - CulStrMgr.us_Release(us_hCulStr, bNullPtr); -} // CULSTR::FixAfterCopy +} // CULSTR::Set //----------------------------------------------------------------------------- void CULSTR::FixAfterCopy() // do not call for special cases (not DM, NANDAT, ) @@ -153,51 +150,89 @@ void CULSTR::FixAfterCopy() Set(culStr); } } // CULSTR::FixAfterCopy +//----------------------------------------------------------------------------- +void CULSTR::us_Alloc() // allocate +{ + if (us_freeChainHead) + { // use available free slot + us_hCulStr = us_freeChainHead; + us_freeChainHead = us_vectCULSTREL[us_hCulStr].usl_freeChainNext; + } + else + { // no free slot, enlarge vector + if (us_vectCULSTREL.size() == 0) + us_vectCULSTREL.emplace_back(""); + us_vectCULSTREL.emplace_back(); + us_hCulStr = us_vectCULSTREL.size() - 1; + } +} // CULSTR::us_Alloc +//----------------------------------------------------------------------------- +void CULSTR::Release() // set +{ + if (!us_hCulStr || IsNANDLE()) + return; + + CULSTREL& el = us_vectCULSTREL[us_hCulStr]; + + // string pointer: do not free (memory will be reused) + if (el.usl_status == CULSTREL::uslOTHER) + el.usl_str = nullptr; // but maybe set null + el.usl_freeChainNext = us_freeChainHead; + us_freeChainHead = us_hCulStr; + + us_hCulStr = 0; + +} // CULSTR::Release +//----------------------------------------------------------------------------- +bool CULSTR::us_AllocMightMove() const // check if reallocation is possible +// returns true iff next us_Alloc might trigger us_vectCULSTR reallocation +{ + return us_freeChainHead == 0 + && us_vectCULSTREL.size() == us_vectCULSTREL.capacity(); +} // CULSTR::us_AllocMightMove //============================================================================= + +#if 0 CULSTRMGR::CULSTRMGR() : us_freeChainHead( 0) { us_Alloc(); // element 0 (reserved) } //----------------------------------------------------------------------------- -bool CULSTRMGR::us_IsNull(HCULSTR hCulStr) const -{ - return hCulStr==0 || us_vectCULSTREL[hCulStr].usl_freeChainNext != 0; - -} // CULSTRMGR::us_IsNULL -//----------------------------------------------------------------------------- -bool CULSTRMGR::us_AllocMightMove() const +bool CULSTR::us_AllocMightMove() const { return us_freeChainHead == 0 && us_vectCULSTREL.size() == us_vectCULSTREL.capacity(); } //----------------------------------------------------------------------------- -HCULSTR CULSTRMGR::us_Alloc() +HCULSTR CULSTR::us_Alloc() { - HCULSTR hCulStr = 0; if (us_freeChainHead) - { hCulStr = us_freeChainHead; + { + us_hCulStr = us_freeChainHead; us_freeChainHead = us_vectCULSTREL[hCulStr].usl_freeChainNext; } else { us_vectCULSTREL.emplace_back(); - hCulStr = us_vectCULSTREL.size() - 1; + us_hCulStr = us_vectCULSTREL.size() - 1; } - return hCulStr; + return us_hCulStr; -} +} // CULSTR::us_Alloc //----------------------------------------------------------------------------- -void CULSTRMGR::us_Release( - HCULSTR& hCulStr, +void CULSTR::Release( bool bNullPtr /*=false*/) // true: set { - if (!hCulStr) + if (!us_hCulStr) return; - CULSTREL& el = us_vectCULSTREL[hCulStr]; + if (ISNANDLE(us_hCulStr)) + return; + + CULSTREL& el = us_vectCULSTREL[us_hCulStr]; // string pointer: do not free (memory will be reused) if (bNullPtr) @@ -205,11 +240,11 @@ void CULSTRMGR::us_Release( // caller says it does not point to heap el.usl_freeChainNext = us_freeChainHead; - us_freeChainHead = hCulStr; + us_freeChainHead = us_hCulStr; - hCulStr = 0; + us_hCulStr = 0; -} // CULSTRMGR::us_Release +} // CULSTR::Release //----------------------------------------------------------------------------- void CULSTRMGR::us_Set( HCULSTR hCulStr, @@ -227,6 +262,7 @@ const char* CULSTRMGR::us_CStr( return hCulStr ? us_vectCULSTREL[hCulStr].usl_str : ""; } +#endif /////////////////////////////////////////////////////////////////////////////// //----------------------------------------------------------------------------- diff --git a/src/strpak.h b/src/strpak.h index 13df84060..61b1a0359 100644 --- a/src/strpak.h +++ b/src/strpak.h @@ -14,7 +14,7 @@ using HCULSTR = uint32_t; // string handle struct CULSTR { - CULSTR() : us_hCulStr(0) {} + CULSTR(); CULSTR(const CULSTR& culStr); CULSTR(const char* s); ~CULSTR() { Set(nullptr); }; @@ -31,12 +31,21 @@ struct CULSTR void Set(const char* str); void Set(const std::string& s) { Set(s.c_str()); } - void Release(bool bNullPtr = false); + void Release(); void FixAfterCopy(); + bool IsNANDLE() const; bool IsNull() const { return us_hCulStr == 0; } bool IsSet() const { return us_hCulStr != 0; } +private: + static std::vector us_vectCULSTREL; + static HCULSTR us_freeChainHead; + + void us_Alloc(); + bool us_AllocMightMove() const; + bool us_HasCULSTREL() const; + }; // struct CULSTR From cba1c49427df05d0174205d83a0307bcc2a7755c Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Wed, 15 Mar 2023 12:50:18 -0400 Subject: [PATCH 09/25] CULSTR WIP --- src/ancrec.cpp | 33 ++++------ src/ancrec.h | 4 +- src/cgcomp.cpp | 9 ++- src/cgdebug.cpp | 29 ++++----- src/cgwthr.cpp | 2 +- src/cncult3.cpp | 6 +- src/cncult4.cpp | 12 ++-- src/cnguts.cpp | 4 +- src/cnloads.cpp | 8 +-- src/cnztu.cpp | 2 +- src/cul.cpp | 162 +++++++++++++++++++++--------------------------- src/cul.h | 2 +- src/cuparse.cpp | 28 ++++----- src/cuparse.h | 12 ++-- src/cuparsex.h | 2 +- src/dhwcalc.cpp | 6 +- src/exman.cpp | 6 +- src/exman.h | 6 +- src/strpak.cpp | 10 +-- src/strpak.h | 8 ++- 20 files changed, 164 insertions(+), 187 deletions(-) diff --git a/src/ancrec.cpp b/src/ancrec.cpp index cec6d416b..ed800da6c 100644 --- a/src/ancrec.cpp +++ b/src/ancrec.cpp @@ -56,7 +56,7 @@ record::record(BP _b, TI i, SI noZ/*=0*/) // construct record i of basAnc b, z b = _b; rt = _b->rt; ss = i; // set base class members, for appl and anchor class use - gud = 1; // say space in use and record good + gud = 1; // say space in use and record good } // record::record //--------------------------------------------------------------------------------------------------------------------------- void* record::field( int fn) // point to member in record by FIELD # @@ -121,8 +121,7 @@ float record::FldValFloat(int fn) const //----------------------------------------------------------------------------- int record::IsNameMatch( const char* _name) const { - // Note: prior (1994) version disregarded unexpected excess chars - return !_strnicmp( _name, name, sizeof(ANAME)-1); + return !_stricmp( _name, name.CStr()); } // record::IsNameMatch //----------------------------------------------------------------------------- /*virtual*/ record& record::CopyFrom( @@ -157,16 +156,12 @@ int record::IsNameMatch( const char* _name) const // add logic to copy status bytes to correct place if need found // copy data after front (bitwise) -#if 1 // fix re packing, 11-14-2018 // copy start offset: do not copy base class except ownTi and optionally name - int offBeg = copyName ? offsetof(record, name) : offsetof(record, ownTi); + int offBeg = offsetof(record, ownTi); memcpy( (char *)this + offBeg, (char *)src + offBeg, eSz - offBeg ); -#else -0 int rfSz = sizeof(record) - sizeof(TI); // do not copy base class except ownTi -0 if (copyName) -0 rfSz -= sizeof(ANAME); // copy name on option (defaults ON) -0 memcpy((char *)this + rfSz, (char *)src + rfSz, eSz - rfSz); -#endif + + if (copyName) + name.Set(src->name); // copy user language front members. another arg option? li = src->li; // if nz, is subscript of entry it is LIKE @@ -199,16 +194,12 @@ int record::IsNameMatch( const char* _name) const #ifdef DEBUG2 pSrc->b->validate("right arg to record::operator="); #endif -#if 1 // fix re packing, 11-14-2018 + name.Release(); // copy start offset: don't copy internal members int offBeg = offsetof(record, gud); memcpy((char *)this + offBeg, (char *)pSrc + offBeg, b->eSz - offBeg); -#else -0 const USI rfSz = offsetof(record,rt) // don't copy: anything C++ put in front of 1st member, -0 + sizeof(RCT) + sizeof(TI) // internal overhead members, at front: rt, ss, -0 + sizeof(BP) /* + sizeof(SI)*/; // ... b; do copy 'gud' (semi-user member). -0 memcpy( (char *)this + rfSz, (char *)pSrc + rfSz, b->eSz - rfSz); // copy everthing after that stuff. -#endif + name.FixAfterCopy(); + FixUp(); // virtual: record can e.g. fix ptrs #if defined( _DEBUG) Validate(); // virtual @@ -314,7 +305,7 @@ const char* record::objIdTx( strtcat( tween, r->classObjTx( op), NULL), // class and object name text, "\n ", getCpl()); // inserting __ if line wd be too long tween = " of "; - if (r->name[0]) // if name is not "" + if (!r->name.IsBlank()) // if name is not "" nameShown++; if ( r->b->ownB==0 || r->ownTi <= 0 // or basAnc has no owning basAnc, or record has owning record, || r->ownTi > ((BP)r->b->ownB)->n // or owner subscr out of range (catches erroneous Top ownership) @@ -344,8 +335,8 @@ const char* record::classObjTx( // get class name - object name text const char* what = (char *)b->what; // class name from basAnc // if it has a name ... - if (name[0]) // if this record has nonblank name - return strtprintf("%s '%s'", what, name); + if (!name.IsBlank()) // if this record has nonblank name + return strtprintf("%s '%s'", what, name.CStr()); #if 0 // .bn gone, have not replaced this mechanism (only use yet found: layer, cncult2.cpp.) o// else if it has object-number-for-owner in bn member, show that diff --git a/src/ancrec.h b/src/ancrec.h index 0559fb8a9..1359ad344 100644 --- a/src/ancrec.h +++ b/src/ancrec.h @@ -147,7 +147,7 @@ class record // base class for records // rcdef.exe generates table entries and defines for the following as for derived class members; // they are here for uniformity & access via base class ptrs. CHANGE from old ratpak 2-92: all records have name, ownTi: // CAUTION check record::CopyFrom if these members changed. - ANAME name; // char name[] + CULSTR name; // user-specified object name TI ownTi; // 0 or subscript of owning object in anchor b->ownB // base class functions @@ -223,7 +223,7 @@ class record // base class for records virtual void Copy( const record* pSrc, int options=0); virtual int IsCountable([[maybe_unused]] int options ) const { return 1; } virtual void FixUp() { }; // optional fixup after reAl() - void SetName( const char* _name) { strncpy0( name, _name, sizeof( ANAME)); } + void SetName( const char* _name) { name.Set( _name); } int IsNameMatch( const char* _name) const; const char* getChoiTx( int fn, int options=0, SI chan=-1, BOOL* bIsHid=NULL) const; diff --git a/src/cgcomp.cpp b/src/cgcomp.cpp index b79deb0e2..7a1c913b0 100644 --- a/src/cgcomp.cpp +++ b/src/cgcomp.cpp @@ -663,7 +663,7 @@ RC ANDAT::ad_MassFlow( // use average if pres diff = 0 #if defined( _DEBUG) if (rhoIn2 < 0.) - { printf( "Vent '%s': Neg rhoIn2\n", ad_pIZXRAT->name); + { printf( "Vent '%s': Neg rhoIn2\n", ad_pIZXRAT->name.CStr()); rhoIn2 = 0.07; } #endif @@ -1804,10 +1804,9 @@ TI ZNR::zn_AddIZXFER( // add IZXFER coupled to this zone IZXRAT* ize; IzxR.add( &ize, ABT); - ize->SetName( name); - // append suffix - int catOption = 1; // attempt to truncate name size exceeded - strCatIf( ize->name, sizeof( ize->name), "-", nmSfx, catOption); + char tName[200]; + strCatIf(tName, sizeof(tName), "-", nmSfx, 1); + ize->name = tName; ize->iz_zi1 = ss; // idx of this zone ize->iz_nvcntrl = _ty; ize->iz_pAF = pAF; diff --git a/src/cgdebug.cpp b/src/cgdebug.cpp index f1bf3cfce..30518caf3 100644 --- a/src/cgdebug.cpp +++ b/src/cgdebug.cpp @@ -57,7 +57,7 @@ void FC cgzndump( // "Print" description of zone from ZNR record ("ZDD" report) // ZNR entry (cnrecs.def/rccn.h) pgbuildr table static PB_DATOFFL hzt[] = { // pgfmt r c memberOffset dt units wid cvfmt label -{ L, C+3, 20, ofa( ZNR, name), DTANAME, UNN,16, FS, "ZONE DATA for zone " }, +{ L, C+3, 20, off( ZNR, name), DTCULSTR, UNN,16, FS, "ZONE DATA for zone " }, { L, C, C+20, PBARGSI, DTCH, UNN, 7, FS, "Model: " }, // omit .xsurf1 .. .shtf { L, C+1, 6, off( ZNR, i.znArea), DTF, UNN, 7, FL+2, "CFA: " }, @@ -147,7 +147,7 @@ o static PBHEAD cfh = { PBDATOFFL, cft, 0, 0, 0 }; static PB_DATOFFL cmpt1[] = { // pgfmt r c mbrOffset dt units wid cvfmt label // omit .ty, .next -{ L, C, 9, ofa( XSRAT, name), DTANAME, UNN, 16, FL, "Surface " }, +{ L, C, 9, off( XSRAT, name), DTCULSTR, UNN, 16, FL, "Surface " }, { L, C, C+6, off( XSRAT, x.xs_area ), DTF, UNN, 7, FL+1, "Area: " }, { L, C, C+5, off( XSRAT, x.azm ), DTF, UNANGLE, 4, FL, "Az: " }, { L, C, C+3, off( XSRAT, x.tilt ), DTF, UNANGLE, 4, FL, "T: " }, @@ -168,7 +168,7 @@ static PBHEAD cmph1 = { PBDATOFFL, cmpt1, 0, 0, 0 }; static PB_DATOFFL cmpt1i[] = { // pgfmt r c mbrOffset dt units wid cvfmt label // omit .ty, .next -{ L, C, 9, ofa( XSRAT, name), DTANAME, UNN, 16, FL, "IntSurf " }, // "IntSurf": difference from above +{ L, C, 9, off( XSRAT, name), DTCULSTR, UNN, 16, FL, "IntSurf " }, // "IntSurf": difference from above { L, C, C+6, off( XSRAT, x.xs_area ), DTF, UNN, 7, FL+2, "Area: " }, { L, C, C+5, off( XSRAT, x.azm ), DTF, UNANGLE, 4, FL, "Az: " }, { L, C, C+3, off( XSRAT, x.tilt ), DTF, UNANGLE, 4, FL, "T: " }, @@ -188,7 +188,7 @@ static PBHEAD cmph1i = { PBDATOFFL, cmpt1i, 0, 0, 0 }; static PB_DATOFFL cmpt1io[] = { // pgfmt r c mbrOffset dt units wid cvfmt label // omit .ty, .next -{ L, C, 9, ofa( XSRAT, name), DTANAME, UNN, 16, FL, "IntSurf " }, +{ L, C, 9, off( XSRAT, name), DTCULSTR, UNN, 16, FL, "IntSurf " }, { L, C, C+6, off( XSRAT, x.xs_area ), DTF, UNN, 7, FL+2, "Area: " }, { L, C, C+5, off( XSRAT, x.azm ), DTF, UNANGLE, 4, FL, "Az: " }, { L, C, C+3, off( XSRAT, x.tilt ), DTF, UNANGLE, 4, FL, "T: " }, @@ -203,7 +203,7 @@ static PBHEAD cmph1io = { PBDATOFFL, cmpt1io, 0, 0, 0 }; static PB_DATOFFL cmpt2[] = { // pgfmt r c mbrOffset dt units wid cvfmt label // omit .ty, .next -{ L, C, 8, ofa( XSRAT, name ),DTANAME, UNN, 16, FL, "Window " }, +{ L, C, 8, off( XSRAT, name ),DTCULSTR, UNN, 16, FL, "Window " }, { L, C, C+7, off( XSRAT, x.xs_area ), DTF, UNN, 7, FL+2, "Area: " }, { L, C, C+5, off( XSRAT, x.azm ), DTF, UNANGLE, 4, FL, "Az: " }, { L, C, C+3, off( XSRAT, x.tilt ), DTF, UNANGLE, 4, FL, "T: " }, @@ -221,7 +221,7 @@ static PBHEAD cmph2 = { PBDATOFFL, cmpt2, 0, 0, 0 }; static PB_DATOFFL cmpt3[] = { // pgfmt r c mbrOffset dt units wid cvfmt label // omit .ty, .next -{ L, C, 7, ofa( XSRAT, name), DTANAME, UNN, 16, FL, "Perim " }, +{ L, C, 7, off( XSRAT, name), DTCULSTR, UNN, 16, FL, "Perim " }, { L, C, C+8, off( XSRAT, x.xs_area ), DTF, UNN, 7, FL+2, "Length: " }, // aligned with surface Area { L, C, C+19, off( XSRAT, x.xs_UNom ), DTF, UNN, 7, FL+3, "F2: " }, // aligned with surface U { PBMETHEND } @@ -233,7 +233,7 @@ static PBHEAD cmph3 = { PBDATOFFL, cmpt3, 0, 0, 0 }; static PB_DATOFFL izxct[] = { // pgfmt r c mbrOffset dt units wid cvfmt label // newline between / blank line above first -{ L, C, 8, ofa( XSRAT, name), DTANAME, UNN,16, FL, "IzXfer " }, // izxfer name, if any, constant width. +{ L, C, 8, off( XSRAT, name), DTCULSTR, UNN,16, FL, "IzXfer " }, // izxfer name, if any, constant width. // zone names: caller puts pointers in arg list. squeezed format. { L, C, C+6, PBARGSI, DTCH, UNN,16, FS, "Zn1: " }, // c +1 to align. wid 12-->16 2-95. { L, C, C+7, PBARGSI, DTCH, UNN,16, FS, "Zn2: " }, // wid 12-->16 2-95 @@ -344,7 +344,7 @@ static PB_DATOFFL wshadt[] = { #if 0 x { L, C+1, 17, off( WSHADRAT, wWidth ), DTF, UNN, 7, FL+3, "Shading wW: " }, #else//name 2-95 -{ L, C+1, 10, ofa( WSHADRAT, name ), DTANAME,UNN,16,FL, "Shading "}, +{ L, C+1, 10, off( WSHADRAT, name ), DTCULSTR,UNN,16,FL, "Shading "}, { L, C, C+4, off( WSHADRAT, wWidth ), DTF, UNN, 7, FL+3, "wW: " }, #endif { L, C, C+6, off( WSHADRAT, wHeight ), DTF, UNN, 7, FL+3, "wH: " }, @@ -371,7 +371,7 @@ static PB_DATOFFL sgdt[] = { // pgfmt r c memberOff dt units wid cvfmt label // newline: is continuation on same PAGE // caller supplies THREE string args describing target -{ L, C+1, 16, PBARGSI, DTANAME, UNN, 20, FS, "SgDist to " }, // "mass"/"surface"/"zone" +{ L, C+1, 16, PBARGSI, DTCULSTR, UNN, 20, FS, "SgDist to " }, // "mass"/"surface"/"zone" { L, C, C+1, PBARGSI, DTCH, UNN, 20, FS, " " }, // name { L, C, C+1, PBARGSI, DTCH, UNN, 20, FS, " " }, // "inside"/"outside"/"CAir"/"total" { L, C, C+6+3, off( SGDIST, sd_FSO), DTF, UNN, 7, FL+3, " FSO: " }, @@ -409,9 +409,9 @@ static PBHEAD ashwatH = { PBDATOFFL, ashwatT, 0, 0, 0 }; if (xs->x.xs_ty == ty) // if type matches { // special arg(s) required by certain specific tables, 2-95 - char * argp = (char *)PBSPECEND; + const char * argp = (const char *)PBSPECEND; if (ty==CTINTWALL && adjZi) // if doing other sides of interior walls - argp = ZrB.p[xs->ownTi].name; // show owning zone name, where full info is + argp = ZrB.p[xs->ownTi].name.CStr(); // show owning zone name, where full info is else if ( ty==CTEXTWALL || ty==CTINTWALL // for surface... || ty==CTMXWALL || ty==CTWINDOW ) // or window, show exterior condition, with pertinent subfields { @@ -443,7 +443,8 @@ static PBHEAD ashwatH = { PBDATOFFL, ashwatT, 0, 0, 0 }; &wshadh, &WshadR.p[xs->x.iwshad], PBSPECEND ); for (int i = -1; ++i < xs->x.nsgdist; ) // dump its solar gain dists { - char *s1 = nullptr, *s2, *s3 = nullptr; + char* s1 = nullptr; + const char *s3 = nullptr; BP rb = nullptr; switch (xs->x.sgdist[i].sd_targTy) { @@ -460,7 +461,7 @@ static PBHEAD ashwatH = { PBDATOFFL, ashwatT, 0, 0, 0 }; break; } - s2 = rb->rec(xs->x.sgdist[i].sd_targTi).name; + const char * s2 = rb->rec(xs->x.sgdist[i].sd_targTi).name.CStr(); switch (xs->x.sgdist[i].sd_targTy) { case SGDTTZNAIR: @@ -492,7 +493,7 @@ LOCAL void FC cgMassDump( MSRAT* mse) // Dump a mass // MSRAT entry pgbuild table static PB_DATOFFL masst[] = { // pgfmt r c mbrOffset dt units wid cvfmt label -{ L, C, 6, ofa( MSRAT, name), DTANAME, UNN, 16, FL, "Mass " }, // wid 12-->16, FS-->FL 2-95. +{ L, C, 6, off( MSRAT, name), DTCULSTR, UNN, 16, FL, "Mass " }, // wid 12-->16, FS-->FL 2-95. { L, C, C+9, off( MSRAT, ms_area), DTF, UNN, 7, FL+3, "Area: " }, { L, C, C+9, off( MSRAT, ms_UNom), DTF, UNN, 10, FL+4, "UNom: " }, { L, C, C+6, off( MSRAT, ms_tc ), DTF, UNN, 5, FL+2, "tc: " }, diff --git a/src/cgwthr.cpp b/src/cgwthr.cpp index 85ca16dec..18beecbe2 100644 --- a/src/cgwthr.cpp +++ b/src/cgwthr.cpp @@ -570,7 +570,7 @@ float edflist[] = { 20.f, 30.f, 40.f }; DESCOND dc( &DcR, 1); dc.dc_doy = doy; - strcpy( dc.name, "Test"); + dc.name = "Test"; for (int ib=0; ebnlist[ ib]>=0.f; ib++) { dc.dc_ebnSlrNoon = ebnlist[ ib]; diff --git a/src/cncult3.cpp b/src/cncult3.cpp index 56bbe85f3..d0226a943 100644 --- a/src/cncult3.cpp +++ b/src/cncult3.cpp @@ -688,7 +688,7 @@ RC MSRAT::ms_Make( // fill MSRAT for SFI + CON sf->oer( (char *)rc); // report error // fill mass record (even if not RCOK) - strcpy( name, sf->name); // name + name = sf->name; // name #if 0 && defined( _DEBUG) x if (strMatch( name, "North_Door")) x printf( "Hit\n"); @@ -3439,8 +3439,8 @@ LOCAL RC FC cnuCompAdd( // Add an XSRAT entry to zone's XSURF chain // allocate and fill XSRAT record XSRAT* xr; CSE_E( XsB.add( &xr, WRN) ) // add record to XsB (a run record anchor) / return bad if error - strcpy( xr->name, name); // name for runtime probing, 1-92 - xr->ownTi = zi; // store zone + xr->name = name; // name for runtime probing, 1-92 + xr->ownTi = zi; // store zone xr->x.Copy( x); // apply building and zone rotation // use double, make Top.tp_bldgAzm=360 have no effect diff --git a/src/cncult4.cpp b/src/cncult4.cpp index 2ea44d1f3..cbbb63844 100644 --- a/src/cncult4.cpp +++ b/src/cncult4.cpp @@ -87,9 +87,9 @@ RC topPrfRep() // REPORT/EXPORT PRE-INPUT FCN called by cncult2.cpp:topStarPrf if (RfiB.n==0) // if no report files yet -- insurance: recall not expected { RFI *rfp; - CSE_E( RfiB.add( &rfp, WRN) ) // add report file record for PRIMARY REPORTFILE / return if error + CSE_E( RfiB.add( &rfp, WRN) ) // add report file record for PRIMARY REPORTFILE / return if error fs = (UCH *)rfp + RfiB.sOff; // point record's field status bytes (sstat[]) - strcpy( rfp->name, "Primary" ); // record name + rfp->name = "Primary"; // record name rfp->fileName = strsave( strffix2( InputFilePathNoExt, ".rep", 1)); // file name: use input file name w/o extension (includes path) // InputFilePathNoExt known to not have extension, always add ".rep" @@ -103,9 +103,9 @@ RC topPrfRep() // REPORT/EXPORT PRE-INPUT FCN called by cncult2.cpp:topStarPrf if (XfiB.n==0) // if no export files yet -- insurance: recall not expected { RFI *xfp; - CSE_E( XfiB.add( &xfp, WRN) ) // add export file record for PRIMARY EXPORTFILE / return if error + CSE_E( XfiB.add( &xfp, WRN) ) // add export file record for PRIMARY EXPORTFILE / return if error fs = (UCH *)xfp + XfiB.sOff; // point record's field status bytes (sstat[]) - strcpy( xfp->name, "Primary" ); // record name + xfp->name = "Primary"; // record name xfp->fileName = strsave( strffix2( InputFilePathNoExt, ".csv", 1)); // file name: use input file name & path // InputFilePathNoExt known to not have extension, always add ".csv" @@ -1037,11 +1037,11 @@ RC RI::ri_oneRxp() // process one report or export for topRxp sname = "Energy Balance"; break; // C_RPTYCH_ZEB } - sprintf( buf, "%s %s %s", sname, exrePort, name); // eg "Statistics report userName1", for errmsgs + sprintf( buf, "%s %s %s", sname, exrePort, name.CStr()); // eg "Statistics report userName1", for errmsgs vrOpen( &vrh, buf, optn); // open virtual report, get handle (vrh). if (DvriB.add( &dvrip, WRN)==RCOK) // add record to DVRI / if ok (fail unlikely after al above) { - strcpy( dvrip->name, name); // fill entry. name: for errMsgs, UDT default. + dvrip->name = name; // fill entry. name: for errMsgs, UDT default. dvrip->ownTi = zi; dvrip->mtri = mtri; dvrip->dv_dhwMtri = ri_dhwMtri; diff --git a/src/cnguts.cpp b/src/cnguts.cpp index 070a6db7a..478e20a9f 100644 --- a/src/cnguts.cpp +++ b/src/cnguts.cpp @@ -2089,7 +2089,7 @@ LOCAL void FC mtrsAccum( // Accumulate metered results: add interval to next, + #if defined( _DEBUG) int bTrc = 0; // strMatch( mtr->name, "ElecMtrInitNo"); if (bTrc) - printf( "\nAccum Day=%d hr=%d mtr='%s' ivl=%d ff=%d", Top.jDay, Top.iHr, mtr->name, ivl, firstflg); + printf( "\nAccum Day=%d hr=%d mtr='%s' ivl=%d ff=%d", Top.jDay, Top.iHr, mtr->name.CStr(), ivl, firstflg); #endif MTR_IVL_SUB* mtrSub2 = &mtr->Y + (ivl - C_IVLCH_Y); // point destination meter interval substruct for interval @@ -2148,7 +2148,7 @@ LOCAL void FC mtrsFinalize( // Finalize meters (after post-stage calcs e.g. bat #if defined( _DEBUG) int bTrc = 0; // strMatch( mtr->name, "ElecMtrInitNo"); if (bTrc) - printf( "\nFinal Day=%d hr=%d mtr='%s' ivl=%d ff=%d", Top.jDay, Top.iHr, mtr->name, ivl, firstflg); + printf( "\nFinal Day=%d hr=%d mtr='%s' ivl=%d ff=%d", Top.jDay, Top.iHr, mtr->name.CStr(), ivl, firstflg); #endif MTR_IVL_SUB* mtrSub2 = &mtr->Y + (ivl - C_IVLCH_Y); // point destination meter interval substruct for interval diff --git a/src/cnloads.cpp b/src/cnloads.cpp index 22f4ae96a..1d2c54222 100644 --- a/src/cnloads.cpp +++ b/src/cnloads.cpp @@ -1121,7 +1121,7 @@ x } tz = zn_tzspD; #if defined( _DEBUG) else - printf( "Zone '%s': control zone vent mismatch\n", name); + printf( "Zone '%s': control zone vent mismatch\n", name.CStr()); #endif } } @@ -1131,7 +1131,7 @@ x } #if defined( _DEBUG) float tzx = zn_TAirCR( 0., 0.); if (fabs( tz - tzx) > .0001) - printf( "Zone '%s': floating temp mismatch\n", name); + printf( "Zone '%s': floating temp mismatch\n", name.CStr()); #endif } @@ -1415,7 +1415,7 @@ RC ZNR::zn_CondixCR2() // zone conditions, part 2 if (!Top.isWarmup && rs->rs_mode != zn_hcMode) // zone mode should match RSYS mode // don't check during warmup (including autosize) - printf( "Zone '%s': Mode mismatch\n", name); + printf( "Zone '%s': Mode mismatch\n", name.CStr()); #endif double mCp = zn_rsAmfSup*Top.tp_airSH; double tSup = rs->rs_asSup.as_tdb; @@ -6105,7 +6105,7 @@ double RSYS::rs_AmfRequired( // find all-zone total AMF required for tSup { double znAmf = zp->zn_AmfHvacCR( zp->zn_tzsp, tSup); #if defined( _DEBUG) if (znAmf < 0.) - printf( "Zone '%s': Neg amf\n", zp->name); + printf( "Zone '%s': Neg amf\n", zp->name.CStr()); #endif rsAmf += znAmf; } diff --git a/src/cnztu.cpp b/src/cnztu.cpp index b0f3f5c10..8c6774169 100644 --- a/src/cnztu.cpp +++ b/src/cnztu.cpp @@ -302,7 +302,7 @@ static RC addZhx( // add ZHX (Zone HVAC transfer) for TU, probably later ZNR (ve // store caller's data if (name) - strcpy(zhx->name, name); + zhx->name = name; zhx->zhxTy = ty; CSE_V zhx->sp = sp; // CSE_V macro stores into float as tho it is a void * to prevent float error on NAN (expr handle) zhx->spPri = spPri; diff --git a/src/cul.cpp b/src/cul.cpp index 228206c2c..5042487dd 100644 --- a/src/cul.cpp +++ b/src/cul.cpp @@ -261,8 +261,8 @@ LOCAL RC FC datPt( void); LOCAL RC FC ckiCults( void); LOCAL void FC finalClear( void); LOCAL void FC xStkPt( void); -LOCAL RC ganame( USI f, char *what, char **pp); -LOCAL RC xpr( SI ty, USI fdTy, USI _evfOk, USI useCl, USI f, char *what, NANDAT *p, USI *pGotTy, USI *pGotEvf ); +LOCAL RC ganame( USI f, const char* what, CULSTR& cs); +LOCAL RC xpr( SI ty, USI fdTy, USI _evfOk, USI useCl, USI f, const char *what, NANDAT *p, USI *pGotTy, USI *pGotEvf ); LOCAL void FC termnIf( void); LOCAL RC CDEC perNxE( char *ms, ...); LOCAL SI FC skip2end( SI lastCs, SI *pcs); @@ -297,8 +297,8 @@ LOCAL SI FC nxRat( BP * pr, int options=0); LOCAL SI FC nxRec( SI bads, void **pe); LOCAL SI FC nxDatMbr( void **pp); LOCAL bool nxC( CULT* &pp); -LOCAL RC ratLuCtx( BP b, char *name, char *what, record **pE); -LOCAL RC ratLuDefO( BP b, const char* name, TI defO, char *what, record **pE, const char** pMsg); +LOCAL RC ratLuCtx( BP b, const char* name, const char* what, record **pE); +LOCAL RC ratLuDefO( BP b, const char* name, TI defO, const char* what, record **pE, const char** pMsg); //public 1-92: LOCAL TI FC ratDefO( BP b); LOCAL void FC ratCultO( void); @@ -1013,13 +1013,12 @@ LOCAL RC FC culENDER( // do c u l end cases || xSp->cs==4) // .. or DEFTYPE basAnc record && nxPrec() > PRSEM ) // if next token NOT terminator (eof, verb, verb-like, type, ';') (ungets the token) { - char *p; - if (ganame( 0, NULL, &p)==RCOK) // get id, "text", or const string expr (uses xSp->c->id) + CULSTR cs; + if (ganame( 0, NULL, cs)==RCOK) // get id, "text", or const string expr (uses xSp->c->id) { - if (!((record*)xSp->e)->IsNameMatch( p)) // if name wrong + if (!((record*)xSp->e)->IsNameMatch( cs)) // if name wrong pWarnlc( (char *)MH_S0217, // warning message "%s name mismatch: '%s' vs '%s'" - (char *)c->id, p, ((record*)(xSp->e))->name ); - dmfree( DMPP( p)); + (char *)c->id, cs.CStr(), ((record*)(xSp->e))->name); } // else: continue on error. ganame assumed to have perNx'd. } @@ -1079,15 +1078,14 @@ LOCAL RC FC culDELETE() // do "delete" for culDo. Uses xSp->c. BP b = (BP)c->b; // get Identifier, Quoted txt, or constant string eXpr for name, & get terminator. - char* name; + CULSTR name; CSE_E( ganame( 0, // disallow "all" and "sum" NULL, // use xSp->c->id in error messages - &name ) ) // rcvs dm string ptr. gets terminator. local. + name ) ) // rcvs dm string ptr. gets terminator. local. // execute: find existing record to delete record *e; rc = ratLuCtx( b, name, c->id, &e); // look up basAnc record by name, resolve ambiguity per curr context. local. - dmfree( DMPP( name)); // free name string in dm (heap): avoid memory leak. dmpak.cpp. if (rc) return RCBAD; // error return if not found or ambiguous, msg already done. @@ -1112,7 +1110,6 @@ LOCAL RC FC culRATE( // do RATE cult entry DMHEAPCHK( "culRATE entry") record *e; int fileIx, line; - char *name=NULL, *likeName=NULL, *typeName=NULL; SI xprD=0, copy=0, lity=0; RC rc; @@ -1137,6 +1134,7 @@ LOCAL RC FC culRATE( // do RATE cult entry NULL, // would receive column NULL, 0 ); // char[] buffer would rcv line text + CULSTR name; if (nxPrec() <= PRSEM) // if terminator next (eof, verb-like, verb, type, ';') (ungets it) { if (defTy) // deftype rq's name @@ -1155,7 +1153,7 @@ LOCAL RC FC culRATE( // do RATE cult entry // get Identifier, Quoted txt, or constant string eXpression for name. local fcn. if ( ganame( 0, // disallow "all" and "sum" NULL, // use xSp->c->id in error messages - &name ) // rcvs string ptr. ganame gets terminator. + name) // rcvs string ptr. ganame gets terminator. != RCOK ) return RCSKIP2END; // on error in name, skip stmt blk (ganame already perNx'd). // duplicate name check is below @@ -1164,6 +1162,7 @@ LOCAL RC FC culRATE( // do RATE cult entry } // get optional "LIKE " or "COPY " + CULSTR likeName; if (!alter && tkIf2( CUTLIKE, CUTCOPY)) { if (tokTy==CUTCOPY) @@ -1175,7 +1174,7 @@ LOCAL RC FC culRATE( // do RATE cult entry // get Identifier, Quoted text, or constant string eXpr for record name to like/copy if ( ganame( 0, // disallow "all" and "sum" ttTx, // "like" or "copy" txt for msgs, set by toke() - &likeName ) // rcvs string ptr. xpr (from ganame) gets terminator. + likeName ) // rcvs string. xpr (from ganame) gets terminator. != RCOK ) // (also uses xSp->c->id) return RCSKIP2END; // on error in likeName, skip stmt blk. // don't look up name til new record added: basAnc may move @@ -1183,6 +1182,7 @@ LOCAL RC FC culRATE( // do RATE cult entry } // get optional "USETYPE " + CULSTR typeName; if (!alter && tkIf(CUTTYPE)) { if (c->f & NO_LITY) // note 1-12-91 NO_LITY unused, but keep as might want it. @@ -1193,13 +1193,13 @@ LOCAL RC FC culRATE( // do RATE cult entry // get Identifier, Quoted text, or constant string eXpression for type name if ( ganame( 0, // disallow "all" and "sum" ttTx, // "usetype" text for errmsgs, set by toke() - &typeName ) // rcvs string ptr. gets terminator. + typeName ) // rcvs string. gets terminator. != RCOK ) // (also uses xSp->c->id) return RCSKIP2END; // on error in typeName, skip stmt blk. // name is looked up later. xprD++; // say terminator already gotten - if (likeName || tkIf2(CUTLIKE,CUTCOPY) ) // if LIKE b4 or after + if (likeName.IsSet() || tkIf2(CUTLIKE, CUTCOPY)) // if LIKE b4 or after return perNxE( (char *)MH_S0226, (char *)c->id ); // "Can't use LIKE or COPY with USETYPE in same %s" } @@ -1217,11 +1217,11 @@ LOCAL RC FC culRATE( // do RATE cult entry else // if alter ... { // check for duplicate name before adding record. - if (name) // if name given !!?? not checked til 1-92 ! + if (!name.IsBlank()) // if name given { // "owned" basAnc record names need only be unique for same owner: if ( !defTy // type names must be globally unique - && xSp > xStk ) // insurance: if command is nested + && xSp > xStk ) // insurance: if command is nested { if (b->findRecByNmO( name, // find basAnc record by name/owner, ancrec.cpp xSp->i, // owner subscript. always here?? @@ -1261,12 +1261,12 @@ x name, strlen(name), sizeof(ANAME)-1 ); /* note: there is no default data for RATEs in calling cult entry. New record is all 0's (inits FsSET, FsVAL, FsERR, FsFROZ, etc to 0). Default data can be supplied via STAR entry: see nuCult. Still??7-92 */ - if (name) // if name given + if (!name.IsBlank()) // if name given e->SetName( name); // copy name into record // .fileIx & .line are set below, after LIKE/COPY/USETYPE // do LIKE/COPY if given: look up record in this basAnc, copy data after name - if (likeName) + if (likeName.IsSet()) { record *likeE; if (ratLuCtx( b, likeName, c->id, &likeE)==RCOK) // below. @@ -1280,11 +1280,10 @@ x name, strlen(name), sizeof(ANAME)-1 ); /* copy basAnc record contents, its deferred ref table entries (drefs), and, if COPY, subrat records w drefs. local. can ret RCFATAL. */ } - dmfree( DMPP( likeName)); } // if likeName // do USETYPE if given: look up record in types subrat, copy data after name - if (typeName) + if (typeName.IsSet()) { record *typeE; if (b->tyB->findRecByNm1( typeName, NULL, /*VV*/ &typeE) != RCOK) @@ -1296,15 +1295,10 @@ x name, strlen(name), sizeof(ANAME)-1 ); e->ty = typeE->ss; // nz means USETYPE'd entry. Avail for user fcns to test or access type CSE_E( rateDuper( e, typeE, 0, 0, -1, (CULT *)c->CULTP2) ) // copy contents, dref's, subRat records } -#if 1 // memory leak, 8-24-2010 - dmfree( DMPP( typeName)); -#endif DMHEAPCHK( "USETYPE dup") } // if typeName } // if alter ... else ... - dmfree( DMPP( name)); // free name string storage - // Add context stack level / invoke nested table xSp++; // overflow checked by caller memset( xSp, 0, sizeof(XSTK) ); // 0 all members of new xStk entry @@ -1319,12 +1313,10 @@ x name, strlen(name), sizeof(ANAME)-1 ); if (alter) { - CULT *cc; - SI fn; // reInit for ALTER - for (cc = xSp->cult; cc->id; cc++) // clear CULT "entry has been used" flags: permits reentry + for (CULT* cc = xSp->cult; cc->id; cc++) // clear CULT "entry has been used" flags: permits reentry cc->IFLAGS &= ~BEEN_SET; // of item, without requiring it (FsSET, FsVAL, FsAS left on). - for (fn = 0; fn < b->nFlds; fn++) // clear field status "error msg issued for field" bits: + for (int fn = 0; fn < b->nFlds; fn++) // clear field status "error msg issued for field" bits: xSp->fs0[fn] &= ~FsERR; // insure full check & reporting of errors after alter. 12-91. } else @@ -2096,26 +2088,29 @@ x UCH *fsj = xSp->fs; // fetch field status byte ptr. Incremented for suc // get and store value according to type - USI useCl = (c->EUCL) ? (c->EUCL) : 1; // expr use class (1991) from .uc or as changed; default 0 to 1. - // (all uc's are default, 1995; uc must be non-0; 1 is former cncult.h:UGEN). + USI useCl = (c->EUCL) ? (c->EUCL) : 1; // expr use class (1991) from .uc or as changed; default 0 to 1. + // (all uc's are default, 1995; uc must be non-0; 1 is former cncult.h:UGEN). + CULSTR cs; switch (c->ty) { XSTK* x; record *e; SI v; USI gotEvf, l; - char ch, *s, *p; + char ch; + const char* s; + const char* p; default: return perNx( (char *)MH_S0234, (INT)c->ty, (char *)c->id, c ); //"cul.cpp:culDAT: Bad .ty %d in CULT for '%s' at %p" - case TYREF: // deferred-resolution reference to basAnc record, or "all"/"sum" per flag bits - // input is name of record; drefRes() stores record subscript at RUN - + case TYREF: // deferred-resolution reference to basAnc record, or "all"/"sum" per flag bits + // input is name of record; drefRes() stores record subscript at RUN // get Identifier, Quoted text, or constant string eXpression. local fcn. - rc = ganame( f, // allow "all", "sum", etc per CULT flags; ALL_OK cleared after 1st ARRAY elt. - NULL, // use xSp->c->id in errMsgs - &p ); // receives dm string ptr. ganame gets terminator. + rc = ganame(f, // allow "all", "sum", etc per CULT flags; ALL_OK cleared after 1st ARRAY elt. + NULL, // use xSp->c->id in errMsgs + cs); // receives string. ganame gets terminator. + p = cs; if (rc==RCOK) // if ok record name, not special word or error { drefAdd(p); // add dref (Deferred REFerence) to basAnc record named *p; uses xSp. local. @@ -2244,10 +2239,10 @@ x UCH *fsj = xSp->fs; // fetch field status byte ptr. Incremented for suc // get Identifier, Quoted text, or const string eXpression. local fcn. CSE_E( ganame( 0, // disallow "all" and "sum" **** implement here like TYREF if needed, 1-92 NULL, // use xSp->c->id in errMsgs - &p ) ) // receives dm string ptr. gets terminator. + cs ) ) // receives dm string ptr. gets terminator. // search specified basAnc for record with that name. If > 1 found, use the one whose owning RATE is open per xStk. - if (ratLuCtx( (BP)c->b, p, c->id, &e) != RCOK) // local. if not found... + if (ratLuCtx( (BP)c->b, cs, c->id, &e) != RCOK) // local. if not found... { xSp->fs[xSp->j] |= FsERR; // say msg issued for field (eg suppress "no ___ given" if RQD) return perNx(NULL); // skip input to nxt stmt (ratLuCtx issued message). @@ -2634,18 +2629,17 @@ LOCAL RC ganame( // get identifier, quoted text, or const string expr, or optional special word, for an object name, and terminator USI f, // flag bits: SUM_OK: accept "sum" (returns RC_SUM); ALL_OK, [ELECTRIC_OK,] etc likewise (see xpr). - char *what, // text for errmsgs (eg ttTx) or NULL for xSp->c->id - char **pp ) // receives NANDLE or ptr to string in dm -/* also uses: if 'what' is NULL: xSp->c->id (re compile errMsgs) */ + const char* what, // text for errmsgs (eg ttTx) or NULL for xSp->c->id + CULSTR& cs) // receives string (or NANDLE) +// also uses: if 'what' is NULL: xSp->c->id (re compile errMsgs) -/* returns: RCOK: normal success, tokTy = CUTCOM if comma followed it and f & ARRAY on. - RC_SUM, RC_ALL, RC_ALLBUT, [RC_ELECTRIC]: returned if special word gotten and enabling flags on. - other: error, message issued, perNx done. */ +// returns: RCOK: normal success, tokTy = CUTCOM if comma followed it and f & ARRAY on. +// RC_SUM, RC_ALL, RC_ALLBUT, [RC_ELECTRIC]: returned if special word gotten and enabling flags on. +// other: error, message issued, perNx done. { /* link to a fir in srfd.cpp to get field type of an ANAME, partly to excercise new fields limit code 2-92 -- later just check length here?*/ - char *p; RC rc = xpr( TYID, // TYID: string, implied quotes on unreserved undeclared words sfirSFI[ SFI_NAME].fdTy, // get field type for an ANAME field so exman.cpp will check string length // (we have no defines for fld types: not invariant: data\fields.def @@ -2653,18 +2647,17 @@ LOCAL RC ganame( 0, 0, // 0 evfOk, useCl: require constant value f, // pass flags for "all" and "sum", etc 1-92 what, // pass arg thru - (NANDAT *)&p, // receives pointer to constant string value + (NANDAT *)&cs, // receives pointer to constant string value NULL, NULL ); // don't want type and evf if (rc==RCOK) // if ok and not special, check characters in name, 4-92. { + char* p = cs.CStrModifiable(); // point to string + strTrim( p); // in place trim WS from beg and end + int len = strlenInt(p); // allow high graphics characters 129-255. Should we bother to disallow 127-128? Embedded spaces ok. - // remove leading and trailing blanks from name - while (p[0] && strchr( " \t", p[0])) strcpy( p, p+1); // copy back over leading spaces and tabs - USI len = (USI)strlen(p); - while (len > 0 && strchr( " \t", p[len-1]) ) p[--len] = '\0'; // truncate trailing spaces and tabs // in names, disallow control characters 1-31: escape, form feed, newline, etc - for (SI i = 0; i < len; i++) + for (int i = 0; i < len; i++) if ( p[i] < ' ') // disallow control chars if (p[i] > 0) // allow 129-255 even if compiler extends sign return perNx( (char *)MH_S0247, (UI)p[i]); // "Illegal character 0x%x in name" @@ -2673,8 +2666,6 @@ LOCAL RC ganame( if (len==0) return perNx( (char *)MH_S0248); // "Zero-length name not allowed" // if caret not clear enuf also show what name is of. - // return pointer - *pp = p; } return rc; // RCOK, RC_SUM etc per f, error code. Also error returns above. } // ganame @@ -2693,7 +2684,7 @@ LOCAL RC xpr( // our local expression compiler interface / checker // ALL_OK (cul.h): accept "all" (returns RC_ALL) // ARRAY and ALL_OK: also accept "all_but" (returns RC_ALLBUT) // [ELECTRIC_OK (cul.h): accept "all" (returns RC_ELECTRIC)] - char *what, // token text for errMsgs or NULL to use xSp->c->id. + const char *what, // token text for errMsgs or NULL to use xSp->c->id. NANDAT* pp, // receives result or "NANDLE" (see exman.h) if a run-time expr. USI *pGotTy, // NULL or rcvs cuparse type found, eg TYFL or TYSTR for ty=TYFLSTR, TYSI for TYDOY. 11-91. USI *pGotEvf ) // NULL or rcvs variability gotten -- 0 constant (already stored), EVEOI, EVFHRLY, etc. @@ -2766,7 +2757,6 @@ LOCAL RC xpr( // our local expression compiler interface / checker // check returned value for reserved words 'sum' and 'all' 1-92. rc=RCOK here. if (gotTy==TYSTR) // if string found { - // char *p = *(char **)pp; // fetch result (pointer for TYSTR) CULSTR& cs = (*reinterpret_cast(pp)); if (!cs.IsNANDLE()) // if constant, not expression, found (don't allow exprs and sum/all in same call!) @@ -3978,9 +3968,9 @@ LOCAL RC ratLuCtx( // look up basAnc record by name, resolving ambiguities using current context. BP b, - char *name, - char *what, // name (eg c->id) of thing being sought, for errMsgs, or NULL to use b->what - record **pE ) // NULL or receives ptr to record if found + const char* name, + const char* what, // name (eg c->id) of thing being sought, for errMsgs, or NULL to use b->what + record **pE) // NULL or receives ptr to record if found /* if b is an ownable-record basAnc, uses default owner per current context when possible to determine which of entries with same name to use. @@ -4003,10 +3993,10 @@ LOCAL RC ratLuDefO( // look up basAnc record by name, resolving ambiguities usin BP b, const char* name, - TI defO, /* 0 or dfl owner subscript for ambiguity resolution. Must be 0 if b is not owned-record basAnc. - May be obtained with ratDefO (below). */ - char *what, // name (eg c->id) of thing being sought, for errMsgs, or NULL to use b->what - record **pE, // NULL or receives ptr to record if found + TI defO, // 0 or dfl owner subscript for ambiguity resolution. Must be 0 if b is not owned-record basAnc. + // May be obtained with ratDefO (below). + const char *what, // name (eg c->id) of thing being sought, for errMsgs, or NULL to use b->what + record **pE, // NULL or receives ptr to record if found const char** pMsg) // NULL or receives ptr to unissued Tmpstr error msg /* If more than one record with name is present, if defO non-0, returns one with owner defO if any. @@ -4023,7 +4013,7 @@ LOCAL RC ratLuDefO( // look up basAnc record by name, resolving ambiguities usin const char* ms = NULL; if (what==NULL) - what = (char *)b->what; + what = b->what; if (defO==0) // if no default owner given { rc = b->findRecByNm1( name, NULL, /*VV*/ &e); // find first record with given name, ancrec.cpp @@ -4134,11 +4124,11 @@ LOCAL void FC drefAddI( // add deferred reference table entry -- general inner // Dm ptr used here: caller is done with pointer or does own IncRef. TI defO ) // 0 or default owner per context { - DREF* drfp; // search table for existing entry to overwrite: // to eliminate superceded old entry (eg from type): // save table space, prevent spurious errMsg if not found at RUN. + DREF* drfp; for (int d = 0; d < nDref; d++) { drfp = dref + d; @@ -4187,12 +4177,10 @@ LOCAL void drefMove( // change dref's to refer to a new entry TI i = e->ss; // entry subscript whose dref's to move BP nuB = nuE->b; // new rat and TI nuI = nuE->ss; // subscr to put in the entries - DREF *drfp; // deferred reference table search pointer - SI d; // .. subscript - for (d = nDref; --d >= 0; ) // loop deferred ref's table + for (int d = nDref; --d >= 0; ) // loop deferred ref's table { - drfp = dref + d; + DREF* drfp = dref + d; if (drfp->b==b && drfp->i==i) // if a ref to given basAnc entry { drfp->b = nuB; // store new referer rat @@ -4211,9 +4199,8 @@ LOCAL void drefDup( // duplicate dref's at basAnc record dup TI i = e->ss; // entry subscript whose dref's to dup BP nuB = nuE->b; // new rat and TI nuI = nuE->ss; // subscr to put in the duplicate entries - SI d; // deferred reference table search subscript - for (d = nDref; --d >= 0; ) // loop deferred ref's table + for (int d = nDref; --d >= 0; ) // loop deferred ref's table { DREF* drfp = dref + d; // point to entry d if (drfp->b==b && drfp->i==i) // if a ref to given basAnc entry @@ -4234,12 +4221,10 @@ LOCAL void FC drefDel( record *e) // delete dref's referring to given basAnc re DMHEAPCHK( "drefDel entry") BP b = e->b; // rat and TI i = e->ss; // entry subscript whose dref's to delete - DREF *drfp; // deferred reference table search pointer - SI d; // deferred reference table search subscript - for (d = nDref; --d >= 0; ) // loop deferred ref's table + for (int d = nDref; --d >= 0; ) // loop deferred ref's table { - drfp = dref + d; + DREF* drfp = dref + d; if (drfp->b==b && drfp->i==i) // if a ref to given basAnc entry { dmfree( DMPP( drfp->toName)); // free dm pointer in entry to be overwritten @@ -4255,12 +4240,10 @@ LOCAL void FC drefDel( record *e) // delete dref's referring to given basAnc re LOCAL void FC drefDelFn( BP b, TI i, SI fn) // delete dref's referring to given field in given basAnc record { DMHEAPCHK( "drefDelFn entry") - DREF *drfp; // deferred reference table search pointer - SI d; // deferred reference table search subscript - for (d = nDref; --d >= 0; ) // loop deferred ref's table + for (int d = nDref; --d >= 0; ) // loop deferred ref's table { - drfp = dref + d; // point to entry d + DREF* drfp = dref + d; // point to entry d if (drfp->b==b && drfp->i==i && drfp->fn==fn) // if a ref to given basAnc record & field { dmfree( DMPP( drfp->toName)); // free dm pointer in entry to be overwritten @@ -4283,19 +4266,16 @@ LOCAL void FC drefAdj( // see also: adjOwTi(). { - DREF *drfp; // deferred reference table search pointer - SI d; // deferred reference table search subscript - - for (d = nDref; --d >= 0; ) // loop deferred ref's table + for (int d = nDref; --d >= 0; ) // loop deferred ref's table { - drfp = dref + d; // point to entry d + DREF* drfp = dref + d; // point to entry d // reference in (from) given rat if ( drfp->b==b // if a ref in given basAnc's records - && drfp->i >= minI ) // if ref is in entry at/after change point + && drfp->i >= minI ) // if ref is in entry at/after change point drfp->i += delta; // adjust for deletion (or insertion) in basAnc's record block // reference TO rat OWNED BY given rat if ( drfp->toB->ownB==b - && drfp->defO >= minI ) + && drfp->defO >= minI ) drfp->defO += delta; // refs TO given rat ... are held by name in table! } @@ -4695,7 +4675,7 @@ x xSp->b->rt==b->rt // (match rt not b so run basAncs, types basAncs work) MNAME( b->fir + fn) ); // punt, using name of member of record structure. } // culMbrId //=========================================================================== -const char* FC quifnn( char *s) // quote if not null, & supply leading space +const char* FC quifnn( const char *s) // quote if not null, & supply leading space // CAUTION: returned value in Tmpstr is transitory { diff --git a/src/cul.h b/src/cul.h index 0354d2d27..24cf1e111 100644 --- a/src/cul.h +++ b/src/cul.h @@ -261,7 +261,7 @@ void FC culClean(CLEANCASE cs); SI FC cul( SI cs, const char* fName, char *defex, CULT *cult, record *e, BOO *pAuszF=NULL); TI FC ratDefO( BP b); const char* FC culMbrId( BP b, unsigned int fn); -const char* FC quifnn( char *s); +const char* FC quifnn( const char *s); // cncult2.cpp RC FC ckRefPt( BP toBase, record * fromRec, TI mbr, const char* mbrName="", diff --git a/src/cuparse.cpp b/src/cuparse.cpp index 3112bce4d..cb484bb2c 100644 --- a/src/cuparse.cpp +++ b/src/cuparse.cpp @@ -606,7 +606,7 @@ LOCAL SYTBH symtab = { NULL, 0 }; USI evfOk = 0xffff; // evaluation frequencies allowed bits for current expression, ffff-->no limits. // EVENDIVL/EVPSTIVL stage bits here means end/post-of-interval evaluation ok. // also ref'd in cuprobe.cpp. - char * ermTx = NULL; // NULL or word/phrase/name descriptive of entire expression, for insertion in msgs. + const char* ermTx = NULL; // NULL or word/phrase/name descriptive of entire expression, for insertion in msgs. LOCAL USI choiDt = 0; // choice type (dtypes.h) for TYCH (incl TYNC): specifies ok choices & their conversions. // DTBCHOICB and DTBCHOICN bits determine whether 2-byte or 4-byte choice values are generated. // enables TYCH bit wherever TYANY wanTy is generated. @@ -658,7 +658,7 @@ x // SI did; // nz if does something: value stored or side effect /*----------------------- LOCAL FUNCTION DECLARATIONS ---------------------*/ LOCAL RC FC funcDef( OPTBL *oppTy); -LOCAL RC expr( SI toprec, USI wanTy, char *tx, SI aN); +LOCAL RC expr( SI toprec, USI wanTy, const char* tx, SI aN); LOCAL RC FC monOp( MOST *most); LOCAL RC FC unOp( SI toprec, USI argTy, USI wanTy, PSOP opSi, PSOP opFl, char *tx); LOCAL RC FC biOp( SI toprec, USI argTy, USI wanTy, PSOP opSi, PSOP opFl, char *tx); @@ -718,9 +718,9 @@ LOCAL SI FC tokeIf2( SI tokTy1, SI tokTy2); LOCAL SI CDEC tokeIfn( SI tokTy1, ... ); LOCAL void FC cuptokeClean( CLEANCASE cs); LOCAL RC FC addLocalSyms( void); -LOCAL const char* FC before( char *tx, SI aN); -LOCAL const char* FC after( char *tx, SI aN); -LOCAL const char* FC asArg( char *tx, SI aN); +LOCAL const char* FC before( const char* tx, int aN); +LOCAL const char* FC after( const char* tx, int aN); +LOCAL const char* FC asArg( const char* tx, int aN); LOCAL const char* FC datyTx( USI ty); LOCAL RC FC perI( int showTx, int showFnLn, int isWarn, const char* ms, va_list ap); @@ -996,7 +996,7 @@ RC FC exOrk( // compile expression from current input file, return constant valu // TYCH (2 or 4 byte) TYNC (rets TYFL / TYCH / TYNC=runtime determined) USI choiDtPar, // DTxxx data type (dtype.h) when wanTy is TYCH or TYNC, else not used. USI evfOkPar, // 0xffff or acceptable eval freq (and EVxxxIVL) bits: other evf's error - char *ermTxPar, // NULL or text describing preceding verb etc for err msgs + const char *ermTxPar, // NULL or text describing preceding verb etc for err msgs USI *pGotTy, // NULL or receives data type found (useful eg when TYFLSTR requested) USI *pEvf, // receives cleaned evaluation frequency bits SI *pisK, // receives non-0 if expression is constant @@ -1154,7 +1154,7 @@ RC FC expTy( SI toprec, USI wanTy, /* desired type. see exOrk() above for list of externally originated types. addl internally originated type combinations incl at least TYNUM and TYANY&~TYSI, 2-95. */ - char *tx, + const char* tx, SI aN ) /* parse/compile expression/statement of given type to current destination, @@ -1401,7 +1401,7 @@ LOCAL RC expr( // parse/compile inner recursive fcn other: compile assignment as nested, if allowed: leave value on run stack. TYCH: convert otherwise unrecognized ID's that match choiDt choices to string constants. TYFL without TYSI: causes early float of int operands 2-95. */ - char *tx, // text of operator, function, or verb, for error messages + const char* tx, // text of operator, function, or verb, for error messages SI aN ) // 0 or fcn argument number, for error messages // and uses: globals evfOk, ermTx, choiDt, . @@ -4438,7 +4438,7 @@ RC FC cuAddItSyms( SI tokTyPar, SI casi, STBK* tbl, USI entLen, int op) } // cuAddItSyms //========================================================================== -LOCAL const char* FC before( char *tx, SI aN) // subtext for error message for expression BEFORE operator +LOCAL const char* FC before( const char* tx, int aN) // subtext for error message for expression BEFORE operator /* if tx is NULL: return "", if aN != 0 (error re fcn arg): return " as arg to ''" @@ -4451,7 +4451,7 @@ LOCAL const char* FC before( char *tx, SI aN) // subtext for error message for return strtprintf( " before '%s'", tx); } // before //========================================================================== -LOCAL const char* FC after( char *tx, SI aN) // subtext for error message for expression AFTER operator, similarly +LOCAL const char* FC after( const char *tx, int aN) // subtext for error message for expression AFTER operator, similarly { if (aN) return asArg( tx, aN); @@ -4462,12 +4462,12 @@ LOCAL const char* FC after( char *tx, SI aN) // subtext for error message for ex //========================================================================== LOCAL const char* FC asArg( // errMsg subtext: " as argument[ n][ to 'f']" - char *tx, // fcn name or NULL to omit - SI aN ) // argument number, or -1 to omit + const char* tx, // fcn name or NULL to omit + int aN ) // argument number, or -1 to omit { return strtprintf( " as argument%s%s", - aN < 0 ? "" : strtprintf(" %d", (INT)aN), // -1: unspecified arg# - tx==NULL ? "" : strtprintf(" to '%s'", tx) + aN < 0 ? "" : strtprintf(" %d", (INT)aN), // -1: unspecified arg# + tx==NULL ? "" : strtprintf(" to '%s'", tx) ); } // asArg //========================================================================== diff --git a/src/cuparse.h b/src/cuparse.h index 3987a6f4e..7f71e34b2 100644 --- a/src/cuparse.h +++ b/src/cuparse.h @@ -15,11 +15,9 @@ #define TYNUM (TYSI|TYFL) // "any numeric data type" (test by and'ing) #define TYSTR 0x04 // string #define TYFLSTR (TYFL|TYSTR) // number (as float) or string, known at compile time. for CSE reportCol.colVal. -#if 1 //new or moved, 2-92 - #define TYID 0x08 // id: string; quotes implied around non-reserved identifier (for record names) at outer level - #define TYCH 0x10 // choice (DTxxx must also be given): string or id, conv to 16/32 bit choicb/choicn value - #define TYNC (TYFL|TYCH) // number (float) or specified 32 bit choicn choice, not necess known til runtime. -#endif +#define TYID 0x08 // id: string; quotes implied around non-reserved identifier (for record names) at outer level +#define TYCH 0x10 // choice (DTxxx must also be given): string or id, conv to 16/32 bit choicb/choicn value +#define TYNC (TYFL|TYCH) // number (float) or specified 32 bit choicn choice, not necess known til runtime. // TYDOY day of year: def in cul.h; given to cuparse.cpp as TYSI, 2-91. // 0x20-0x80 reserved for expansion of above #define TYANY 0x1f // any value ok: 'or' of all of above @@ -42,11 +40,11 @@ void FC cuParseClean(CLEANCASE cs); RC FC fov(); RC FC funcsVarsClear(); -RC FC exOrk( SI toprec, USI wanTy, USI choiDt, USI evfOkPar, char *ermTx, +RC FC exOrk( SI toprec, USI wanTy, USI choiDt, USI evfOkPar, const char* ermTx, USI *pGotTy, USI *pEvf, SI *pisKon, void *pv, PSOP **pip ); RC FC itPile( PSOP *dest, USI sizeofDest); RC FC finPile( USI *pCodeSize); -RC FC expTy( SI toprec, USI wanTy, char *tx, SI aN); +RC FC expTy( SI toprec, USI wanTy, const char* tx, SI aN); SI FC toke(); void FC unToke(); diff --git a/src/cuparsex.h b/src/cuparsex.h index 575a50334..ed59081ef 100644 --- a/src/cuparsex.h +++ b/src/cuparsex.h @@ -33,7 +33,7 @@ extern SI isWord; // non-0 if word: reserved, defined, or CUTID. extern USI evfOk; // evaluation frequencies allowed bits for current expression, // ffff-->no limits. EVENDIVL/EVPSTIVL stage bits here mean non start-of-interval evaluation ok. // also ref'd in cuprobe.cpp. -extern char * ermTx; // NULL or word/phrase/name descriptive of entire expression, for insertion in msgs. +extern const char* ermTx; // NULL or word/phrase/name descriptive of entire expression, for insertion in msgs. /*--- PARSE STACK: one entry ("frame") for each subexpression being processed. When argument subexpressions to an operator have been completely parsed and type checks and conversions are done, diff --git a/src/dhwcalc.cpp b/src/dhwcalc.cpp index c14ec0fe2..4b7e7d5ac 100644 --- a/src/dhwcalc.cpp +++ b/src/dhwcalc.cpp @@ -1830,7 +1830,7 @@ RC DHWSYS::ws_DoHourDWHR() // current hour DHWHEATREC modeling (all DHWHEATRECs float qX = tk.wtk_whUse * waterRhoCp * (ws_tUse - tk.wtk_tInletX); float qXHR = qX + qR; if (frDiff(qXHR, qXNoHR, 1.f) > .001f) - { printf("\nDHWSYS '%s': ws_DoHourDWHR tick balance error (md=%d)", name, multiDraw); + { printf("\nDHWSYS '%s': ws_DoHourDWHR tick balance error (md=%d)", name.CStr(), multiDraw); if (nReDo++ < 2) goto reDo; // repeat calc (debugging aid) } @@ -1850,7 +1850,7 @@ RC DHWSYS::ws_DoHourDWHR() // current hour DHWHEATREC modeling (all DHWHEATRECs float qX = ws_whUse.total * waterRhoCp * (ws_tUse - tInletX); float qXHR = qX + ws_qDWHR; if (frDiff(qXHR, qXNoHR, 1.f) > .001f) - printf("\nDHWSYS '%s': ws_DoHourDWHR balance error (md=%d)", name, multiDraw); + printf("\nDHWSYS '%s': ws_DoHourDWHR balance error (md=%d)", name.CStr(), multiDraw); #endif return rc; @@ -1960,7 +1960,7 @@ RC DHWSYS::ws_WriteDrawCSV()// write this hour draw info to CSV } else { // headings - fprintf(ws_pFDrawCSV, "%s,%s\n", name, Top.runDateTime.CStr()); + fprintf(ws_pFDrawCSV, "%s,%s\n", name.CStr(), Top.runDateTime.CStr()); fprintf(ws_pFDrawCSV, "%s %s\n", ProgName, ProgVersion); fprintf(ws_pFDrawCSV, "Mon,Day,DOW,Hr,MinHr,MinDay,tIn (F),tInHR (F),tHot (F),vHot (gal)\n"); } diff --git a/src/exman.cpp b/src/exman.cpp index a73d0515a..589d4a2ca 100644 --- a/src/exman.cpp +++ b/src/exman.cpp @@ -274,7 +274,7 @@ RC FC exPile( // compile an expression from current input USI _evfOk, // ffff or acceptable eval freq bits for context, including eval-at-end-interval bit, EVENDIVL. USI useCl, // caller's "use class" bit(s) for selective expr eval, now (1995) always 1. // changed here to UENDIVL if expr has EVENDIVL on. - char *_ermTx, // NULL or text saying what expr is arg to, + const char* _ermTx, // NULL or text saying what expr is arg to, // for (compile) errMsgs in form "after ". SI isType, BP b, TI i, SI fn, // type flag, baseAnc, rec subscr (for name - fetched now), and fld # // of destination, for RUNTIME ERROR MESSAGES. @@ -421,8 +421,8 @@ RC FC uniLimCt( // check limits & apply units, with errMsg suitable for compile time USI fdTy, // target field type for data type, units, and limits. 0 (FDNONE?) for no scaling or check - SI ty, // cul data type (TYFL,TYSTR,TYSI,etc): used in displaying data in msg - char *_ermTx, // text describing what expr is, for errmsgs. Should not let _ermTx get here NULL. + SI ty, // cul data type (TYFL,TYSTR,TYSI,etc): used in displaying data in msg + const char *_ermTx, // text describing what expr is, for errmsgs. Should not let _ermTx get here NULL. void *p ) // pointer to data (ptr to ptr for TYSTR) { RC rc = uniLim( fdTy, ty, p); // do it, below. Issues no messages. diff --git a/src/exman.h b/src/exman.h index 8f22378cf..0b79c104f 100644 --- a/src/exman.h +++ b/src/exman.h @@ -36,9 +36,9 @@ /*------------------------- FUNCTION DECLARATIONS -------------------------*/ void FC exClean(CLEANCASE cs); RC FC exPile( SI toprec, USI wanTy, USI choiDt, USI fdTy, USI _evfOk, USI useCl, - char *ermTx, SI isType, BP b, TI i, SI fn, - NANDAT *pDest, USI *pGotTy, USI *pGotEvf ); -RC FC uniLimCt( USI fdTy, SI ty, char *ermTx, void *p ); + const char* ermTx, SI isType, BP b, TI i, SI fn, + NANDAT *pDest, USI *pGotTy, USI *pGotEvf ); +RC FC uniLimCt( USI fdTy, SI ty, const char* ermTx, void *p ); void FC extAdj( BP b, TI minI, TI delta); void FC extMove( record *nuE, record *e); void FC extDup( record *nuE, record *e); diff --git a/src/strpak.cpp b/src/strpak.cpp index f152cf798..64a03ebf5 100644 --- a/src/strpak.cpp +++ b/src/strpak.cpp @@ -103,9 +103,10 @@ CULSTR::CULSTR(const char* str) : us_hCulStr( 0) } //----------------------------------------------------------------------------- -const char* CULSTR::CStr() const +char* CULSTR::CStrModifiable() const // pointer to string +// CAUTION non-const; generally should use CStr() { - return us_hCulStr ? us_vectCULSTREL[us_hCulStr].usl_str : ""; + return IsNANDLE() ? nullptr : us_vectCULSTREL[us_hCulStr].usl_str; } // CULSTR::CStr() //----------------------------------------------------------------------------- @@ -434,8 +435,9 @@ char* FC strTrim( // trim white space from beginning and end of a string if (s1 == NULL) s1 = strtemp( s2len < 999999 ? s2len : strlenInt( s2)); // alloc n+1 Tmpstr[] bytes. local. - char *p, *pend, c; - p = pend = s1; + char* p{ s1 }; + char* pend{ s1 }; + char c; int seenNonWS = FALSE; for (int is2=0; (c = s2[ is2])!=0 && is2 us_vectCULSTREL; From 024e2a3bac4f30dd08fd7d6a6d9a707b2f77a965 Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Thu, 16 Mar 2023 12:58:05 -0400 Subject: [PATCH 10/25] CULSTR WIP --- src/ancrec.cpp | 2 +- src/ancrec.h | 1 + src/cgcomp.cpp | 23 ++++++------- src/cgdebug.cpp | 8 ++--- src/cgenbal.cpp | 4 +-- src/cgresult.cpp | 59 +++++++++++++++----------------- src/cgsolar.cpp | 16 ++++----- src/cnah1.cpp | 4 +-- src/cnah2.cpp | 6 ++-- src/cnausz.cpp | 4 +-- src/cncoil.cpp | 24 ++++++------- src/cncp.cpp | 2 +- src/cncult.cpp | 4 +-- src/cncult2.cpp | 24 ++++++------- src/cncult3.cpp | 18 +++++----- src/cncult4.cpp | 46 +++++++++++-------------- src/cncult5.cpp | 6 ++-- src/cncult6.cpp | 8 ++--- src/cnguts.cpp | 32 +++++++++--------- src/cnloads.cpp | 16 ++++----- src/cnztu.cpp | 8 ++--- src/cse.cpp | 4 +-- src/cul.cpp | 31 +++++++++-------- src/cvpak.cpp | 2 +- src/dhwcalc.cpp | 12 +++---- src/impf.cpp | 8 ++--- src/mspak.h | 2 +- src/pp.cpp | 2 +- src/strpak.cpp | 88 +++++++----------------------------------------- src/strpak.h | 5 +-- src/wfpak.cpp | 4 +-- 31 files changed, 197 insertions(+), 276 deletions(-) diff --git a/src/ancrec.cpp b/src/ancrec.cpp index ed800da6c..449c38cd8 100644 --- a/src/ancrec.cpp +++ b/src/ancrec.cpp @@ -194,7 +194,7 @@ int record::IsNameMatch( const char* _name) const #ifdef DEBUG2 pSrc->b->validate("right arg to record::operator="); #endif - name.Release(); + name.Release(); // memcpy will overwrite with pSrc.name // copy start offset: don't copy internal members int offBeg = offsetof(record, gud); memcpy((char *)this + offBeg, (char *)pSrc + offBeg, b->eSz - offBeg); diff --git a/src/ancrec.h b/src/ancrec.h index 1359ad344..1320fece1 100644 --- a/src/ancrec.h +++ b/src/ancrec.h @@ -162,6 +162,7 @@ class record // base class for records private: record() {} // cannot construct record without basAnc and subscript public: + const char* Name() const { return name.CStr(); } void* field( int fn); // point to member in record by FIELD # const void* field( int fn) const; int DType(int fn) const; diff --git a/src/cgcomp.cpp b/src/cgcomp.cpp index 7a1c913b0..0e40ed074 100644 --- a/src/cgcomp.cpp +++ b/src/cgcomp.cpp @@ -663,7 +663,7 @@ RC ANDAT::ad_MassFlow( // use average if pres diff = 0 #if defined( _DEBUG) if (rhoIn2 < 0.) - { printf( "Vent '%s': Neg rhoIn2\n", ad_pIZXRAT->name.CStr()); + { printf( "Vent '%s': Neg rhoIn2\n", ad_pIZXRAT->Name()); rhoIn2 = 0.07; } #endif @@ -769,7 +769,7 @@ void ANDAT::ad_SetFromFixedAVF( // set mbrs re fixed vol flow rate #if defined( DEBUGDUMP) if (DbDo( dbdAIRNET)) DbPrintf( "Fixed AVF '%s': avf=%.2f rho=%.5f mdotP=%.5f\n", - ad_pIZXRAT->name, avf, rho, ad_mdotP); + ad_pIZXRAT->Name(), avf, rho, ad_mdotP); #endif if (ad_pIZXRAT->iz_IsFan()) { double c = fabs( ad_mdotP) * Top.tp_airSH * 3600.; // fan flow in heat cap units (Btuh/F) @@ -1501,7 +1501,7 @@ x * absolute opening height x if (!rc) x { if (zp2->i.zn_floorZ <= zp1->i.zn_floorZ) x rc |= oer("izZn2 '%s' znFloorZ (%0.2f) must be > izZn1 '%s' znFloorZ (%0.2f)", -x zp2->name, zp2->i.zn_floorZ, zp1->name, zp1->i.zn_floorZ); +x zp2->Name(), zp2->i.zn_floorZ, zp1->Name(), zp1->i.zn_floorZ); x } #endif // fall thru @@ -1805,8 +1805,7 @@ TI ZNR::zn_AddIZXFER( // add IZXFER coupled to this zone IzxR.add( &ize, ABT); char tName[200]; - strCatIf(tName, sizeof(tName), "-", nmSfx, 1); - ize->name = tName; + ize->name = strCatIf(tName, sizeof(tName), "-", nmSfx, 1); ize->iz_zi1 = ss; // idx of this zone ize->iz_nvcntrl = _ty; ize->iz_pAF = pAF; @@ -2284,7 +2283,7 @@ RC AIRNET::an_Calc( // airnet flow balance if (bDbPrint) { const ANDAT& ad = ize->iz_ad[ iV]; DbPrintf( "%-20.20s %d %6.4f %9.4f %10.6f %10.5f %10.5f %11.5f\n", - ize->name, iV, ize->iz_rho1, ize->iz_rho2, ad.ad_delP, ad.ad_mdotP, ad.ad_mdotX, ad.ad_dmdp); + ize->Name(), iV, ize->iz_rho1, ize->iz_rho2, ad.ad_delP, ad.ad_mdotP, ad.ad_mdotX, ad.ad_dmdp); } #endif } @@ -2308,7 +2307,7 @@ RC AIRNET::an_Calc( // airnet flow balance "zone znPres mDotP\n", iV, iter+1); for (zi=0; zi < an_nz; zi++) { ZNR* zp = ZrB.GetAt( zi+zi0); - DbPrintf( "%-20.20s %8.5f %11.8f\n", zp->name, zp->zn_pz0W[ iV], rV[ zi]); + DbPrintf( "%-20.20s %8.5f %11.8f\n", zp->Name(), zp->zn_pz0W[iV], rV[zi]); } } #endif @@ -2340,7 +2339,7 @@ RC AIRNET::an_Calc( // airnet flow balance { DbPrintf( "\nzone znPres mDotP corr jac ...\n"); for (zi=0; zi < nzDb; zi++) { ZNR* zp = ZrB.GetAt( zi+zi0); - DbPrintf( "%-20.20s %8.5f %10.5f %8.5f ", zp->name, zp->zn_pz0W[ iV], rVSave[ zi], rV[ zi]); + DbPrintf( "%-20.20s %8.5f %10.5f %8.5f ", zp->Name(), zp->zn_pz0W[iV], rVSave[zi], rV[zi]); VDbPrintf( NULL, &jacSave[ zi*nzDb], nzDb, " %10.3f"); } } @@ -2389,7 +2388,7 @@ RC AIRNET::an_Calc( // airnet flow balance if (!Top.tp_autoSizing || Top.tp_pass2) err( WRN, "Zone '%s', %s: unreasonable mode %d pressure %0.2f lb/ft2\n", - zp->name, Top.When( C_IVLCH_S), iV, zp->zn_pz0W[ iV]); + zp->Name(), Top.When(C_IVLCH_S), iV, zp->zn_pz0W[iV]); } } } @@ -2416,7 +2415,7 @@ void DBC::sb_Init( DUCTSEG* pDS) } // DBC::sb_Area //----------------------------------------------------------------------------- /*virtual*/ const char* DBC::sb_ParentName() const -{ return sb_pDS ? sb_pDS->name : "?"; +{ return sb_pDS ? sb_pDS->Name() : "?"; } // SBC::sb_ParentName //----------------------------------------------------------------------------- /*virtual*/ int DBC::sb_Class() const @@ -2526,7 +2525,7 @@ RC DUCTSEG::ds_TopDS( // set up run record ds_insulThk = insulK * ds_insulR; else if (pM->mt_thk <= 0.f) rc |= oer( "cannot determine insulation thickness (no matThk in material '%s')", - pM->name); + pM->Name()); else { ds_insulThk = pM->mt_thk; ds_insulR = ds_insulThk / insulK; @@ -2888,7 +2887,7 @@ void DUCTSEG::ds_DbDump() const float runF = ds_GetRSYS()->rs_runF; const char* loc = ds_exCnd == C_EXCNDCH_ADJZN - ? ds_GetExZone()->name + ? ds_GetExZone()->Name() : getChoiTx( DUCTSEG_EXCND); DbPrintf("DUCTSEG '%s': ty=%s loc=%s txa=%0.2f txr=%0.2f txe=%0.2f\n" diff --git a/src/cgdebug.cpp b/src/cgdebug.cpp index 30518caf3..b9460a076 100644 --- a/src/cgdebug.cpp +++ b/src/cgdebug.cpp @@ -310,12 +310,12 @@ o pgbuildr( &pp, &rc, 0, 0, 0, NULL, &cfh, zp, PBDONE ); if (ize->iz_zi1 == zi) { const char* name2 = - ize->iz_zi2 > 0 ? ZrB[ ize->iz_zi2].name + ize->iz_zi2 > 0 ? ZrB[ ize->iz_zi2].name.CStr() : ize->iz_IsHERV() ? "(HERV)" : ize->iz_IsExterior() ? "(ambient)" : "--"; pgbuildr( &pp, &rc, 0, 0, 0, NULL, &izxch, ize, - ZrB[ ize->iz_zi1].name, // PBARGSI 1 + ZrB[ ize->iz_zi1].name.CStr(), // PBARGSI 1 name2, // 2 ize->getChoiTx( IZXRAT_NVCNTRL, 1),// 3 PBSPECEND ); @@ -428,7 +428,7 @@ static PBHEAD ashwatH = { PBDATOFFL, ashwatT, 0, 0, 0 }; case C_EXCNDCH_ADJZN: // add adjacent zone name *p++ = ' '; - strcpy( p, ZrB.p[xs->x.sfAdjZi].name); + strcpy( p, ZrB.p[xs->x.sfAdjZi].name.CStr()); break; } } @@ -561,7 +561,7 @@ const char* MSRAT::ms_SurfBCDesc( // generate description of boundary condix bcx = "Ground"; break; case MSBCZONE: - bcx = strtprintf("Zone '%s'", ZrB.p[ bc.bc_zi].name); + bcx = strtprintf("Zone '%s'", ZrB.p[ bc.bc_zi].name.CStr()); break; case MSBCSPECT: // use cvin2s cuz it checks for expr NANs: diff --git a/src/cgenbal.cpp b/src/cgenbal.cpp index ed4b5e595..a48ed6eb0 100644 --- a/src/cgenbal.cpp +++ b/src/cgenbal.cpp @@ -47,7 +47,7 @@ void cgenbal( // Check energy balances; issue warning message if out of toleran double zNet = zrp->qsBal; // get (float) net total from record, computed/accum in cnguts.cpp. ovNet += zNet; ovTot += zTot; // add zone to overall, checked at end - cgecheck( zNet, zTot, tol, .1, "zone '%s'", zp->name, ivl, zp->zn_ebErrCount); // issue message if out of tolerance + cgecheck( zNet, zTot, tol, .1, "zone '%s'", zp->Name(), ivl, zp->zn_ebErrCount); // issue message if out of tolerance #if defined( DO_LATENT) @@ -58,7 +58,7 @@ void cgenbal( // Check energy balances; issue warning message if out of toleran ovNet += zNet; ovTot += zTot; // add zone to overall, checked at end int iSink = 0; - cgecheck( zNet, zTot, tol, .5, "zone '%s' latent", zp->name, ivl, + cgecheck( zNet, zTot, tol, .5, "zone '%s' latent", zp->Name(), ivl, ivl >= C_IVLCH_D ? zp->zn_ebErrCount : iSink); // kludge to avoid double print of short-interval count } #endif diff --git a/src/cgresult.cpp b/src/cgresult.cpp index f5408122e..8fcebdf09 100644 --- a/src/cgresult.cpp +++ b/src/cgresult.cpp @@ -667,7 +667,7 @@ void FC vpRxports( // virtual print reports and exports of given frequency for { rer( (char *)MH_R0152, // "%sCond for %s '%s' is unset or not yet evaluated" isExport ? "ex" : "rp", isExport ? "export" : "report", - dvrip->rpTitle && *dvrip->rpTitle ? dvrip->rpTitle : dvrip->name ); // title if any, else aname + dvrip->rpTitle && *dvrip->rpTitle ? dvrip->rpTitle : dvrip->Name() ); // title if any, else aname continue; // treat as FALSE } if (!(SI)dvrip->rpCond) // if condition false (value is SI, storage is LI to hold NAN for expr) @@ -867,7 +867,7 @@ o vpRxFooter(dvrip); // virtual print report or export footer, below. c //========================================================================================================== LOCAL void FC vpRxHeader( // do report/export header appropropriate for type and frequency - DVRI *dvrip, // date-dependent virtual report info record set up before run by cncult4.cpp + DVRI* dvrip, // date-dependent virtual report info record set up before run by cncult4.cpp RXPORTINFO *rxt) // addl report/export info struct set in vpRxports // called at first output and first hour each day if daily, first day each month if monthly, etc @@ -966,7 +966,7 @@ LOCAL void FC vpRxHeader( // do report/export header appropropriate for type a ZNR *zp1; default: zp1 = ZrB.p + dvrip->ownTi; // one specific zone - objTx = isExport ? zp1->name : strtprintf("zone \"%s\"", zp1->name); + objTx = isExport ? zp1->Name() : strtprintf("zone \"%s\"", zp1->Name()); break; case TI_ALL: objTx = "All Zones"; @@ -985,7 +985,7 @@ LOCAL void FC vpRxHeader( // do report/export header appropropriate for type a MTR *mtr1; default: mtr1 = MtrB.p + dvrip->mtri; // one specific meter - objTx = isExport ? mtr1->name : strtprintf("meter \"%s\"", mtr1->name); + objTx = isExport ? mtr1->Name() : strtprintf("meter \"%s\"", mtr1->Name()); break; case TI_ALL: objTx = "All Meters"; @@ -1004,7 +1004,7 @@ LOCAL void FC vpRxHeader( // do report/export header appropropriate for type a DHWMTR* pWM; default: pWM = WMtrR.GetAt(dvrip->dv_dhwMtri); // specific DHW meter - objTx = isExport ? pWM->name : strtprintf("DHW meter \"%s\"", pWM->name); + objTx = isExport ? pWM->Name() : strtprintf("DHW meter \"%s\"", pWM->Name()); break; case TI_ALL: objTx = "All DHW Meters"; @@ -1019,7 +1019,7 @@ LOCAL void FC vpRxHeader( // do report/export header appropropriate for type a AFMTR *mtr1; default: mtr1 = AfMtrR.p + dvrip->dv_afMtri; // one specific afmeter - objTx = isExport ? mtr1->name : strtprintf("AFMETER \"%s\"", mtr1->name); + objTx = isExport ? mtr1->Name() : strtprintf("AFMETER \"%s\"", mtr1->Name()); break; case TI_ALL: objTx = "All AFMETERs"; @@ -1038,7 +1038,7 @@ LOCAL void FC vpRxHeader( // do report/export header appropropriate for type a AHRES *ahr1; // (AH and AHRES names & subscripts match) default: ahr1 = AhresB.p + dvrip->ahi; // one specific air handler - objTx = isExport ? ahr1->name : strtprintf("air handler \"%s\"", ahr1->name); + objTx = isExport ? ahr1->Name() : strtprintf("air handler \"%s\"", ahr1->Name()); break; case TI_ALL: objTx = "All Air Handlers"; @@ -1057,9 +1057,9 @@ LOCAL void FC vpRxHeader( // do report/export header appropropriate for type a TU *tu1; default: tu1 = TuB.p + dvrip->tui; // one specific terminal - objTx = isExport ? tu1->name + objTx = isExport ? tu1->Name() : strtprintf( "terminal \"%s\" of zone \"%s\"", - tu1->name, ZrB.p[tu1->ownTi].name ); + tu1->Name(), ZrB.p[tu1->ownTi].name ); break; case TI_ALL: objTx = "All Terminals"; @@ -1116,7 +1116,7 @@ LOCAL void FC vpRxHeader( // do report/export header appropropriate for type a what = dvrip->rpTitle // insert for title for user-defined report: ? dvrip->rpTitle // use user's UDT title if given, : strtcat( // else use... - dvrip->name[0] ? dvrip->name : "User-defined", // report name else "User-defined" + dvrip->name.CStrDflt( "User-defined"), // report name else "User-defined" isExport ? NULL : " Report", // followed by " Report" if report NULL ); break; @@ -1486,7 +1486,7 @@ LOCAL void FC vpMtrRow( DVRI *dvrip, RXPORTINFO *rxt, TI mtri) MTR_IVL_SUB *mtrs = (&mtr->Y) + (rxt->fq - 1); /* point substruct for interval in question. Subhr not allowed for MTR --> fq==fqr; no extra -1 needed. */ - vpRxRow( dvrip, rxt, mtrs, rxt->col1, mtr->name, &rxt->xebM, &rxt->xebD, &rxt->xebH, rxt->xebS); + vpRxRow( dvrip, rxt, mtrs, rxt->col1, mtr->Name(), &rxt->xebM, &rxt->xebD, &rxt->xebH, rxt->xebS); } // vpMtrRow //----------------------------------------------------------------------------- void DVRI::dv_vpDHWMtrRow( RXPORTINFO *rxt, TI dhwMtri /*=-1*/) @@ -1499,7 +1499,7 @@ void DVRI::dv_vpDHWMtrRow( RXPORTINFO *rxt, TI dhwMtri /*=-1*/) DHWMTR_IVL* pIvl = (&pWM->curr.Y) + (rxt->fq - 1); // interval // subhr not allowed for DHWMTR --> fq==fqr; no extra -1 needed. - vpRxRow( this, rxt, pIvl, rxt->col1, pWM->name, &rxt->xebM, &rxt->xebD, &rxt->xebH, rxt->xebS); + vpRxRow( this, rxt, pIvl, rxt->col1, pWM->Name(), &rxt->xebM, &rxt->xebD, &rxt->xebH, rxt->xebS); } // dv_vpDHWMtrRow //----------------------------------------------------------------------------- void DVRI::dv_vpAfMtrRow(RXPORTINFO *rxt, TI afMtri /*=-1*/) @@ -1515,7 +1515,7 @@ void DVRI::dv_vpAfMtrRow(RXPORTINFO *rxt, TI afMtri /*=-1*/) // results substr offset from .Y: M, D, H, S follow .Y, no HS. // .fqr is H or S when .fq is HS for hourly+subhourly reports - vpRxRow(this, rxt, pIvl, rxt->col1, pM->name, &rxt->xebM, &rxt->xebD, &rxt->xebH, rxt->xebS); + vpRxRow(this, rxt, pIvl, rxt->col1, pM->Name(), &rxt->xebM, &rxt->xebD, &rxt->xebH, rxt->xebS); } // dv_vpDHWMtrRow //================================================================= LOCAL void FC vpAhRow( DVRI *dvrip, RXPORTINFO *rxt, TI ahi) @@ -1527,7 +1527,7 @@ LOCAL void FC vpAhRow( DVRI *dvrip, RXPORTINFO *rxt, TI ahi) // .fqr is H or S when .fq is HS for hourly+subhourly reports AHRES_IVL_SUB *ahrs = (&ahr->Y) + ahrsi; // point substruct for interval in question - vpRxRow( dvrip, rxt, ahrs, rxt->col1, ahr->name, &rxt->xebM, &rxt->xebD, &rxt->xebH, rxt->xebS); + vpRxRow( dvrip, rxt, ahrs, rxt->col1, ahr->Name(), &rxt->xebM, &rxt->xebD, &rxt->xebH, rxt->xebS); } // vpAhRow //================================================================= LOCAL void FC vpAhSzLdRow( DVRI *dvrip, RXPORTINFO *rxt, TI ahi) @@ -1536,7 +1536,7 @@ LOCAL void FC vpAhSzLdRow( DVRI *dvrip, RXPORTINFO *rxt, TI ahi) { AH *ah = AhB.p + ahi; // point ah record vpRxRow( dvrip, rxt, ah, - ah->name, // name, used in exports or all- reports. No report time column. + ah->Name(), // name, used in exports or all- reports. No report time column. // None/AutoSized/Input value indicators: ah->fanAs.az_active ? "a" : "i", // fan(s) (always present) ah->ahhc.coilTy==C_COILTYCH_NONE ? "" : ah->hcAs.az_active ? "a" : "i", // .. heat coil @@ -1550,7 +1550,7 @@ LOCAL void FC vpTuSzLdRow( DVRI *dvrip, RXPORTINFO *rxt, TI tui) { TU *tu = TuB.p + tui; // point terminal record vpRxRow( dvrip, rxt, tu, - tu->name, // name, used in exports or all- reports. No report time column. + tu->Name(), // name, used in exports or all- reports. No report time column. ZrB.p[tu->ownTi].name, // terminal's zone's name tu->cmLh & cmStH ? tu->hcAs.az_active ? "a" : "i" : "", // AutoSized/Input/None indicator for local heat coil tu->cmAr & cmStH ? tu->vhAs.az_active ? "a" : "i" : "", // .. heat cfm (tuVfMxH) (set output shows n, and value) @@ -1726,15 +1726,12 @@ LOCAL void CDEC vpRxRow( // virtual print report or export row given COLDEF tabl LOCAL void FC vpUdtRpColHeads( DVRI *dvrip) // user-defined report column heads { COL *colp /*=NULL*/; - SI i, colWid, acWid, sTween, sLeft = 0; char *p, *q; - const char *text; - JUSTCH jus; - USI dt; // determine column spacing: cram or space out per extra width available. Must match in vpUdtRpRow and vpUdtRpColHeads. - sTween = 0; // number of extra spaces between columns: start with 0 + int sTween = 0; // number of extra spaces between columns: start with 0 + int sLeft = 0; if (dvrip->wid + dvrip->nCol <= dvrip->rpCpl) // note dvrip->wid includes colGaps. { sTween = 1; // 1 if fits @@ -1747,23 +1744,22 @@ LOCAL void FC vpUdtRpColHeads( DVRI *dvrip) // user-defined report column heads char buf[MAXRPTLINELENUDT]; char* s = buf; // init store pointer into line buffer q = s + sLeft; // where gap b4 1st col should begin: spaces stored after adj for overlong text - for (i = dvrip->coli; i; ) // loop over columns of table + for (int i = dvrip->coli; i; ) // loop over columns of table { colp = RcolB.p + i; i = colp->nxColi; // advance i now for ez lookahead - colWid = colp->colWid; + int colWid = colp->colWid; p = q + colp->colGap; // nominal start of column, to adjust for overflow / justification q = p + colWid + sTween; // nominal start of next column's gap, if there is another col //s is next avail position in buffer = min value for p - dt = colp->colVal.ty; // data type, DTFLOAT or DTCULSTR, from VALNDT struct member - jus = colp->colJust; // justification + int dt = colp->colVal.ty; // data type, DTFLOAT or DTCULSTR, from VALNDT struct member + JUSTCH jus = colp->colJust; // justification if (!jus) jus = dt==DTFLOAT ? C_JUSTCH_R : C_JUSTCH_L; // default right-justified for numbers, left for strings // get text to display, adjust position - text = colp->colHead ? colp->colHead // use colHead member if nonNULL - : colp->name; // else use reportCol record name - acWid = (SI)strlen(text); + const char* text = colp->colHead.CStrDflt( colp->name); // use colHead member if set, else use reportCol record name + int acWid = strlenInt(text); if (acWid > colWid) // if overwide p -= min( (SI)(acWid - colWid), (SI)(p - s)); // move left into any available space between columns // truncate if acWid overlong? @@ -1785,7 +1781,7 @@ LOCAL void FC vpUdtRpColHeads( DVRI *dvrip) // user-defined report column heads s = buf; // reinit for next line memsetPass( s, ' ', sLeft); // spaces left of 1st column - for (i = dvrip->coli; i; i = colp->nxColi) // loop columns of table + for (int i = dvrip->coli; i; i = colp->nxColi) // loop columns of table { colp = RcolB.p + i; memsetPass( s, ' ', colp->colGap); // column's gap spaces before column text @@ -1807,9 +1803,8 @@ LOCAL void FC vpUdtExColHeads( DVRI *dvrip) // user-defined export column heads for (int i = dvrip->coli; i; i = colp->nxColi) // loop over columns of table { colp = XcolB.p + i; - const char* text = colp->colHead - ? colp->colHead // use colHead member if nonNULL - : colp->name; // else use reportCol record name + const char* text = colp->colHead.CStrDflt( colp->name); + // use colHead member if set, else use reportCol record name // store text in quotes, separating comma *s++ = '"'; diff --git a/src/cgsolar.cpp b/src/cgsolar.cpp index 29a5a3260..1fed27931 100644 --- a/src/cgsolar.cpp +++ b/src/cgsolar.cpp @@ -787,7 +787,7 @@ void XSRAT::xr_SGMakeSGRATs() // final gain adjustments / generate SGRAT entrie MASSBC* side = si ? &ms->outside : &ms->inside; // point to substructure for side SBC& sbc = x.xs_SBC( si); #if 0 && defined( _DEBUG) - if (TrapSurf( ms->name, si)) + if (TrapSurf( ms->Name(), si)) printf( "Hit xr_SGMakeSGRATs\n"); #endif float split = min( side->bc_h * side->bc_rsurf, 1.f); // fraction of gain going to adjacent air, not to mass. @@ -913,7 +913,7 @@ void SgThruWin::tw_Doit() // " of zone '%s' distributed: more than 100 percent. Check SGDISTs." (1.f - undistF[oc]) * 100.f, // eg 110% oc ? "shades-closed" : "shades-open", - tw_xr->name, zp->name ); // continue here. aborts elsewhere on too many errors. + tw_xr->Name(), zp->Name() ); // continue here. aborts elsewhere on too many errors. undistF[oc] = 0.; // partial fix for fallthru } } @@ -976,7 +976,7 @@ void SgThruWin::tw_Doit() // if found any untargeted surface(s) to rcv untargeted gain, // should have found surf for all gain to strike if ( foundUntSurf && unHitF > ABOUT0 || unHitF < -ABOUT0 ) - rer( (char *)MH_R0164, zp->name, tw_xr->name, unHitF); + rer( (char *)MH_R0164, zp->Name(), tw_xr->Name(), unHitF); /* "cgsolar.cpp:SgThruWin::doit(): zone \"%s\", window \"%s\":\n" " undistributed gain fraction is %g (should be 0)." */ #endif @@ -1076,7 +1076,7 @@ void SgThruWin::tw_ToZoneCav( // put gain to zone cavity // to implement, must distribute to target zone using control zone's znSC in sgrAdd calls. // meanwhile, issue message and fall thru to use wrong control zone. - rer( PWRN, (char *)MH_R0165, ZrB[ czi].name, zp->name); /* "cgsolar.cpp:SgThruWin::toZoneCav:\n" + rer( PWRN, (char *)MH_R0165, ZrB[ czi].name, zp->Name()); /* "cgsolar.cpp:SgThruWin::toZoneCav:\n" " control zone (\"%s\") differs from target zone (\"%s\")."*/ } @@ -1220,11 +1220,11 @@ o BOO isEndIvl = FALSE; // non-0 for end-time-interval gain (zone air), 0 for pTarg = &sbc.sb_sgTarg; // target tzi = sbc.sb_zi; // get zone containing SBC, or 0 #if 0 && defined( _DEBUG) - if (TrapSurf( xr->name, si)) + if (TrapSurf( xr->Name(), si)) printf( "Hit surf\n"); #endif // zp = ZrB.GetAt( xr->ownTi); - sgName = strtprintf( "S%c %s", "IO"[ si], xr->name); + sgName = strtprintf( "S%c %s", "IO"[ si], xr->Name()); } break; @@ -1235,7 +1235,7 @@ o BOO isEndIvl = FALSE; // non-0 for end-time-interval gain (zone air), 0 for case SGDTTZNAIR: zp = ZrB.GetAt( targTi); pTarg = &zp->zn_sgAirTarg; // zone air: always subhourly (preset) - sgName = strtprintf( "ZA %s", zp->name); + sgName = strtprintf( "ZA %s", zp->Name()); #ifdef SOLAVNEND o isEndIvl = TRUE; #endif @@ -1257,7 +1257,7 @@ o isEndIvl, if (tzi && bMatching) { zp = ZrB.GetAt( tzi); sgrPut( - strtprintf("ZT %s", zp->name), + strtprintf("ZT %s", zp->Name()), isSubhrly ? &zp->zn_sgTotShTarg : &zp->zn_sgTotTarg, // target: zone subhourly or hourly total accumulator ctrl, // remaining args same as above so gain matches isSubhrly, diff --git a/src/cnah1.cpp b/src/cnah1.cpp index bff822ba9..eeefcfb86 100644 --- a/src/cnah1.cpp +++ b/src/cnah1.cpp @@ -839,10 +839,10 @@ RC AH::begHour() // airHandler stuff done at start of hour, after expression " can't AUTOSIZE tuVfMn when air handler fan cycles:\n" " When fan cycles, terminal minimum flow must be zero, but \n" " AUTOSIZE tuVfMn makes minumum flow equal to maximum flow.", // NUMS - ctu->name, name, ctu->tuVfMn ); + ctu->Name(), name, ctu->tuVfMn ); else rer( PWRN, (char *)MH_R1274, //"Control terminal '%s' of airHandler '%s':\n" - ctu->name, name, ctu->tuVfMn ); //" terminal minumum flow (tuVfMn=%g) must be 0 when fan cycles" + ctu->Name(), name, ctu->tuVfMn ); //" terminal minumum flow (tuVfMn=%g) must be 0 when fan cycles" } // determine upper limit of fanF that could reduce ah flow this hour: diff --git a/src/cnah2.cpp b/src/cnah2.cpp index 0239d82c8..ed3ea000a 100644 --- a/src/cnah2.cpp +++ b/src/cnah2.cpp @@ -2906,7 +2906,7 @@ x (and increasing (heat) ts INCREASES flow) */ && ctu // and control terminal not missing && !(ctu->sstat[cooling ? TU_TUTC : TU_TUTH] & FsSET) ) // and needed ctrl tu sp not set, specific msg rer( ABT, (char *)MH_R1286, // "airHandler '%s': ahTsSp is '%s'\n" - name, cmtx, ctu->name, whatSp ); // " but control terminal '%s' has no %s" + name, cmtx, ctu->Name(), whatSp ); // " but control terminal '%s' has no %s" else // else general msg rer( PABT, (char *)MH_R1287, // "airHandler '%s': ahTsSp is '%s'\n" name, cmtx, whatSp ); // " but no control zone with terminal with %s found" @@ -3134,7 +3134,7 @@ x || aTs > tz && ahMode & ahHEATBIT ) ZHX *x = ZhxB.p + (tuCooling ? tu->xiArC : tu->xiArH); // point zhx in use #ifdef DEBUG2 // internal consistency check, omit in release version if (x->mda != zp->zn_md) - rer( PWRN, (char *)MH_R1289, name, tu->name); // "airHandler %s: Internal error in antRatTs: \n" + rer( PWRN, (char *)MH_R1289, name, tu->Name()); // "airHandler %s: Internal error in antRatTs: \n" // " terminal %s is not terminal of zone's active zhx" #endif /* autoSize flow-tried-to-run-away flag: clear here if ts on "right" side of sp; @@ -3579,7 +3579,7 @@ void AH::setFrFanOn( // determine fan on fraction this subhour. Call only if { // require 0 min flow cuz dunno whether to use cMxC or cMxH re cMxnx. if (ctu->cMn != 0.) // insurance check here: begHour cks vfDsMn==0. - rer( WRN, (char *)MH_R1291, ctu->name, ctu->cMn ); // "Terminal '%s': tuVfMn is %g, not 0, when ahFanCyles = YES" + rer( WRN, (char *)MH_R1291, ctu->Name(), ctu->cMn ); // "Terminal '%s': tuVfMn is %g, not 0, when ahFanCyles = YES" cMxnx = 0.; // allow no flow; fall thru } else diff --git a/src/cnausz.cpp b/src/cnausz.cpp index e079e0f11..8a2dd96c2 100644 --- a/src/cnausz.cpp +++ b/src/cnausz.cpp @@ -754,7 +754,7 @@ int AUSZ::az_fazInit( // initialize AUSZ & store pointer to value being autosiz SI fn, // x's field number (rccn.h RECORD_FIELD define), for access to field status bits int isAusz, // TRUE if autoSize setup. Call for both phases. const char* whatFmt /*=NULL*/) // fmt for displayable ID for this AUSZ - // e.g. "AH[%s] cc" (r->name inserted at %s) + // e.g. "AH[%s] cc" (r->Name() inserted at %s) // returns nz iff this value is being autosized during current phase @@ -793,7 +793,7 @@ int AUSZ::az_fazInit( // initialize AUSZ & store pointer to value being autosiz // caller passes whatFmt with %s for object name memset(az_what, 0, sizeof(az_what)); if (whatFmt) - snprintf(az_what, sizeof(az_what), whatFmt, r->name); + snprintf(az_what, sizeof(az_what), whatFmt, r->Name()); az_a = az_b = 0.f; // init autoSizing working variables (leave ausz values if main sim) ldPkAs1 = 0; // init peak load on pass 1, for reporting certain overloads diff --git a/src/cncoil.cpp b/src/cncoil.cpp index f59e6ad71..196907615 100644 --- a/src/cncoil.cpp +++ b/src/cncoil.cpp @@ -646,7 +646,7 @@ BOO AH::doHWCoil( // compute tex that HW heating coil can and will produce { //rWarn? rer( (char *)MH_R1310, // "AirHandler %s's heat coil is scheduled on, \n but heatPlant %s is scheduled off." - name, hp->name ); + name, hp->Name() ); ahhc.co_capMax = 0.; // coil capac is 0 when plant is off. fall thru to set tex, ahhc.q, coilLimited. // should coilLimited be TRUE when plant OFF? probably not, as not on when coil off, but unimportant now since error 9-92. } @@ -1000,21 +1000,21 @@ void AHHEATCOIL::doAhpHeat( // execute heat pump heating mode model // debug aid checks. display only 1st message: other errors might be consequential, or vbls unset. if (rootArg < 0.) // if wd have gotten sqrt neg # runtime lib err - rer( (char *)MH_R1341, ah->name, // "airHandler %s: Internal error in doAhpCoil: \n" + rer( (char *)MH_R1341, ah->Name(), // "airHandler %s: Internal error in doAhpCoil: \n" rootArg, // " arg to sqrt (%g) for quad formula hlf not >= 0.\n" cdm, qDfrhCon, capCon, qWant, // " cdm %g qDfrhCon %g capCon %g qWant %g\n" A, B, C ); // " A %g B %g C %g\n" else if (hlf <= 0. || hlf > Top.hiTol*qWant/capCon) // hlf excludes dfr rh --> less than qWant/capCon. - rer( (char *)MH_R1342, ah->name, // "airHandler %s: Internal error in doAhpCoil: \n" + rer( (char *)MH_R1342, ah->Name(), // "airHandler %s: Internal error in doAhpCoil: \n" hlf, qWant/capCon ); // " hlf (%g) not in range 0 < hlf <= qWant/capCon (%g)" else if (plf <= 0.) // prevent /0, report < 0 (bug) - rer( (char *)MH_R1343, ah->name, plf); // "airHandler %s: Internal error in doAhpCoil: \n" + rer( (char *)MH_R1343, ah->Name(), plf); // "airHandler %s: Internal error in doAhpCoil: \n" // " plf (%g) not > 0" else if (frCprOn > frFanOn * Top.hiTol) // cpr shd run < fan ( >= uses other case above) - rer( (char *)MH_R1344, ah->name, frCprOn, frFanOn); // "airHandler %s: Internal error in doAhpCoil: \n" + rer( (char *)MH_R1344, ah->Name(), frCprOn, frFanOn); // "airHandler %s: Internal error in doAhpCoil: \n" // " frCprOn (%g) > frFanOn (%g)" else if (RELCHANGE( q, qWant) > Top.relTol) // q should come out heat desired - rer( (char *)MH_R1345, ah->name, q, qWant); // "airHandler %s: Internal error in doAhpCoil: \n" + rer( (char *)MH_R1345, ah->Name(), q, qWant); // "airHandler %s: Internal error in doAhpCoil: \n" // " q = %g but qWant is %g -- should be the same" } #else//worked in brief tests, but did not relate to flow or frfanOn -- runs cpr more than caller runs fan, etc. @@ -1056,7 +1056,7 @@ x { rrc = rer( "airHandler %s: Internal error in doAhpCoil: \n" x " arg to sqrt (%g) for quad formula hlf not >= 0.\n" x " cdm %g qDfrhCon %g capCon %g qWant %g\n" x " A %g B %g C %g\n", -x ah->name, rootArg, cdm, qDfrhCon, capCon, qWant, A, B, C ); +x ah->Name(), rootArg, cdm, qDfrhCon, capCon, qWant, A, B, C ); x rootArg = 0.; // use 0 and fall thru x } x hlf = (-B + sqrt(rootArg))/(2*A); // frac compr cap that meets load with defrost rh added @@ -1065,11 +1065,11 @@ x //if (hlf < 0.) hlf = -hlf - B/*A; restore if need found x if (hlf <= 0. || hlf > Top.hiTol*qWant/capCon) // hlf excludes dfr rh --> less than qWant/capCon. x rrc = rer( "airHandler %s: Internal error in doAhpCoil: \n" x " hlf (%g) not in range 0 < hlf <= qWant/capCon (%g)", -x ah->name, hlf, qWant/capCon ); +x ah->Name(), hlf, qWant/capCon ); x plf = 1 - cdm * (1. - hlf); // COP degradation for this hlf x if (plf <= 0.) // prevent /0, report < 0 (bug) x rrc = rer( "airHandler %s: Internal error in doAhpCoil: \n" -x " plf (%g) not > 0", ah->name, plf ); +x " plf (%g) not > 0", ah->Name(), plf ); x else x frCprOn = hlf/plf; // run time: increase hlf for reduction in COP (reduc in output) x qSh = frCprOn * qDfrhCon; // defrost heat used for this fraction run time @@ -1078,7 +1078,7 @@ x if (RELCHANGE( q, qWant) > Top.relTol) // q should come out heat desir x if (rrc==RCOK) // suppress msg if any other msg just above x rer( "airHandler %s: Internal error in doAhpCoil: \n" x " q = %g but qWant is %g -- should be the same", -x ah->name, q, qWant ); +x ah->Name(), q, qWant ); x} #endif // if 1...else frFanOn rework @@ -1366,7 +1366,7 @@ BOO AH::doChwCoil( // compute tex, etc, that CHW cooling coil can and will prod { //rWarn? rer( (char *)MH_R1311, // "AirHandler %s's cool coil is scheduled on, \n but coolPlant %s is scheduled off." - name, cp->name ); + name, cp->Name() ); //plant off. set output variables for plant off, and return. doCoils has done: tex=ten, wex=wen, chwQ=0. //should coilLimited be TRUE when plant OFF? probably not, as not on when coil off, but unimportant now since error 9-92. tPossC = ten; // plant-off achievable temp (after bypass air remixed) is entry temp @@ -1805,7 +1805,7 @@ x// exit state at rated entry conditions and full rated load if (iter > MAXITER) { err( PWRN, (char *)MH_R1316, // "airHandler '%s': \n" - ah->name, errTe ); // " DX coil setup effective point search convergence failure\n" + ah->Name(), errTe ); // " DX coil setup effective point search convergence failure\n" break; // " errTe=%g" } } diff --git a/src/cncp.cpp b/src/cncp.cpp index 818b36b08..fd5d3f8be 100644 --- a/src/cncp.cpp +++ b/src/cncp.cpp @@ -414,7 +414,7 @@ RC CHILLER::endSubhr() DBL chTs = cp->tr + q / chpp.mw; // this chiller output temp assuming no flow overrun (q negative) if ( chTs < 32. // if frozen && cp->cpTs >= 32. ) // but overall coolplant not frozen (that yields msg in cpCompute) - rer( (char *)MH_R1363, name, cp->name, chTs); /* "CHILLER '%s' of COOLPLANT '%s': \n" + rer( (char *)MH_R1363, name, cp->Name(), chTs); /* "CHILLER '%s' of COOLPLANT '%s': \n" " delivered water temp (%g F) is below freezing" */ } else // chiller is off diff --git a/src/cncult.cpp b/src/cncult.cpp index fe3a4f8e8..4a217db17 100644 --- a/src/cncult.cpp +++ b/src/cncult.cpp @@ -946,7 +946,7 @@ LOCAL RC tuPrf([[maybe_unused]] CULT *c, TU *p, ZNI *p2, [[maybe_unused]] void * // error if too many if (n > MAX_ZONETUS) // =3, cndefns.h - return p->oer( (char *)MH_S0427, (INT)MAX_ZONETUS, p2->name ); // "More than %d terminals for zone '%s'" + return p->oer( (char *)MH_S0427, (INT)MAX_ZONETUS, p2->Name() ); // "More than %d terminals for zone '%s'" return RCOK; } // tuPrf @@ -3324,7 +3324,7 @@ o n++; // count it o o // error if too many o if (n > MAX_ZONETUS) // =3, cndefns.h -o return oer( p, "More than %d terminals for zone '%s'", (INT)MAX_ZONETUS, p2->name ); +o return oer( p, "More than %d terminals for zone '%s'", (INT)MAX_ZONETUS, p2->Name() ); o o return RCOK; o} // tuxPrf diff --git a/src/cncult2.cpp b/src/cncult2.cpp index 624bb3daf..cdab5d943 100644 --- a/src/cncult2.cpp +++ b/src/cncult2.cpp @@ -143,11 +143,9 @@ RC topStarPrf2([[maybe_unused]] CULT *c, [[maybe_unused]] void *p, [[maybe_unuse Topi.runSerial = cnRunSerial; // cnguts.cpp variable. // note updated by cnguts:cgInit with ++ or per (future) status file, 7-92. // get run date and time string for bin res file, probes, reports (cgresult.cpp:cgZrExHd, cncult4:getFooterText). Here 9-94. - dmfree( DMPP( Topi.runDateTime)); // free any prior run's date/time. dmpak.cpp. IDATETIME idt; ensystd(&idt); // get current date/time in IDATETIME form. envpak.cpp - Topi.runDateTime = strsave( // save string in dm, strpak.cpp - tddtis( &idt, NULL) ); // IDATETIME ---> string + Topi.runDateTime = tddtis( &idt, NULL); // IDATETIME --> CULSTR return RCOK; } // topStarPrf2 //=========================================================================== @@ -496,7 +494,7 @@ RC TOPRAT::tp_Wfile( // find/read weather file / init top members with data fro // find weather file, store full path ppFindFile( tp_wfName); // find file, update tp_wfName to full path - if (tp_TDVfName) + if (!tp_TDVfName.IsBlank()) ppFindFile( tp_TDVfName); // auxiliary TDV (time dependent value) file if any // open weather file @@ -541,7 +539,7 @@ RC TOPRAT::tp_Wfile( // find/read weather file / init top members with data fro " run is %s to %s,\n" " but '%s' dates are %s to %s.\n" */ tddys( tp_begDay), tddys( tp_endDay), - Top.tp_wfName, tddys( Wfile.jd1), tddys( Wfile.jdl) ); + Top.tp_wfName.CStr(), tddys(Wfile.jd1), tddys(Wfile.jdl)); } } else @@ -739,8 +737,8 @@ RC TOPRAT::brFileCk() // check/clean up inputs re binary results files, rob 12-2 // clean up binary results file name if given - if ( IsVal( TOPRAT_BRFILENAME)) // if binary result filename given (and stored -- insurance) - && *tp_brFileName.CStr() ) // and not just "" to negate filename in earlier run + if ( IsVal( TOPRAT_BRFILENAME)) // if binary result filename given (and stored -- insurance) + && !tp_brFileName.IsBlank() ) // and not just "" to negate filename in earlier run { char *s = strffix( tp_brFileName, ""); // standardize: deblank, uppercase. "": no default extension. to TmpStr. char *dot = strrchr( s, '.'); // point last period in pathName @@ -749,7 +747,7 @@ RC TOPRAT::brFileCk() // check/clean up inputs re binary results files, rob 12-2 // warning for extension given (won't be used) pWarn( (char *)MH_S0503, // "Extension given in binary results file name \"%s\" \n" - tp_brFileName ); // " will not be used -- extensions \".brs\" and \".bhr\" are always used." + tp_brFileName.CStr() ); // " will not be used -- extensions \".brs\" and \".bhr\" are always used." *(dot + 1) = '\0'; // remove the extension so warning does not repeat } if (!*strpathparts( s, STRPPDRIVE|STRPPDIR)) // if contains no drive nor directory (strpak.cpp fcn) @@ -760,7 +758,7 @@ RC TOPRAT::brFileCk() // check/clean up inputs re binary results files, rob 12-2 if (tp_brs != C_NOYESCH_YES && tp_brHrly != C_NOYESCH_YES) pWarn( (char *)MH_S0504, // "You have given a binary results file name with\n" - tp_brFileName ); // " \"BinResFileName = %s\",\n" + tp_brFileName.CStr() ); // " \"BinResFileName = %s\",\n" // " but no binary results file will be written as you have not given\n" // " any of the following commands:\n" // " BinResFile = YES; BinResFileHourly = YES;\n" @@ -768,7 +766,7 @@ RC TOPRAT::brFileCk() // check/clean up inputs re binary results files, rob 12-2 // " -r -h\n" else if (tp_brMem && !tp_brDiscardable) pWarn( (char *)MH_S0505, // "You have given a binary results file name with\n" - tp_brFileName ); // " \"BinResFileName = %s\",\n" + tp_brFileName.CStr() ); // " \"BinResFileName = %s\",\n" // " but no binary results file will be written as you have also specified\n" // " memory-only binary results with the -m DLL command line switch." } @@ -1202,7 +1200,7 @@ RC LR::lr_TopLr() // nominal R value in framing unexpected & not used. Rob. if (frmMat->mt_rNom > 0.f) oWarn( (char *)MH_S0478, // "Ignoring unexpected mt_rNom=%g of framing material '%s'" - frmMat->mt_rNom, frmMat->name ); + frmMat->mt_rNom, frmMat->Name() ); // test whether thickness given in framing material frmMatThkSet = frmMat->IsSet( MAT_THK); // non-0 if framing material thickness given } @@ -1984,10 +1982,10 @@ LOCAL RC badRefMsg( // message for bad reference (rat subscript) mbr, mbrName && *mbrName ? strtprintf(" %s of", mbrName) : "", (char *)fromBase->what, - fromRec->name, + fromRec->Name(), fromRec->ss, ownRec - ? strtprintf( " of %s '%s'", (char *)ownRec->b->what, ownRec->name ) + ? strtprintf( " of %s '%s'", (char *)ownRec->b->what, ownRec->Name() ) : "" ); } // badRefMsg diff --git a/src/cncult3.cpp b/src/cncult3.cpp index d0226a943..7ab578b60 100644 --- a/src/cncult3.cpp +++ b/src/cncult3.cpp @@ -70,7 +70,7 @@ void FC topPr() // check perimeters // perimeter: add traditional XSURF to zone - cnuCompAdd( &pr->x, pr->name, pr->ownTi, &pr->xi, NULL); // add XSURF to zone, below. + cnuCompAdd( &pr->x, pr->Name(), pr->ownTi, &pr->xi, NULL); // add XSURF to zone, below. } } // topPr //=========================================================================== @@ -297,7 +297,7 @@ RC SFI::sf_TopSf1() // " remaining area of %s's surface%s \n" // (%g after subtraction of previous door areas)" classObjTx(), sfArea, - (char *)b->what, quifnn( ownSf->name), // quote if not "" + (char *)b->what, quifnn( ownSf->Name()), // quote if not "" ownSf->x.xs_area ); ownSf->x.xs_area = 0.f; // use 0 / no more msgs } @@ -436,7 +436,7 @@ RC SFI::sf_TopSf1() fs[ SFI_SFU] |= FsSET; // say sfU set, so it will be used below. 2-17-95. } else - rc1 = oer( (char *)MH_S0531, gt->name); // "No U-value given: neither wnU nor glazeType '%s' gtU given" + rc1 = oer( (char *)MH_S0531, gt->Name()); // "No U-value given: neither wnU nor glazeType '%s' gtU given" } else { // no wnGT @@ -550,7 +550,7 @@ x printf( "Hit\n"); { rc |= oer( (char *)MH_S0514, // "delayed (massive) sfModel=%s selected\n" // " but surface's construction, '%s', has no layers" getChoiTx( SFX( MODEL)), - con->name ); + con->Name() ); break; // (is preset to quick) } if (x.xs_modelr == C_SFMODELCH_KIVA) // if model is already set to Kiva, break @@ -883,7 +883,7 @@ RC FC topSg() // SGDIST processing at RUN { sg->oer( // message to scrn, and disable RUN. (char *)MH_S0518, /* "%ssurface '%s' not in zone '%s'. \n" " Can't target solar gain to surface not in window's zone." */ - s, targSf->name, zp->name ); + s, targSf->Name(), zp->Name() ); continue; // next sg } @@ -902,7 +902,7 @@ RC FC topSg() // SGDIST processing at RUN { sg->oWarn( (char *)MH_S0519, // "Target surface '%s' is not delayed model.\n" // " Solar gain being directed to zone '%s' air." - targSf->name, zp->name ); + targSf->Name(), zp->Name() ); // need do nothing to redirect the gain since target is in zone. // CHANGES REQUIRED when target surface side can be in another zone. continue; // proceed to next sgdist. run NOT stopped. @@ -985,7 +985,7 @@ RC FC topSh() // SHADE processing at RUN { sh->oer( (char *)MH_S0522, /* "Window '%s' is already shaded by shade '%s'. \n" " Only 1 SHADE per window allowed. */ - gz->name, WshadR.p[gz->x.iwshad].name ); + gz->Name(), WshadR.p[gz->x.iwshad].name ); continue; // skip (msg prevented RUN) } @@ -1897,7 +1897,7 @@ RC SFI::sf_SetupKiva() auto wlSf = SfiB.GetAt(wli); XSRAT* xrWl; - rc = cnuCompAdd(&wlSf->x, wlSf->name, wlSf->x.xs_sbcI.sb_zi, &wlSf->xi, &xrWl); // add XSRAT to mass's inside zone, ret ptr. + rc = cnuCompAdd(&wlSf->x, wlSf->Name(), wlSf->x.xs_sbcI.sb_zi, &wlSf->xi, &xrWl); // add XSRAT to mass's inside zone, ret ptr. ki->kv_walls.push_back(wlSf->xi); if (!rc) // if added ok: insurance { // Kiva XSURF differences from SFI.x (do not change input (esp .x.xs_ty) in case surf quick-modelled on later run) @@ -2280,7 +2280,7 @@ RC XSURF::xs_Validate( } // XSURF::Validate //----------------------------------------------------------------------------- const char* XSURF::xs_Name() const -{ return xs_pParent ? xs_pParent->name : "?"; +{ return xs_pParent ? xs_pParent->Name() : "?"; } // XSURF::xs_Name //----------------------------------------------------------------------------- float XSURF::xs_AreaGlazed() const diff --git a/src/cncult4.cpp b/src/cncult4.cpp index cbbb63844..286c96b49 100644 --- a/src/cncult4.cpp +++ b/src/cncult4.cpp @@ -308,10 +308,10 @@ RC topCol( int isExport) && (colEvf & (EVXBEGIVL)) ) // and colVal evaluated at end/post interval (results probe) colip->oWarn( (char *)MH_S0546, // "End-of-interval varying value is reported more often than it is set:\n" - exrp, exrePort, rp->name, // " %sFreq of %s '%s' is '%s',\n" eg "rpFreq of report 'foo' is 'day' + exrp, exrePort, rp->Name(), // " %sFreq of %s '%s' is '%s',\n" eg "rpFreq of report 'foo' is 'day' // " but colVal for colHead '%s' varies (is given a value) only at end of %s." rp->getChoiTx( RI_RPFREQ, 1), // text for rpfreq choice - colip->colHead, + colip->colHead.CStr(), evfTx( colEvf,2) ); // text for evf bits,cuparse.cpp,2=noun eg "each hour" } @@ -874,7 +874,7 @@ RC RI::ri_oneRxp() // process one report or export for topRxp if (rpTy) // if good type not given, skip these type-dependent checks if (rpTy != C_RPTYCH_UDT) // not user defined { - if (rpTitle) + if (IsSet( RI_RPTITLE)) oer( (char *)MH_S0561, exrp, exrp); // "%sTitle may only be given when %sType=UDT" if (coli) oer( (char *)MH_S0562, exrp, exrePort, exrp); // "%sport has %sCols but %sType is not UDT" @@ -1091,11 +1091,7 @@ RC buildUnspoolInfo() // returns non-RCOK if error; be sure bad return propogated to stop run where message does not errCount++. { - RFI *rfp; - RI *rp; - SI nVrh, atEnd; - VROUTINFO *p; - RC rc; + RC rc{ RCOK }; // allocate dm block for unspooling specifications in vrUnspool format, set pointer in cnguts.cpp. @@ -1110,27 +1106,26 @@ RC buildUnspoolInfo() // fill dm block with name-options for each file, followed by 0-terminated list of vrh's that go into it - p = UnspoolInfo; + VROUTINFO* p = UnspoolInfo; + RI* rp; + RFI* rfp; RLUP( RfiB, rfp) // loop report files { // find and get vrh's for file, if any - nVrh = 0; - for (atEnd = 0; atEnd < 2; atEnd++) // do 2 passes to put .putAtEnd-flagged reports last - /*lint -e731 "Boolean arg to ==" */ + int nVrh = 0; + for (int atEnd = 0; atEnd < 2; atEnd++) // do 2 passes to put .putAtEnd-flagged reports last RLUP( RiB, rp) // loop reports, find those for this file if ( rp->ownTi==rfp->ss // if report is for this file && (!rp->putAtEnd)==(!atEnd) // if it is for end or not per pass && rp->vrh ) // if report has non-0 virt rpt handle (insurance) p->vrhs[nVrh++] = rp->vrh; // add report's vrh to those to put in this file - /*lint +e731 */ p->vrhs[nVrh] = 0; // 0 after last vrh terminates list (vbl length array) // note no ++nVrh as sizeof(VROUTOUT) includes .vrhs[1]. // complete entry only if vrh's found, or if overwrite if (nVrh // if any reports were found for file || p->optn & VR_OVERWRITE ) // or file is to be overwritten: erase even if no reports. { - p->fName = rfp->fileName; // copy fileName pointer - cupIncRef( DMPP( rfp->fileName)); // dmIncRef unless ptr into pseudocode (or NANDLE), cueval.cpp. + p->fName = strsave(rfp->fileName); // copy fileName p->optn = (rfp->pageFmt==C_NOYESCH_YES ? VR_FMT : 0) // translate page formatting to vrpak option bit | (rfp->overWrite ? VR_OVERWRITE : 0); // translate erase existing file flag to vrpak optn bit rfp->overWrite = 0; // only overWrite once in session, then append! @@ -1142,7 +1137,7 @@ RC buildUnspoolInfo() RLUP( XfiB, rfp) // loop export files (separate ancBase of same type as report files) { // find and get the vrh's for file, if any - nVrh = 0; + int nVrh = 0; RLUP( XiB, rp) // loop exports, find those for this file if (rp->ownTi==rfp->ss // if export is for this file && rp->vrh ) // if export has non-0 virt rpt handle (insurance) @@ -1153,8 +1148,7 @@ RC buildUnspoolInfo() if ( nVrh // if any exports were found for file || p->optn & VR_OVERWRITE ) // or file is to be overwritten { - p->fName = rfp->fileName; // copy fileName pointer - cupIncRef( DMPP( rfp->fileName)); // dmIncRef unless ptr into in pseudocode (or NANDLE), cueval.cpp. + p->fName = strsave( rfp->fileName); // copy fileName to heap string p->optn = // page formatting option bit off for exports (rfp->overWrite ? VR_OVERWRITE : 0) // translate erase existing file flag to vrpak optn bit | VR_ISEXPORT; // is this tested? @@ -1270,7 +1264,7 @@ RC RFI::rf_CkF2( // start-of-run REPORTFILE / EXPORTFILE check // passed to vrPak, so any addl uses append) // note: dir overwrite detected later else // assume C_FILESTATCH_NEW - oer( (char *)MH_S0544, fileName); // "File %s exists". Text also used below. Message stops run. + oer( (char *)MH_S0544, fileName.CStr()); // "File %s exists". Text also used below. Message stops run. } fileStatChecked++; // say don't repeat: don't issue error due to prior run's output; // don't set overwrite again (would erase prior output). @@ -1287,8 +1281,7 @@ RC RFI::rf_CkF2( // start-of-run REPORTFILE / EXPORTFILE check { cupfree( DMPP( PriRep.f.fName)); // decref/free any value from a prior run, unless a // ptr to "text" inline in pseudocode. cueval.cpp. */ - PriRep.f.fName = fileName; // set cnguts.cpp global to file name - cupIncRef( DMPP( fileName)); // dmIncRef unless ptr into pscode (or NANDLE), cueval.cpp. + PriRep.f.fName = strsave( fileName); // set cnguts.cpp global to file name PriRep.f.optn = (pageFmt==C_NOYESCH_YES ? VR_FMT : 0) // translate page formatting to vrpak option bit | (overWrite ? VR_OVERWRITE : 0); // translate erase existing file flag to vrpak optn bit } @@ -1313,7 +1306,7 @@ RC RFI::rf_CheckForDupFileName() // make sure this RFI is only user of its file { if (fip->ss >= ss) // only check smaller-subscripted ones vs this -- else get multiple messages break; if (!_stricmp( fip->fileName, fileName)) - return ooer( RFI_FILENAME, (char *)MH_S0441, mbrIdTx( RFI_FILENAME), fileName, fip->name ); + return ooer( RFI_FILENAME, (char *)MH_S0441, mbrIdTx( RFI_FILENAME), fileName, fip->Name() ); // "Duplicate %s '%s' (already used in ReportFile '%s')" } RLUP( XfiB, fip) @@ -1321,7 +1314,7 @@ RC RFI::rf_CheckForDupFileName() // make sure this RFI is only user of its file if (fip->ss >= ss) // only check smaller-subscripted ones vs this -- else get multiple messages break; if (!_stricmp( fip->fileName, fileName)) - return ooer( RFI_FILENAME, (char *)MH_S0442, mbrIdTx( RFI_FILENAME), fileName, fip->name); + return ooer( RFI_FILENAME, (char *)MH_S0442, mbrIdTx( RFI_FILENAME), fileName, fip->Name()); // "Duplicate %s '%s' (already used in ExportFile '%s')" } return RCOK; @@ -1408,7 +1401,8 @@ COL::~COL() (*reinterpret_cast(&colVal.val)).Release(); // use base class Copy. Copies derived class members too, per record type (.rt): RECORD MUST BE CONSTRUCTED - record::Copy( pSrc, options); // verfies that src and this are same record type. lib\ancrec.cpp. + record::Copy( pSrc, options); // verfies that src and this are same record type. + // duplicate copied CULSTRs colHead.FixAfterCopy(); if (colVal.ty==TYSTR || colVal.ty==DTCULSTR) @@ -1627,8 +1621,8 @@ char* getFooterText( int pageN) // get footer text for specified page number if (tp) { addTx( tp->tp_RepTestPfx(), 0, &p, &r); // add test prefix to footer (hides runDateTime re testing text compare) rReserve = strlenInt( tp->runDateTime) + 5 + 9; - if (!IsBlank( tp->runTitle)) - rReserve += static_cast(strlen( tp->runTitle)) + 2; + if (!tp->runTitle.IsBlank()) + rReserve += strlenInt( tp->runTitle) + 2; } addTx( InputFileName, 0, &p, &r, rReserve); // add user-entered input file name (rundata.cpp); updates p and r. // or InputFilePath if full path and defaulted extension desired diff --git a/src/cncult5.cpp b/src/cncult5.cpp index a5eb49023..a862369cd 100644 --- a/src/cncult5.cpp +++ b/src/cncult5.cpp @@ -330,7 +330,7 @@ x ? sfan.vfDs - oaVfDsMn // default rfan cfm: sf " but terminal '%s' max cooling air flow (tuVfMxC) is %g.\n" " Usually, these should be equal when fan cycles.\n" " The more limiting value will rule." */ - sfanMx, ctu->name, tuMx ); + sfanMx, ctu->Name(), tuMx ); } if (ctu->sstat[TU_TUVFMXH] & FsVAL) // if constant (not expr) value given for tu max heating flow { @@ -342,7 +342,7 @@ x ? sfan.vfDs - oaVfDsMn // default rfan cfm: sf " but terminal '%s' max heating air flow (tuVfMxH) is %g.\n" " Usually, these should be equal when fan cycles.\n" " The more limiting value will rule." */ - sfanMx, ctu->name, tuMx ); + sfanMx, ctu->Name(), tuMx ); } } @@ -354,7 +354,7 @@ x ? sfan.vfDs - oaVfDsMn // default rfan cfm: sf if ((ctu->sstat[TU_TUVFMN] & FsVAL) && ctu->tuVfMn > 0.) // if > 0 constant given for terminal min flow oer( (char *)MH_S0630, /* "Control terminal '%s':\n" " tuVfMn=%g: must be zero or omitted when fan cycles." */ - ctu->name, ctu->tuVfMn ); + ctu->Name(), ctu->tuVfMn ); // error if tuVfMn autoSized when known that fan cycles. 7-95. /* related checks: AUTOSIZE tuVfMn & runtime-variable ahFanCyles: See TU::setup. diff --git a/src/cncult6.cpp b/src/cncult6.cpp index 38b8bde9d..d173df7bd 100644 --- a/src/cncult6.cpp +++ b/src/cncult6.cpp @@ -233,11 +233,11 @@ x TI *stg = hpStage1 + i * HPSTAGESZ; // point hpStage1..hpStage7 for rc |= ckRefPt( &BlrB, stg[j], stgNm, NULL, (record**)&blr); // check for valid BOILER subscript, access record if (blr->ownTi != ss) // boiler named in stage list must be ours rc |= oer( (char *)MH_S0702, // "%s: boiler '%s' is not in this heatPlant" - stgNm, blr->name); + stgNm, blr->Name()); for (SI k = j + 1; k < NHPSTAGES-1 && stg[k]; k++) // loop following part of list if (stg[k]==stg[j]) // check for duplication rc |= oer( (char *)MH_S0703, // "%s: BOILER '%s' cannot be used twice in same stage" - stgNm, blr->name ); + stgNm, blr->Name() ); } if (stg[j]) // stops at last j whether or not 0 rc |= oer( (char *)MH_S0704, stgNm); // if not 0, error "Internal error: %s not terminated with 0" @@ -405,11 +405,11 @@ x TI *stg = cpStage1 + i * CPSTAGESZ; // point cpStage1..cpStage7 for rc |= ckRefPt( &ChB, stg[j], stgNm, NULL, (record**)&ch); // check for valid CHILLER subscript, access record if (ch->ownTi != ss) // chiller named in stage list must be ours rc |= oer( (char *)MH_S0713, // "%s: chiller '%s' is not in this coolPlant" - stgNm, ch->name); + stgNm, ch->Name()); for (SI k = j + 1; k < NCPSTAGES-1 && stg[k]; k++) // loop following part of list if (stg[k]==stg[j]) // check for duplication rc |= oer( (char *)MH_S0714, // "%s: CHILLER '%s' cannot be used twice in same stage" - stgNm, ch->name ); + stgNm, ch->Name() ); } if (stg[j]) // stops at last j whether or not 0 rc |= oer( (char *)MH_S0715, stgNm); // if not 0, error "Internal error: %s not terminated with 0" diff --git a/src/cnguts.cpp b/src/cnguts.cpp index 478e20a9f..e2b0b3ac4 100644 --- a/src/cnguts.cpp +++ b/src/cnguts.cpp @@ -260,7 +260,7 @@ BOOL DbDo( // handy DbShouldPrint + headings if (bDoHdgs && !dbgDoneRunHdg) { DbPrintf( "################\n%s%s %s %s %s\n", Top.tp_RepTestPfx(), - ProgName, ProgVersion, ProgVariant, Top.runDateTime ); + ProgName, ProgVersion, ProgVariant, Top.runDateTime.CStr() ); dbgDoneRunHdg = TRUE; } if (bDoHdgs && !dbgDoneStepHdg) @@ -780,11 +780,11 @@ LOCAL RC FC doEndIvl() // simulation run end-of-interval processing: results a warn( // not rWarn: no day/hour etc (at least not til also done for ausz) 5-97 "Zone '%s': Condensation occurred in %d subhours of run.\n" " Total condensation heat = %g kBtu.", - zr->name, R.nSubhrLX, + zr->Name(), R.nSubhrLX, R.qlX/1000 ); // convert Btu to kBtu if (R.nShVentH) // unhelpful ventilation warn("Zone '%s': Unhelpful ventilation heating occurred during %d subhours of run.", - zr->name, R.nShVentH); + zr->Name(), R.nShVentH); if (Z.i.znModel != C_ZNMODELCH_CZM) continue; // unmet tracking meaningful for CZM only @@ -801,7 +801,7 @@ LOCAL RC FC doEndIvl() // simulation run end-of-interval processing: results a " Cooling %6.1f %7.2f %7.2f %6.1f"; // "Info" msg to report only - issueMsg(2+NOSCRN+NOERRFILE, fmt, zr->name, Top.tp_unMetTzTol, + issueMsg(2+NOSCRN+NOERRFILE, fmt, zr->Name(), Top.tp_unMetTzTol, R.unMetHrs[ 0], avgErr[ 0], R.unMetMaxTD[ 0], R.unMetHrsTol[ 0], R.unMetHrs[ 1], avgErr[ 1], R.unMetMaxTD[ 1], R.unMetHrsTol[ 1]); } @@ -809,17 +809,17 @@ LOCAL RC FC doEndIvl() // simulation run end-of-interval processing: results a // issue warning(s) if unmet hrs per tp_unMetTzTol exceed threshold if (R.unMetHrsTol[ 0] > Top.tp_unMetTzTolWarnHrs) warn ("Zone '%s': Air temp more than %0.1f F below heating setpoint during %0.1f hours of run", - zr->name, Top.tp_unMetTzTol, R.unMetHrsTol[ 0]); + zr->Name(), Top.tp_unMetTzTol, R.unMetHrsTol[ 0]); if (R.unMetHrsTol[ 1] > Top.tp_unMetTzTolWarnHrs) warn("Zone '%s': Air temp more than %0.1f F above cooling setpoint during %0.1f hours of run", - zr->name, Top.tp_unMetTzTol, R.unMetHrsTol[ 1]); + zr->Name(), Top.tp_unMetTzTol, R.unMetHrsTol[ 1]); } RLUP( AhB, ah) if (ah->ahcc.nSubhrsLX) warn( "Airhandler \"%s\": Supersaturated air occurred at DX coil \n" " entry in %ld subhours of run. A total of %g kBtu \n" " of condensation heat was added to the entering air.", - ah->name, (long)ah->ahcc.nSubhrsLX, ah->ahcc.xLGainYr/1000 ); + ah->Name(), (long)ah->ahcc.nSubhrsLX, ah->ahcc.xLGainYr/1000 ); DHWHEATER* wh; RLUP(WhR, wh) // primary heaters @@ -963,7 +963,7 @@ RC FC cgRddInit( // Perform initialization common to main simulation run and eac { int iz = zp->ss; if (frDiff( zp->zn_ua, tUA[ iz]) > .0001 || frDiff(zp->zn_uaSpecT, tUASpecT[ iz]) > .0001) - warn( "Zone '%s': UA mismatch", zp->name); + warn( "Zone '%s': UA mismatch", zp->Name()); } #endif @@ -1492,7 +1492,7 @@ LOCAL void FC doIvlAccum() { #if 0 && defined( _DEBUG) if (pZR->curr.H.tAir == 0.) - printf( "\n'%s' tAir == 0", pZR->name); + printf( "\n'%s' tAir == 0", pZR->Name()); #endif // generate subhour "balance" sums: these are accumulated, and checked for near 0 by cgenbal.cpp at longer intervals. pZR->curr.S.qsBal = VSum( &pZR->curr.S.ZRq1, ZRnQ); // net sens heat: sum sensible heats. cnguts.h defines. @@ -2087,9 +2087,9 @@ LOCAL void FC mtrsAccum( // Accumulate metered results: add interval to next, + RLUP( MtrB, mtr) // loop (good) meter records { #if defined( _DEBUG) - int bTrc = 0; // strMatch( mtr->name, "ElecMtrInitNo"); + int bTrc = 0; // strMatch( mtr->Name(), "ElecMtrInitNo"); if (bTrc) - printf( "\nAccum Day=%d hr=%d mtr='%s' ivl=%d ff=%d", Top.jDay, Top.iHr, mtr->name.CStr(), ivl, firstflg); + printf( "\nAccum Day=%d hr=%d mtr='%s' ivl=%d ff=%d", Top.jDay, Top.iHr, mtr->Name(), ivl, firstflg); #endif MTR_IVL_SUB* mtrSub2 = &mtr->Y + (ivl - C_IVLCH_Y); // point destination meter interval substruct for interval @@ -2146,9 +2146,9 @@ LOCAL void FC mtrsFinalize( // Finalize meters (after post-stage calcs e.g. bat RLUP( MtrB, mtr) // loop (good) meter records { #if defined( _DEBUG) - int bTrc = 0; // strMatch( mtr->name, "ElecMtrInitNo"); + int bTrc = 0; // strMatch( mtr->Name(), "ElecMtrInitNo"); if (bTrc) - printf( "\nFinal Day=%d hr=%d mtr='%s' ivl=%d ff=%d", Top.jDay, Top.iHr, mtr->name.CStr(), ivl, firstflg); + printf( "\nFinal Day=%d hr=%d mtr='%s' ivl=%d ff=%d", Top.jDay, Top.iHr, mtr->Name(), ivl, firstflg); #endif MTR_IVL_SUB* mtrSub2 = &mtr->Y + (ivl - C_IVLCH_Y); // point destination meter interval substruct for interval @@ -2761,9 +2761,7 @@ LOCAL void FC binResInit( int isAusz) // initialize & open binary results (if to || Top.tp_brHrly==C_NOYESCH_YES ); // local flag merges Top flags for basic & hourly bin res files if (brf) { - const char* fName = // file name to use, if one is used. brfw.create() changes .ext(s). - Top.tp_brFileName && *Top.tp_brFileName // name given with BinResFileName =, if any (and not "") - ? Top.tp_brFileName : InputFilePath; // otherwise input file pathname (ext gets changed) + const char* fName = Top.tp_brFileName.CStrDflt(InputFileName); // file name to use, if one is used. brfw.create() changes .ext(s). if (brfw.create( // initialize ResfWriter object and open its output file(s) and/or memory block(s) (Top.tp_brMem && !Top.tp_brDiscardable) ? NULL : fName, // unless using memory output only, pass filename (brfw changes .ext) @@ -2803,7 +2801,7 @@ LOCAL void FC binResFinish() // complete and close binary results files at end r ZNR *zp; RLUP( ZrB, zp) // loop zone run records. cnglob.h macro. brfw.setResZone( zp->ss-1, // form 0-based zone number from CSE's 1-based subscript - zp->name, // pass zone name + zp->Name(), // pass zone name zp->i.znArea ); // pass zone conditioned floor area // output stuff for each energy source diff --git a/src/cnloads.cpp b/src/cnloads.cpp index 1d2c54222..ca8a2bd8f 100644 --- a/src/cnloads.cpp +++ b/src/cnloads.cpp @@ -575,7 +575,7 @@ x } int nVU1 = zp->zn_AssessVentUtility(); #if 0 && defined(_DEBUG) if (bReportVent) - { // printf("\n%s Hr=%d, Zone '%s': VU=%d", Top.dateStr, Top.iHr, zp->name, nVU1); + { // printf("\n%s Hr=%d, Zone '%s': VU=%d", Top.dateStr, Top.iHr, zp->Name(), nVU1); if (nVU1 < 0) zp->zn_AssessVentUtility(); // call again for debug } @@ -695,7 +695,7 @@ x } "Zone pz0W[0] pz0W[1] pz0 qIzSh AmfCp AmfCpT\n"); RLUP(ZrB, zp) DbPrintf("%-20.20s %8.5f %8.5f %8.5f %10.2f %8.2f %10.1f\n", - zp->name, zp->zn_pz0W[0], zp->zn_pz0W[1], zp->zn_pz0, zp->zn_qIzSh, + zp->Name(), zp->zn_pz0W[0], zp->zn_pz0W[1], zp->zn_pz0, zp->zn_qIzSh, zp->zn_AnAmfCp(0), zp->zn_AnAmfCpT(0)); } #endif @@ -1235,7 +1235,7 @@ RC ZNR::zn_AirRequest( // determine air requirement given rs_asSup || (zn_hcMode == RSYS::rsmHEAT && tSup0 <= zn_tzsp && rs->rs_effHt > 0.f))) { orWarn("Flipped tSup RSYS='%s', tPln=%0.3f, tSup=%0.3f, tSP=%0.1f, tZn=%0.3f\n", - rs->name, rs->rs_asOut.as_tdb, tSup0, zn_tzsp, tz); + rs->Name(), rs->rs_asOut.as_tdb, tSup0, zn_tzsp, tz); } #endif @@ -2531,11 +2531,11 @@ RC RSYS::rs_TopRSys2() // final set up for run if (zpx && ds->ds_exArea > 0.f) oWarn( "DUCTSEG '%s' is unused (rsDSEH and rsDSEC both given)\n" " but its surface area is included in ZONE '%s'", - ds->name, zpx->name); + ds->Name(), zpx->Name()); else oInfo( "DUCTSEG '%s' is unused (rsDSEH and rsDSEC both given)\n" " and has no effect", - ds->name); + ds->Name()); } else for (int iHC=0; iHC<2; iHC++) { int iDS = rs_Dsi( iSR, iHC); @@ -3015,7 +3015,7 @@ int RSYS::rs_OAVAttempt() int warnCount = ZnresB[ zp->ss].zr_GetRunTotalLI( ZNRES_IVL_SUB_NSHVENTH); if (warnCount <= WARNMAX) warn( "Zone '%s', %s: unhelpful vent heating (supply temp = %0.2f)%s", - zp->name, Top.When( C_IVLCH_S), tSup, + zp->Name(), Top.When( C_IVLCH_S), tSup, warnCount == WARNMAX ? "\n Suppressing further vent heating messages for this zone" : ""); } @@ -6105,7 +6105,7 @@ double RSYS::rs_AmfRequired( // find all-zone total AMF required for tSup { double znAmf = zp->zn_AmfHvacCR( zp->zn_tzsp, tSup); #if defined( _DEBUG) if (znAmf < 0.) - printf( "Zone '%s': Neg amf\n", zp->name.CStr()); + printf( "Zone '%s': Neg amf\n", zp->Name()); #endif rsAmf += znAmf; } @@ -6425,7 +6425,7 @@ static RC loadsIzxSh2() // interzone transfers, part 2 DbPrintf("\n"); RLUP( ZrB, zp) DbPrintf( "%s vent: MCpVent=%.2f MCpTVent=%.1f\n", - zp->name, + zp->Name(), zp->zn_AnAmfCp( 1), zp->zn_AnAmfCpT( 1)); } #endif diff --git a/src/cnztu.cpp b/src/cnztu.cpp index 8c6774169..b742c1286 100644 --- a/src/cnztu.cpp +++ b/src/cnztu.cpp @@ -712,7 +712,7 @@ RC TU::tu_Setup() // check and set up terminal record: call for each terminal || evf > EVFRUN) // if varies more than at start of run rc |= oer("When autoSizing tuVfMn,\n" " airhandler %s's ahFanCycles value cannot be runtime variable.", - ah->name); + ah->Name()); } } } @@ -1002,7 +1002,7 @@ RC TU::tu_endAutosize() // terminal stuff at end successful autosize 6-95 "Couldn't autoSize tuVfMxH correctly:\n" " there was not enough supply heat from airHandler to meet demand.\n" " %s", - strtprintf( sub, ah->name) ); // format air handler name into subMessage + strtprintf( sub, ah->Name()) ); // format air handler name into subMessage } // ... Warn if dT fell below 1 degree F (and flow would have run away) while autoSizing tuVfMxC @@ -1023,7 +1023,7 @@ RC TU::tu_endAutosize() // terminal stuff at end successful autosize 6-95 "Couldn't autoSize tuVfMxC correctly:\n" " there was not enough supply coldness from airHandler to meet demand.\n" " %s", - strtprintf( sub, ah->name) ); // format air handler name into subMessage + strtprintf( sub, ah->Name()) ); // format air handler name into subMessage } return RCOK; @@ -1631,7 +1631,7 @@ RC TU::tu_EndSubhr() // terminal stuff done at end subhr: record load; checks a if (hp->hpMode != C_OFFONCH_ON) // heatplant must be scheduled OFF, or would have come on from ztuCompute. // rWarn? shd be ok to continue: 0 lh used when plant off. rer( (char *)MH_R1252, // "heatPlant %s is scheduled OFF, \n" - hp->name, name, tuQMnLh, tuQMxLh ); // " but terminal %s's local heat is NOT scheduled off: \n" + hp->Name(), name, tuQMnLh, tuQMxLh ); // " but terminal %s's local heat is NOT scheduled off: \n" break; // " tuQMnLh = %g tuQMxLh = %g" } diff --git a/src/cse.cpp b/src/cse.cpp index df8c129a5..922095c31 100644 --- a/src/cse.cpp +++ b/src/cse.cpp @@ -1205,13 +1205,13 @@ LOCAL INT cse3( INT argc, const char* argv[]) vrPrintf( vrTimes, "\n\n%s%s %s %s run(s) done: %s", pfx, ProgName, ProgVersion, ProgVariant, tddtis( &idt, NULL) ); vrPrintf (vrTimes, "\n\n%sExecutable: %s\n%s %s (HPWH %s)", - pfx, Top.tp_exePath, pfx, Top.tp_exeInfo, Top.tp_HPWHVersion); + pfx, Top.tp_exePath.CStr(), pfx, Top.tp_exeInfo.CStr(), Top.tp_HPWHVersion.CStr()); // command line can be long and contain \n (see scWrapIf() call above) // add pfx to each line using strReplace const char* newLinePfx = strtcat("\n", pfx, NULL); char pfxCmdLineArgs[MSG_MAXLEN]; - strReplace(pfxCmdLineArgs, sizeof(pfxCmdLineArgs), Top.tp_cmdLineArgs, "\n", newLinePfx); + strReplace(pfxCmdLineArgs, sizeof(pfxCmdLineArgs), Top.tp_cmdLineArgs.CStr(), "\n", newLinePfx); vrPrintf(vrTimes, "\n%sCommand line:%s", pfx, pfxCmdLineArgs); vrPrintf( vrTimes, "\n%sInput file: %s", diff --git a/src/cul.cpp b/src/cul.cpp index 5042487dd..db9c81189 100644 --- a/src/cul.cpp +++ b/src/cul.cpp @@ -109,6 +109,9 @@ struct DREF TI defO; // default owner of referee (subscr in toB->ownB), eg zone TI for surface, to resolve ambiguities. int fileIx; // for err msgs: input file name index of referencing stmt int line; // .. line number .. + + DREF() { memset(this, 0, sizeof(DREF)); } + ~DREF() { dmfree(DMPP(toName)); } }; // extern USI nDref; // number of dref entries in use when needed // extern DREF * dref; // info on deferred references, array in heap @@ -1018,7 +1021,7 @@ LOCAL RC FC culENDER( // do c u l end cases { if (!((record*)xSp->e)->IsNameMatch( cs)) // if name wrong pWarnlc( (char *)MH_S0217, // warning message "%s name mismatch: '%s' vs '%s'" - (char *)c->id, cs.CStr(), ((record*)(xSp->e))->name); + (char *)c->id, cs.CStr(), ((record*)(xSp->e))->Name()); } // else: continue on error. ganame assumed to have perNx'd. } @@ -2256,7 +2259,7 @@ x UCH *fsj = xSp->fs; // fetch field status byte ptr. Incremented for suc for (x = xStk; x < xSp; x++) if ( (x->cs==3||x->cs==4) && x->b==c->b && x->e != e) pWarnlc( (char *)MH_S0236, // "Statement says %s '%s', but it is \n" - (char *)c->id, e->name, x->e->classObjTx() ); // " in statement group for %s." + (char *)c->id, e->Name(), x->e->classObjTx() ); // " in statement group for %s." goto setFsVAL; // go say 'value stored' in fld status bytes } // switch (ty) @@ -3416,13 +3419,9 @@ LOCAL RC ratPutTy( record *e, CULT *c) // returns RCOK, RCBAD, RCFATAL. { - BP b; - record *tye; - UCH *fs; - SI f; - RC rc; + RC rc = RCOK; - b = e->b; // access basAnc from record + BP b = e->b; // access basAnc from record #ifdef DEBUG // check argument @@ -3434,19 +3433,19 @@ LOCAL RC ratPutTy( record *e, CULT *c) return err( PWRN, (char *)MH_S0266); // "cul.cpp:ratPutTy(): basAnc record to be made a TYPE must be last" // if this basAnc does not already have secondary basAnc for types, make one - CSE_E( ratTyR(b) ) // below. return if error. - -// move record from main basAnc to its types basAnc + CSE_E(ratTyR(b)) // below. return if error. + // move record from main basAnc to its types basAnc + record* tye; if (b->tyB->add( &tye, WRN) ) // add record to types basAnc return RCFATAL; // if out of memory, terminate session 1-8-92 CSE_E( rateDuper( tye, e, 1, 1, -1, c) ) // move record including name, dref's, owned subRat entries. Above. // adjust sstat[] flags to convert record into a TYPE. (caller pre-do this flags loop if ratPutTy moved to ancrec.cpp) - for (f = 0; f < b->nFlds; f++) // loop field numbers + for (int f = 0; f < b->nFlds; f++) // loop field numbers { - fs = (UCH *)tye + b->tyB->sOff + f; // field's status byte (.sstat[f]). Fs___ defines: cul.h. + UCH* fs = (UCH *)tye + b->tyB->sOff + f; // field's status byte (.sstat[f]). Fs___ defines: cul.h. *fs &= ~FsERR; // clear "error message issued" flag: insure full checking later. if (*fs & FsRQD) // if field is flagged "required" (for ARRAY, used on [0] only) //*fs &= ~(FsSET); // clear its "has been entered" flag. OK to leave FsVAL on? I doubt it. @@ -4144,8 +4143,8 @@ LOCAL void FC drefAddI( // add deferred reference table entry -- general inner drfp->i = i; // entry subscr, drfp->fn = fn; // field number. drfp->toB = toB; // what is being referenced: rat, - drfp->toName = toName; // entry name. - drfp->defO = defO; // default owner from context + drfp->toName = strsave( toName); // entry name. + drfp->defO = defO; // default owner from context // .. get file/line info for error messages using cutok.cpp fcn curLine( // get line, line, etc for errmsg, cuparse.cpp. 0, // start current (not previous) token @@ -4332,7 +4331,7 @@ LOCAL void FC drefClr( while (nDref > 0) { DREF* drfp = dref + --nDref; // point last entry / delete it by --count - dmfree( DMPP( drfp->toName)); // clean deleted entry: free dm ptr (from iqx) + drfp->~DREF(); } #if defined( _DEBUG) DMHEAPCHK( strtprintf("drefClr exit %s", callTag)) diff --git a/src/cvpak.cpp b/src/cvpak.cpp index 0519dc773..1c9fb6145 100644 --- a/src/cvpak.cpp +++ b/src/cvpak.cpp @@ -399,7 +399,7 @@ x } #endif case DTCULSTR: - data = *(char * *)data; + data = (*(CULSTR*)data).CStr(); goto strjust; // data is pointer to string #if 0 // untested idea, 1-1-11 diff --git a/src/dhwcalc.cpp b/src/dhwcalc.cpp index 4b7e7d5ac..c40fae919 100644 --- a/src/dhwcalc.cpp +++ b/src/dhwcalc.cpp @@ -881,7 +881,7 @@ RC DHWSYS::ws_CheckSubObject( // check that sub-object is acceptable if (IsSet(DHWSYS_CENTRALDHWSYSI)) { const DHWSYS* pWSX = ws_GetCentralDHWSYS(); rc |= r->oer("Not allowed here, this DHWSYS is served by %s", - pWSX ? strtprintf("central DHWSYS '%s'", pWSX->name) + pWSX ? strtprintf("central DHWSYS '%s'", pWSX->Name()) : "a central DHWSYS."); } } @@ -1135,7 +1135,7 @@ RC DHWSYS::ws_Init( // init for run (including children) DHWSYS* pWSCentral = ws_GetCentralDHWSYS(); if (pWSCentral->ws_HasCentralDHWSYS()) rc |= oer( "DHWSYS '%s' (given by wsCentralDHWSYS) is not central", - pWSCentral->name); + pWSCentral->Name()); pWSCentral->ws_childDHWSYSCount += ws_mult; VAccum( pWSCentral->ws_fxCount, C_DHWEUCH_COUNT, ws_fxCount, ws_mult); // total # of fixtures served @@ -1166,7 +1166,7 @@ RC DHWSYS::ws_Init( // init for run (including children) rc |= rer( "wsLoadShareDHWSYS not found."); // impossible? else if (pWS->ws_loadShareDHWSYSi > 0) rc |= oer( "DHWSys '%s' (given by wsLoadShareDHWSYS) also specifies wsLoadShareDHWSYS.", - pWS->name); + pWS->Name()); else { // note ws_fxCount[ 0] is 1 // thus ws_loadShareCount[ 0] is # of DHWSYSs in group @@ -1637,7 +1637,7 @@ RC DHWSYS::ws_DoHourDrawAccounting( // water use accounting } else { // headings - fprintf(ws_pFDrawCSV, "%s,%s\n", name, Top.runDateTime); + fprintf(ws_pFDrawCSV, "%s,%s\n", name, Top.runDateTime.CStr()); fprintf(ws_pFDrawCSV, "Draw=,%d,,Load=,%d\n", ws_drawMaxDur, ws_loadMaxDur); fprintf(ws_pFDrawCSV, "Mon,Day,Hr,Draw,Load\n"); } @@ -3493,7 +3493,7 @@ RC HPWHLINK::hw_DoSubhrTick( // calcs for 1 tick // dump file name = __hpwh.csv // Overwrite pre-existing file // >>> thus file contains info from only last RUN in multi-RUN sessions - const char* nameNoWS = strDeWS(strtmp(hw_pOwner->name)); + const char* nameNoWS = strDeWS(strtmp(hw_pOwner->Name())); const char* fName = strsave(strffix2(strtprintf("%s_%s_hpwh", InputFilePathNoExt, nameNoWS), ".csv", 1)); hw_pFCSV = fopen(fName, "wt"); @@ -5492,7 +5492,7 @@ void PBC::sb_Init(PIPESEG* pPS) //----------------------------------------------------------------------------- /*virtual*/ const char* PBC::sb_ParentName() const { - return sb_pPS ? sb_pPS->name : "?"; + return sb_pPS ? sb_pPS->Name() : "?"; } // PBC::sb_ParentName //----------------------------------------------------------------------------- /*virtual*/ int PBC::sb_Class() const diff --git a/src/impf.cpp b/src/impf.cpp index 38938a746..b6ff3b700 100644 --- a/src/impf.cpp +++ b/src/impf.cpp @@ -188,7 +188,7 @@ RC FC ImpFldDcdr::axscanFnm(int fnmi) // access field by name: set fieldName, f if (!iffnm->fnmt) // prevent GP fault return IMPERR(( (char *)MH_R1911, /* "%s(%d): Internal error:\n" " no IFFNM.fnmt pointer for Import file %s" */ - srcFile, line, impf->name )); + srcFile, line, impf->Name() )); // fetch and check field number for given field name index @@ -452,7 +452,7 @@ LOCAL RC impFcnFile( // find or add IFFNM record // get frequency or return safe assumption IMPF* iimpf; - if ( ImpfiB.findRecByNmU( iffnm->name, NULL, (record**)&iimpf )==RCOK // look for IMPF record / if found + if ( ImpfiB.findRecByNmU( iffnm->Name(), NULL, (record**)&iimpf )==RCOK // look for IMPF record / if found && iimpf->sstat[IMPF_IMFREQ] & FsVAL ) // and frequency has been specified *imFreq = iimpf->imFreq; // return user-specified frequency else @@ -488,13 +488,13 @@ RC topImpf() // check/process ImportFiles at end of input RLUP (IffnmB, iffnm) // loop over IFFNM records (ancrec.h macro). One anc used for expr compile support and run. { // find ImportFile else error - if (ImpfiB.findRecByNmU( iffnm->name, &iffnm->impfi, (record**)&iimpf )!= RCOK) // look for IMPF record, lib\ancrec.cpp + if (ImpfiB.findRecByNmU( iffnm->Name(), &iffnm->impfi, (record**)&iimpf )!= RCOK) // look for IMPF record, lib\ancrec.cpp { // return is RCBAD not found, RCBAD2 ambiguous, but latter not expected. // note: don't use oer cuz it would show IFFNM object type name "ImpFileFldNames". cuEr( 0, 0, 0, 1, iffnm->fileIx, iffnm->line, 0, // cutok.cpp (char *)MH_S0574, // "No IMPORTFILE \"\s\" found for IMPORT(%s,...)" - iffnm->name, iffnm->name ); + iffnm->Name(), iffnm->Name() ); continue; // error message prevents run. // iffnm->impfi remains 0 to indicate no ImportFile for Import()(s) that created this IFFNM. } diff --git a/src/mspak.h b/src/mspak.h index 869934405..15bf7c951 100644 --- a/src/mspak.h +++ b/src/mspak.h @@ -151,7 +151,7 @@ x // Set by mm_FromLayers.*/ MSRAT* mm_GetMSRAT() { return mm_pMSRAT; } const MSRAT* mm_GetMSRAT() const { return mm_pMSRAT; } const SFI* mm_GetSFI() const; - const char* Name() const { return mm_pMSRAT ? mm_pMSRAT->name : "?"; } + const char* Name() const { return mm_pMSRAT ? mm_pMSRAT->Name() : "?"; } void mm_SetMSRAT( MSRAT* pMSRAT) { mm_pMSRAT = pMSRAT; } int mm_IsNoBal() const { return (mm_flags & msfNOBAL) != 0; } diff --git a/src/pp.cpp b/src/pp.cpp index 5074c8a5e..86b0b90e4 100644 --- a/src/pp.cpp +++ b/src/pp.cpp @@ -2810,7 +2810,7 @@ x isWarn ? "Warning" : "Error" ); x else if (inDepth > 0 && isf) // if a file is open x sprintf( where, "%s at line %d of file '%s': ", x isWarn ? "Warning" : "Error", -x (INT)isf->line, isf->name ); +x (INT)isf->line, isf->Name() ); #else // try microsoft-like format, 2-91 // make up 'where': "(): Error/Warning: " text diff --git a/src/strpak.cpp b/src/strpak.cpp index 64a03ebf5..d0f8a0c49 100644 --- a/src/strpak.cpp +++ b/src/strpak.cpp @@ -106,7 +106,7 @@ CULSTR::CULSTR(const char* str) : us_hCulStr( 0) char* CULSTR::CStrModifiable() const // pointer to string // CAUTION non-const; generally should use CStr() { - return IsNANDLE() ? nullptr : us_vectCULSTREL[us_hCulStr].usl_str; + return IsNANDLE() ? nullptr : us_GetCULSTREL().usl_str; } // CULSTR::CStr() //----------------------------------------------------------------------------- @@ -137,7 +137,7 @@ void CULSTR::Set( us_Alloc(); // can move! } - us_vectCULSTREL[us_hCulStr].usl_Set(str); + us_GetCULSTREL().usl_Set(str); } } // CULSTR::Set //----------------------------------------------------------------------------- @@ -152,12 +152,20 @@ void CULSTR::FixAfterCopy() } } // CULSTR::FixAfterCopy //----------------------------------------------------------------------------- +CULSTREL& CULSTR::us_GetCULSTREL() const +{ + if (us_hCulStr < 0 || us_hCulStr >= us_vectCULSTREL.size()) + printf("\nBad hCulStr %d", us_hCulStr); + return us_vectCULSTREL[us_hCulStr]; + +} // CULSTR::us_GetCULSTREL(); +//----------------------------------------------------------------------------- void CULSTR::us_Alloc() // allocate { if (us_freeChainHead) { // use available free slot us_hCulStr = us_freeChainHead; - us_freeChainHead = us_vectCULSTREL[us_hCulStr].usl_freeChainNext; + us_freeChainHead = us_GetCULSTREL().usl_freeChainNext; } else { // no free slot, enlarge vector @@ -173,7 +181,7 @@ void CULSTR::Release() // set if (!us_hCulStr || IsNANDLE()) return; - CULSTREL& el = us_vectCULSTREL[us_hCulStr]; + CULSTREL& el = us_GetCULSTREL(); // string pointer: do not free (memory will be reused) if (el.usl_status == CULSTREL::uslOTHER) @@ -192,78 +200,6 @@ bool CULSTR::us_AllocMightMove() const // check if reallocation is possible return us_freeChainHead == 0 && us_vectCULSTREL.size() == us_vectCULSTREL.capacity(); } // CULSTR::us_AllocMightMove -//============================================================================= - -#if 0 -CULSTRMGR::CULSTRMGR() - : us_freeChainHead( 0) -{ - us_Alloc(); // element 0 (reserved) -} -//----------------------------------------------------------------------------- -bool CULSTR::us_AllocMightMove() const -{ - return us_freeChainHead == 0 - && us_vectCULSTREL.size() == us_vectCULSTREL.capacity(); -} -//----------------------------------------------------------------------------- -HCULSTR CULSTR::us_Alloc() -{ - if (us_freeChainHead) - { - us_hCulStr = us_freeChainHead; - us_freeChainHead = us_vectCULSTREL[hCulStr].usl_freeChainNext; - } - else - { - us_vectCULSTREL.emplace_back(); - us_hCulStr = us_vectCULSTREL.size() - 1; - } - - return us_hCulStr; - -} // CULSTR::us_Alloc -//----------------------------------------------------------------------------- -void CULSTR::Release( - bool bNullPtr /*=false*/) // true: set -{ - if (!us_hCulStr) - return; - - if (ISNANDLE(us_hCulStr)) - return; - - CULSTREL& el = us_vectCULSTREL[us_hCulStr]; - - // string pointer: do not free (memory will be reused) - if (bNullPtr) - el.usl_str = nullptr; // but maybe set null - // caller says it does not point to heap - - el.usl_freeChainNext = us_freeChainHead; - us_freeChainHead = us_hCulStr; - - us_hCulStr = 0; - -} // CULSTR::Release -//----------------------------------------------------------------------------- -void CULSTRMGR::us_Set( - HCULSTR hCulStr, - const char* str) -{ - - us_vectCULSTREL[hCulStr].usl_Set(str); - -} -//----------------------------------------------------------------------------- -const char* CULSTRMGR::us_CStr( - HCULSTR hCulStr) const - -{ - return hCulStr ? us_vectCULSTREL[hCulStr].usl_str : ""; - -} -#endif /////////////////////////////////////////////////////////////////////////////// //----------------------------------------------------------------------------- diff --git a/src/strpak.h b/src/strpak.h index e6e9a8b3b..393f05668 100644 --- a/src/strpak.h +++ b/src/strpak.h @@ -50,6 +50,7 @@ struct CULSTR void us_Alloc(); bool us_AllocMightMove() const; + CULSTREL& us_GetCULSTREL() const; bool us_HasCULSTREL() const; }; // struct CULSTR @@ -133,8 +134,8 @@ char * FC strpathparts( const char *path, int partswanted, char* pcombo=NULL); char * FC strtBsDouble( char *s); char * FC strBsUnDouble( char *s); -char * FC strsave( const char *s); -char * strsave( char* &p, const char *s); +char* strsave( const char *s); +char* strsave( char* &p, const char *s); char * FC strtemp( int n); char * FC strtempPop( char *anS); char * FC strtmp( const char *s); diff --git a/src/wfpak.cpp b/src/wfpak.cpp index a23b1613b..01fab5e54 100644 --- a/src/wfpak.cpp +++ b/src/wfpak.cpp @@ -1745,7 +1745,7 @@ void WFILE::wf_Init() // WFILE initialization function to call before each run RC WFILE::wf_Open( // Open existing weather file and initialize WFILE structure const char* wfName, // file path - const char* TDVfName, // optional TDV file path, NULL = no TDV file + const char* TDVfName, // optional TDV file path, NULL or "": no TDV file int erOp /*=ERR*/, // error handling: ERR, WRN, IGN etc // default ERR: report error, return rc != RCOK int wrAccess/*=FALSE*/, // write access desired. Used only in utilities (not in CSE). @@ -1789,7 +1789,7 @@ RC WFILE::wf_Open( // Open existing weather file and initialize WFILE structure "Weather", wfName); } - if (TDVfName) + if (!IsBlank( TDVfName)) { if (!yacTDV) yacTDV = new YACAM(); RC rcTDV = wf_TDVOpen( TDVfName, erOp); From ec4d49a503de8be8271accf7129af3e7630c5225 Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Thu, 16 Mar 2023 15:00:38 -0400 Subject: [PATCH 11/25] Fixed all CULSTR uses in application code --- src/CNRECS.DEF | 17 +++++++------- src/cgresult.cpp | 28 +++++++++++------------ src/cnausz.cpp | 2 +- src/cncult.cpp | 2 +- src/cncult2.cpp | 5 ++--- src/cncult4.cpp | 58 ++++++++++++++++++------------------------------ src/cnguts.cpp | 12 +++++----- src/cnloads.cpp | 12 +++++----- src/dhwcalc.cpp | 13 ++++++----- src/exman.cpp | 2 +- src/impf.cpp | 50 ++++++++++++++++++++--------------------- src/strpak.cpp | 6 ++--- src/strpak.h | 7 +++--- src/wfpak.cpp | 2 +- 14 files changed, 100 insertions(+), 116 deletions(-) diff --git a/src/CNRECS.DEF b/src/CNRECS.DEF index f8da8130b..3bfdf136d 100644 --- a/src/CNRECS.DEF +++ b/src/CNRECS.DEF @@ -442,7 +442,7 @@ RECORD TOPRAT "top" *RAT /* top level RAT: contains control info and all once-on *declare "int tp_NHrTicks() const { return tp_nSubSteps*tp_nSubhrTicks; }" //TOP: runtime: simulation date/time variables - *m ANAME monStr // Month being simulated as (non-heap) string + *m CULSTR monStr // Month being simulated // autoSizing: "heating design day", or month for cooling. *d CULSTR dateStr // Date being simulated as heap string // autoSizing: eg "heating design day" or "Jul cooling design day". @@ -1682,14 +1682,14 @@ RECORD FNDBLOCK "foundationBlock" *RAT // foundation component input info //======================================================================================================== RECORD RFI "reportFile" *RAT // REPORTFILE (RfiB) and EXPORTFILE (XfiB) (.what altered) input records. - *exdes // cncult4.cpp: frees .fileName + *prefix rf_ *ovrcopy *declare "RC rf_CkF( int isExport);" *declare "RC rf_CkF2( int isExport);" *declare "RC rf_CheckForDupFileName();" *declare "int rf_CheckAccessAndAlias( const char* fName, char* &fNameAlias, const char** ppMsg=NULL);" //input - *i CULSTR fileName // file name, path optional, in dm (or pseudocode, but not "text"). *i cuz VEOI in cncult. + *i CULSTR rf_fileName // file name, path optional, in dm (or pseudocode, but not "text"). *i cuz VEOI in cncult. *r FILESTATCH fileStat // fresh(overwrite,default)/new(err if exists)/append *i NOYESCH pageFmt // page formatting on no/yes //derived @@ -1700,7 +1700,6 @@ RECORD RFI "reportFile" *RAT // REPORTFILE (RfiB) and EXPORTFILE (XfiB) (.what a //============================================================================= RECORD RI "report" *RAT // REPORT (RiB) and EXPORT (XiB) (.what altered) input records *prefix ri_ - *exdes // cncult4.cpp: frees .rpTitle *ovrcopy *declare "RC ri_CkF();" *declare "RC ri_oneRxp();" @@ -1753,7 +1752,6 @@ RECORD COL "reportCol" *RAT // holds info for columns in user-defined table repo //============================================================================= RECORD DVRI "dvri" *hideall *RAT // Date-dependent Virtual Report Info -- at runtime (DvriB) *prefix dv_ - *exdes // cncult4.cpp. frees rpTitle *ovrcopy *declare "void dv_vpDHWMtrRow( RXPORTINFO *rxt, TI dhwMtri=-1);" *declare "void dv_vpAfMtrRow( RXPORTINFO *rxt, TI afMtri=-1);" @@ -1790,6 +1788,7 @@ RECORD DVRI "dvri" *hideall *RAT // Date-dependent Virtual Report Info -- at run *END // DVRI //============================================================================= RECORD IMPF "importFile" *RAT // IMPORTFILE input (Impfib) and run (ImpfiB) records + *prefix im_ *exdes // destructor (cncult4.cpp) frees heap items *ovrcopy *declare "BOO FC scanHdr();" // impf.ccp member fcns @@ -1800,9 +1799,9 @@ RECORD IMPF "importFile" *RAT // IMPORTFILE input (Impfib) and run (ImpfiB) reco *declare "void FC close();" *declare "void FC fnrtAl(SI nNfnr);" //input. name is required. - *f CULSTR fileName // file name, path optional, in heap or pseudocode. *i cuz VEOI in cncult. RQD. - *f CULSTR imTitle // title string. If given, file's must match. - *z SI imPhaseSpare // for possible future AUTOSIZE/MAINSIM/BOTH choice 6-95 + *f CULSTR im_fileName // file name, path optional, in heap or pseudocode. *i cuz VEOI in cncult. RQD. + *f CULSTR im_title // title string. If given, file's must match. + // *z SI imPhaseSpare // for possible future AUTOSIZE/MAINSIM/BOTH choice 6-95 *i IVLCH imFreq // frequency of record reads, Y M D H; HS and Subhour not allowed. RQD. *f NOYESCH hasHeader // file has header no/yes, default yes. *i *hide NOYESCH imBinary // possible future binary file option. default no. @@ -4185,7 +4184,7 @@ RECORD DHWSYS "DHWSys" *RAT // input / runtime DHW system *d TI ws_dayUsei; // idx of DHWDAYUSE *d CULSTR ws_dayUseName; // name of DHWDAYUSE (resolved at runtime) *r INT ws_childDHWDAYUSEFlag; // nz iff at least one child DHWSYS has specified ws_dayUseName - *declare "bool ws_HasDHWDAYUSEDraws() const { return !ws_dayUseName.IsNull() || ws_childDHWDAYUSEFlag; }" + *declare "bool ws_HasDHWDAYUSEDraws() const { return ws_dayUseName.IsSet() || ws_childDHWDAYUSEFlag; }" *h FLOAT_GEZ ws_parElec; // electrical parasitic power, W // for e.g. unmodeled recirculation pumps *i FLOAT_GZ ws_SDLM; // standard distribution loss multiplier diff --git a/src/cgresult.cpp b/src/cgresult.cpp index 8fcebdf09..4a091a4d1 100644 --- a/src/cgresult.cpp +++ b/src/cgresult.cpp @@ -667,7 +667,7 @@ void FC vpRxports( // virtual print reports and exports of given frequency for { rer( (char *)MH_R0152, // "%sCond for %s '%s' is unset or not yet evaluated" isExport ? "ex" : "rp", isExport ? "export" : "report", - dvrip->rpTitle && *dvrip->rpTitle ? dvrip->rpTitle : dvrip->Name() ); // title if any, else aname + dvrip->rpTitle.CStrDflt( dvrip->Name())); // title if any, else name continue; // treat as FALSE } if (!(SI)dvrip->rpCond) // if condition false (value is SI, storage is LI to hold NAN for expr) @@ -900,22 +900,22 @@ LOCAL void FC vpRxHeader( // do report/export header appropropriate for type a case C_IVLCH_S: fqTx = "Subhourly "; ivlTx = "Subhour"; - when = Top.dateStr; + when = Top.dateStr.CStr(); break; case C_IVLCH_HS: fqTx = "Hourly and Subhourly "; ivlTx = "Hour + Subhour"; - when = Top.dateStr; + when = Top.dateStr.CStr(); break; case C_IVLCH_H: fqTx = "Hourly "; ivlTx = "Hour"; - when = Top.dateStr; + when = Top.dateStr.CStr(); break; case C_IVLCH_D: fqTx = "Daily "; ivlTx = "Day"; - when = Top.monStr; + when = Top.monStr.CStr(); break; case C_IVLCH_M: fqTx = "Monthly "; @@ -949,10 +949,10 @@ LOCAL void FC vpRxHeader( // do report/export header appropropriate for type a hour = Top.iHr + 1; break; // show hour as well as date case C_IVLCH_D: - when = Top.dateStr; + when = Top.dateStr.CStr(); break; case C_IVLCH_M: - when = Top.monStr; + when = Top.monStr.CStr(); break; default:; /*lint +e616 */ } @@ -1113,12 +1113,10 @@ LOCAL void FC vpRxHeader( // do report/export header appropropriate for type a break; // insert for title, 6-95 case C_RPTYCH_UDT: - what = dvrip->rpTitle // insert for title for user-defined report: - ? dvrip->rpTitle // use user's UDT title if given, - : strtcat( // else use... - dvrip->name.CStrDflt( "User-defined"), // report name else "User-defined" - isExport ? NULL : " Report", // followed by " Report" if report - NULL ); + what = dvrip->rpTitle.CStrDflt( // insert for title for user-defined report: + strtcat( dvrip->name.CStrDflt("User-defined"), // report name else "User-defined" + isExport ? NULL : " Report", // followed by " Report" if report + NULL)); break; default: ; // caller assumed to have messaged bad type @@ -1157,7 +1155,7 @@ LOCAL void FC vpRxHeader( // do report/export header appropropriate for type a { // format blank lines and title to virtual report - if (rpTy==C_RPTYCH_UDT && dvrip->rpTitle) // for user-defined report with title given + if (rpTy==C_RPTYCH_UDT && !dvrip->rpTitle.IsBlank()) // for user-defined report with title given vrPrintf( vrh, "\n\n%s%s%s\n\n", // don't show frequency or zone. what, // user-given title *when ? " for " : "", when ); // day or month name @@ -1168,7 +1166,7 @@ LOCAL void FC vpRxHeader( // do report/export header appropropriate for type a what, // spaceless *objTx ? ", " : "", objTx, *when ? ", " : "", when, - hour ? strtprintf(" hour %d", (INT)hour) : "", // add separating comma? + hour ? strtprintf(" hour %d", hour) : "", // add separating comma? subHour >= 0 ? strtprintf(" subhour %c", 'a'+subHour) : "" ); // comma? // do report column headings per colDef and caller's flags. diff --git a/src/cnausz.cpp b/src/cnausz.cpp index 8a2dd96c2..573e12c1d 100644 --- a/src/cnausz.cpp +++ b/src/cnausz.cpp @@ -596,7 +596,7 @@ x } x else if (Top.tp_auszDsDayItr >= 10) x { rWarn( "AutoSize pass %s for %s has not converged.\n" x " Abandoning after %d iterations.", -x "2 part B", Top.dateStr, Top.tp_auszDsDayItr ); +x "2 part B", Top.dateStr.CStr(), Top.tp_auszDsDayItr ); x break; x } } x Top.part2B = Top.tp_sizing = FALSE; diff --git a/src/cncult.cpp b/src/cncult.cpp index 4a217db17..606fed477 100644 --- a/src/cncult.cpp +++ b/src/cncult.cpp @@ -1237,7 +1237,7 @@ static CULT impfT[] = //-------------- IMPORTFILE cmd table, used from cnTopCult //------------ ----- ------------- ------- -- ------ ----- - -------------------------- ---- ---- //"*", STAR, 0, 0, 0, 0, 0, 0, N, 0.f, N, impfStarCkf), CULT( "imFileName", DAT, IMPF_FILENAME, RQD, 0, VFAZLY, TYSTR, 0, N, 0.f, N, N), - CULT( "imTitle", DAT, IMPF_IMTITLE, 0, 0, VFAZLY, TYSTR, 0, N, 0.f, N, N), + CULT( "imTitle", DAT, IMPF_TITLE, 0, 0, VFAZLY, TYSTR, 0, N, 0.f, N, N), CULT( "imFreq", DAT, IMPF_IMFREQ, RQD, 0, VEOI, TYCH, 0, N, 0.f, N, N), CULT( "imHeader", DAT, IMPF_HASHEADER,0, 0, VFAZLY, TYCH, 0, v C_NOYESCH_YES, 0.f, N, N), CULT( "imBinary", DAT, IMPF_IMBINARY, 0, 0, VEOI, TYCH, 0, v C_NOYESCH_NO, 0.f, N, N), //poss future use diff --git a/src/cncult2.cpp b/src/cncult2.cpp index cdab5d943..67a58cab1 100644 --- a/src/cncult2.cpp +++ b/src/cncult2.cpp @@ -789,6 +789,7 @@ RC TOPRAT::brFileCk() // check/clean up inputs re binary results files, rob 12-2 cupFixAfterCopy( repHdrL); cupFixAfterCopy( repHdrR); cupFixAfterCopy( dateStr); + cupFixAfterCopy( monStr); cupFixAfterCopy( tp_repTestPfx); cupFixAfterCopy( tp_progVersion); cupFixAfterCopy( tp_HPWHVersion); @@ -798,7 +799,6 @@ RC TOPRAT::brFileCk() // check/clean up inputs re binary results files, rob 12-2 #ifdef BINRES cupFixAfterCopy( ( tp_brFileName)); #endif - // monStr does not point into dm. } // TOPRAT::Copy //=========================================================================== @@ -816,13 +816,13 @@ void TOPRAT::freeDM() // free child objects in DM repHdrL.Release(); repHdrR.Release(); dateStr.Release(); + monStr.Release(); tp_repTestPfx.Release(); tp_progVersion.Release(); tp_HPWHVersion.Release(); tp_exePath.Release(); tp_exeInfo.Release(); tp_cmdLineArgs.Release(); - // monStr is not in heap. #ifdef BINRES tp_brFileName.Release(); #endif @@ -832,7 +832,6 @@ void TOPRAT::freeDM() // free child objects in DM tp_PumbraDestroy(); // cleanup / delete Penumbra shading machinery - // monStr does not point into dm. } // TOPRAT::freeDM //--------------------------------------------------------------------------- const char* TOPRAT::When( IVLCH _ivl) const // date / time doc for error messages diff --git a/src/cncult4.cpp b/src/cncult4.cpp index 286c96b49..845464c93 100644 --- a/src/cncult4.cpp +++ b/src/cncult4.cpp @@ -90,7 +90,7 @@ RC topPrfRep() // REPORT/EXPORT PRE-INPUT FCN called by cncult2.cpp:topStarPrf CSE_E( RfiB.add( &rfp, WRN) ) // add report file record for PRIMARY REPORTFILE / return if error fs = (UCH *)rfp + RfiB.sOff; // point record's field status bytes (sstat[]) rfp->name = "Primary"; // record name - rfp->fileName = strsave( strffix2( InputFilePathNoExt, ".rep", 1)); + rfp->rf_fileName = strffix2(InputFilePathNoExt, ".rep", 1); // file name: use input file name w/o extension (includes path) // InputFilePathNoExt known to not have extension, always add ".rep" rfp->fileStat = C_FILESTATCH_OVERWRITE; // overwriting existing file. rfStarCkf changes to APPEND if not 1st run. @@ -106,7 +106,7 @@ RC topPrfRep() // REPORT/EXPORT PRE-INPUT FCN called by cncult2.cpp:topStarPrf CSE_E( XfiB.add( &xfp, WRN) ) // add export file record for PRIMARY EXPORTFILE / return if error fs = (UCH *)xfp + XfiB.sOff; // point record's field status bytes (sstat[]) xfp->name = "Primary"; // record name - xfp->fileName = strsave( strffix2( InputFilePathNoExt, ".csv", 1)); + xfp->rf_fileName = strffix2(InputFilePathNoExt, ".csv", 1); // file name: use input file name & path // InputFilePathNoExt known to not have extension, always add ".csv" xfp->fileStat = C_FILESTATCH_OVERWRITE; // overwriting existing file. xfStarCkf changes to APPEND if not 1st run. @@ -1058,8 +1058,6 @@ RC RI::ri_oneRxp() // process one report or export for topRxp dvrip->rpCond = rpCond; dvrip->rpCondGiven = rpCondGiven; // may change report title dvrip->rpTitle = rpTitle; - cupIncRef( DMPP( rpTitle)); // ++ ref count for copied pointer unless UNSET - // or ptr to inline constant in pseudo-code dvrip->rpCpl = rpCpl>0 ? rpCpl : getCpl(); // default characters per line now dvrip->rpHeader = rpHeaderLocal; dvrip->rpFooter = rpFooter; @@ -1125,7 +1123,7 @@ RC buildUnspoolInfo() if (nVrh // if any reports were found for file || p->optn & VR_OVERWRITE ) // or file is to be overwritten: erase even if no reports. { - p->fName = strsave(rfp->fileName); // copy fileName + p->fName = strsave( rfp->rf_fileName); // copy rf_fileName to heap p->optn = (rfp->pageFmt==C_NOYESCH_YES ? VR_FMT : 0) // translate page formatting to vrpak option bit | (rfp->overWrite ? VR_OVERWRITE : 0); // translate erase existing file flag to vrpak optn bit rfp->overWrite = 0; // only overWrite once in session, then append! @@ -1148,7 +1146,7 @@ RC buildUnspoolInfo() if ( nVrh // if any exports were found for file || p->optn & VR_OVERWRITE ) // or file is to be overwritten { - p->fName = strsave( rfp->fileName); // copy fileName to heap string + p->fName = strsave( rfp->rf_fileName); // copy rf_fileName to heap string p->optn = // page formatting option bit off for exports (rfp->overWrite ? VR_OVERWRITE : 0) // translate erase existing file flag to vrpak optn bit | VR_ISEXPORT; // is this tested? @@ -1167,28 +1165,24 @@ RC buildUnspoolInfo() /*virtual*/ void RFI::Copy(const record* pSrc, int options/*=0*/) { // release CULSTR(s) that will be overwritten - fileName.Release(); + rf_fileName.Release(); // use base class Copy. Copies derived class members too, per record type (.rt): RECORD MUST BE CONSTRUCTED record::Copy( pSrc, options); // verfies that src and this are same record type. lib\ancrec.cpp. // duplicate CULSTR contents after overwrite - fileName.FixAfterCopy(); + rf_fileName.FixAfterCopy(); } // RFI::Copy //=========================================================================== -RFI::~RFI() -{ -} // RFI::~RFI -//----------------------------------------------------------------------------- RC RFI::rf_CkF( // REPORTFILE / EXPORTFILE check int isExport) // 1: export, else report { const char* fileExt = isExport ? ".csv" : ".rep"; const char* what = isExport ? "export" : "report"; - if (IsVal( RFI_FILENAME)) // if filename value stored (not an uneval'd expression) + if (IsVal( RFI_FILENAME)) // if rf_fileName value stored (not an uneval'd expression) { - // standardize filename and default extension + // standardize rf_fileName and default extension - char* s = strffix( fileName, fileExt); // uppercase, deblank, append ext if none + const char* s = strffix( rf_fileName, fileExt); // uppercase, deblank, append ext if none if (!xfisabsolutepath(s)) // if path is not absolute s = strtPathCat( InputDirPath, s); // default to INPUT FILE path (rundata.cpp variable) 2-95 @@ -1208,16 +1202,16 @@ RC RFI::rf_CkF( // REPORTFILE / EXPORTFILE check s = sAlias; } - fileName.Set(s); // store in record + rf_fileName = s; // store in record - // check against ExportFiles and ReportFiles for duplicate filename + // check against ExportFiles and ReportFiles for duplicate rf_fileName // Does not check for different expressions of same path; will (we hope) get open error later. if (rf_CheckForDupFileName()) return RCBAD; // existence of file is checked from topRf/topXf, once-only overwrite flag also set there. // disallow erase and overwrite if file already used in (earlier run of) this session - if (isUsedVrFile( fileName)) // if name used previously in session, even b4 CLEAR + if (isUsedVrFile( rf_fileName)) // if name used previously in session, even b4 CLEAR { if (IsSet( RFI_FILESTAT)) // if fileStat given (incl set by topPrfRep) { const char* was = NULL; @@ -1254,7 +1248,7 @@ RC RFI::rf_CkF2( // start-of-run REPORTFILE / EXPORTFILE check // (after CLEAR, this mechanism does not work to cause append; // instead fileStat of previously used files is forced to APPEND via isUsedVrFile() tests) - int xfx = xfExist( fileName); // 0=not found, 1=empty file, 2=non-empty file, 3=dir, -1=err + int xfx = xfExist( rf_fileName); // 0=not found, 1=empty file, 2=non-empty file, 3=dir, -1=err wasNotEmpty = xfx == 2; if (!fileStatChecked // not if checked before this run or this session && fileStat != C_FILESTATCH_APPEND ) // append requires no check nor processing @@ -1264,7 +1258,7 @@ RC RFI::rf_CkF2( // start-of-run REPORTFILE / EXPORTFILE check // passed to vrPak, so any addl uses append) // note: dir overwrite detected later else // assume C_FILESTATCH_NEW - oer( (char *)MH_S0544, fileName.CStr()); // "File %s exists". Text also used below. Message stops run. + oer( (char *)MH_S0544, rf_fileName.CStr()); // "File %s exists". Text also used below. Message stops run. } fileStatChecked++; // say don't repeat: don't issue error due to prior run's output; // don't set overwrite again (would erase prior output). @@ -1281,7 +1275,7 @@ RC RFI::rf_CkF2( // start-of-run REPORTFILE / EXPORTFILE check { cupfree( DMPP( PriRep.f.fName)); // decref/free any value from a prior run, unless a // ptr to "text" inline in pseudocode. cueval.cpp. */ - PriRep.f.fName = strsave( fileName); // set cnguts.cpp global to file name + PriRep.f.fName = strsave( rf_fileName); // set cnguts.cpp global to file name PriRep.f.optn = (pageFmt==C_NOYESCH_YES ? VR_FMT : 0) // translate page formatting to vrpak option bit | (overWrite ? VR_OVERWRITE : 0); // translate erase existing file flag to vrpak optn bit } @@ -1297,24 +1291,24 @@ RC RFI::rf_CheckForDupFileName() // make sure this RFI is only user of its file // check against standard files // note: does not check #include'd input files (caveat user) const char* msg; - if (Topi.tp_CheckOutputFilePath( fileName, &msg)) + if (Topi.tp_CheckOutputFilePath( rf_fileName, &msg)) return ooer( RFI_FILENAME, "Illegal %s '%s'\n %s", - mbrIdTx( RFI_FILENAME), fileName, msg); + mbrIdTx( RFI_FILENAME), rf_fileName, msg); RFI* fip; RLUP( RfiB, fip) { if (fip->ss >= ss) // only check smaller-subscripted ones vs this -- else get multiple messages break; - if (!_stricmp( fip->fileName, fileName)) - return ooer( RFI_FILENAME, (char *)MH_S0441, mbrIdTx( RFI_FILENAME), fileName, fip->Name() ); + if (!_stricmp( fip->rf_fileName, rf_fileName)) + return ooer( RFI_FILENAME, (char *)MH_S0441, mbrIdTx( RFI_FILENAME), rf_fileName, fip->Name() ); // "Duplicate %s '%s' (already used in ReportFile '%s')" } RLUP( XfiB, fip) { if (fip->ss >= ss) // only check smaller-subscripted ones vs this -- else get multiple messages break; - if (!_stricmp( fip->fileName, fileName)) - return ooer( RFI_FILENAME, (char *)MH_S0442, mbrIdTx( RFI_FILENAME), fileName, fip->Name()); + if (!_stricmp( fip->rf_fileName, rf_fileName)) + return ooer( RFI_FILENAME, (char *)MH_S0442, mbrIdTx( RFI_FILENAME), rf_fileName, fip->Name()); // "Duplicate %s '%s' (already used in ExportFile '%s')" } return RCOK; @@ -1377,10 +1371,6 @@ int RFI::rf_CheckAccessAndAlias( rpTitle.FixAfterCopy(); } // RI::Copy //=========================================================================== -RI::~RI() -{ -} // RI::~RI -//=========================================================================== COL::COL( basAnc* b, TI i, SI noZ /*=0*/) : record( b, i, noZ) { @@ -1438,10 +1428,6 @@ COL::~COL() return rc; } // COL::Validate //--------------------------------------------------------------------------------------- -DVRI::~DVRI() -{ -} // DVRI::~DVRI -//--------------------------------------------------------------------------------------- /*virtual*/ void DVRI::Copy( const record* pSrc, int options/*=0*/) // overrides record::Copy. declaration must be same. { @@ -1506,7 +1492,7 @@ char* getLogTitleText() // get "LOG" report title text -- public function return ""; // if failed, return value that will fall thru code int m = sprintf( logTitle, "\n\n%sLog for Run %03d:", tp ? tp->tp_RepTestPfx() : "", // test prefix (hides runDateTime re testing text compare) - tp ? tp->runSerial : 0 ); // run serial number, or 000 early in session (unexpected here). + tp ? tp->runSerial : 0 ); // run serial number, or 000 early in session (unexpected here). char* p = logTitle + m; int r = repCpl - m + 2; // remaining space on line after the 2 \n's if (tp) diff --git a/src/cnguts.cpp b/src/cnguts.cpp index e2b0b3ac4..570df6973 100644 --- a/src/cnguts.cpp +++ b/src/cnguts.cpp @@ -269,7 +269,7 @@ BOOL DbDo( // handy DbShouldPrint + headings ? strtprintf(" pass=%s itr=%d", Top.tp_AuszPassTag(), Top.tp_auszDsDayItr) : ""; DbPrintf( "\n\n================\n%s%s hr=%d subhr=%d\n----------------\n", - Top.dateStr ? Top.dateStr : "(No date)", + Top.dateStr.CStrDflt( "(No date)"), tAusz, Top.iHr, Top.iSubhr); dbgDoneStepHdg = TRUE; @@ -504,7 +504,7 @@ LOCAL RC FC doBegIvl() // simulation run start-of-interval processing: init, sol { if (getScreenCol() > 54) // start new line if line pretty full (12 months = 48 cols) screen( QUIETIF, " "); // newline (no NONL) and indent (+ 1 space in each text) - screen( NONL|QUIETIF, " %s", Top.monStr); // display month name on current screen line, rmkerr.cpp + screen( NONL|QUIETIF, " %s", Top.monStr.CStr()); // display month name on current screen line } #ifdef BINRES if (brf) // if writing binary results file(s) (flag in this file) @@ -2563,18 +2563,18 @@ void TOPRAT::tp_DoDateDowStuff() // do date, day of week, and holiday stuff for if (isBegMonth) { if (auszMon) { - strncpy0( monStr, tddMonAbbrev( tp_date.month), sizeof( monStr)); // eg "Jan" + monStr = tddMonAbbrev( tp_date.month); // eg "Jan" const char* t; if (tp_AuszWthrSource() != TOPRAT_COOLDSMO) // if autosizing specific day t = strtprintf( "%2.2d-%s", // format dd-mon - tp_date.mday, tddMonAbbrev( tp_date.month)); + tp_date.mday, monStr.CStr()); else t = monStr; dateStr = strtcat(t, " cooling design day"); // eg "Jan cooling design day" } else // heating design day. Not month-specific. { - strncpy0( monStr, "heating design day", sizeof( monStr)); // inconsistent with cooling just above + monStr = "heating design day"; // inconsistent with cooling just above dateStr = "heating design day"; } } @@ -2598,7 +2598,7 @@ void TOPRAT::tp_DoDateDowStuff() // do date, day of week, and holiday stuff for isBegMonth = (tp_date.mday==1 || jDay==tp_begDay || isBegRun); // true if 1st day of month, run, or warmup if (isBegMonth) // do on 1st day of mon or run incl warmup, after setting date. { - strncpy0( monStr, tddMonAbbrev( tp_date.month), sizeof( monStr)); // month name string + monStr = tddMonAbbrev( tp_date.month); // month name string jdMend = tddDoyMonEnd( tp_date.month); // month's last day if (tp_endDay < jdMend && tp_endDay >= jDay) // if sooner jdMend = tp_endDay; // run's last day diff --git a/src/cnloads.cpp b/src/cnloads.cpp index ca8a2bd8f..3841d4318 100644 --- a/src/cnloads.cpp +++ b/src/cnloads.cpp @@ -575,7 +575,7 @@ x } int nVU1 = zp->zn_AssessVentUtility(); #if 0 && defined(_DEBUG) if (bReportVent) - { // printf("\n%s Hr=%d, Zone '%s': VU=%d", Top.dateStr, Top.iHr, zp->Name(), nVU1); + { // printf("\n%s Hr=%d, Zone '%s': VU=%d", Top.dateStr.CStr(), Top.iHr, zp->Name(), nVU1); if (nVU1 < 0) zp->zn_AssessVentUtility(); // call again for debug } @@ -627,7 +627,7 @@ x } #if 0 && defined( _DEBUG) if (bReportVent && !Top.isWarmup) - printf("\n%s Hr=%d: NVU=%d ANV=%d TFvnt=%0.3f", Top.dateStr, Top.iHr, nVentUseful, bAllNoVent, Top.tp_fVent); + printf("\n%s Hr=%d: NVU=%d ANV=%d TFvnt=%0.3f", Top.dateStr.CStr(), Top.iHr, nVentUseful, bAllNoVent, Top.tp_fVent); #endif } @@ -1997,9 +1997,9 @@ bool ZNR::zn_IsAirHVACActive() const // determine air motion //---------------------------------------------------------------------------- /*virtual*/ void RSYS::Copy( const record* pSrc, int options/*=0*/) { - options; + rs_desc.Release(); record::Copy( pSrc); - cupIncRef( DMPP( rs_desc)); // incr reference counts of dm strings if nonNULL + rs_desc.FixAfterCopy(); } // RSYS::Copy //------------------------------------------------------------------------------- RC RSYS::rs_CkF() @@ -5683,7 +5683,7 @@ RC RSYS::rs_AllocateZoneAir() // finalize zone air flows // meet load with aux alone #if 0 && defined( _DEBUG) if (Top.jDay == 336) - printf("\nHit %s", Top.dateStr); + printf("\nHit %s", Top.dateStr.CStr()); #endif rs_effHt = 0.f; // force compressor off (for _LO case) rs_fxCap[ 1] = rs_amf / rs_amfReq[ 1]; // x/0 impossible @@ -5718,7 +5718,7 @@ RC RSYS::rs_AllocateZoneAir() // finalize zone air flows #endif #if 0 && defined( _DEBUG) if (Top.jDay == 336) - printf("\nHit %s", Top.dateStr); + printf("\nHit %s", Top.dateStr.CStr()); #endif double tSup = max(rs_asSup.as_tdb, rs_tSupLs); // use last result as guess double amfX = DBL_MIN; diff --git a/src/dhwcalc.cpp b/src/dhwcalc.cpp index c40fae919..4d271e6b2 100644 --- a/src/dhwcalc.cpp +++ b/src/dhwcalc.cpp @@ -746,7 +746,7 @@ RC DHWSIZER::wz_DeriveSize() // calc required heating and storage volume DHWSYS::~DHWSYS() { #if 1 - ws_dayUseName.Release(); + // ws_dayUseName.Release(); #else ? CULSTR ? // omit cupfree(DMPP(ws_dayUseName)); @@ -767,17 +767,18 @@ DHWSYS::~DHWSYS() /*virtual*/ void DHWSYS::Copy( const record* pSrc, int options/*=0*/) { options; + ws_dayUseName.Release(); record::Copy( pSrc); - cupIncRef( DMPP( ws_dayUseName)); // incr reference counts of dm strings if non-NULL - // nop if ISNANDLE + ws_dayUseName.FixAfterCopy(); // assume ws_ticks, ws_fxList, and ws_pSizer are nullptr } // DHWSYS::Copy //------------------------------------------------------------------------------- /*virtual*/ DHWSYS& DHWSYS::CopyFrom(const record* pSrc, int copyName/*=1*/, int dupPtrs/*=0*/) { + ws_dayUseName.Release(); record::CopyFrom(pSrc, copyName, dupPtrs); - cupIncRef(DMPP(ws_dayUseName)); // incr reference counts of dm strings if non-NULL - // nop if ISNANDLE + ws_dayUseName.FixAfterCopy(); + // assume ws_ticks, ws_fxList, and ws_pSizer are nullptr return *this; } // DHWSYS::CopyFrom @@ -1319,7 +1320,7 @@ RC DHWSYS::ws_DoHour( // hourly calcs if (IsSet( DHWSYS_DAYUSENAME)) { // beg of day: locate DHWDAYUSE, set ws_dayUsei if (WduR.findRecByNm1( ws_dayUseName, &ws_dayUsei, NULL)) - return orMsg( ERRRT+SHOFNLN, "DHWDAYUSE '%s' not found.", ws_dayUseName); + return orMsg( ERRRT+SHOFNLN, "DHWDAYUSE '%s' not found.", ws_dayUseName.CStr()); } // re load share -- init starting DHWSYS for each end use diff --git a/src/exman.cpp b/src/exman.cpp index 589d4a2ca..b96d32915 100644 --- a/src/exman.cpp +++ b/src/exman.cpp @@ -1510,7 +1510,7 @@ RC rerIV( // inner fcn to issue runtime error message; msg handle ok for fmt; t char *isWhat = isWarn==1 ? "Warning" : isWarn==2 ? "Info" : erOp & PROGERR ? "Program Error" : "Error"; char when[120]; - if (!Top.dateStr) // if NULL, still input time (eg end-of-input eval call). otta formalize this ??? + if (Top.dateStr.IsBlank()) // if blank, still input time (eg end-of-input eval call). otta formalize this ??? sprintf( when, "%s during %sinput setup", // setup isWhat, Top.tp_autoSizing ? "autoSizing " : ""); else if (!Top.tp_autoSizing) // main sim diff --git a/src/impf.cpp b/src/impf.cpp index b6ff3b700..508880902 100644 --- a/src/impf.cpp +++ b/src/impf.cpp @@ -160,7 +160,7 @@ RC FC ImpFldDcdr::axFile( int iffnmi) // access import file, set .iffnmi, .iffn " Import file subscript %d out of range 1 to %d." */ srcFile, line, impfi, ImpfB.n )); impf = &ImpfB.p[impfi]; // point Import File record - impfName = impf->fileName.CStrDflt(impf->name); // name for error messages: pathName if present, + impfName = impf->im_fileName.CStrDflt(impf->name); // name for error messages: pathName if present, // else object name, which is "" if not given if (!impf->isOpen) // unless file is open and buffer allocated ok return IMPERR(( (char *)MH_R1907, /* "%s(%d): Internal error:\n" @@ -515,7 +515,7 @@ RC topImpf() // check/process ImportFiles at end of input CSE_E( iimpf->CkSet( IMPF_IMFREQ)) // if not set, no run, terminate checking now // find file & save full path. Search same paths as for #include files. 2-95. - ppFindFile( iimpf->fileName); + ppFindFile( iimpf->im_fileName); // if not found, no message here... let old code issue message at runtime attempt to open. // warn if unused (no Imports) @@ -590,11 +590,11 @@ RC FC impfStart() // import files stuff done at start run // open file. Note paths searched & full pathname saved in cncult4.cpp, 2-95. - impf->fh = fopen( impf->fileName, "rb"); + impf->fh = fopen( impf->im_fileName, "rb"); if (!impf->fh) { rc = err( WRN, // general error msg, errCount++. (char *)MH_R1901, // "Cannot open import file %s. No run." - impf->fileName ); + impf->im_fileName.CStr() ); continue; } impf->isOpen = TRUE; // say open & buffer allocated: enable read and close @@ -611,7 +611,7 @@ RC FC impfStart() // import files stuff done at start run if (temPos < 0L) // -1L if error { rc = err( PWRN, // general error message (rmkerr.cpp), count error (errCount++), return RCBAD. (char *)MH_R1902, // "Tell error (%ld) on import file %s. No run." - impf->fileName ); + impf->im_fileName.CStr() ); continue; } USI unused = impf->bufN - impf->bufI2; // number of unscanned bytes remaining in buffer @@ -636,7 +636,7 @@ RC FC impfAfterWarmup() // import files stuff done after CSE warmup and after e if (newPos != 0) // if got wrong position or error rc |= err( WRN, // <--- apparently missing WRN added, rob 5-97 (char *)MH_R1903, // "Seek error (%ld) on import file %s, handle %d" - newPos, impf->fileName, impf->fh ); + newPos, impf->im_fileName.CStr(), impf->fh ); impf->bufI1 = impf->bufI2 = impf->bufN = 0; // set buffer empty -- force reread impf->eofRead = impf->eof = FALSE; // .. @@ -674,7 +674,7 @@ void FC impfEnd() // import files stuff done at end run if (impf->lineNo >= nlnfwud) // if more data used than warmup could require if (impf->readRec()) // read next record from file / TRUE if successful warn( (char *)MH_R1904, // "Import File %s has too many lines. \n" - impf->fileName, // " Text at at/after line %d not used." */ + impf->im_fileName.CStr(), // " Text at at/after line %d not used." */ impf->lineNo ); // use warn to display message without incrementing error counter // close file and free buffer @@ -839,8 +839,8 @@ IMPF::~IMPF() // IMPORTFILE destructor err( PWRN, (char *)MH_S0577); // "Unexpected call to IMPF::Copy". if msg occurs, complete code re .fnrt, .buf // free (or decr ref count for) derived class heap pointer(s) in record about to be overwritten. dmfree: lib\dmpak.cpp. - fileName.Release(); - imTitle.Release(); + im_fileName.Release(); + im_title.Release(); // field numbers table .fnrt[] not handled: if non-NULL, must dmfree .fieldNames. before dmfree'ing table pointer. // buffer .buf not handled. if non-NULL, must free. @@ -848,8 +848,8 @@ IMPF::~IMPF() // IMPORTFILE destructor // use base class Copy. Copies derived class members too, per record type (.rt): RECORD MUST BE CONSTRUCTED. record::Copy( pSrc, options); // verfies that src and this are same record type. lib\ancrec.cpp. - fileName.FixAfterCopy(); - imTitle.FixAfterCopy(); + im_fileName.FixAfterCopy(); + im_title.FixAfterCopy(); // field numbers table .fnrt[] not handled: if non-NULL, must copy and incref .fieldNames. // buffer .buf not handled. if non-NULL, must copy. @@ -881,10 +881,10 @@ RC FC IMPF::scanHdr() // read and decode import file header goto eof; if (!scanNextField()) // scan title field / if end record or error goto bad; - if (imTitle) // if title given in input file - if (_stricmp( imTitle, fnrt[nFieldsScanned].fp)) // if title in import file is different + if (!im_title.IsBlank()) // if title given in input file + if (_stricmp( im_title, fnrt[nFieldsScanned].fp)) // if title in import file is different warn( (char *)MH_R1923, // "Import file %s: title is %s not %s." - fileName, fnrt[nFieldsScanned].fp, imTitle ); // use warn to not ++errCount for warning. rmkerr.cpp. + im_fileName.CStr(), fnrt[nFieldsScanned].fp, im_title.CStr() ); // use warn to not ++errCount for warning. rmkerr.cpp. // continue scanning header: format was ok. if (!scanNextField()) // scan frequency field / if eor or error { @@ -892,7 +892,7 @@ RC FC IMPF::scanHdr() // read and decode import file header return err( // gen'l error on screen, err file, ERR report. ++errCount's. rmkerr.cpp. WRN, (char *)MH_R1924, // "Import file %s: bad header format. No Run." - fileName ); + im_fileName.CStr() ); } { const char* fileFreq = fnrt[nFieldsScanned].fp; // where scanNextField left field text pointer @@ -923,7 +923,7 @@ RC FC IMPF::scanHdr() // read and decode import file header && _stricmp( fileFreq, ivlTx)) // issue message, do not ++errCount (the error count) warn( (char *)MH_R1925, // "Import file %s: \n File header says frequency is %s, not %s." - fileName, fileFreq, + im_fileName.CStr(), fileFreq, strtprintf( "%s or %s", freqTx, ivlTx)); } if (scanNextField()) @@ -933,7 +933,7 @@ RC FC IMPF::scanHdr() // read and decode import file header // and not if function terminates with (more serious) error b4 getting here if (imperfect) warn( (char *)MH_R1926, // "Import file %s: Incorrect header format." - fileName ); // issue message, rmkerr.cpp. continue execution. + im_fileName.CStr() ); // issue message, rmkerr.cpp. continue execution. // line 4: field names list: get field numbers for named fields from position of names in list if (!readRec()) // read record into buffer @@ -967,7 +967,7 @@ x } x } x if (colList.size() > 0) x warn( "Import file %s:\n non-unique field name '%s' found in columns: %s", -x fileName, nm, colList.c_str()); +x im_fileName.CStr(), nm, colList.c_str()); x } #endif // find / bind refs from IMPORT()s @@ -990,7 +990,7 @@ x } rc = err( "Import file %s:" "\n IMPORT()s refer to ambiguous (non-unique) field '%s'" "\n found in columns %d and %d.", - fileName, nm, fnmt[ fnmi].fnr, ifn); + im_fileName.CStr(), nm, fnmt[ fnmi].fnr, ifn); } } } @@ -1018,7 +1018,7 @@ x } " The following field name(s) were used in IMPORT()s\n" " but not found in import file %s:\n" " %s %s %s %s %s" */ - fileName, fileName, + im_fileName.CStr(), im_fileName.CStr(), bads[0], bads[1], bads[2], bads[3], bads[4] ); } } @@ -1027,7 +1027,7 @@ x } // bad header record read common error exit eof: return err( WRN, (char *)MH_R1928, // "Import file %s: \n" - fileName ); // " Premature end-of-file or error while reading header. No Run." + im_fileName.CStr() ); // " Premature end-of-file or error while reading header. No Run." } // IMPF::scanHdr //--------------------------------------------------------------------------- BOO FC IMPF::readRec() // get next import file record in buffer and init to scan fields @@ -1115,7 +1115,7 @@ BOO FC IMPF::readRec() // get next import file record in buffer and init to sca ASSERT(!bufI1); // start record is at start buffer or something wrong err( WRN, (char *)MH_R1929, /* "Import file %s, line %d: \n" " record longer than %d characters" */ - fileName, lineNo, BUFSZ ); + im_fileName.CStr(), lineNo, BUFSZ ); // err: general error displayer 2-94 that ++errCount's, rmkerr.cpp. // don't use rer: can get here b4 run (header) as well as during run. break; @@ -1189,7 +1189,7 @@ BOO IMPF::scanField( // find end of field, null-terminate, dequote, translate // don't use rer: don't need to show time in run, and can get here b4 run (header). err( WRN, // issue general msg, ++errCount (char *)MH_R1930, // "Import file %s, line %d: second quote missing" - (const char *)fileName, lineNo ); + im_fileName.CStr(), lineNo); eorScanned = TRUE; // no fields in this record after this one goto breakBreak; // return ok for this field, using all text to end line // (but if addl fields were expected, they will error.) @@ -1257,7 +1257,7 @@ BOO FC IMPF::readBuf() // read import file buffer full size_t nRead = fread(where, sizeof(char), toRead, fh); if (nRead== -1) { - err( WRN, (char *)MH_R1931, fileName); // "Read error on import file %s" + err( WRN, (char *)MH_R1931, im_fileName.CStr()); // "Read error on import file %s" return FALSE; } if (nRead==0) // if end of file with 0 characters left @@ -1288,7 +1288,7 @@ void FC IMPF::close() // close import file & free buffer if (tfh) // if open successful - insurance if (fclose(tfh) < 0) // close file err( WRN, // rmkerr.cpp general error msg with errCount++. - (char *)MH_R1932, fileName); // "Close error on import file %s" + (char *)MH_R1932, im_fileName.CStr()); // "Close error on import file %s" } // free buffer diff --git a/src/strpak.cpp b/src/strpak.cpp index d0f8a0c49..adb078817 100644 --- a/src/strpak.cpp +++ b/src/strpak.cpp @@ -488,7 +488,7 @@ char* strSpacePad( // Pad a string with spaces (e.g. for FORTRAN) return d; } // strSpacePad // ==================================================================== -char * FC strffix( // put a filename in canonical form +const char* FC strffix( // put a filename in canonical form const char *name, // input filname const char *ext ) // default extension including period @@ -506,7 +506,7 @@ char * FC strffix( // put a filename in canonical form return nu; } // strffix //------------------------------------------------------------------- -char* strffix2( // put a filename in canonical form (variant) +const char* strffix2( // put a filename in canonical form (variant) const char* name, // input filname const char* ext, // default extension including period int options /*=0*/) // option bits @@ -528,7 +528,7 @@ char* strffix2( // put a filename in canonical form (variant) return nu; } // strffix2 // ==================================================================== -char * FC strtPathCat( // concatenate file name onto path, adding intervening \ if needed +const char* FC strtPathCat( // concatenate file name onto path, adding intervening \ if needed const char* path, // drive and/or directorie(s) path const char* namExt) // file name or name.ext diff --git a/src/strpak.h b/src/strpak.h index 393f05668..63fc729dd 100644 --- a/src/strpak.h +++ b/src/strpak.h @@ -22,6 +22,7 @@ struct CULSTR HCULSTR us_hCulStr; operator const char* () { return CStr(); }; + operator const char* () const { return CStr(); }; CULSTR& operator =(const char* s) { Set(s); return *this; } CULSTR& operator =(const std::string& s) { Set(s); return *this; } char* CStrModifiable() const; @@ -121,10 +122,10 @@ int strLineLen( const char *s); int strJoinLen( const char *s1, const char *s2); char * FC strpad( char *s, const char *pads, int n); char* strSpacePad( char* d, size_t n, const char* s=NULL); -char * FC strffix( const char *name, const char *ext); -char* strffix2( const char* name, const char* ext, int options=0); +const char * FC strffix( const char *name, const char *ext); +const char* strffix2( const char* name, const char* ext, int options=0); -char * FC strtPathCat( const char *path, const char *namExt); +const char* FC strtPathCat( const char *path, const char *namExt); // for strpathparts() const int STRPPDRIVE = 1; const int STRPPDIR = 2; diff --git a/src/wfpak.cpp b/src/wfpak.cpp index 01fab5e54..ab7ff4601 100644 --- a/src/wfpak.cpp +++ b/src/wfpak.cpp @@ -908,7 +908,7 @@ RC WDYEAR::wdy_GenSubhrRad( // generate subhr radiation values for day { #if 0 && defined( _DEBUG) if (Top.jDay == 121) - printf("\nHit %s", Top.dateStr); + printf("\nHit %s", Top.dateStr.CStr()); #endif RC rc = RCOK; if (wdy_shJday != jDay || wdy_shDayTy != dayTy) From 138b39dbf42ed38ef88b449c467e9c9170ab6f91 Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Thu, 16 Mar 2023 17:24:29 -0400 Subject: [PATCH 12/25] VALDNT reorg WIP --- src/CNDTYPES.DEF | 4 ++-- src/RCDEF/dtypes.h | 2 +- src/cncult4.cpp | 6 ++++++ src/cul.cpp | 41 ++++++++++++++++++++++++----------------- src/dhwcalc.cpp | 2 +- src/srd.h | 10 ++++++++++ src/strpak.cpp | 13 ++++++++++--- src/strpak.h | 1 + 8 files changed, 55 insertions(+), 24 deletions(-) diff --git a/src/CNDTYPES.DEF b/src/CNDTYPES.DEF index da1931ca0..3eb1625db 100644 --- a/src/CNDTYPES.DEF +++ b/src/CNDTYPES.DEF @@ -100,8 +100,8 @@ MASSLAYERP -- "struct MASSLAYER *" MASSMODELP -- "class MASSMODEL *" IZXRATP -- "class IZXRAT *" -VALNDT -- "struct { void *val; USI ty; }" // value and data type, for user-defined reports - // code in cul.cpp,exman.cpp assumes .val is 1st member.*/ +VALNDT -- "struct VALNDT" // value and data type, for user-defined reports + // code in cul.cpp,exman.cpp assumes .val is 1st member.*/ // change ids to be like ZHXTY (bits already match)? // TCCM -- // terminal capability control method diff --git a/src/RCDEF/dtypes.h b/src/RCDEF/dtypes.h index c5862df8f..db682655b 100644 --- a/src/RCDEF/dtypes.h +++ b/src/RCDEF/dtypes.h @@ -56,7 +56,7 @@ typedef struct SGTARG * SGTARGP; typedef struct MASSLAYER * MASSLAYERP; typedef class MASSMODEL * MASSMODELP; typedef class IZXRAT * IZXRATP; -typedef struct { void *val; USI ty; } VALNDT; +typedef struct VALNDT VALNDT; typedef enum { cmNONE=0,cmSo=1,cmStH=2,cmStC=4,cmStBOTH=6 } TCCM; typedef enum { So=1,StH=2,StC=4,St=6,Lh=8,LhSo=9,LhStH=10,Ar=16,ArSo=17,ArStH=18,ArStC=20,ArStBOTH=22,nv=32 } ZHXTY; typedef enum { uNONE=0, uSo=1, uStH=2, uStC=4, /*uSt=6,*/ uMn=8, uMxH=16, uMxC=32/*,uPegged=56*/} TCUSE; diff --git a/src/cncult4.cpp b/src/cncult4.cpp index 845464c93..c14faa633 100644 --- a/src/cncult4.cpp +++ b/src/cncult4.cpp @@ -1390,6 +1390,12 @@ COL::~COL() if (colVal.ty==TYSTR || colVal.ty==DTCULSTR) // if contains a string, not a float (*reinterpret_cast(&colVal.val)).Release(); + + const COL* pCS = (const COL*)(pSrc); + + if (pCS->colVal.ty == TYSTR || pCS->colVal.ty == DTCULSTR) // if contains a string, not a float + (*reinterpret_cast(&(pCS->colVal.val))).IsValid(); + // use base class Copy. Copies derived class members too, per record type (.rt): RECORD MUST BE CONSTRUCTED record::Copy( pSrc, options); // verfies that src and this are same record type. diff --git a/src/cul.cpp b/src/cul.cpp index db9c81189..27361743c 100644 --- a/src/cul.cpp +++ b/src/cul.cpp @@ -1554,7 +1554,6 @@ LOCAL RC FC clearRat( CULT *c) skipped, return to culDo and continue compilation.] */ { BP b = (BP)c->b; - CULT *cc; if (c->IFLAGS & (ITFP|PRFP) || !c->p2) { @@ -1581,7 +1580,7 @@ LOCAL RC FC clearRat( CULT *c) // call self for any nested basAncs, to free their data & clear them. //if (xSp->b->n > 0) **?? do even if no records in this basAnc ?? - for (cc = xSp->cult; cc->id; cc++) // loop table records + for (CULT* cc = xSp->cult; cc->id; cc++) // loop table records if (cc->cs==RATE) clearRat(cc); @@ -1594,7 +1593,7 @@ LOCAL RC FC clearRat( CULT *c) /* free known dm data in members of record. Appl should use CLEAR's .itf fcn (called b4 here) for other dmfree's and cleanup: non-CULT members, dm pointers not DAT & TYSTR, derived info, etc. Also, C++ destructors are now called (by b->free() below. */ - for (cc = (CULT *)c->CULTP2; cc->id; cc++) // loop table records + for (CULT* cc = (CULT *)c->CULTP2; cc->id; cc++) // loop table records if (cc->cs==DAT) // if table entry is for data { void *p = (char *)xSp->e + xSp->b->fir[ cc->fn ].off; // datPt() subset: record base + member offset @@ -1643,13 +1642,12 @@ LOCAL RC FC xCult() [other: non-fatal error, message issued, rest of input statement skipped, return to culDo and continue compilation.] */ { - CULT *c; - XSTK* x; - RC rc; + + RC rc = RCOK; - /* loop over members of table */ + // loop over members of table - for (c = xSp->cult; c->id; c++) + for (CULT* c = xSp->cult; c->id; c++) { xSp->c = c; // input to datPt, self. @@ -1679,7 +1677,7 @@ LOCAL RC FC xCult() c->f |= RQD; // say must be input // search embedding context stack levels - for (x = xStk; x < xSp; x++) // loop embedding lvls + for (XSTK* x = xStk; x < xSp; x++) // loop embedding lvls { if ( x->b==c->b ) // if RATE of desired type // c->b now same as xSp->r->ownB here ... see ratCultO(). @@ -1694,7 +1692,7 @@ LOCAL RC FC xCult() } // if DAT && ... } // for (c= - return RCOK; // other returns above incl in E, F macros + return rc; // other returns above incl in E, F macros } // xCult //=========================================================================== LOCAL RC FC culRqFrz( // do "Require" or "Freeze" non-table command @@ -1778,10 +1776,7 @@ LOCAL RC FC culRESET() // "unset" a member -- re-default it other: non-fatal error, message issued, rest of input statement has been skipped, continue compilation. */ { - CULT *c; - void *p; - XSTK* x; - RC rc; + RC rc{ RCOK }; // parse rest of statment CSE_E( vFind( DAT) ) /* get DAT verb from input stream, look it up, @@ -1797,8 +1792,8 @@ LOCAL RC FC culRESET() // "unset" a member -- re-default it // execute command: 1. default member, like nuCult(). - c = xSp->c; - p = xSp->p; + CULT* c = xSp->c; + void* p = xSp->p; if ( c->ty==TYSTR // if a string || c->ty==TYFLSTR && ((VALNDT*)p)->ty==TYSTR ) // or a float-or-string now set to string, { @@ -1840,7 +1835,7 @@ LOCAL RC FC culRESET() // "unset" a member -- re-default it c->f |= RQD; // in case not suitably nested // field was set to default value above. // search embedding context stack levels - for (x = xStk; x < xSp; x++) // loop embedding lvls + for (XSTK* x = xStk; x < xSp; x++) // loop embedding lvls { if (x->b==c->b ) // if RATE of desired type { @@ -4097,6 +4092,18 @@ LOCAL void FC ratCultO( void) } } // ratCultO +///////////////////////////////////////////////////////////////////////////// +// VALNDT +///////////////////////////////////////////////////////////////////////////// +bool VALNDT::IsString() const +{ + return ty == TYSTR || ty == DTCULSTR; +} + +///////////////////////////////////////////////////////////////////////////// +// DREF (Deferred References) management +///////////////////////////////////////////////////////////////////////////// + //=========================================================================== LOCAL void FC drefAdd( // add dref using xSp frame const char* toName ) // name of entry referred to. dm pointer used here, no IncRef here. diff --git a/src/dhwcalc.cpp b/src/dhwcalc.cpp index 4d271e6b2..ffa41a7ce 100644 --- a/src/dhwcalc.cpp +++ b/src/dhwcalc.cpp @@ -9,6 +9,7 @@ #include "cnglob.h" #include "cse.h" +#include "srd.h" #include "ancrec.h" // record: base class for rccn.h classes #include "rccn.h" #include "irats.h" @@ -17,7 +18,6 @@ #include "cueval.h" #include "cvpak.h" #include "yacam.h" -#include "srd.h" // #include #include diff --git a/src/srd.h b/src/srd.h index bb7a03aa6..176b4cda0 100644 --- a/src/srd.h +++ b/src/srd.h @@ -142,5 +142,15 @@ struct SRD // one RT's info in Srd[] extern SRD sRd[]; /* null-terminated array of SRD, generated by rcdef.exe. Includes pointers to arrays of SFIR for fields of each record. */ // note 12-12-91: sRd not referenced -- could be deleted. + +struct VALNDT +{ + void* val; + USI ty; + + bool IsString() const; + +}; + #endif // ifndef SRD_H at start file // end of srd.h diff --git a/src/strpak.cpp b/src/strpak.cpp index adb078817..6caa59238 100644 --- a/src/strpak.cpp +++ b/src/strpak.cpp @@ -152,11 +152,18 @@ void CULSTR::FixAfterCopy() } } // CULSTR::FixAfterCopy //----------------------------------------------------------------------------- -CULSTREL& CULSTR::us_GetCULSTREL() const +bool CULSTR::IsValid() const { - if (us_hCulStr < 0 || us_hCulStr >= us_vectCULSTREL.size()) + bool bValid = IsNANDLE() + || (us_hCulStr >= 0 && us_hCulStr < us_vectCULSTREL.size()); + if (!bValid) printf("\nBad hCulStr %d", us_hCulStr); - return us_vectCULSTREL[us_hCulStr]; + return bValid; +} // CULSTR::IsValid +//----------------------------------------------------------------------------- +CULSTREL& CULSTR::us_GetCULSTREL() const +{ + return us_vectCULSTREL[ IsValid() ? us_hCulStr : 0]; } // CULSTR::us_GetCULSTREL(); //----------------------------------------------------------------------------- diff --git a/src/strpak.h b/src/strpak.h index 63fc729dd..0b1008871 100644 --- a/src/strpak.h +++ b/src/strpak.h @@ -37,6 +37,7 @@ struct CULSTR void Release(); void FixAfterCopy(); + bool IsValid() const; bool IsNANDLE() const; bool IsNull() const { return us_hCulStr == 0; } bool IsSet() const { return us_hCulStr != 0; } From 2539865fb46b141ce5f5ab5450bce9e145cbfcd2 Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Fri, 17 Mar 2023 15:56:15 -0400 Subject: [PATCH 13/25] VALNDT progress --- src/cgcomp.cpp | 3 +- src/cgdebug.cpp | 2 +- src/cgresult.cpp | 28 +++++----- src/cncult4.cpp | 38 ++++++-------- src/cul.cpp | 132 +++++++++++++++++++++++++++-------------------- src/cul.h | 6 +++ src/cuparse.cpp | 40 +++++++------- src/cuparse.h | 4 ++ src/cuparsei.h | 3 +- src/srd.h | 45 ++++++++++++++-- src/strpak.cpp | 20 +++---- src/strpak.h | 5 ++ 12 files changed, 193 insertions(+), 133 deletions(-) diff --git a/src/cgcomp.cpp b/src/cgcomp.cpp index 0e40ed074..87a01a0bd 100644 --- a/src/cgcomp.cpp +++ b/src/cgcomp.cpp @@ -1805,7 +1805,8 @@ TI ZNR::zn_AddIZXFER( // add IZXFER coupled to this zone IzxR.add( &ize, ABT); char tName[200]; - ize->name = strCatIf(tName, sizeof(tName), "-", nmSfx, 1); + // IZXRAT name = - + ize->name = strCatIf(strcpy( tName, name), sizeof(tName), "-", nmSfx, 1); ize->iz_zi1 = ss; // idx of this zone ize->iz_nvcntrl = _ty; ize->iz_pAF = pAF; diff --git a/src/cgdebug.cpp b/src/cgdebug.cpp index b9460a076..1d5b5f330 100644 --- a/src/cgdebug.cpp +++ b/src/cgdebug.cpp @@ -238,7 +238,7 @@ static PB_DATOFFL izxct[] = { { L, C, C+6, PBARGSI, DTCH, UNN,16, FS, "Zn1: " }, // c +1 to align. wid 12-->16 2-95. { L, C, C+7, PBARGSI, DTCH, UNN,16, FS, "Zn2: " }, // wid 12-->16 2-95 { L, C, C+11, off( IZXRAT, iz_ua), DTF, UNN, 7, FL+3, "UAconst: " }, -{ L, C, C+8, PBARGSI, DTCH, UNN,16, FS, "NVctrl: " }, +{ L, C, C+8, PBARGSI, DTCH, UNN,16, FS, "NVctrl: " }, { L, C+1, 10, off( IZXRAT, iz_a1), DTF, UNN, 7, FL+3, "Vlo: " }, { L, C, C+8, off( IZXRAT, iz_a2), DTF, UNN, 7, FL+3, "Vhi: " }, { L, C, C+6, off( IZXRAT, iz_hz), DTF, UNN, 7, FL+3, "Hz: " }, diff --git a/src/cgresult.cpp b/src/cgresult.cpp index 4a091a4d1..a7be8011b 100644 --- a/src/cgresult.cpp +++ b/src/cgresult.cpp @@ -1750,7 +1750,7 @@ LOCAL void FC vpUdtRpColHeads( DVRI *dvrip) // user-defined report column heads p = q + colp->colGap; // nominal start of column, to adjust for overflow / justification q = p + colWid + sTween; // nominal start of next column's gap, if there is another col //s is next avail position in buffer = min value for p - int dt = colp->colVal.ty; // data type, DTFLOAT or DTCULSTR, from VALNDT struct member + int dt = colp->colVal.vt_ty; // data type, DTFLOAT or DTCULSTR, from VALNDT struct member JUSTCH jus = colp->colJust; // justification if (!jus) jus = dt==DTFLOAT ? C_JUSTCH_R : C_JUSTCH_L; // default right-justified for numbers, left for strings @@ -1850,7 +1850,7 @@ LOCAL void FC vpUdtRpRow( DVRI *dvrip) // virtual print current interval row fo // format data - int dt = colp->colVal.ty; // data type, DTFLOAT or DTCULSTR, from VALNDT struct member + int dt = colp->colVal.vt_ty; // data type, DTFLOAT or DTCULSTR, from VALNDT struct member JUSTCH jus = colp->colJust; // justification if (!jus) jus = dt==DTFLOAT ? C_JUSTCH_R : C_JUSTCH_L; // default right-justified for numbers, left for strings @@ -1859,7 +1859,7 @@ LOCAL void FC vpUdtRpRow( DVRI *dvrip) // virtual print current interval row fo const char* text = NULL; USI cvFmt; float fv; - if (ISNANDLE(colp->colVal.val)) // if UNSET (bug)(exman.h) or expression not evaluated yet, show "?". + if (ISNANDLE(colp->colVal.vt_val)) // if UNSET (bug)(exman.h) or expression not evaluated yet, show "?". text = "?"; // show "?". Issue message? treat UNSET differently? /* uneval'd exprs may be able to occur at start run if rpFreq > expr's evf. Only place in language where run with excess evf intentionally permitted, 12-91. @@ -1868,7 +1868,7 @@ LOCAL void FC vpUdtRpRow( DVRI *dvrip) // virtual print current interval row fo switch (dt) { case DTFLOAT: - fv = *(float*)&colp->colVal.val; // fetch value, casting with no actual conversion + fv = *(float*)&colp->colVal.vt_val; // fetch value, casting with no actual conversion if (dec >= 0) // cvpak format word: if decimals given, use them (4 bits avail). cvFmt = FMTSQ | min( dec, 15); // use "squeeze" format (we justify below), and 'dec' digits after point. else // decimals not given, specify # sig digits rather than point posn. @@ -1901,8 +1901,8 @@ LOCAL void FC vpUdtRpRow( DVRI *dvrip) // virtual print current interval row fo break; case DTCULSTR: - text = (*reinterpret_cast(&colp->colVal.val)).CStr(); - break; // string: no conversion + text = (*reinterpret_cast(&colp->colVal.vt_val)).CStr(); + break; default: text = ""; @@ -1950,13 +1950,13 @@ LOCAL void FC vpUdtExRow( DVRI *dvrip) // virtual print current interval row for // format data - USI dt = colp->colVal.ty; // data type, DTFLOAT or DTCULSTR, from VALNDT struct member - char* text; - if (ISNANDLE(colp->colVal.val)) // if UNSET (bug)(exman.h) or expression not evaluated yet, show "?". + int dt = colp->colVal.vt_ty; // data type, DTFLOAT or DTCULSTR, from VALNDT struct member + const char* text; + if (ISNANDLE(colp->colVal.vt_val)) // if UNSET (bug)(exman.h) or expression not evaluated yet, show "?". text = "?"; // show "?". Issue message? treat UNSET differently? - /* uneval'd exprs may be able to occur at start run if rpFreq > expr's evf. - Only place in language where run with excess evf intentionally permitted, 12-91. - Note generally don't see ?'s for evf >= daily as evaluated during warmup. */ + // uneval'd exprs may be able to occur at start run if rpFreq > expr's evf. + // Only place in language where run with excess evf intentionally permitted, 12-91. + // Note generally don't see ?'s for evf >= daily as evaluated during warmup. else switch (dt) { @@ -1970,12 +1970,12 @@ LOCAL void FC vpUdtExRow( DVRI *dvrip) // virtual print current interval row for FMTSQ | FMTRTZ // squeeze, # given is # sig not # dec dig & truncate trailing 0's, | FMTOVFE | 6; // overfl to E format, # sig digits is 6 (if value >= .001) - text = cvin2s(&colp->colVal.val, dt, UNNONE, colp->colWid, cvFmt); // convert, to Tmpstr, cvpak.cpp + text = cvin2s(&colp->colVal.vt_val, dt, UNNONE, colp->colWid, cvFmt); // convert, to Tmpstr, cvpak.cpp break; } case DTCULSTR: - text = (char *)(colp->colVal.val); + text = AsCULSTR(&colp->colVal.vt_val).CStr(); break; // string: no conversion; supply quotes default: diff --git a/src/cncult4.cpp b/src/cncult4.cpp index c14faa633..81e795a44 100644 --- a/src/cncult4.cpp +++ b/src/cncult4.cpp @@ -266,7 +266,7 @@ RC topCol( int isExport) // copy data from input rat to run rat, same subscript (needed in this case?) colB->add( &colp, ABT, colip->ss); // add run COL record, ret ptr to it. err unexpected cuz al'd. *colp = *colip; // copy entire entry incl name, and incr ref count of heap pointers - // (.colHead; colVal.val if constant (unlikely!)) + // (.colHead; colVal.vt_val if constant (unlikely!)) // check references if (ckRefPt( rxB, colip, colip->ownTi, isExport ? "colExport" : "colReport", NULL, (record **)&rp ) ) @@ -281,12 +281,12 @@ RC topCol( int isExport) 2) results values: may be eg last month's value until last day of month. 3) results avg values may have working totals not yet divided by # values (if another operand in expr forces faster probing). */ - if ( ISNANDLE( colip->colVal.val) // if column value is expression (not constant) + if ( ISNANDLE( colip->colVal.vt_val) // if column value is expression (not constant) && rp->rpFreq > C_IVLCH_Y ) // if rpfreq set and more often than at end run (ASSUMES _Y is smallest C_IVLCH_) // (yearly reports can use any variability) { USI rpfreqEvf, colEvf = 0; - exInfo( EXN(colip->colVal.val), &colEvf, NULL, NULL); // get evf of expr; leave 0 if bad exn (exman.cpp) + exInfo( EXN(colip->colVal.vt_val), &colEvf, NULL, NULL); // get evf of expr; leave 0 if bad exn (exman.cpp) switch (rp->rpFreq) // get evf bits corresponding to rpFreq { case C_IVLCH_M: @@ -316,16 +316,16 @@ RC topCol( int isExport) } // translate cuparse data types to cvpak data types for use at runtime, in string-or-float value VALNDT structure. - switch (colip->colVal.ty) + switch (colip->colVal.vt_ty) { case TYFL: - colp->colVal.ty = DTFLOAT; + colp->colVal.vt_ty = DTFLOAT; break; // set data type to use when converting to print during run case TYSTR: - colp->colVal.ty = DTCULSTR; + colp->colVal.vt_ty = DTCULSTR; break; default: - colip->oer( (char *)MH_S0547, colip->colVal.ty); // "Bad data type (colVal.dt) %d" + colip->oer( (char *)MH_S0547, colip->colVal.vt_ty); // "Bad data type (colVal.dt) %d" } // default width if not given. Note: gap is defaulted to 1 per CULT table, and is limit-checked for nonNegative. @@ -1378,31 +1378,27 @@ COL::COL( basAnc* b, TI i, SI noZ /*=0*/) //----------------------------------------------------------------------------- COL::~COL() { - if (colVal.ty == TYSTR || colVal.ty == DTCULSTR) // if colVal.val contains a string (not a float or nothing) - (*reinterpret_cast< CULSTR *>(&colVal.val)).Release(); - + colVal.vt_ReleaseIfString(); } // COL::~COL //----------------------------------------------------------------------------- /*virtual*/ void COL::Copy( const record* pSrc, int options/*=0*/) { // free (or decr ref count for) derived class heap pointer(s) in record about to be overwritten colHead.Release(); - if (colVal.ty==TYSTR || colVal.ty==DTCULSTR) // if contains a string, not a float - (*reinterpret_cast(&colVal.val)).Release(); - + colVal.vt_ReleaseIfString(); +#if 0 const COL* pCS = (const COL*)(pSrc); - - if (pCS->colVal.ty == TYSTR || pCS->colVal.ty == DTCULSTR) // if contains a string, not a float - (*reinterpret_cast(&(pCS->colVal.val))).IsValid(); + if (pCS->colVal.vt_IsString()) // if contains a string, not a float + AsCULSTR(&(pCS->colVal.vt_val))).IsValid(); +#endif // use base class Copy. Copies derived class members too, per record type (.rt): RECORD MUST BE CONSTRUCTED record::Copy( pSrc, options); // verfies that src and this are same record type. // duplicate copied CULSTRs colHead.FixAfterCopy(); - if (colVal.ty==TYSTR || colVal.ty==DTCULSTR) - (*reinterpret_cast(&colVal.val)).FixAfterCopy(); + colVal.vt_FixAfterCopyIfString(); } // COL::Copy //----------------------------------------------------------------------------- /*virtual*/ record& COL::CopyFrom( const record* pSrc, int copyName/*=1*/, int dupPtrs/*=0*/) @@ -1411,15 +1407,13 @@ COL::~COL() pSrc->Validate(); #endif colHead.Release(); - if (colVal.ty==TYSTR || colVal.ty==DTCULSTR) // if contains a string, not a float - (*reinterpret_cast(&colVal.val)).Release(); + colVal.vt_ReleaseIfString(); // use base class Copy. Copies derived class members too, per record type (.rt): RECORD MUST BE CONSTRUCTED record::CopyFrom( pSrc, copyName, dupPtrs); // verfies that src and this are same record type. lib\ancrec.cpp. colHead.FixAfterCopy(); - if (colVal.ty==TYSTR || colVal.ty==DTCULSTR) - (*reinterpret_cast(&colVal.val)).FixAfterCopy(); + colVal.vt_FixAfterCopyIfString(); #if defined( _DEBUG) Validate(); diff --git a/src/cul.cpp b/src/cul.cpp index 27361743c..a83cd54da 100644 --- a/src/cul.cpp +++ b/src/cul.cpp @@ -1359,14 +1359,13 @@ x name, strlen(name), sizeof(ANAME)-1 ); //=========================================================================== LOCAL RC FC nuCult( - /* initialize to use new xSp->cult table: STAR, flags, non-array defaults and member init fcns. - see also xCult: context dependent portions */ +// initialize to use new xSp->cult table: STAR, flags, non-array defaults and member init fcns. +// see also xCult: context dependent portions - SI clr, /* non-0: clear: remove all records from ref'd basAncs: used to init at cul() entry, and from culCLEAR. - 0: do not clear: used normally, in case basAnc ref'd elsewhere and data already entered. */ - - SI lity ) /* non-0 if RATE already init, as with LIKE or USETYPE: don't default data; don't call member itf fcns 1-2-91 - (will probably need likeItf fcns or addl info to fcns) */ + SI clr, // non-0: clear: remove all records from ref'd basAncs: used to init at cul() entry, and from culCLEAR. + // 0: do not clear: used normally, in case basAnc ref'd elsewhere and data already entered. + SI lity ) // non-0 if RATE already init, as with LIKE or USETYPE: don't default data; don't call member itf fcns 1-2-91 + // (will probably need likeItf fcns or addl info to fcns) // (1-91: culRATE passes lity = 1 for COPY/LIKE, 2 for USETYPE, in case we need to distinguish) /* inits, for DAT cult entries: default values. @@ -1382,23 +1381,23 @@ LOCAL RC FC nuCult( RCFATAL: fatal error, message already issued, terminate session [other: non-fatal error, message issued, rest of input stmt skipped, return to culDo and continue compilation.] */ { - RC rc; + RC rc = RCOK; CULT *c = xSp->cult; - /* STAR entry: overall default data and/or initialization function */ + // STAR entry: overall default data and/or initialization function // itf fcn call occurs AFTER default data and .itf from calling entry, but b4 member defaults and .itfs if ( c->cs==STAR // if have STAR entry (always 1st if present) - && !lity ) // 1-2-91 tentatively NO fcns, no init for LIKE/USETYPE + && !lity ) // 1-2-91 tentatively NO fcns, no init for LIKE/USETYPE { F( cuf( ITF, STARS, 0) ) // call xSp->cult->itf w args, handle return - /* F macro rets RCFATAL errors now & continues here on others - (but all non-RCOK rets errCount++'d in cuf -- tested at RUN.) - NB E'ing would make mess by skipping then continuing. */ + // F macro rets RCFATAL errors now & continues here on others + // (but all non-RCOK rets errCount++'d in cuf -- tested at RUN.) + // NB E'ing would make mess by skipping then continuing. } - /* loop over members of table */ + // loop over members of table for ( /*c=xSp->cult*/ ; c->id; c++) { @@ -1411,7 +1410,7 @@ LOCAL RC FC nuCult( // flag bits in field status byte if ( lity // if not like or usetype, ratAdd inits them 0. - && c->cs==DAT ) // if datum -- else has no fs byte + && c->cs==DAT ) // if datum -- else has no fs byte { UCH *fs = xSp->fs0 + c->fn; // point field's data status byte /* like/type fs flag init not fully clear yet, but at least clear "error msg issued", @@ -1466,7 +1465,7 @@ LOCAL RC FC nuCult( for ( ; xSp->j < xSp->arSz && rc==RCOK; // loop over array elements (usually 1 only) if/while ok xSp->j++, IncP( DMPP( xSp->p), xSp->sz) ) { - USI sz = xSp->sz; + int sz = xSp->sz; void *p = xSp->p; // fetch member (element) size and location if (lity) @@ -1474,14 +1473,15 @@ LOCAL RC FC nuCult( // duplicate dm data in like/usetype copy - if ( c->cs==DAT // if data (appears redundant 11-91) - && (c->ty==TYSTR // if data is a string - || (c->ty==TYFLSTR && ((VALNDT *)p)->ty==TYSTR )) ) // or a float-or-string set to string 11-91 + if ( c->cu_IsString(p)) // if string datum { // nb assumes offsetof(VALNDT,val)==0 + AsCULSTR(p).FixAfterCopy(); +#if 0 if ( *(char **)p != NULL // if ptr not NULL && !ISNANDLE(*(void **)p) ) // and not UNSET or expr handle dmIncRef( (void **)p); // increment reference count of pointed-to block, dmpak.cpp +#endif } } else // not under LIKE or USETYPE @@ -1489,10 +1489,10 @@ LOCAL RC FC nuCult( // default member. similar code in culRESET(). - if ( c->ty==TYSTR // if a string datum - || c->ty==TYFLSTR && ((VALNDT *)p)->ty==TYSTR ) // or a float-or-string set to string 11-91 - // nb assumes offsetof(VALNDT,val)==0 - { + if ( c->cu_IsString(p)) // if a string datum + { // nb assumes offsetof(VALNDT,val)==0 + AsCULSTR( p).Release(); +#if 0 #if 0 // in use til 3-95! x dmfree( DMPP( *p)); // free any prior string value: free ram, NULL ptr, dmpak.cpp #else // fix crash if never set b4 CLEAR, 3-95 @@ -1500,6 +1500,7 @@ x dmfree( DMPP( *p)); // free any prior string value: free ram, NUL *(void **)p = NULL; // just remove value, don't crash in dmfree, 3-95 else // normally is heap pointer or NULL (dmfree checks for NULL) dmfree( (void **)p); // free any prior string value: free ram, NULL ptr, dmpak.cpp +#endif #endif } if (sz==4 && c->f & RQD) // insurance: if a 4-byte required item @@ -1597,16 +1598,17 @@ LOCAL RC FC clearRat( CULT *c) if (cc->cs==DAT) // if table entry is for data { void *p = (char *)xSp->e + xSp->b->fir[ cc->fn ].off; // datPt() subset: record base + member offset - if ( cc->ty==TYSTR // if data is string, - || cc->ty==TYFLSTR && ((VALNDT*)p)->ty==TYSTR ) // or float-or-string now set to string, + if ( cc->cu_IsString(p)) // if data is string { int arSz = cc->f & ARRAY ? int( cc->p2) : 1; // datPt() subset... # array elements: usually 1 - int j; - for (j = 0; j < arSz; j++, IncP( &p, sizeof(char *)) ) // loop array elements - if (ISNANDLE(*(void **)p)) // if UNSET, ASING, expr handle, etc (cnglob.h) + for (int j = 0; j < arSz; j++, IncP(&p, sizeof(char*))) // loop array elements + AsCULSTR(p).Release(); +#if 0 + if (ISNANDLE(*(void **)p)) // if UNSET, ASING, expr handle, etc (cnglob.h) *(void **)p = NULL; // just remove value, don't crash in dmfree, 11-95 else // else is heap ptr or NULL (dmfree cks 4 NULL) dmfree( (void **)p); // free the string, set ptr NULL. dmpak.cpp. +#endif } } // CAUTION: assumes VALNDT.val is 1st member. } @@ -1793,14 +1795,16 @@ LOCAL RC FC culRESET() // "unset" a member -- re-default it // execute command: 1. default member, like nuCult(). CULT* c = xSp->c; - void* p = xSp->p; - if ( c->ty==TYSTR // if a string - || c->ty==TYFLSTR && ((VALNDT*)p)->ty==TYSTR ) // or a float-or-string now set to string, + void* p = xSp->p; // point to data + if ( c->cu_IsString( p)) // if a string { + AsCULSTR(p).Release(); +#if 0 if (ISNANDLE(*reinterpret_cast(p)) ) // if UNSET or an expression reference (eg RESET b4 ever set?) *reinterpret_cast(p) = NULL; // just remove value, don't crash in dmfree, 3-95 else // normally is heap pointer or NULL (dmfree checks for NULL) dmfree( (void**)p); // free any prior string value: free ram, set ptr NULL, dmpak.cpp +#endif } if (xSp->sz==4 && c->f & RQD) // insurance: if a 4-byte required item *reinterpret_cast(p) = UNSET; // default to "not set" @@ -1908,21 +1912,21 @@ LOCAL RC FC culKDAT() // do cul constant-data case per xSp // .itf function, if any, is called by nuCult. // point to data storage: sets xSp->p, ->sz, ->fs, etc. local. - CSE_E( datPt() ) - // ARRAY flag assumed not used, but not checked. + CSE_E(datPt()); + // ARRAY flag assumed not used, but not checked. // call "pre-input" function - F( cuf( PRF, RGLR, 0) ) // call fcn if any with args, ret fatal error to caller now + F(cuf(PRF, RGLR, 0)) // call fcn if any with args, ret fatal error to caller now -// set datum from "default" table info - if ( c->ty==TYSTR // free any prior string value - || c->ty==TYFLSTR && ((VALNDT*)xSp->p)->ty==TYSTR ) // or float-or-string now set to string, -#if 1 // 11-1-95: another one like nuCult 3-95 or clearRat 11-95! + // set datum from "default" table info + if (c->cu_IsString(xSp->p)) // free any prior string value + AsCULSTR(xSp->p).Release(); +#if 0 if (ISNANDLE(*(void **)xSp->p)) // if UNSET, ASING, expr handle, etc (cnglob.h) *(void **)xSp->p = NULL; // just remove value, don't crash in dmfree, 11-95 else // else is heap ptr or NULL (dmfree cks for NULL) -#endif dmfree( (void **)xSp->p); // free ram, NULL ptr, dmpak.cpp +#endif #ifdef DF1 else if (c->ty==TYFL || c->ty==TYNC) // floats: units. #else @@ -2118,10 +2122,14 @@ x UCH *fsj = xSp->fs; // fetch field status byte ptr. Incremented for suc gotEvf = 0; // no variablity for RC_ALL etc goto haveFieldRc; // go do other rc's, field status - case TYFLSTR: // string or float: get value/NANDLE and type to VALNDT structure. 11-91 for reportCol. - -#define VDP ((VALNDT*)xSp->p) - rc = xpr( c->ty, xSp->fdTy, c->evf, useCl, 0, NULL, (NANDAT*)&VDP->val, &VDP->ty, &gotEvf); // below + case TYFLSTR: // string or float: get value/NANDLE and type to VALNDT structure, for reportCol + { + #define VDP ((VALNDT*)xSp->p) + VALNDT& cv = *(reinterpret_cast(xSp->p)); + rc = xpr(c->ty, xSp->fdTy, c->evf, useCl, 0, NULL, (NANDAT *)&cv.vt_val, &cv.vt_ty, &gotEvf); // below + if (cv.vt_IsString()) + AsCULSTR(&cv.vt_val).IsValid(); + } goto haveFieldRc; // set Fs per rc, break/return case TYDOY: // day of year. See datPt(), xpr(). fall thru. Uses SI expr (incl month names: see cuparse.cpp). @@ -2530,16 +2538,19 @@ LOCAL void FC finalClear() // clear input data, for cul(4). for (p = NULL; xnxDatMbr( 1, &p); ) /* loop over all data in all basAncs, incl TYPEs, incl bad/deleted recs (1). uses/adds to xStk. below. only use 3-92. */ { - if (!(xSp->b->ba_flags & RFPROBED) ) // if its basAnc has not been 'probed' (would be accesed during run) 12-91 - if ( xSp->c->ty==TYSTR // if a string datum - || xSp->c->ty==TYFLSTR && ((VALNDT *)p)->ty==TYSTR ) // or string-or-float now set to string + if (!(xSp->b->ba_flags & RFPROBED)) // if its basAnc has not been 'probed' (would be accesed during run) 12-91 + if (xSp->c->cu_IsString(p)) // if a string datum + AsCULSTR(p).Release(); +#if 0 // 11-95: historically this hasn't crashed on nans -- already cleared elsewhere? adding protection anyway... if (ISNANDLE(*(void **)p)) // if UNSET, ASING, expr handle, etc (cnglob.h) *(void **)p = NULL; // just remove value, don't crash in dmfree, 11-95 else // else is heap ptr or NULL dmfree( (void **)p); // free it if its ptr at *p non-NULL. dmpak.cpp +#endif } // note assumption that VALNDT.val is 1st member. + // basAnc loop 1: free all record blocks of input basAncs for (b = 0; nxRat(&b); ) // loop all basAncs ref'd in CULTs, incl nesting & TYPEs sub-basAncs { @@ -2694,16 +2705,13 @@ LOCAL RC xpr( // our local expression compiler interface / checker RC_SUM, RC_ALL, RC_ALLBUT, [RC_ELECTRIC]: returned if special word gotten and enabling flags on. other: error, message issued, perNx done. */ { - SI tem; - USI gotTy; - RC rc; - + RC rc{ RCOK }; if (what==NULL) // if user gave no text, use id of current what = xSp->c->id; // ... CULT in msgs of form "... after " // check for no expression nor ; at all (exPile wd gobble next statement) - tem = nxPrec(); // prec of next token (unToke's) + int tem = nxPrec(); // prec of next token (unToke's) if (tem >= PRVRB && tem <= PRTY) // if verb, verb-like, or type next { toke(); // to position ^ @@ -2725,6 +2733,7 @@ LOCAL RC xpr( // our local expression compiler interface / checker if (_evfOK & EVPSTIVL) // if post-interval is acceptable _evfOK |= EVENDIVL; // then end-interval OK too + USI gotTy; rc = exPile( // exman.cpp. only call 11-91. -1, // say parse to ; or CUTVRB, etc ty, // desired cuparse type @@ -2755,7 +2764,7 @@ LOCAL RC xpr( // our local expression compiler interface / checker // check returned value for reserved words 'sum' and 'all' 1-92. rc=RCOK here. if (gotTy==TYSTR) // if string found { - CULSTR& cs = (*reinterpret_cast(pp)); + CULSTR& cs = AsCULSTR(pp); if (!cs.IsNANDLE()) // if constant, not expression, found (don't allow exprs and sum/all in same call!) { const char* p = cs.CStr(); @@ -2766,11 +2775,12 @@ LOCAL RC xpr( // our local expression compiler interface / checker else if (!_stricmp(p, "all_but")) rc = (f & ALL_OK && f & ARRAY) ? RC_ALLBUT : perNx((char*)MH_S0252); // "'ALL_BUT' cannot be used here" if (rc) // if sum or all (whether error or ok) - cs.Release(); // discard the string + cs.Release(); // discard the string } } - if (pGotTy) *pGotTy = gotTy; // return type if caller wants it + if (pGotTy) + *pGotTy = gotTy; // return type if caller wants it return rc; } // xpr @@ -4095,10 +4105,18 @@ LOCAL void FC ratCultO( void) ///////////////////////////////////////////////////////////////////////////// // VALNDT ///////////////////////////////////////////////////////////////////////////// -bool VALNDT::IsString() const +void VALNDT::vt_ReleaseIfString() { - return ty == TYSTR || ty == DTCULSTR; -} + if (vt_IsString()) + AsCULSTR(&vt_val).Release(); +} // VALNDT::vt_ReleaseIfString +//--------------------------------------------------------------------------- +void VALNDT::vt_FixAfterCopyIfString() +{ + if (vt_IsString()) + AsCULSTR(&vt_val).FixAfterCopy(); +} // VALNDT::vt_FixAfterCopyIfString +//=========================================================================== ///////////////////////////////////////////////////////////////////////////// // DREF (Deferred References) management diff --git a/src/cul.h b/src/cul.h index 5284c2a82..718cd4dde 100644 --- a/src/cul.h +++ b/src/cul.h @@ -119,6 +119,12 @@ struct CULT : public STBK // for initialized data to drive user interface : STBK( _id), cs( _cs), fn( _fn), f( _f), uc( _uc), evf( _evf), ty( _ty), b( _b), dfpi( (void*)_dfpi), dff( 0.f), p2( _p2), ckf( _ckf) { } + bool cu_IsString(void* p) const // true iff string + { + return ty == TYSTR + || (ty == TYFLSTR && ((VALNDT*)p)->vt_IsString()); + } + std::string cu_MakeDoc( const CULT* pCULT0, const char* linePfx="", int options = 0) const; }; // struct CULT diff --git a/src/cuparse.cpp b/src/cuparse.cpp index cb484bb2c..4c20ac60a 100644 --- a/src/cuparse.cpp +++ b/src/cuparse.cpp @@ -89,9 +89,9 @@ AGENDA items decided to defer, 10-5-90: // undefine for portable linkability (without cncult4.cpp), eg to use in another project. -#undef EMIKONFIX /* define (and remove *'s) for change in emiKon() to fix -apparent bug in konstize() found reading code 2-94. -Leave unchanged till code tests out bad. */ +#undef EMIKONFIX // define (and remove *'s) for change in emiKon() to fix + // apparent bug in konstize() found reading code 2-94. + ///Leave unchanged till code tests out bad. #define FLWANT /* define for changes 2-95 to do intermediate calcs in floating point if wanTy is TYFL, to elinate user problems with 2/3 = 0 (integer divide) and 2400*300 = 6464 (truncation). @@ -3246,10 +3246,10 @@ RC FC konstize( // if possible, evaluate current (sub)expression (parSp) now an SI *pisK, // NULL or receives non-0 if is constant void **ppv, // NULL or, if constant, receives ptr to value (ptr to ptr for TYSTR). Volatile: next konstize will overwrite. - SI inDm ) /* for TYSTR: 0: put text inline in code; - application of cases 1/2 not yet clear 10-10-90 no non-0 inDm values yet tested - 1: put actual given pointer inline in code CAUTION; - 2: copy text to dm and put that pointer in code. */ + SI inDm ) // for TYSTR: 0: put text inline in code; + // application of cases 1/2 not yet clear 10-10-90 no non-0 inDm values yet tested + // 1: put actual given pointer inline in code CAUTION; + // 2: copy text to dm and put that pointer in code. // 2-91: why didn't it perNx on cueval error (place noted below)? { @@ -3882,17 +3882,15 @@ LOCAL SI FC isJmp( PSOP op) // test op code for being a jump { return op==PSJMP || op==PSPJZ || op==PSJZP || op==PSJNZP; } // isJmp - //========================================================================== -//compiled badly with FC...switch used bx to point to and to hold test switch value...Borland 3.0 3-19-2 RC CDEC emiKon( // emit code to load constant USI ty, // type TYSI TYFL TYSTR TYCH (TYCH constants also generated directly in cnvPrevSf) void *p, // ptr to value (for TYSTR, ptr to ptr to text) - SI inDm, /* for TYSTR: 0: put text inline in code; - application of cases 1/2 not yet clear 10-10-90 no non-0 inDm values yet tested - 1: put actual given pointer inline in code CAUTION!; - 2: copy text to dm and put that pointer in code. */ + SI inDm, // for TYSTR: 0: put text inline in code; + // application of cases 1/2 not yet clear 10-10-90 no non-0 inDm values yet tested + // 1: put actual given pointer inline in code CAUTION!; + // 2: copy text to dm and put that pointer in code. #ifndef EMIKONFIX char **pp ) // NULL or receives ptr to text inline in code for TYSTR only (feature for konstize) #else //if apparent bug really found, use this. @@ -3900,8 +3898,8 @@ RC CDEC emiKon( // emit code to load constant * // and change declaration and check call in cuprobe.cpp. #endif -/* for TYCH, size 2 or 4 bytes is determined by bits in file-global choiDt. - (if this does not work out, have caller give size in inDm arg, 2-92) */ +// for TYCH, size 2 or 4 bytes is determined by bits in file-global choiDt. +// (if this does not work out, have caller give size in inDm arg, 2-92) { ERVARS1 #ifndef EMIKONFIX @@ -3931,17 +3929,17 @@ RC CDEC emiKon( // emit code to load constant case TYSTR: if (inDm==0) // string inline { - /* pseudoCode: PSPKONN ~nwords text - PSPKONN: pushes pointer to text at run time - ~nwords: # words in string, as a word, excl self, ONE'S COMPLEMENTED - (so unlike a dm block from strsave -- see cueval.cpp:cupfree()). - string: text, with null, padded to whole word.*/ + // pseudoCode: PSPKONN ~nwords text + // PSPKONN: pushes pointer to text at run time + // ~nwords: # words in string, as a word, excl self, ONE'S COMPLEMENTED + // (so unlike a dm block from strsave -- see cueval.cpp:cupfree()). + // string: text, with null, padded to whole word. EE( emit( PSPKONN) ) EE( emit(~(((PSOP)strlen(*(char **)p)+1+1)/sizeof(PSOP))) ) #ifndef EMIKONFIX p1 = (char *)psp; // where text will be #else//to fix apparent konstize bug -* p1 = (char **)&psp; // ptr to ptr to where text will be +* p1 = (char **)&psp; // ptr to ptr to where text will be #endif EE( emitStr(*(char **)p) ) if (pp) // if req'd, ret text destination ptr ptr now. diff --git a/src/cuparse.h b/src/cuparse.h index 7f71e34b2..91dc03725 100644 --- a/src/cuparse.h +++ b/src/cuparse.h @@ -8,6 +8,9 @@ /*-------------------------------- DEFINES --------------------------------*/ // see cuevf.h for EVFs & variabilities +// see srd.h for expr() data types + +#if 0 //-- expr() data types -- each type is different bit so can represent groups of types and test with 'and'. Data type USI. #define TYSI 0x01 // 16-bit integer (or BOOlean) @@ -32,6 +35,7 @@ // everywhere exman's runtime expressions are to be supported //TYSTR TYID TYFL TYCH TYNC as above // not used in exman.cpp: TYNUM, TYANY, TYNONE, ? TYDONE. +#endif /*------------------------- FUNCTION DECLARATIONS -------------------------*/ diff --git a/src/cuparsei.h b/src/cuparsei.h index c98049060..5f68e7165 100644 --- a/src/cuparsei.h +++ b/src/cuparsei.h @@ -2,8 +2,7 @@ // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file. -/* cuparsei.h Operator table defines and decls for cuparse.c, ppCex.c - for cal non-res user language */ +// cuparsei.h Operator table defines and decls for CSE user language /*--------------------- OPERATOR TABLE definitions ----------------------*/ diff --git a/src/srd.h b/src/srd.h index 176b4cda0..ce873797b 100644 --- a/src/srd.h +++ b/src/srd.h @@ -49,6 +49,31 @@ inline DTTAB& GetDttab(USI dt) { return *(DTTAB *)(Dttab+((dt)&DTBMASK)); } // but, to access with checks, use ::getChoiTx( dt, chan). inline const char* GetChoiceText( USI dt, USI chan) { return GetDttab(dt).choicbs[(chan & ~NCNAN) - 1]; } +//-- expr() data types -- each type is different bit so can represent groups of types and test with 'and'. Data type USI. +#define TYSI 0x01 // 16-bit integer (or BOOlean) +#define TYFL 0x02 // float +#define TYNUM (TYSI|TYFL) // "any numeric data type" (test by and'ing) +#define TYSTR 0x04 // string +#define TYFLSTR (TYFL|TYSTR) // number (as float) or string, known at compile time. for CSE reportCol.colVal. +#define TYID 0x08 // id: string; quotes implied around non-reserved identifier (for record names) at outer level +#define TYCH 0x10 // choice (DTxxx must also be given): string or id, conv to 16/32 bit choicb/choicn value +#define TYNC (TYFL|TYCH) // number (float) or specified 32 bit choicn choice, not necess known til runtime. +// TYDOY day of year: def in cul.h; given to cuparse.cpp as TYSI, 2-91. +// 0x20-0x80 reserved for expansion of above +#define TYANY 0x1f // any value ok: 'or' of all of above +// TYLLI 0x100 not used in cuparse: exman.cpp changes to TYSI. +#define TYNONE 0x200 // no value (start of (sub)expression) +#define TYDONE 0x400 // complete statement: no value on run stack +// CAUTION 0xf000 bits used in cul.h + +//-- exman.cpp:exPile data types -- +#define TYLLI 0x100 // limited long integer: 16 bit value in 32 bit storage to support nan-flagging +//TYSI CAUTION cannot hold nan-flags, use TYLLI (with LI storage!) +// everywhere exman's runtime expressions are to be supported +//TYSTR TYID TYFL TYCH TYNC as above +// not used in exman.cpp: TYNUM, TYANY, TYNONE, ? TYDONE. + + /////////////////////////////////////////////////////////////////////////////// // UNITS @@ -145,11 +170,21 @@ extern SRD sRd[]; /* null-terminated array of SRD, generated by rcdef.exe. struct VALNDT { - void* val; - USI ty; - - bool IsString() const; - + void* vt_val; + USI vt_ty; + + bool vt_IsString() const + { + bool isString = vt_ty == TYSTR || vt_ty == DTCULSTR; +#if defined( DEBUG) + if (!isString && vt_ty != 0 && vt_ty != TYFL) + printf("\nvt_IsString: unexpected vt_ty %d", vt_ty); +#endif + return isString; + } + bool vt_IsNANDLE() const { return ISNANDLE(vt_val); } + void vt_ReleaseIfString(); + void vt_FixAfterCopyIfString(); }; #endif // ifndef SRD_H at start file diff --git a/src/strpak.cpp b/src/strpak.cpp index 6caa59238..75db70012 100644 --- a/src/strpak.cpp +++ b/src/strpak.cpp @@ -183,19 +183,19 @@ void CULSTR::us_Alloc() // allocate } } // CULSTR::us_Alloc //----------------------------------------------------------------------------- -void CULSTR::Release() // set +void CULSTR::Release() // release string +// revert CULSTR to empty state { - if (!us_hCulStr || IsNANDLE()) - return; + if (us_hCulStr != 0 && !IsNANDLE()) + { CULSTREL& el = us_GetCULSTREL(); - CULSTREL& el = us_GetCULSTREL(); + // string pointer: do not free (memory will be reused) + if (el.usl_status == CULSTREL::uslOTHER) + el.usl_str = nullptr; // but maybe set null - // string pointer: do not free (memory will be reused) - if (el.usl_status == CULSTREL::uslOTHER) - el.usl_str = nullptr; // but maybe set null - - el.usl_freeChainNext = us_freeChainHead; - us_freeChainHead = us_hCulStr; + el.usl_freeChainNext = us_freeChainHead; + us_freeChainHead = us_hCulStr; + } us_hCulStr = 0; diff --git a/src/strpak.h b/src/strpak.h index 0b1008871..9321be043 100644 --- a/src/strpak.h +++ b/src/strpak.h @@ -57,6 +57,11 @@ struct CULSTR }; // struct CULSTR +inline CULSTR& AsCULSTR(void* p) +{ + return *(reinterpret_cast(p)); +} + /////////////////////////////////////////////////////////////////////////// // public fcns From 544bf8dae8476314ae1c45558ae04dfb1fff9483 Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Mon, 20 Mar 2023 10:25:19 -0400 Subject: [PATCH 14/25] Destructor rework --- src/cncult4.cpp | 1 - src/cuparse.cpp | 11 ++++++----- src/srd.h | 6 ++++++ 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/src/cncult4.cpp b/src/cncult4.cpp index 81e795a44..17edcd39a 100644 --- a/src/cncult4.cpp +++ b/src/cncult4.cpp @@ -1378,7 +1378,6 @@ COL::COL( basAnc* b, TI i, SI noZ /*=0*/) //----------------------------------------------------------------------------- COL::~COL() { - colVal.vt_ReleaseIfString(); } // COL::~COL //----------------------------------------------------------------------------- /*virtual*/ void COL::Copy( const record* pSrc, int options/*=0*/) diff --git a/src/cuparse.cpp b/src/cuparse.cpp index 4c20ac60a..cc3275f25 100644 --- a/src/cuparse.cpp +++ b/src/cuparse.cpp @@ -1078,7 +1078,7 @@ RC FC exOrk( // compile expression from current input file, return constant valu er: // Eer macro comes here on non-RCOK fcn return isK = 1; // say is constant (ret *pisK) if (gotTy==TYSTR) // gotTy init to wanTy above - v = (ULI)""; // for string return null string + v = (ULI)""; // for string return null string else v = 0L; // for float or int return zero // ip = NULL preset above. gotEvf=0 init. @@ -1174,7 +1174,8 @@ RC FC expTy( //---- parse/compile (sub)expression ---- - if (wanTy & TYID) wanTy |= TYSTR; // if "ID" requested be sure string accepted + if (wanTy & TYID) // if "ID" requested be sure string accepted + wanTy |= TYSTR; EE( expr( toprec, wanTy, tx, aN)) // parse/compile to given precedence. only call to expr 10-90. // EE (cuparsex.h) restores variables and returns on error. gotTy = parSp->ty; // data type found @@ -1197,7 +1198,9 @@ RC FC expTy( //---- type conversions I, driven by wanTy ---- - if (wanTy & TYID) wanTy = (wanTy &~TYID) | TYSTR; // TYSTR is correct return type for TYID request; fudge wanTy. + if (wanTy & TYID) + wanTy = (wanTy &~TYID) | TYSTR; // TYSTR is correct return type for TYID request; fudge wanTy. + // note original wanTy is in cWanTy. switch (wanTy) { @@ -1391,8 +1394,6 @@ x ERREX(expTy) #endif } // expTy -// #pragma option -N // stack check on for expr only (3-92 after PSSZ 1000->4000) - //========================================================================== LOCAL RC expr( // parse/compile inner recursive fcn SI toprec, // precedence to parse to: terminator, operator, etc. diff --git a/src/srd.h b/src/srd.h index ce873797b..89f796c6a 100644 --- a/src/srd.h +++ b/src/srd.h @@ -173,6 +173,12 @@ struct VALNDT void* vt_val; USI vt_ty; + VALNDT() : vt_ty(0), vt_val(nullptr) {} + ~VALNDT() + { + vt_ReleaseIfString(); + } + bool vt_IsString() const { bool isString = vt_ty == TYSTR || vt_ty == DTCULSTR; From 049e63223a26ec66a1ff0dfecae74c56fb25d1de Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Wed, 22 Mar 2023 14:25:49 -0400 Subject: [PATCH 15/25] CULSTR natvis; debug progress --- src/cueval.cpp | 10 +++++++++- src/cueval.h | 4 ++++ src/culstr.natvis | 11 +++++++++++ src/cuparse.cpp | 24 ++++++++++++++++-------- src/cuprobe.cpp | 25 +++---------------------- src/srd.h | 2 +- 6 files changed, 44 insertions(+), 32 deletions(-) create mode 100644 src/culstr.natvis diff --git a/src/cueval.cpp b/src/cueval.cpp index e2442bf18..901b7a1e3 100644 --- a/src/cueval.cpp +++ b/src/cueval.cpp @@ -286,10 +286,13 @@ made things worse TODO (MP) case PSKON4: *--SPL = *IPL++; break; // 4 bytes + +#if defined( USE_PSPKONN) case PSPKONN: // PSPKONN nwords literal: load ptr to inline const *--SPP = (char *)(IPOP + 1); // push ptr to literal IPOP += (~*(SI *)IPOP) + 1; // evIp: pass ~nwords & lit. break; // ... (SI *) so 32-bit version sign-extends b4 ~. +#endif //--- load constants or variables from memory locations case PSLOD2: @@ -1264,7 +1267,12 @@ static inline bool IsDM( DMP p) // return nz iff string block "looks like" it i // in bytes, which will have 0's in hi bits of lo 16 bits for reasonable string lengths // (see dmpak.cpp; IMPLEMENTATION DEPENDENT). { - return (*((USI*)(p)-1) & 0xc000) != 0xc000; + bool isDM = (*((USI*)(p)-1) & 0xc000) != 0xc000; +#if !defined( USE_PSPKONN) + if (!isDM) + printf("\nUnexpected non-DM pointer %p", p); +#endif + return isDM; } // IsDM //---------------------------------------------------------------------------- RC FC cupfree( // free a dm string without disturbing a NANDLE or string constant in code diff --git a/src/cueval.h b/src/cueval.h index db76d8597..7d1924ab0 100644 --- a/src/cueval.h +++ b/src/cueval.h @@ -21,6 +21,8 @@ /////////////////////////////////////////////////////////////////////////////// // pseudo-code operation codes /////////////////////////////////////////////////////////////////////////////// +#undef USE_PSPKONN + enum PSOPE { PSNUL, // means "output no code" in cuparse.c PSEND, // done - ends pseudo-code string @@ -28,8 +30,10 @@ PSEND, // done - ends pseudo-code string // load constants from following pseudo-code bytes PSKON2, // 2 bytes: eg SI PSKON4, // 4 bytes: float, or possibly a pointer +#if defined( USE_PSPKONN) PSPKONN, // load pointer to inline literal such as "text". // followed by ~#words (excl self) and the literal. +#endif // load values from memory locations, address in next 4 pseudo-code bytes PSLOD2, // 2 bytes diff --git a/src/culstr.natvis b/src/culstr.natvis new file mode 100644 index 000000000..b0635792e --- /dev/null +++ b/src/culstr.natvis @@ -0,0 +1,11 @@ + + + + {us_hCulStr} {us_vectCULSTREL[us_hCulStr].usl_str,s} + nandle + + us_hCulStr + us_vectCULSTREL[us_hCulStr].usl_str,s + + + \ No newline at end of file diff --git a/src/cuparse.cpp b/src/cuparse.cpp index cc3275f25..89a70a698 100644 --- a/src/cuparse.cpp +++ b/src/cuparse.cpp @@ -3394,6 +3394,7 @@ LOCAL SI FC isKE( // test if *parSp is a constant expression break; case TYSTR: +#if defined( USE_PSPKONN) if (*parSp->psp1==PSPKONN) { kop = *parSp->psp1; @@ -3401,6 +3402,7 @@ LOCAL SI FC isKE( // test if *parSp is a constant expression break; } // else is load using pointer. fall thru. /*lint -e616 */ +#endif case TYFL: kop = PSKON4; // op code szkon = sizeof(PSOP) + sizeof(float); @@ -3424,12 +3426,14 @@ LOCAL SI FC isKE( // test if *parSp is a constant expression if (*parSp->psp1==kop) // if op code already constant-load { if (ppv) // if not NULL, tell caller +#if defined( USE_PSPKONN) if (kop==PSPKONN) // string inline in code { p = (char *)(parSp->psp1 + 2); // is after op code & length *ppv = &p; // indirect like cuEvalR() } - else // other types [or sting ptr in code] + else // other types [or string ptr in code] +#endif *ppv = parSp->psp1 + 1; // point to value after op code return 1; // constant, but nothing to convert } @@ -3589,6 +3593,7 @@ LOCAL RC FC cnvPrevSf( // append (conversion) operation to ith previous express if (op1==PSSCH && op2) // if request for string-choice conversion { PSOP* psp1 = parSpe->psp1; // point start of frame +#if defined( USE_PSPKONN) if (*psp1==PSPKONN) // else not string constant { USI slen = ~*(psp1+1); // number of WORDS following PSPKONN and self, stored 1's complemented @@ -3615,6 +3620,7 @@ LOCAL RC FC cnvPrevSf( // append (conversion) operation to ith previous express } } +#endif } // if any conditions false, fallthru emits runtime conversion of general string value to choice value // make space to add codes if needed @@ -3903,10 +3909,8 @@ RC CDEC emiKon( // emit code to load constant // (if this does not work out, have caller give size in inDm arg, 2-92) { ERVARS1 -#ifndef EMIKONFIX - char *p1, *q; -#else -* static char **p1; char *q; +#ifdef EMIKONFIX +* static char **p1; #endif ERSAVE @@ -3928,6 +3932,7 @@ RC CDEC emiKon( // emit code to load constant break; case TYSTR: +#if defined( USE_PSPKONN) if (inDm==0) // string inline { // pseudoCode: PSPKONN ~nwords text @@ -3938,7 +3943,7 @@ RC CDEC emiKon( // emit code to load constant EE( emit( PSPKONN) ) EE( emit(~(((PSOP)strlen(*(char **)p)+1+1)/sizeof(PSOP))) ) #ifndef EMIKONFIX - p1 = (char *)psp; // where text will be + char* p1 = (char *)psp; // where text will be #else//to fix apparent konstize bug * p1 = (char **)&psp; // ptr to ptr to where text will be #endif @@ -3948,12 +3953,15 @@ RC CDEC emiKon( // emit code to load constant break; } else if (inDm==2) // copy string to dm +#endif { - q = strsave(*(char **)p); // and fall thru + if (inDm != 0) + printf("\ninDm = %d", inDm); + char* q = strsave(*(char **)p); // and fall thru p = &q; } // else if inDm==1, use given p and fall thru - /*lint -e616 case falls in*/ + [[fallthrough]]; case TYFL: fourBytes: EE( emit(PSKON4) ) diff --git a/src/cuprobe.cpp b/src/cuprobe.cpp index b639524cd..211ff77d7 100644 --- a/src/cuprobe.cpp +++ b/src/cuprobe.cpp @@ -264,10 +264,6 @@ LOCAL RC FC findMember( PROBEOBJECT *o) // parse and look up probe member name i // returns: non-RCOK if error, message already issued. { - USI l; // length of token now being matched - USI m; // # chars matched by preceding tokens in multitoken member 'name' - char c; // after matching a token, next char to match in fir table member name - // get (first token of) member name. Allow duplication of reserved words. toke(); // 1st token of name @@ -279,11 +275,11 @@ LOCAL RC FC findMember( PROBEOBJECT *o) // parse and look up probe member name i o->inF = o->inB ? o->inB->fir : NULL; // search pointers into fields-in-records tables o->runF = o->runB ? o->runB->fir : NULL; // .. of the rats found above. - m = 0; // # chars matched by preceding tokens in multitoken member name + int m = 0; // # chars matched by preceding tokens in multitoken member name for ( ; ; ) // loop over input tokens until break or error return { SFIR *f1 = nullptr; // fir entry for which preceding m chars match - l = (USI)strlen(cuToktx); // length of the token to match now + int l = strlenInt(cuToktx); // length of the token to match now // search for input & run fir entries that match current token, and any preceding input tokens (m chars) @@ -354,7 +350,7 @@ LOCAL RC FC findMember( PROBEOBJECT *o) // parse and look up probe member name i //" match algorithm (cuprobe.cpp:findMember()) enhanced.", o->what, MNAME(o->inF), MNAME(o->runF) ); - c = o->inB ? MNAME(o->inF)[m] : MNAME(o->runF)[m]; // next char to match: \0, . [ ] digit alpha _ + char c = o->inB ? MNAME(o->inF)[m] : MNAME(o->runF)[m]; // next char to match: \0, . [ ] digit alpha _ if (c=='\0') // if end of member name in fir table break; // done! complete matching entry found. leave "for ( ; ; )". @@ -546,21 +542,6 @@ LOCAL RC FC tryImInProbe( PROBEOBJECT *o) return RCOK; // ok immediate probe to previously set expression input value // another good return and several error returns above. } // tryImInProbe - -#if 0 // reference comments, can delete -x//========================================================================== -x /* record data access operations, 12-91. move up at reorder? */ -x #define PSRATRN 103 // rat record by number: ratN inline, number on stack, leaves record address on stack -x #define PSRATRS 104 // rat record by name: ratN inline, string on stack, leaves record address on stack -x // following rat loads all add offset of fld # in next 2 bytes to record address on stack. ARE THEY ALL NEEDED? -x #define PSRATLOD2 107 // rat load 2 bytes: fetches SI/USI. -x #define PSRATLOD4 108 // rat load 4 bytes: fetches float/LI/ULI. -x #define PSRATLODD 109 // rat load double: converts it float. -x #define PSRATLODD 110 // rat load long: converts it float. -x #define PSRATLODA 111 // rat load char array (eg ANAME): makes dm copy, leaves ptr in stack -x #define PSRATLODS 112 // rat load string: loads char * from record, duplicates. -#endif - //========================================================================== LOCAL RC FC lopNty4dt( // for DT- data type, get TY- type and PSOP to load it from a record of a basAnc diff --git a/src/srd.h b/src/srd.h index 89f796c6a..4925e1e98 100644 --- a/src/srd.h +++ b/src/srd.h @@ -184,7 +184,7 @@ struct VALNDT bool isString = vt_ty == TYSTR || vt_ty == DTCULSTR; #if defined( DEBUG) if (!isString && vt_ty != 0 && vt_ty != TYFL) - printf("\nvt_IsString: unexpected vt_ty %d", vt_ty); + printf("\nvt_IsString: unexpected vt_ty=%d vt_val=%x", vt_ty, (unsigned int)(vt_val)); #endif return isString; } From 4037cbb375fd4eb3630c60d3c3c61c100b51b9eb Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Sun, 26 Mar 2023 16:19:19 -0400 Subject: [PATCH 16/25] CULSTR progress --- .gitignore | 2 + src/RCDEF/rcdef.cpp | 6 +- src/cueval.cpp | 43 +- src/cul.cpp | 8 +- src/cuparse.cpp | 146 +----- src/cuparsex.h | 2 +- src/cuprobe.cpp | 33 +- src/exman.cpp | 1111 ++++++++++++++++++++++++------------------- src/srd.h | 2 + src/strpak.cpp | 13 +- src/strpak.h | 126 ++--- 11 files changed, 786 insertions(+), 706 deletions(-) diff --git a/.gitignore b/.gitignore index 091fe3bfe..080bd06a7 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,8 @@ /test/error_handling/*.spl # !/test/*.exe see below +test2/ + # User-specific files *.suo *.user diff --git a/src/RCDEF/rcdef.cpp b/src/RCDEF/rcdef.cpp index da4fab5dd..6489886fb 100644 --- a/src/RCDEF/rcdef.cpp +++ b/src/RCDEF/rcdef.cpp @@ -2280,9 +2280,9 @@ LOCAL void base_fds() { // name fdTyNam efv ff // -------- --------- ------- ------ - { "name", "ANAME", 0, 0 }, // record name, constant, visible. - { "ownTi", "TI", EVEOI, FFHIDE }, // owning record index, *i, *hide. - { 0, 0, 0, 0 } + { "name", "CULSTR", 0, 0 }, // record name, constant, visible. + { "ownTi", "TI", EVEOI, FFHIDE }, // owning record index, *i, *hide. + { 0, 0, 0, 0 } }; diff --git a/src/cueval.cpp b/src/cueval.cpp index 901b7a1e3..503f7f354 100644 --- a/src/cueval.cpp +++ b/src/cueval.cpp @@ -147,10 +147,10 @@ RC FC cuEvalR( // evaluate pseudocode & return ptr to value void *ip, // ptr to code to evaluate - void **ppv, /* receives ptr to value (ptr to ptr to TYSTR). - Caller must know value type/size. - Value must be moved before next call to any eval fcn. - For TYSTR, value may be ptr to text INLINE IN CODE. */ + void **ppv, // receives ptr to value (ptr to ptr to TYSTR). + // Caller must know value type/size. + // Value must be moved before next call to any eval fcn. + // For TYSTR, value may be ptr to text INLINE IN CODE. */ const char **pmsg, // NULL or receives ptr to un-issued Tmpstr error msg. // CAUTION: msg is in transitory temp string storage: use or strsave promptly. USI *pBadH ) // NULL or receives 0 or expr # of uneval'd expr when RCUNSET is returned. @@ -167,7 +167,7 @@ RC FC cuEvalR( // evaluate pseudocode & return ptr to value rc = cuEval( ip, pmsg, pBadH); // evaluate to *evStk if (ppv != NULL) // return pointer to value in eval stack - *ppv = evSp; // for TYSTR, stack contains ptr. + *ppv = evSp; if (rc==RCOK) // if ok, check size of value: devel aid { // remove if other sizes become possible @@ -255,6 +255,8 @@ LOCAL RC FC cuEvalI( printif( runtrace, " ip=0x%x sp=%d op=%d ", (ULI)evIp, evSp, op); + void* p = 0; + //--- execute pseudo-code --- switch (op) { @@ -265,11 +267,13 @@ LOCAL RC FC cuEvalI( USI h; void* tIp; void* tSp; +#if 0 #if 0 && defined( ND3264) made things worse TODO (MP) NANDAT p; #else void *p; +#endif #endif BP b; record *e; @@ -838,7 +842,7 @@ made things worse TODO (MP) b = basAnc::anc4n( *IPU++, PABT); // get inline anchor number, point basAnc (ancrec.cpp) defO = *IPI++; // get 0 or default owner subscript for ambiquity resolution p = *SPP; // get ptr to name string from stack. no pop: will overwrite. - const char* pName = strTrim( (char *)p); // trim in place (added 7-3-2013) + const char* pName = strTrim( (char *)p); // trim in place if (defO // if defO given (owning input record subscript) && b->ownB ) // if owning-basAnc pointer set in probed basAnc (should be set in run rat // only if subscripts in owning run rat match input subscripts) @@ -855,7 +859,7 @@ made things worse TODO (MP) (char *)b->what, pName ); goto breakbreak; } - cupfree( DMPP( p)); // free dm for consumed string, if not ptr into pseudoCode + // ?? cupfree( DMPP( p)); // free dm for consumed string, if not ptr into pseudoCode } break; @@ -883,9 +887,10 @@ w case PSRATLOD1S: POINT; *--SPI = (SI)*(CH*)v; break; // 1 byte, extend sign break; /*lint +e70 */ // add UNSET ck if need found. case PSRATLODA: POINT; - *--SPP = strsave((char *)v); + *--SPP = AsCULSTR(v).Strsave(); break; // char[], eg ANAME: put in dm. NAN not expected. - case PSRATLODS: + case PSRATLODS: // CULSTR: copy to DM, 4 byte pointer +#if 0 // cuRmGet now handles CULSTR if ((rc = cuRmGet(&p,&ms,pBadH)) != RCOK) // char *. 1st fetch/check/fix 4 bytes. goto breakbreak; // if unset data or uneval'd expr, ms set. if (p) @@ -894,6 +899,7 @@ w case PSRATLOD1S: POINT; *--SPI = (SI)*(CH*)v; break; // 1 byte, extend sign p = strsave(""); // supply dm "" for NULL pointer *--SPP = p; // stack pointer break; +#endif case PSRATLOD4: if ((rc = cuRmGet(&p,&ms,pBadH)) != RCOK) // 4 bytes: float/LI/ULI. 1st fetch/check/fix 4 bytes. goto breakbreak; // if unset data or uneval'd expr, ms set. @@ -1054,7 +1060,10 @@ w case PSRATLOD1S: POINT; *--SPI = (SI)*(CH*)v; break; // 1 byte, extend sign #ifdef PROBE // features that depend especially on being linked in CSE environmemt //============================================================================ // is it time to put cuEvalI ms and pBadH in file-globals? -LOCAL RC FC cuRmGet( void **pv, const char** pms, USI *pBadH) +LOCAL RC FC cuRmGet( + void **pv, // point to value + const char** pms, + USI *pBadH) // access 4-byte record member, for cuEvalI, with unset check and expr fix. @@ -1067,7 +1076,7 @@ LOCAL RC FC cuRmGet( void **pv, const char** pms, USI *pBadH) // return value is RCUNSET if un-evaluated expression is referenced, with its expr # or 0 in *pBadH. { record *e = (record *)*SPP++; // get record ptr from eval stack. e->b is its basAnc. - SFIR *fir = e->b->fir + *IPU++; // get inline field ptr, point to fields-in-record entry for field + SFIR* fir = e->b->fir + *IPU++; // get inline field ptr, point to fields-in-record entry for field //USI off = fir->off; how to get member offset from fields-in-record table //USI evf = fir.evf; how to get field variation (evaluation frequency) bits @@ -1148,7 +1157,17 @@ LOCAL RC FC cuRmGet( void **pv, const char** pms, USI *pBadH) } } } - *(NANDAT *)pv = v; +#if 1 + if (fir->sfi_GetDT() == DTCULSTR) + CopyCULSTR(pv, &v); + else + *(NANDAT*)pv = v; +#else + if (fir->sfi_GetDT() == DTCULSTR) + *(const char**)pv = AsCULSTR(&v).Strsave(); + else + *(NANDAT *)pv = v; +#endif #else void* v = *(void**)((char*)e + fir->off); // fetch 4-byte value from record at offset if (ISNANDLE(v)) diff --git a/src/cul.cpp b/src/cul.cpp index a83cd54da..acf73bc0d 100644 --- a/src/cul.cpp +++ b/src/cul.cpp @@ -1471,7 +1471,7 @@ LOCAL RC FC nuCult( if (lity) { - // duplicate dm data in like/usetype copy + // duplicate string like/usetype copy if ( c->cu_IsString(p)) // if string datum { @@ -2637,9 +2637,9 @@ LOCAL RC ganame( // get identifier, quoted text, or const string expr, or optional special word, for an object name, and terminator - USI f, // flag bits: SUM_OK: accept "sum" (returns RC_SUM); ALL_OK, [ELECTRIC_OK,] etc likewise (see xpr). - const char* what, // text for errmsgs (eg ttTx) or NULL for xSp->c->id - CULSTR& cs) // receives string (or NANDLE) + USI f, // flag bits: SUM_OK: accept "sum" (returns RC_SUM); ALL_OK, [ELECTRIC_OK,] etc likewise (see xpr). + const char* what, // text for errmsgs (eg ttTx) or NULL for xSp->c->id + CULSTR& cs) // receives string (or NANDLE) // also uses: if 'what' is NULL: xSp->c->id (re compile errMsgs) // returns: RCOK: normal success, tokTy = CUTCOM if comma followed it and f & ARRAY on. diff --git a/src/cuparse.cpp b/src/cuparse.cpp index 89a70a698..183b7138b 100644 --- a/src/cuparse.cpp +++ b/src/cuparse.cpp @@ -142,11 +142,11 @@ to elinate user problems with 2/3 = 0 (integer divide) and 2400*300 = 6464 (trun /*------------------------ OPERATOR TABLE DATA -------------------------*/ -/* This table drives two parsers: - preprocessor parser in ppCex.cpp, and compiler parser in cuparse.cpp. - subscript is token type (defines in cutok.h) - as returned by cutok.cpp:cuTok() and refined by cuparse.cpp:toke(), - or returned by ppTok.cpp:ppTok() and refined by ppCex:ppToke(). */ +// This table drives two parsers: +// preprocessor parser in ppCex.cpp, and compiler parser in cuparse.cpp. +// subscript is token type (defines in cutok.h) +// as returned by cutok.cpp:cuTok() and refined by cuparse.cpp:toke(), +// or returned by ppTok.cpp:ppTok() and refined by ppCex:ppToke(). //struct OPTBL //{ SI prec; /* (left) precedence: determines order of operations */ // SI cs; /* case: CSBIN CSUNN CSGRP (types) */ @@ -711,7 +711,9 @@ LOCAL RC FC emiSto( SI dup1st, void *p); LOCAL RC FC emiDup( void); LOCAL RC FC emiPop( void); LOCAL RC FC emit4( void **p); +#if 0 LOCAL RC FC emitStr( char *s); +#endif LOCAL RC FC emiBufFull( void); LOCAL SI FC tokeTest( SI tokTyPar); LOCAL SI FC tokeIf2( SI tokTy1, SI tokTy2); @@ -1152,14 +1154,13 @@ RC FC finPile( USI *pCodeSize) //========================================================================== RC FC expTy( SI toprec, - USI wanTy, /* desired type. see exOrk() above for list of externally originated types. - addl internally originated type combinations incl at least TYNUM and TYANY&~TYSI, 2-95. */ + USI wanTy, // desired type. see exOrk() above for list of externally originated types. + // addl internally originated type combinations incl at least TYNUM and TYANY&~TYSI const char* tx, SI aN ) -/* parse/compile expression/statement of given type to current destination, - - including resultant type check and conversions */ +// parse/compile expression/statement of given type to current destination, +// including resultant type check and conversions */ // tx: NULL or text of verb/operator, for "after 'xxx'" in error messages // aN: 0 or fcn arg number, for error messages @@ -1186,9 +1187,9 @@ RC FC expTy( case TYSI: case TYFL: case TYSTR: - case TYCH: // single-bit valid expression return values - case TYNC: // the only multi-bit valid expr return (runtime distinguished) - break; // ok + case TYCH: // single-bit valid expression return values + case TYNC: // the only multi-bit valid expr return (runtime distinguished) + break; // ok // types valid in calls only: TYID (returns TYSTR). combinations: TYFLSTR TYNUM TYANY and any combo. default: @@ -1280,118 +1281,6 @@ RC FC expTy( return RCOK; ERREX(expTy) - -#if 0 // replaced above; many unrun additions shown; 2-92 -x -x //---- type convert ---- -x switch (wanTy) -x { -x case TYDONE: // complete statement requested -x if (gotTy==TYDONE) -x break; // complete statement found, ok. -x if (gotTy==TYNONE) // insurance. suspect not possible. -x goto defall; // nothing found, go mesage -x /* Expression only was found where a statement was expected. -x To disallow, issue error message here (eg use default case). */ -x EE( emiPop() ) /* Emit additional code to discard any value left on run stack. -x Also changes parSp->ty to TYDONE, and messages if -x no (nested) store nor side effect in expression. */ -x break; -x -x case TYANY: // accept any type value -x if (gotTy & TYANY) // if any value -x break; // ok -x goto sayMsg; // err if TYDONE or TYNONE -x -x case TYNUM: // any numeric data type -x convCh2float: // TYFL joins here if TYNC (TYFL|TYCH) -x if (gotTy==TYNC) // if got a number-choice -x { EE( cnvPrevSf( 0, PSNCH, 0)) // 'convert' to number, ie error if choice -x parSp->ty = TYFL; // now have a float (or, for choice constant, EE macro took error exit) -x break; -x } -x if (gotTy & TYNUM) // if TYFL or TYSI. CAUTION shares TYFL bit with TYNC -x break; // ok -x goto sayMsg; // go issue message -x -x case TYID: // identifier (for record name) or string -x if (gotTy==TYSTR) // string expected (TYID just makes quotes optional) -x break; -x goto sayMsg; -x -x case TYNC: // number-choice type expected (ONLY runtime type determination permitted) -x //TYNC conversion notes to delete 2-92 -x // * any place expecting float, if it gets TYNC, must emit code to check for number at runtime -x // * any place expecting string, comment COULD convert TYCH -x // * [any place expecting choice ditto, but expect no such places]. -x if (gotTy==TYNC) // if got value that could be either (from conditional ?:, choose(), etc), -x break; // ok -x if (gotTy & TYNUM) // if got any numeric type -x goto conv2float; // go convert it to a float -x // fall thru -x case TYCH: // choice value desired. data type is in choiDt. -x //conv2choice: // TYNC joins here -x if (gotTy==TYCH) // if already is a choice value -x break; // done -x else if (gotTy != TYSTR) // choices are parsed as strings, we add lookup/conversion here. -x goto sayMsg; // other type is error -x EE( cnvPrevSf( 0, PSSCH, choiDt)) // convert string to choice value, now if string is just a constant. -x parSp->ty = TYCH; // type is now "choice". NB 2 or 4 bytes per bits in choiDt. -x break; // if constant string, konstize below will immediately convert/issue error. -x -x case TYFLSTR: // float or string requested. 11-91, for use in REPORTCOL. -x if (gotTy==TYSTR) break; // if got string, ok -x // accept float, float integer, else error -x // fall thru -x case TYFL: // float requested -x if (gotTy==TYNC) // if got a number-choice -x goto convCh2float; // go convert to float (ie error if choice), now or at runtime -x conv2float: // TYNC joins here -x if (gotTy==TYSI) // if got an integer -x { EE( emit(PSFLOAT) ) // convert to float. konstize below converts if constant. -x parSp->ty = TYFL; // now have a float -x break; // is ok -x } -x goto defall; // else go check for float -x -x case TYSTR|TYSI: // integer or string, e.g. from probe, 12-91. -x if (gotTy==TYSTR) break; -x // fall thru -x case TYSI: // integer requested -x // (poss exception for integral float constant: fix it) -x // (if so, also convert TYNC's if numeric to int, a la PSNCN) -x // fall thru -x case TYSTR: // string requested -x // (COULD convert TYCH's back to strings... wait for very clear need 2-92) -x // fall thru -x default: // unrecog (datyTx messages) -x defall: -x if ( !(gotTy & wanTy) // no requested type obtained? -x || gotTy &~wanTy ) // unrequested type (bit) obtained (as TYNC for TYFL -- insurance) -x { -x sayMsg: -x #if 0 // good -x x rc = perNx( "%s expected%s", datyTx(wanTy), after(tx,aN)); -x #else // 2-92 explain possibly obscure ones more at least while debugging parser changes -x char *got = ""; -x if ((gotTy & (TYNC))==TYNC) // TYNC is both TYCH and TYFL bits -x got = ", found number/choice value"; // extra explanation: error might be obscure -x else if (gotTy & TYCH) -x got = ", found choice value"; -x rc = perNx( "%s expected%s%s", datyTx(wanTy), after(tx,aN), got); -x #endif -x goto er; // (in ERREX macro) -x } -x break; -x} -x -x //---- evaluate constant expressions now -x EE( konstize( NULL, NULL, 0) ) // new 10-10-90 -- suspicious. -x -x printif( trace," expTyOk "); -x return RCOK; -x ERREX(expTy) -#endif } // expTy //========================================================================== @@ -3254,7 +3143,8 @@ RC FC konstize( // if possible, evaluate current (sub)expression (parSp) now an // 2-91: why didn't it perNx on cueval error (place noted below)? { - ERVARS1 void *p; + ERVARS1 + void* p = NULL; char *q=NULL; const char* ms; SI isK = 0; @@ -4100,7 +3990,7 @@ RC FC emit( PSOP op) // emit a pseudo-code if non-0 // keeps code terminated (without pointing past terminator) // maintains current stack frame .psp2 -// to emit place holder PSNOPs, use cnvPrevSf -- or add parSp->nNops++ here -- 10-95. +// to emit place holder PSNOPs, use cnvPrevSf -- or add parSp->nNops++ here // returns non-0 if out of code output space { @@ -4141,6 +4031,7 @@ LOCAL RC FC emit4( void **p) // emit 4-byte quantity POINTED TO by p: float or p return RCOK; } // emit4 //========================================================================== +#if 0 LOCAL RC FC emitStr( char *s) // emit string in pseudo-code stream. pad to whole # words. { USI l; RC rc; @@ -4166,6 +4057,7 @@ LOCAL RC FC emitStr( char *s) // emit string in pseudo-code stream. pad to whol } return RCOK; } // emitStr +#endif //========================================================================== LOCAL RC FC emiBufFull( void) // pseudo-code buffer full handler diff --git a/src/cuparsex.h b/src/cuparsex.h index ed59081ef..dd21c8764 100644 --- a/src/cuparsex.h +++ b/src/cuparsex.h @@ -77,6 +77,6 @@ SI FC tokeNot( SI tokTyPar); SI FC tokeIf( SI tokTyPar); // cuprobe.cpp -RC FC probe( void); +RC FC probe(); // end of cuparsex.h diff --git a/src/cuprobe.cpp b/src/cuprobe.cpp index 211ff77d7..ca6609d5e 100644 --- a/src/cuprobe.cpp +++ b/src/cuprobe.cpp @@ -43,6 +43,8 @@ struct PROBEOBJECT // info probe() shares with callees: pass single pointer SI ssIsK; // non-0 if record subscript is constant void * pSsV; // pointer to subscript value USI sz, dt, ty; // size, cu TY- type, and DT- data type, of probed field(s) + + PROBEOBJECT() { memset(this, 0, sizeof(PROBEOBJECT)); } }; /*----------------------- LOCAL FUNCTION DECLARATIONS ---------------------*/ @@ -60,26 +62,15 @@ RC FC probe() // syntax: @ [ ] . { - PROBEOBJECT o; // contains local variables passed to callees. CAUTION: recursion possible, don't use statics. - - USI inDt = 0,runDt = 0; - PSOP lop; - char *errSub; - BP b; - SFIR * f; - USI fn, minEvf; - RC rc; - - o.inB = o.runB = 0; - o.inFn = o.runFn = 0; // initialize variables - - + // get class name (basAnc 'what') and find input and/or run basAnc toke(); // get token if (!isWord) // accept any word even if predefined or reserved return perNx( (char *)MH_U0001); // "U0001: Expected word for class name after '@'" + BP b = nullptr; + PROBEOBJECT o; // contains local variables passed to callees. CAUTION: recursion possible, don't use statics. for (size_t ancN = 0; basAnc::ancNext( ancN, &b ); ) // loop 'registered' record anchors using ancrec.cpp fcn { if (b->ba_flags & RFTYS) // if a "types" basAnc @@ -104,6 +95,7 @@ RC FC probe() // parse & emit record identifier in []'s: unquoted identifier, string name expression, numeric subscript expression b = o.inB ? o.inB : o.runB; // single pointer to base of (one of) the basAnc(s) found + RC rc = RCOK; // used in CSE_E if (tokeIf(CUTLB)) // get token / if [ next (else unget the token) (cuparse.cpp) { CSE_E( expTy( PRRGR, TYSI|TYID, "className[", 0) ) // compile integer or string expr to new stk frame. @@ -144,12 +136,12 @@ RC FC probe() return RCBAD; // ... sets o.inF and/or o.runF; clears o.inB/o.runB if input does not match. // if here, have match in one OR BOTH tables. - f = o.inB ? o.inF : o.runF; // single nonNULL pointer to a fir entry + SFIR* f = o.inB ? o.inF : o.runF; // single nonNULL pointer to a fir entry o.mName = MNAME(f); // point member name text for many errMsgs. srd.h macro may access special segment. // determine DT___ and TY___ data types, and size of type - + USI inDt = 0, runDt = 0; if (o.inB) inDt = sFdtab[o.inF->fdTy].dtype; // fetch recdef DT_____ data type for input record member if (o.runB) runDt = sFdtab[o.runF->fdTy].dtype; // ... run record member if (o.inB && o.runB && inDt != runDt) // error if inconsistent @@ -160,11 +152,12 @@ RC FC probe() o.what, o.mName, (INT)inDt, (INT)runDt ); o.dt = o.inB ? inDt : runDt; // get a single data type value + PSOP lop; + char* errSub; if (lopNty4dt( o.dt, &o.ty, &o.sz, &lop, &errSub)) // get ty, size, and instruction for dt, below / if bad return perNx( (char *)MH_U0008, // "U0007: %s member '%s' has %s data type (dt) %d" o.what, o.mName, errSub, (INT)o.dt ); - // decide probe method to use // nb giving input time probes priority assumes run member // with same name is not changed by program at run time. @@ -172,6 +165,8 @@ RC FC probe() // if possible, use a before-setup probe method: resolves value in input record: // EVEOI, b4 initial setup only, or EVFFAZ, also b4 re-setup for run after autosize, 6-95 + USI minEvf = 0; + USI fn = 0; if (o.inB // if have input record basAnc && !(o.inF->evf &~EVEOI) // if probed member has no rutime & no EVFFAZ variation && evfOk & EVEOI ) // if end-of-input time variation ok for expr being evaluated by caller @@ -197,8 +192,8 @@ RC FC probe() // else try immediate probe to input member -- only possible if member already set { - rc = tryImInProbe(&o); // below - if (rc != RCCANNOT) // unless cannot use this type of probe here but no error + rc = tryImInProbe(&o); // below + if (rc != RCCANNOT) // unless cannot use this type of probe here but no error return rc; // return to caller: success, done, or error, message issued // else compile runtime probe, to run basAnc else input basAnc. Caller expr will issue msg if its variability not ok. diff --git a/src/exman.cpp b/src/exman.cpp index 5781ebf07..c7cbcc2d3 100644 --- a/src/exman.cpp +++ b/src/exman.cpp @@ -69,10 +69,16 @@ depends on user caution to limit SI data stored in LI to 16 bits to insure data not looking like a NANDLE. */ + /*----------------------- LOCAL FUNCTION DECLARATIONS ---------------------*/ + // (expect to make some public as required) +LOCAL RC FC uniLim(USI fdTy, USI ty, void* p); +LOCAL RC FC extEntry(BP b, TI i, USI fn, USI* ph); +LOCAL RC FC extAdd(USI* ph); +LOCAL RC FC exEvUp(USI h, SI isEoi, SI silentUnset, USI* pBadH); +LOCAL const char* FC txVal(SI ty, void* p); -/*--------------------------- DEFINES and TYPES ---------------------------*/ -// see cnglob.h for: NANDLE, NANDAT, UNSET, EXN, ISUNSET, ISNANDLE +/*--------------------------- DEFINES and TYPES ---------------------------*/ #if 0 && defined( _DEBUG) #define EXTDUMP // define to enable debug printfs @@ -83,19 +89,32 @@ struct RECREF { - unsigned ancN; // anchor # (idx of record's basAnc) - unsigned i; // record subscript - unsigned o; // offset within record (TODO: why not fn?) + int rr_ancN; // anchor # (idx of record's basAnc) + int rr_i; // record subscript + int rr_o; // offset within record (TODO: why not fn?) #if defined( EXTDUMP) void dump() const; #endif -}; + RECREF() : rr_ancN(0), rr_i(0), rr_o(0) {} + RECREF(int ancN, int i, int o) + : rr_ancN(ancN), rr_i(i), rr_o(o) {} + const char* rr_What() const // error message insert describing given rat reference + { + return whatNio(rr_ancN, rr_i, rr_o); + } + NANDAT* rr_pRecRef() const; + BP rr_GetBP() const + { // return basAnc pointer or NULL + return basAnc::anc4n(rr_ancN, WRN); + } + +}; // struct RECREF /*---------- WHERE: identifies a static place or basAnc record member ----------*/ -/* used in Expression Table, to identify places to store expression - value and increment change flags each time value changes. */ +// used in Expression Table, to identify places to store expression +// value and increment change flags each time value changes #ifdef STATREF 0 typedef struct @@ -115,54 +134,395 @@ struct RECREF typedef RECREF WHERE; // use ancN - i - o struct above; combine into one type? #endif +NANDAT* RECREF::rr_pRecRef() const +// return NULL or pointer to rat member per RECREF +{ + BP b = rr_GetBP(); // access basAnc by # + if (b == 0) // if failed + return NULL; // (anc4n issued message) + if (b->ptr() == NULL) // if rat not ratCre'd (insurance) + return NULL; // (no msg) + if (rr_i > b->n) + { + err(PWRN, (char*)MH_E0106); // "exman.cpp:pRecRef: record subscript out of range" + return NULL; + } + return (NANDAT*)b->recMbr(rr_i, rr_o); // return pointer to record member +} // pRecRef + + +LOCAL RC addStore(int h, WHERE& w); /*---------- Expression Table ----------*/ +#define USEVECT + struct EXTAB // expression table (*exTab[i]) struct { - SI nx; // 0 or subscript of next entry in evaluation order (chain), -1 if deleted entry. - PSOP *ip; // ptr to pseudo-code dm block. PSOP: cueval.h/cnglob.h. (was void * b4 bcpp, 2-91) - USI evf; // evaluation frequency (EVF___ defines, cuevf.h) - USI useCl; // caller's use class bits for selective eval (EVBEGIVL - USI ty; // data type TYLLI/TYFL/TYSTR/[TYSI/]TYCH/TYNC, cuparse.h. - UCH fdTy; // (0 or) target field type (sFdtab[] subscript) 2-91 - UCH flags; // alignment filler / avail / future flags etc + SI ext_nx; // 0 or subscript of next entry in evaluation order (chain), -1 if deleted entry. + PSOP* ext_ip; // ptr to pseudo-code dm block. PSOP: cueval.h/cnglob.h. (was void * b4 bcpp, 2-91) + USI ext_evf; // evaluation frequency (EVF___ defines, cuevf.h) + USI ext_useCl; // caller's use class bits for selective eval (EVBEGIVL + USI ext_ty; // data type TYLLI/TYFL/TYSTR/[TYSI/]TYCH/TYNC, cuparse.h. + UCH ext_fdTy; // (0 or) target field type (sFdtab[] subscript) 2-91 + UCH ext_flags; // alignment filler / avail / future flags etc // original destination of expr, for runtime error msgs (see whatEx()): - SI srcIsType; // non-0 if a 'type' (see cul.cpp) + SI ext_srcIsType; // non-0 if a 'type' (see cul.cpp) // suspect can now 12-91 use b->ba_flags & RFTYS; must check cul.cpp carefully. - BP srcB; // baseAnc where expression originally input - TI srcI; // record subscript where input - SI srcFn; // field number where input - USI evfOk; // permitted evaluation frequency for this expression -- for possible future uses 12-91 - NANDAT v; // most recent value, or UNSET. [hi 0 for SI data]. - USI whValN; // number of locations to fill with value - USI whValNal; // allocated size of whVal[] - WHERE *whVal; // NULL or ptr to dm array of info about places to put value each time it changes - USI whChafN; // number of increment-on-change locations - USI whChafNal; // number of ditto allocated (size of whChaf[]) - WHERE *whChaf; // NULL or ptr to dm array of info about locations to ++ when value changes (Change flags) - - void extEfree(); + BP ext_srcB; // baseAnc where expression originally input + TI ext_srcI; // record subscript where input + SI ext_srcFn; // field number where input + USI ext_evfOk; // permitted evaluation frequency for this expression -- for possible future uses 12-91 + NANDAT ext_v; // most recent value, or UNSET. [hi 0 for SI data]. +#if defined( USEVECT) + // code assumes vectors are last + std::vector< WHERE> ext_whVal; // vector of info about places to put value each time it changes + std::vector< WHERE> ext_whChaf; // vector of info about locations to ++ when value changes (Change flags) +#else + USI ext_whValN; // number of locations to fill with value + USI ext_whValNal; // allocated size of whVal[] + WHERE* ext_whVal; // NULL or ptr to dm array of info about places to put value each time it changes + USI ext_whChafN; // number of increment-on-change locations + USI ext_whChafNal; // number of ditto allocated (size of whChaf[]) + WHERE* ext_whChaf; // NULL or ptr to dm array of info about locations to ++ when value changes (Change flags) +#endif + + EXTAB(); + ~EXTAB(); + EXTAB& ext_Copy(const EXTAB& src); + void ext_Efree(); + void ext_StoreValue() const; #if defined( EXTDUMP) void extDump1() const; #endif }; // struct EXTAB +//--------------------------------------------------------------------------- LOCAL EXTAB* exTab = NULL; // NULL or dm ptr to expr table (array of EXTAB) LOCAL USI exNal = 0; // allocated size of exTab[] LOCAL USI exN = 0; // used ditto = next avail expr # less 1 -// (0 not used for expr: expr # 0 means unset; entry 0 .nx is head of eval order list) -LOCAL SI exTail = 0; // subscript of last exTab entry in eval order; 0 for empty table - -/*----------------------- LOCAL FUNCTION DECLARATIONS ---------------------*/ -// (expect to make some public as required) -LOCAL RC FC uniLim( USI fdTy, USI ty, void *p); -LOCAL RC FC extEntry( BP b, TI i, USI fn, USI *ph); -LOCAL RC FC extAdd( USI *ph); -LOCAL RC FC addStore( USI h, WHERE w); -LOCAL RC FC exEvUp( USI h, SI isEoi, SI silentUnset, USI *pBadH); -LOCAL NANDAT * FC pRecRef( RECREF rr); -LOCAL const char* FC txVal( SI ty, void *p); -LOCAL const char* FC whatRr( RECREF rr); + // (0 not used for expr: expr # 0 means unset; entry 0 .ext_nx is head of eval order list) +LOCAL USI exTail = 0; // subscript of last exTab entry in eval order; 0 for empty table + +//=========================================================================== +#if defined( USEVECT) +constexpr size_t extSIZENOVECTORS = sizeof(EXTAB) - offsetof(EXTAB, ext_whVal); +//--------------------------------------------------------------------------- +EXTAB::EXTAB() : ext_whVal(), ext_whChaf() +{ + memset(this, 0, extSIZENOVECTORS); + +} // EXTAB::EXTAB +//--------------------------------------------------------------------------- +EXTAB::~EXTAB() +{ + +} // EXTAB::~EXTAB +//--------------------------------------------------------------------------- +EXTAB& EXTAB::ext_Copy(const EXTAB& src) // copy w/o WHERE vectors +{ + ext_whVal.clear(); + ext_whChaf.clear(); + + memcpy(this, &src, extSIZENOVECTORS); + + return *this; +} // EXTAB::ext_Copy +#endif +//--------------------------------------------------------------------------- +LOCAL RC FC extEntry(BP b, TI i, USI fn, USI* ph) + +// find existing exTab entry (new expr for old field) else allocate a new one + +// non-RCOK if error (out of memory) +{ + RC rc = RCBAD; + for (USI h = 1; h <= exN; h++) // loop expression table entries + { + EXTAB* ex = exTab + h; + if (b == ex->ext_srcB && i == ex->ext_srcI && fn == ex->ext_srcFn) // if is sought entry + { // new expression for previously seen field + ex->ext_Efree(); // free stuff this entry points to: will be overwritten + // note: nx is >0 (entry is in eval chain) + *ph = h; + rc = RCOK; + break; + } + } + if (rc != RCOK) + rc = extAdd(ph); // not found, allocate a new one + EXTDUMPIF("extEntry"); + return rc; +} // extEntry +//=========================================================================== +LOCAL RC FC extAdd(USI* ph) + +// allocate exTab entry and return expression number +{ +#define EXTAB_NADD 16 // make 50? + + // use next entry at end if there is one - fastest + if (exNal > exN + 1 + 1) // +1 for 1-based exN, +1 for ++ next + { + *ph = ++exN; + return RCOK; + } + + // search for a deleted entry + for (USI h = 0; ++h <= exN; ) + { + if (exTab[h].ext_nx == -1) + { + *ph = h; + return RCOK; // caller is expected to make .ext_nx >= 0 + } + } + + // expression table is full, or not yet allocated. (re)alloc it and assign next expresion number. + RC rc; + USI nuNal = exNal + EXTAB_NADD; + CSE_E(dmral(DMPP(exTab), + nuNal * sizeof(EXTAB), + WRN | DMZERO)) // zero added space; return bad if out of memory + exNal = nuNal; + *ph = ++exN; // 0 is not used (h==0 means unset; exTab[0].ext_nx is head of eval order list) + return RCOK; + +#undef EXTAB_NADD +} // extAdd +//=========================================================================== +void FC extDelFn(BP b, TI i, SI fn) // delete expression table entry if any for given field +{ + USI h; + if (exTab) // if expr table allocated 1-92 + { + for (USI hm1 = 0; (h = exTab[hm1].ext_nx) != 0; ) // loop over exprs in evaluation list order. note hm1=h at end loop. + { + if (exTab[h].ext_srcFn == fn) // test 1 condition asap for speed: fcn is called every expr compiled. + { + EXTAB* ex = exTab + h; + if (ex->ext_srcB == b && ex->ext_srcI == i /*&& ex->ext_srcFn==fn*/) // if is entry to delete + { + exTab[hm1].ext_nx = ex->ext_nx; // unlink + ex->ext_nx = -1; // flag free + if (exTail == h) // if it was the end of the list + exTail = hm1; // now the one before it is end + continue; // bypass hm1 = h. + } + } + hm1 = h; // loop increment: advance in list. Note don't get here after unlinking entry to delete + } + } +} // extDelFn +//=========================================================================== +void FC extDel(record* e) // delete all expression table entries for given record +{ + USI h; + if (exTab) // if expr table allocated 1-92 + { + for (USI hm1 = 0; (h = exTab[hm1].ext_nx) != 0; ) // loop over exprs in evaluation list order. note hm1=h at end loop. + { + EXTAB* ex = exTab + h; + if (ex->ext_srcB == e->b && ex->ext_srcI == e->ss) // if is an entry to delete + { + exTab[hm1].ext_nx = ex->ext_nx; // unlink + ex->ext_nx = -1; // flag free + if (exTail == h) // if it was the end of the eval order list + exTail = hm1; // now the one before it is end + } + else + hm1 = h; // loop increment: advance in list. Note don't get here unlinking entry to delete + } + } +} // extDel +//=========================================================================== +void FC extAdj(BP b, TI minI, TI delta) // add delta to all b subscripts >= minI in expression table +{ + for (EXTAB* ex = exTab + exN; ex > exTab; ex--) + if (ex->ext_srcB == b && ex->ext_srcI >= minI) + ex->ext_srcI += delta; +} // extAdj +//=========================================================================== +void FC extMove(record* nuE, record* e) // change expression table entries for given record to given new record +{ + for (EXTAB* ex = exTab + exN; ex > exTab; ex--) + { + if (ex->ext_srcB == e->b && ex->ext_srcI == e->ss // if entry is for given record + && ex->ext_nx >= 0) // if entry not deleted + { + ex->ext_srcB = nuE->b; + ex->ext_srcI = nuE->ss; + ex->ext_srcIsType = (nuE->b->ba_flags & RFTYS) != 0; + } + } +} // extMove +//=========================================================================== +void FC extDup(record* nuE, record* e) // duplicate expression table entries for given record to given new record +{ + USI exNwas = exN; + for (USI h = 1; h <= exNwas; h++) // loop expressions already in table + { + EXTAB* ex = exTab + h; + if (ex->ext_srcB == e->b && ex->ext_srcI == e->ss // if expr in given record + && ex->ext_nx >= 0) // if not deleted exTab entry + { + USI off = ex->ext_srcB->fir[ex->ext_srcFn].off; + if (ex->ext_ty == TYSI // if integer (too small for nandle) +#if defined( ND3264) + || *(NANDAT*)((char*)e + off) == NANDLE(h)) // or field has correct nandle -- insurance +#else + || *(NANDAT*)((char*)e + off) == NANDLE(h)) // or field has correct nandle -- insurance +#endif + { + USI nuH; + if (extAdd(&nuH) == RCOK) // add exTab entry / if ok + { + BP nuB = nuE->b; + EXTAB* nuEx = exTab + nuH; + ex = exTab + h; // repoint: may have moved + + // initialize duplicate exTab entry +#if defined( USEVECT) + nuEx->ext_Copy(*ex); +#else + memcpy(nuEx, ex, sizeof(EXTAB)); // start by copying old + dmIncRef(DMPP(nuEx->ext_ip)); // increment reference count to (same) pseudo-code block, 4-14-92 + nuEx->ext_srcB = nuB; // update for new source + nuEx->ext_srcI = nuE->ss; + nuEx->ext_srcIsType = ((nuB->ba_flags & RFTYS) != 0); // determine whether new record is type + nuEx->ext_v = UNSET; // value: not evaluated yet + dmfree(DMPP(nuEx->ext_whVal)); // new expression has no uses yet, + dmfree(DMPP(nuEx->ext_whChaf)); // and no registered increment-on-change locations + nuEx->ext_whValN = nuEx->ext_whValNal = nuEx->ext_whChafN = nuEx->ext_whChafNal = 0; // .. this line missing til 5-92 +#endif + + // append to evaluation order list + exTab[exTail].ext_nx = nuH; + nuEx->ext_nx = 0; + exTail = nuH; + + // put its expression handle in its record member + if (nuEx->ext_ty != TYSI) +#if defined( ND3264) + * (NANDAT*)((char*)nuE + off) = NANDLE(nuH); +#else + * (void**)((char*)nuE + off) = NANDLE(nuH); +#endif + } + } + } + } + EXTDUMPIF("extDup"); +} // extDup +//=========================================================================== +void FC extClr() // clear expression table +{ + if (exTab) + { + for (EXTAB* ex = exTab; ex++ < exTab + exN; ) // loop registered expressions + ex->ext_Efree(); // free stuff this entry points to + memset(exTab, '\0', exN * sizeof(EXTAB)); // zero table: insurance. includes exTab[0].ext_nx: eval order list head + // leave block allocated for next run (but exClean above frees it). + } + exN = 0; // say no expressions in table + exTail = 0; // .. +} // extClr +//=========================================================================== +void EXTAB::ext_StoreValue() const // store current expression value into record(s) +{ +#if defined( USEVECT) + for (WHERE w : ext_whVal) + { + NANDAT* pVal = w.rr_pRecRef(); // get pointer to basAnc record member, or NULL +#else + if (ext_whVal) // insurance -- whValN should be 0 if NULL + for (int i = 0; i < ext_whValN; i++) + { + NANDAT* pVal = ext_whVal[i].rr_pRecRef(); // get pointer to basAnc record member, or NULL +#endif + if (pVal) // in case pRat errored + { + if (ext_ty == TYSI) // "can't" get here 10-90 + *(SI*)pVal = (SI)(LI)ext_v; // SI's have only 16 bits + + else if (ext_ty == TYSTR) + CopyCULSTR(pVal, &ext_v); + else // TYLLI and TYFL + *pVal = ext_v; // can just be stored + } + } // ext_whVal loop + + // increment all registered change flags + +#if defined( USEVECT) + for (WHERE w : ext_whChaf) + { + SI* pChaf = (SI*)w.rr_pRecRef(); // get ptr to rat member, or NULL + if (pChaf) // in case pRat errors + (*pChaf)++; // increment change flag + } // ext_whChaf loop +#else + if (ext_whChaf) // insurance + for (int i = 0; i < ext_whChafN; i++) + { + SI* pChaf = (SI*)ext_whChaf[i].rr_pRecRef(); // get ptr to rat member, or NULL + if (pChaf) // in case pRat errors + (*pChaf)++; // increment change flag + + } // ext_whChaf loop +#endif + +} // EXTAB::ext_StoreValue +//--------------------------------------------------------------------------- +void EXTAB::ext_Efree() // free heap stuff used by this expression +{ +#if defined( USEVECT) +#if 0 + // string expression + if (ext_ty == TYSTR) + { // free pointers set by this expression in records + // else record pointers left dangling + // can e.g. mem fault in record destructor + // new 3-3-2016 + for (WHERE w : ext_whVal) + { + NANDAT* pVal = w.rr_pRecRef(); // get pointer to basAnc record member, or NULL + if (pVal) // in case pRat errored + cupfree((void**)pVal); // dec ref count or free block of old ptr if not inline in code nor UNSET, cueval.cpp + } + // free expression's string value + // cupfree( DMPP( v)); // nop if string inline in pseudocode + } +#endif + + dmfree(DMPP(ext_ip)); + ext_whVal.clear(); + ext_whChaf.clear(); +#else + // string expression + if (ext_ty == TYSTR) + { // free pointers set by this expression in records + // else record pointers left dangling + // can e.g. mem fault in record destructor + // new 3-3-2016 + for (int i = 0; i < ext_whValN; i++) + { + NANDAT* pVal = ext_whVal[i].rr_pRecRef(); // get pointer to basAnc record member, or NULL + if (pVal) // in case pRat errored + cupfree((void**)pVal); // dec ref count or free block of old ptr if not inline in code nor UNSET, cueval.cpp + } + // free expression's string value + // cupfree( DMPP( v)); // nop if string inline in pseudocode + } + + dmfree(DMPP(ext_ip)); + dmfree(DMPP(ext_whVal)); + dmfree(DMPP(ext_whChaf)); + ext_whValN = ext_whValNal = ext_whChafN = ext_whChafNal = 0; +#endif +} // EXTAB::ext_Efree +//----------------------------------------------------------------------------- + + /*================================ COMMENTS ===============================*/ @@ -198,7 +558,7 @@ void EXTAB::extDump1() const // debug aid: printf EXTAB info { int iEx = this - exTab; printf("\n%d: %s[%d] fn=%2d nx=%2d ip=%p evf=%d", iEx, - srcB ? srcB->what : "?", srcI, srcFn, nx, ip, evf); + srcB ? srcB->what : "?", srcI, ext_srcFn, nx, ip, evf); for (int iW = 0; iW < whValN; iW++) (whVal + iW)->dump(); @@ -206,7 +566,7 @@ void EXTAB::extDump1() const // debug aid: printf EXTAB info //----------------------------------------------------------------------------- void RECREF::dump() const { - BP b = basAnc::anc4n(ancN, WRN); + BP b = rr_GetBP(); printf(" %s[%d] %d", b->what, i, o); } // RECREF::dump() #endif @@ -223,8 +583,8 @@ static RC extValidate( // 0 flags in all EXTABs and count deleted entries int nDeleted{ 0 }; for (iEX = 0; iEX <= exN; iEX++) - { exTab[iEX].flags = 0; - if (exTab[iEX].nx < 0) + { exTab[iEX].ext_flags = 0; + if (exTab[iEX].ext_nx < 0) nDeleted++; } @@ -233,10 +593,10 @@ static RC extValidate( int nLoop{ 0 }; pEX = exTab; // follow nx chain until terminator (0) or deleted (<0)=error - while (nSeen < exN && pEX->nx > 0) + while (nSeen < exN && pEX->ext_nx > 0) { ++nSeen; - pEX = exTab + pEX->nx; - if (pEX->flags++ != 0) + pEX = exTab + pEX->ext_nx; + if (pEX->ext_flags++ != 0) { nLoop++; break; } @@ -368,29 +728,29 @@ RC FC exPile( // compile an expression from current input // start/end interval is really independent of evf and ucl; separate if found necessary. // fill expression table entry ex = exTab + h; // point expression table entry - ex->ip = ip; // set pseudo-code ptr for later eval - ex->evf = gotEvf; - ex->useCl = useCl; - ex->ty = (wanTy==TYLLI && gotTy==TYSI) ? TYLLI : gotTy; + ex->ext_ip = ip; // set pseudo-code ptr for later eval + ex->ext_evf = gotEvf; + ex->ext_useCl = useCl; + ex->ext_ty = (wanTy==TYLLI && gotTy==TYSI) ? TYLLI : gotTy; if ((fdTy & 0xff00) != 0) err( PWRN, (char *)MH_E0094); // display internal error msg "exman.cpp:expile: fdTy > 255, change UCH to USI", // Note fdTy still UCH in srd.h - ex->fdTy = (UCH)fdTy; + ex->ext_fdTy = (UCH)fdTy; // next 4 members identify bad thing in runtime errMsg (eg limits), also used to store value at end-of-input eval: - ex->srcIsType = isType; - ex->srcB = b; - ex->srcI = i; // identify source record by subscript 12-91 - ex->srcFn = fn; - ex->evfOk = _evfOk; // save expr's acceptable variablity re poss fixups, 12-91. - ex->v = UNSET; // init value to "not set" + ex->ext_srcIsType = isType; + ex->ext_srcB = b; + ex->ext_srcI = i; // identify source record by subscript 12-91 + ex->ext_srcFn = fn; + ex->ext_evfOk = _evfOk; // save expr's acceptable variablity re poss fixups, 12-91. + ex->ext_v = UNSET; // init value to "not set" // maintain evaluation order list (later rearranged to fix dependencies) - if (ex->nx <= 0) // if not on list + if (ex->ext_nx <= 0) // if not on list { // add to end - exTab[exTail].nx = h; - ex->nx = 0; + exTab[exTail].ext_nx = h; + ex->ext_nx = 0; exTail = h; // put on end of evaluation order list. - // exTail is initially 0 so exTab[0].nx is head of list. + // exTail is initially 0 so exTab[0].ext_nx is head of list. } // else already on list (new expr for previously seen field) @@ -416,9 +776,7 @@ RC FC exPile( // compile an expression from current input } // exPile //=========================================================================== -RC FC uniLimCt( - -// check limits & apply units, with errMsg suitable for compile time +RC FC uniLimCt( // check limits & apply units, with errMsg suitable for compile time USI fdTy, // target field type for data type, units, and limits. 0 (FDNONE?) for no scaling or check SI ty, // cul data type (TYFL,TYSTR,TYSI,etc): used in displaying data in msg @@ -484,224 +842,6 @@ LOCAL RC FC uniLim( // on error, issues no message, returns mh of no-arg text explaining the limits exceeded. } // uniLim -//=========================================================================== -LOCAL RC FC extEntry( BP b, TI i, USI fn, USI *ph) - -// find existing exTab entry (new expr for old field) else allocate a new one - -// non-RCOK if error (out of memory) -{ - RC rc = RCBAD; - for (USI h = 1; h <= exN; h++) // loop expression table entries - { - EXTAB *ex = exTab + h; - if (b==ex->srcB && i==ex->srcI && fn==ex->srcFn) // if is sought entry - { // new expression for previously seen field - ex->extEfree(); // free stuff this entry points to: will be overwritten - // note: nx is >0 (entry is in eval chain) - *ph = h; - rc = RCOK; - break; - } - } - if (rc != RCOK) - rc = extAdd(ph); // not found, allocate a new one - EXTDUMPIF("extEntry"); - return rc; -} // extEntry -//=========================================================================== -LOCAL RC FC extAdd( USI *ph) - -// allocate exTab entry and return expression number -{ -#define EXTAB_NADD 16 // make 50? - -// use next entry at end if there is one - fastest - if (exNal > exN+1+1) // +1 for 1-based exN, +1 for ++ next - { - *ph = ++exN; - return RCOK; - } - -// search for a deleted entry - for (USI h = 0; ++h <= exN; ) - { - if (exTab[h].nx== -1) - { - *ph = h; - return RCOK; // caller is expected to make .nx >= 0 - } - } - -// expression table is full, or not yet allocated. (re)alloc it and assign next expresion number. - RC rc; - USI nuNal = exNal + EXTAB_NADD; - CSE_E( dmral( DMPP( exTab), - nuNal*sizeof(EXTAB), - WRN|DMZERO ) ) // zero added space; return bad if out of memory - exNal = nuNal; - *ph = ++exN; // 0 is not used (h==0 means unset; exTab[0].nx is head of eval order list) - return RCOK; - -#undef EXTAB_NADD -} // extAdd -//=========================================================================== -void FC extDelFn( BP b, TI i, SI fn) // delete expression table entry if any for given field -{ - USI h; - if (exTab) // if expr table allocated 1-92 - { - for (USI hm1 = 0; (h = exTab[hm1].nx) != 0; ) // loop over exprs in evaluation list order. note hm1=h at end loop. - { - if (exTab[h].srcFn==fn) // test 1 condition asap for speed: fcn is called every expr compiled. - { - EXTAB *ex = exTab + h; - if (ex->srcB==b && ex->srcI==i /*&& ex->srcFn==fn*/) // if is entry to delete - { - exTab[hm1].nx = ex->nx; // unlink - ex->nx = -1; // flag free - if (exTail==h) // if it was the end of the list - exTail = hm1; // now the one before it is end - continue; // bypass hm1 = h. - } - } - hm1 = h; // loop increment: advance in list. Note don't get here after unlinking entry to delete - } - } -} // extDelFn -//=========================================================================== -void FC extDel( record *e) // delete all expression table entries for given record -{ - USI h; - if (exTab) // if expr table allocated 1-92 - { - for (USI hm1 = 0; (h = exTab[hm1].nx) != 0; ) // loop over exprs in evaluation list order. note hm1=h at end loop. - { - EXTAB *ex = exTab + h; - if (ex->srcB==e->b && ex->srcI==e->ss) // if is an entry to delete - { - exTab[hm1].nx = ex->nx; // unlink - ex->nx = -1; // flag free - if (exTail==h) // if it was the end of the eval order list - exTail = hm1; // now the one before it is end - } - else - hm1 = h; // loop increment: advance in list. Note don't get here unlinking entry to delete - } - } -} // extDel -//=========================================================================== -void FC extAdj( BP b, TI minI, TI delta) // add delta to all b subscripts >= minI in expression table -{ - for (EXTAB *ex = exTab + exN; ex > exTab; ex--) - if (ex->srcB==b && ex->srcI >= minI) - ex->srcI += delta; -} // extAdj -//=========================================================================== -void FC extMove( record *nuE, record *e) // change expression table entries for given record to given new record -{ - for (EXTAB *ex = exTab + exN; ex > exTab; ex--) - { - if ( ex->srcB==e->b && ex->srcI==e->ss // if entry is for given record - && ex->nx >= 0 ) // if entry not deleted - { - ex->srcB = nuE->b; - ex->srcI = nuE->ss; - ex->srcIsType = (nuE->b->ba_flags & RFTYS) != 0; - } - } -} // extMove -//=========================================================================== -void FC extDup( record *nuE, record *e) // duplicate expression table entries for given record to given new record -{ - USI exNwas = exN; - for (USI h = 1; h <= exNwas; h++) // loop expressions already in table - { - EXTAB *ex = exTab + h; - if ( ex->srcB==e->b && ex->srcI==e->ss // if expr in given record - && ex->nx >= 0) // if not deleted exTab entry - { - USI off = ex->srcB->fir[ex->srcFn].off; - if ( ex->ty==TYSI // if integer (too small for nandle) -#if defined( ND3264) - || *(NANDAT*)((char *)e + off)==NANDLE(h)) // or field has correct nandle -- insurance -#else - || *(NANDAT*)((char*)e + off) == NANDLE(h)) // or field has correct nandle -- insurance -#endif - { - USI nuH; - if (extAdd(&nuH)==RCOK) // add exTab entry / if ok - { - BP nuB = nuE->b; - EXTAB *nuEx = exTab + nuH; - ex = exTab + h; // repoint: may have moved - - // initialize duplicate exTab entry - memcpy( nuEx, ex, sizeof(EXTAB) ); // start by copying old - dmIncRef( DMPP( nuEx->ip)); // increment reference count to (same) pseudo-code block, 4-14-92 - nuEx->srcB = nuB; // update for new source - nuEx->srcI = nuE->ss; - nuEx->srcIsType = ((nuB->ba_flags & RFTYS) != 0); // determine whether new record is type - nuEx->v = UNSET; // value: not evaluated yet - dmfree( DMPP( nuEx->whVal)); // new expression has no uses yet, - dmfree( DMPP( nuEx->whChaf)); // and no registered increment-on-change locations - nuEx->whValN = nuEx->whValNal = nuEx->whChafN = nuEx->whChafNal = 0; // .. this line missing til 5-92 - - // append to evaluation order list - exTab[exTail].nx = nuH; - nuEx->nx = 0; - exTail = nuH; - - // put its expression handle in its record member - if (nuEx->ty != TYSI) -#if defined( ND3264) - *(NANDAT*)((char *)nuE + off) = NANDLE(nuH); -#else - *(void **)((char*)nuE + off) = NANDLE(nuH); -#endif - } - } - } - } - EXTDUMPIF( "extDup"); -} // extDup -//=========================================================================== -void FC extClr() // clear expression table -{ - if (exTab) - { - for (EXTAB *ex = exTab; ex++ < exTab + exN; ) // loop registered expressions - ex->extEfree(); // free stuff this entry points to - memset( exTab, '\0', exN * sizeof(EXTAB) ); // zero table: insurance. includes exTab[0].nx: eval order list head - // leave block allocated for next run (but exClean above frees it). - } - exN = 0; // say no expressions in table - exTail = 0; // .. -} // extClr -//=========================================================================== -void EXTAB::extEfree() // free heap stuff used by this expression -{ - // string expression - if (ty == TYSTR) - { // free pointers set by this expression in records - // else record pointers left dangling - // can e.g. mem fault in record destructor - // new 3-3-2016 - for (int i = 0; i < whValN; i++) - { NANDAT* pVal = pRecRef( whVal[i]); // get pointer to basAnc record member, or NULL - if (pVal) // in case pRat errored - cupfree( (void **)pVal); // dec ref count or free block of old ptr if not inline in code nor UNSET, cueval.cpp - } - // free expression's string value - cupfree( DMPP( v)); // nop if string inline in pseudocode - } - - dmfree( DMPP( ip)); - dmfree( DMPP( whVal)); - dmfree( DMPP( whChaf)); - whValN = whValNal = whChafN = whChafNal = 0; -} // EXTAB::extEfree -//----------------------------------------------------------------------------- //=========================================================================== RC FC exClrExUses( // re-init old expr table entries for next run @@ -709,18 +849,25 @@ RC FC exClrExUses( // re-init old expr table entries for next run // clears registered uses & change flags in expr table; sets prior value to UNSET; keeps the expressions themselves. // call between runs, before new input decoding (cuz input stuff can can add change flags), and between phases - BOO jfc ) /* TRUE if call is just a phase change, ie between autoSize and main simulation phases: - retain expr uses in records that are not regenerated, per RFPERSIS flag. 10-95. */ + BOO jfc ) // TRUE if call is just a phase change, ie between autoSize and main simulation phases: + // retain expr uses in records that are not regenerated, per RFPERSIS flag. { for (EXTAB *ex = exTab; ex++ < exTab + exN; ) // loop registered expressions { if (!jfc) // if doing full clear, set like newly-init expr tbl entry (but retain alloc'd storage). { - if (ex->ty==TYSTR) // if string value - cupfree( DMPP( ex->v)); // if in dm (not inline in code, not UNSET), decr ref count or free, NULL ptr. cueval.cpp. - ex->v = UNSET; // set prior value to "unset", to be sure stored/chaf'd when first evaluated - ex->whValN = 0; // say no uses of expression value (but leave whVal allocated) - ex->whChafN = 0; // say no change flags registered +#if 0 + if (ex->ext_ty==TYSTR) // if string value + cupfree( DMPP( ex->ext_v)); // if in dm (not inline in code, not UNSET), decr ref count or free, NULL ptr. cueval.cpp. +#endif + ex->ext_v = UNSET; // set prior value to "unset", to be sure stored/chaf'd when first evaluated +#if defined( USEVECT) + ex->ext_whVal.clear(); // say no uses of expression value + ex->ext_whChaf.clear(); // say no change flags registered +#else + ex->ext_whValN = 0; // say no uses of expression value (but leave whVal allocated) + ex->ext_whChafN = 0; // say no change flags registered +#endif } else // phase change: conditionally keep use and change flag registrations and value. 10-95. { @@ -728,22 +875,36 @@ RC FC exClrExUses( // re-init old expr table entries for next run // runtime exprs (EVFRUN..EVFSUBHR): must unset here to be sure stored 1st time in new run records. // EVEOI,EVFFAZ: expect usually resolved in input records; might be accessed later by expr with multiple probes. // EVFFAZ: expect re-eval b4 use due to expr tab ordering; unset to be sure stored; remove if case found. - if (ex->evf != EVEOI) // EVEOI won't be eval'd/stored again, but might be PSEXPLOD4/S'd, so tentatively keep. - ex->v = UNSET; // set prior value to "unset", to be sure stored/chaf'd when first evaluated + if (ex->ext_evf != EVEOI) // EVEOI won't be eval'd/stored again, but might be PSEXPLOD4/S'd, so tentatively keep. + ex->ext_v = UNSET; // set prior value to "unset", to be sure stored/chaf'd when first evaluated // keep expr uses in recs that are NOT free'd tween phases (per basAnc RFPERSIS flag, set eg from cncult2.cpp). +#if defined( USEVECT) + // keep expr uses in recs that are NOT free'd tween phases (per basAnc RFPERSIS flag, set eg from cncult2.cpp). + auto where_unneeded = [](const WHERE& w) -> bool + { BP b = w.rr_GetBP(); // point basAnc of record of expr use + return !b || !(b->ba_flags & RFPERSIS); + }; + auto itr = std::remove_if(ex->ext_whVal.begin(), ex->ext_whVal.end(), where_unneeded); + ex->ext_whVal.erase(itr, ex->ext_whVal.end()); + + // keep change flag registrations in recs that are NOT free'd tween phases (tho suspect ok to free all, 10-95) + itr = std::remove_if(ex->ext_whChaf.begin(), ex->ext_whChaf.end(), where_unneeded); + ex->ext_whChaf.erase(itr, ex->ext_whChaf.end()); +#else + // keep expr uses in recs that are NOT free'd tween phases (per basAnc RFPERSIS flag, set eg from cncult2.cpp). WHERE *w; BP b; USI i, j = 0; - for (i = 0; i < ex->whValN; i++) // loop over use registrations for this expr + for (i = 0; i < ex->ext_whValN; i++) // loop over use registrations for this expr { - w = ex->whVal+i; - b = basAnc::anc4n( w->ancN, WRN); // point basAnc of record of expr use + w = ex->ext_whVal+i; + b = basAnc::anc4n( w->rr_ancN, WRN); // point basAnc of record of expr use if (b && b->ba_flags & RFPERSIS) // if basAnc has flag set, keep this expr use entry { if (j < i) // if any uses have been deleted, { - ex->whVal[j] = *w; // copy this one down to keep compact + ex->ext_whVal[j] = *w; // copy this one down to keep compact memset( w, 0, sizeof(*w)); // zero vacated space: insurance } j++; // count uses retained / next copy-back subscript @@ -751,20 +912,20 @@ RC FC exClrExUses( // re-init old expr table entries for next run else // drop this expr use entry: no j++ memset( w, 0, sizeof(*w)); // zero vacated space: insurance } - ex->whValN = j; // store number of uses retained. excess space not dealloc'd. + ex->ext_whValN = j; // store number of uses retained. excess space not dealloc'd. // keep change flag registrations in recs that are NOT free'd tween phases (tho suspect ok to free all, 10-95) j = 0; b = nullptr; - for (i = 0; i < ex->whChafN; i++) // loop over change flag registrations for this expr + for (i = 0; i < ex->ext_whChafN; i++) // loop over change flag registrations for this expr { - w = ex->whChaf+i; - b = basAnc::anc4n( w->ancN, WRN); // point basAnc of record of change flag + w = ex->ext_whChaf+i; + b = basAnc::anc4n( w->rr_ancN, WRN); // point basAnc of record of change flag if (b && b->ba_flags & RFPERSIS) // if basAnc has flag set, keep this entry { if (j < i) // if any have been deleted, { - ex->whChaf[j] = *w; // copy this one down to keep compact + ex->ext_whChaf[j] = *w; // copy this one down to keep compact memset( w, 0, sizeof(*w)); // zero vacated space: insurance } j++; // count those retained / next copy-back subscript @@ -772,7 +933,8 @@ RC FC exClrExUses( // re-init old expr table entries for next run else // drop this one: no j++ memset( w, 0, sizeof(*w)); // zero vacated space: insurance } - ex->whChafN = j; // store number retained. excess space not dealloc'd. + ex->ext_whChafN = j; // store number retained. excess space not dealloc'd. +#endif } } return RCOK; @@ -781,24 +943,24 @@ RC FC exClrExUses( // re-init old expr table entries for next run //=========================================================================== RC FC exWalkRecs() -// "Walk" the records of all basAncs and 1) issue messages for unset data 2) register any run-time expression uses found. +// "Walk" the records of all basAncs and +// 1) issue messages for unset data +// 2) register any run-time expression uses found. -/* Looks dumbly at: all 4-byte members, plus all VALNDT type members, and tests for NANDLES: - a) the value UNSET, possibly stored many places before input; - b) expr handle values returned when expr value not known at input. - Data type of destination now containing NANDLE must match that - originally used to input expression -- no checking here. */ +// Looks dumbly at : all 4 - byte members, plus all VALNDT type members, and tests for NANDLES : +// a) the value UNSET, possibly stored many places before input; +// b) expr handle values returned when expr value not known at input. +// Data type of destination now containing NANDLE must match that +// originally used to input expression -- no checking here. // returns non-RCOK if error (eg out of memory) { - USI os[450]; // 200->300 after overflow chip 10-4-91; 450 insurance (rob 1,7-92) (most fields in rec 340, 7-92) - RC rc; + USI os[1000]; // big enough for max fields in any record // loop over all record anchors as "registered" in basAnc::al and ::statSetup BP b; - for (size_t ancN = 0; basAnc::ancNext( ancN, &b); ) // loop basAncs (lib\ancrec.cpp) + for (size_t ancN = 0; basAnc::ancNext( ancN, &b); ) // loop basAncs { - // skip flagged rats if (b->ba_flags & (RFTYS // in "types" and ... | RFNOEX) ) // in records of basAncs flagged by application, eg input basAncs, ... @@ -813,9 +975,9 @@ RC FC exWalkRecs() for (int f = 0; f < b->nFlds; f++) // loop fields in record { USI dt = sFdtab[ b->fir[f].fdTy ].dtype; // get data type from field info - if ( GetDttab(dt).size==4 // if any 4-byte field (FLOAT, CULSTR, ... ) (GetDttab: srd.h) - || dt==DTVALNDT ) /* or value+data type substruct, which begins with - a 4-byte value field (for reportCol 11-91) */ + if ( GetDttab(dt).size==4 // if any 4-byte field (FLOAT, CULSTR, ... ) + || dt==DTVALNDT ) // or value+data type substruct, which begins with + // a 4-byte value field (for reportCol) { if (oi >= sizeof(os)/sizeof(os[0])) { @@ -829,8 +991,7 @@ RC FC exWalkRecs() // loop over records for this anchor - WHERE w; - w.ancN = static_cast(ancN); // anchor number number to addStore arg + WHERE w(static_cast(ancN), 0, 0); // anchor number number to addStore arg for (TI i = b->mn; i <= b->n; i++) // loop subscripts { char *e = (char *)&b->rec(i); // point record @@ -839,7 +1000,7 @@ RC FC exWalkRecs() // look for NANDLEs at offsets tabulated above - w.i = i; // record number to addStore arg + w.rr_i = i; // record number to addStore arg for (USI oj = 0; oj < oi; oj++) // loop tabulated offsets { USI o = os[oj]; // an offset from table @@ -847,20 +1008,19 @@ RC FC exWalkRecs() if (ISNANDLE(v)) // if 1 of our special things { // or use exReg() here. - w.o = o; // offset to addStore arg + w.rr_o = o; // offset to addStore arg if (ISUNSET(v)) { - err( PWRN, (char *)MH_E0097, whatRr(w)); // "exman.cpp:exWalkRecs: unset data for %s" + err(PWRN, (char*)MH_E0097, w.rr_What()); // "exman.cpp:exWalkRecs: unset data for %s" // do something to stop run? } else if (ISASING(v)) // if value is to be determined by AUTOSIZE 6-95 ; // do nothing with it now else // else must be expr -#ifdef STATREF -0 addStore( EXN(v), ancN, i, o ); // register expr use -#else - CSE_E( addStore( EXN(v), w) ) // register expr use at w -#endif + { RC rc = addStore(EXN(v), w); // register expr use at w + if (rc) + return rc; + } } } } // for (i = entries loop @@ -888,9 +1048,9 @@ o{ o WHERE w; NANDAT v; o o w.ancN = ancN; w.i = i; w.o = o; // combine into single thing -o v = *pRecRef(w); // fetch contents of member +o v = *w.rr_pRecRef(); // fetch contents of member o if (ISUNSET(v)) -o return err( PWRN, (char *)MH_E0098, whatRr(w) ); // "exman.cpp:exReg: Unset data for %s" +o return err( PWRN, (char *)MH_E0098, w.rr_What() ); // "exman.cpp:exReg: Unset data for %s" o else if ISNANDLE(v) o return addStore( EXN(v), w); // register place to put value of expr EXN(v). o return RCOK; @@ -899,24 +1059,27 @@ o} // exReg // STATREF version at end file //=========================================================================== -LOCAL RC FC addStore( // register use of expression h in basAnc record +LOCAL RC addStore( // register use of expression h in basAnc record - USI h, // expression number (EXN(nandle)) */ - WHERE w ) // rat reference: rat number .ancN, record subscript .i, offset .o + int h, // expression number (EXN(nandle)) */ + WHERE& w ) // rat reference { -#define WHVAL_NADD 4 // make 10? - // could here check ancN and i for being too large for their bit fields - EXTAB *ex = exTab + h; // point expression table entry - if (ex->whValNal <= ex->whValN + 1) // test if necessary to allocate (more) where's for expression + EXTAB* ex = exTab + h; // point expression table entry +#if defined( USEVECT) + ex->ext_whVal.push_back(w); +#else +#define WHVAL_NADD 4 // make 10? + if (ex->ext_whValNal <= ex->ext_whValN + 1) // test if necessary to allocate (more) where's for expression { - USI nuNal = ex->whValNal + WHVAL_NADD; + USI nuNal = ex->ext_whValNal + WHVAL_NADD; RC rc; - CSE_E( dmral( DMPP( ex->whVal), nuNal * sizeof(WHERE), WRN) ) // (re)allocate heap block, dmpak.cpp - ex->whValNal = nuNal; + CSE_E( dmral( DMPP( ex->ext_whVal), nuNal * sizeof(WHERE), WRN) ) // (re)allocate heap block, dmpak.cpp + ex->ext_whValNal = nuNal; } - ex->whVal[ex->whValN++] = w; // store ancN-i-o in next available store-where slot + ex->ext_whVal[ex->ext_whValN++] = w; // store ancN-i-o in next available store-where slot +#endif return RCOK; } // addStore @@ -924,8 +1087,8 @@ LOCAL RC FC addStore( // register use of expression h in basAnc record //=========================================================================== RC addChafIf ( // conditionally register change flag in basAnc record for expr. (formerly addChafRatIf, 7-92) - NANDAT *pv, // if this contains a "nandle" on a live run-time expression, change flag will be registered; else not - // where to ++ when expression changes: + NANDAT* pv, // if this contains a "nandle" on a live run-time expression, change flag will be registered; else not + // where to ++ when expression changes: USI ancN, // rat number (basAnc.ancN) of change flag TI i, // rat entry subscript 1.. USI o ) // rat member offset of SI change flag @@ -941,18 +1104,31 @@ RC addChafIf ( // conditionally register change flag in basAnc record for expr. return RCOK; // msg option? if (ISASING(v)) // if value is to be determined by AUTOSIZE 6-95 return RCOK; // do nothing with it now - EXTAB *ex = exTab + EXN(v); // point expression table entry - if (ex->whChafNal <= ex->whChafN + 1) // test if needs (more) change-flag-where's allocated + + EXTAB* ex = exTab + EXN(v); // point expression table entry +#if defined( USEVECT) + ex->ext_whChaf.push_back(WHERE(ancN, i, o)); +#else + if (ex->ext_whChafNal <= ex->ext_whChafN + 1) // test if needs (more) change-flag-where's allocated { - USI nuNal = ex->whChafNal + WHCHAF_NADD; + USI nuNal = ex->ext_whChafNal + WHCHAF_NADD; RC rc; - CSE_E( dmral( DMPP( ex->whChaf), nuNal * sizeof(WHERE), WRN) ) // (re)allocate heap (dm) block, dmpak.cpp - ex->whChafNal = nuNal; + CSE_E( dmral( DMPP( ex->ext_whChaf), nuNal * sizeof(WHERE), WRN) ) // (re)allocate heap (dm) block, dmpak.cpp + ex->ext_whChafNal = nuNal; } - WHERE *w = &ex->whChaf[ ex->whChafN++]; // point next available change-flag-where for expression - w->ancN = ancN; // store info to allow locating rat member + +#if 1 + // store info to allow locating rat member even if rat is moved to new location + // (as can happen at reallocation) + WHERE* w = new (&ex->ext_whChaf[ex->ext_whChafN++]) WHERE(ancN, i, o); +#else + WHERE* w = &ex->ext_whChaf[ex->ext_whChafN++]; // point next available change-flag-where for expression + + w->rr_ancN = ancN; // store info to allow locating rat member w->i = i; // ... even if rat is moved to new location w->o = o; // ... (as can happen at reallocation) +#endif +#endif return RCOK; } // addChafIf //=========================================================================== @@ -1004,13 +1180,13 @@ RC FC exEvEvf( // evaluate expressions and do their updates reordering = 1; // say rearranging eval order: suppress unset/uneval'd error messages nBads = 0; // no errors since last success - for (hm1 = 0; (h = exTab[hm1].nx) != 0; ) // loop over exprs in evaluation list order. exTab[0] holds list head only. + for (hm1 = 0; (h = exTab[hm1].ext_nx) != 0; ) // loop over exprs in evaluation list order. exTab[0] holds list head only. // In the loop expr h can be moved to end of list; // "hm1 = h" at end is executed only if expr h is not moved. { ex = exTab + h; - if (ex->evf & evf // if has 1 or more given evf bit(s) - && ex->useCl & useCl) // & 1 or more given use class bit(s) + if (ex->ext_evf & evf // if has 1 or more given evf bit(s) + && ex->ext_useCl & useCl) // & 1 or more given use class bit(s) { rc1 = exEvUp( h, isEoi, reordering, &uH); // do it, local, next. 'reordering' nz suppresses msg on RCUNSET. @@ -1020,19 +1196,19 @@ RC FC exEvEvf( // evaluate expressions and do their updates { uex = exTab + uH; // point exTab entry for uneval'd expr, if h is valid if ( isEoi // if end-of-input etc eval time (b4 exWalkRecs) - && uH > 0 && uH <= exN && exTab[uH].nx >= 0 // if access to valid uneval'd expr (not UNSET nor bug) - && !(uex->evf & evf && uex->useCl & useCl) // if accessed expr will not be evaluated now - && !(uex->evf & ~ex->evfOk) // if accessed expr's evaluation time ok for current expression - && uex->useCl==ex->useCl // if accessed expr's use class same + && uH > 0 && uH <= exN && exTab[uH].ext_nx >= 0 // if access to valid uneval'd expr (not UNSET nor bug) + && !(uex->ext_evf & evf && uex->ext_useCl & useCl) // if accessed expr will not be evaluated now + && !(uex->ext_evf & ~ex->ext_evfOk) // if accessed expr's evaluation time ok for current expression + && uex->ext_useCl==ex->ext_useCl // if accessed expr's use class same // don't replace expr's evaluated at different times in ivl - && ex->ty != TYSI ) // can't eval SI's after end input as can't hold nandle + && ex->ext_ty != TYSI ) // can't eval SI's after end input as can't hold nandle // to identify where to store in run rats. // (insurance: evf check should cover). { /* End-of-input time expr contained probe to a member that now contains expr to be evaluatated later. Change current expression to be evaluated at that time. */ - ex->evf = uex->evf; + ex->ext_evf = uex->ext_evf; // believe this is neither a good nor a bad re reordering endtest. // note from here execute hm1 = h at foot of loop. @@ -1046,7 +1222,7 @@ RC FC exEvEvf( // evaluate expressions and do their updates nBads++; // count errors since RCOK nLeft = 0; - for (hh = hm1; (hh = exTab[hh].nx) != 0; ) // count entries remaining in eval order list + for (hh = hm1; (hh = exTab[hh].ext_nx) != 0; ) // count entries remaining in eval order list nLeft++; if (nBads >= nLeft) // if as many consecutive errors as list entries reordering = 0; /* after this expr, stop attempting to fix by reordering, but complete pass @@ -1055,11 +1231,11 @@ RC FC exEvEvf( // evaluate expressions and do their updates // move this expr to end of evaluation order list, so it will be retried later to see if its inputs have been set - exTab[hm1].nx = exTab[h].nx; // unlink - exTab[exTail].nx = h; - exTab[h].nx = 0; + exTab[hm1].ext_nx = exTab[h].ext_nx; // unlink + exTab[exTail].ext_nx = h; + exTab[h].ext_nx = 0; exTail = h; // link to end - continue; // proceed to new next expr exTab[hm1].nx using same hm1 + continue; // proceed to new next expr exTab[hm1].ext_nx using same hm1 } } else @@ -1116,17 +1292,15 @@ LOCAL RC FC exEvUp( // evaluate expression. If ok and changed, store and incre if error is unset value or un-evaluated expression encountered (by PSRATLODx or PSEXPLODx), returns RCUNSET, with no message if 'silentUnset' is non-0. */ { - - // get new value: evaluate expression's pseudo-code EXTAB *ex = exTab + h; - if (ex->ip==NULL) + if (ex->ext_ip==NULL) return err( PWRN, (char *)MH_E0103, (INT)h ); // "exman.cpp:exEv: expr %d has NULL ip" const char* ms; NANDAT* pv = nullptr; - RC rc = cuEvalR( ex->ip, (void**)&pv, &ms, pBadH); // evaluate, return ptr. - // returns RCOK/RCBAD/RCUNSET ... + RC rc = cuEvalR( ex->ext_ip, (void**)&pv, &ms, pBadH); // evaluate, return ptr. + // returns RCOK/RCBAD/RCUNSET ... if (rc) // if error (not RCOK) { if (rc==RCUNSET && silentUnset) // if unset/un-eval'd and caller said no message @@ -1148,61 +1322,42 @@ LOCAL RC FC exEvUp( // evaluate expression. If ok and changed, store and incre // units-scale it, check limits, issue run-time error message. 2-91. - rc = uniLim( ex->fdTy, ex->ty, pv); // do units/limits, issues no messages + rc = uniLim( ex->ext_fdTy, ex->ext_ty, pv); // do units/limits, issues no messages if (rc) // on error, code of explanatory text is returned // message giving cvpak's explanation and showing value AND identifying what expr was for return rer( // issue runtime errMsg: shows simulation data & time // rather than input file line. this file. (char *)MH_E0105, // "Bad value, %s, for %s: %s" - txVal( ex->ty, pv), // convert value to text (local) + txVal( ex->ext_ty, pv), // convert value to text (local) whatEx(h), // what this expr orginally set (local) msg( NULL, // text for MH to Tmpstr, messages.cpp SHD BE OK TO PASS han to rer now, 3-92. (char *)(LI)rc) ); // cast rc to char * -// test for change, condition value by type, store new value in exTab. ex->v is old value, *pv is new value. +// test for change, condition value by type, store new value in exTab. ex->ext_v is old value, *pv is new value. + bool isChanged = false; -#if defined( ND3264) + NANDAT v = 0; + switch (ex->ext_ty) + { + case TYSTR: +#if defined( _DEBUG) + isChanged = ex->ext_v == UNSET; + if (!isChanged) + isChanged = strcmp((char*)ex->ext_v, AsCULSTR(&pv)); #else - NANDAT v = nullptr; + isChanged = ex->ext_v==UNSET || strcmp( (char *)ex->ext_v, AsCULSTR( &pv)); #endif - switch (ex->ty) - { - case TYSTR: // pv contains ptr to ptr to the string - isChanged = (ex->v==UNSET || strcmp( (char *)ex->v, *(char **)pv)); if (isChanged) { -#if defined( ND3264) - // TODO (MP) - // believe no need to copy string: code is stable during run so ok to store pointers into it. 10-90. - // (to copy, use v = cuStrsaveIf(*(char **)pv); - cupfree( DMPP( ex->v)); // decref/free old str value if in dm (nop if inline in code or UNSET). cueval.cpp. -#if 1 - v = *pv; -#else - v = *(char **)pv; // fetch pointer to new string value, used here and below -#endif - ex->v = v; // store new value for TYSTR -#else - // believe no need to copy string: code is stable during run so ok to store pointers into it. 10-90. - // (to copy, use v = cuStrsaveIf(*(char **)pv); */ - cupfree(DMPP(ex->v)); // decref/free old str value if in dm (nop if inline in code or UNSET). cueval.cpp. - v = *(char**)pv; // fetch pointer to new string value, used here and below - ex->v = v; // store new value for TYSTR -#endif -#ifndef NOINCREF // 5-97 this now appears to be a duplicate cupIncRef w/o a double cupFree. Try deleting. -* #if 1 //5-25-95 fix bug with probe of Top.runDateTime in export -* cupIncRef(ex->v); /* increment ref count of block of copied pointer if not inline in code nor NANDLE, -* cueval.cpp, calls dmpak.cpp:dmIncRef (or dupls block if ref count not impl). */ -* #endif -#endif - } // else v not set!! + CopyCULSTR(&ex->ext_v, pv); + } else // new value same as old - cupfree( (void **)pv ); // decref/free the new, else ref count can grow at each evaluation + AsCULSTR(pv).Release(); break; case TYSI: // (10-90: insurance: SI's can't get here as exPile accepts only constant values for user SI type) - // but if can happen, 0 pad the SI for exTab.v. + // but if can happen, 0 pad the SI for exTab.v. case TYLLI: // SI data in LI storage v = (NANDAT)*(USI*)pv; // 0 pad SI to LI goto chtst; @@ -1213,9 +1368,9 @@ LOCAL RC FC exEvUp( // evaluate expression. If ok and changed, store and incre float fv = *(float*)pv; // debug aid: inspectable value #endif chtst: - isChanged = (ex->v==UNSET || v != ex->v); + isChanged = (ex->ext_v==UNSET || v != ex->ext_v); if (isChanged) // if changed - ex->v = v; // store new value (other than TYSTR) in exTab + ex->ext_v = v; // store new value (other than TYSTR) in exTab break; } @@ -1223,54 +1378,55 @@ LOCAL RC FC exEvUp( // evaluate expression. If ok and changed, store and incre if (isChanged) { - NANDAT *pVal; - // if end-of-input etc evaluation (b4 exWalkRecs), store new value in expression's source, replacing NANDLE, 12-91. if (isEoi) // includes before re-setup for main run after autosizing, 6-95. { - BP b = ex->srcB; - record* e = b->GetAtSafe( ex->srcI); + BP b = ex->ext_srcB; + record* e = b->GetAtSafe( ex->ext_srcI); if (e) // insurance check. else errmsg? { - pv = (NANDAT *)((char *)e + b->fir[ex->srcFn].off); // point to member in record by field number - if (ex->ty==TYSI) - *(SI *)pv = (SI)(LI)v; // store only 16 bits into SI + pv = (NANDAT *)((char *)e + b->fir[ex->ext_srcFn].off); // point to member in record by field number + if (ex->ext_ty==TYSI) + *(SI *)pv = (SI)(LI)ex->ext_v; // store only 16 bits into SI + else if (ex->ext_ty == TYSTR) + CopyCULSTR(pv, &ex->ext_v); else - { - // TYFL, TYLLI, TYSTR (if here, no prior string value to free) - *pv = v; -#if 1 // another try, 7-10 - if (ex->ty==TYSTR) - cupIncRef( DMPP( v)); // incr ref count of block of copied ptr if not inline in code nor NANDLE -#endif - } -#ifndef NOINCREF // 5-97 this may now also be a duplicate cupIncRef w/o a double cupFree. Try deleting. -* #if 1 //5-25-95 looks line another missing cupIncRef, tho no bug yet reported. -* if (ex->ty==TYSTR) -* cupIncRef(*pv); /* incr ref count of block of copied ptr if not inline in code nor NANDLE, -* cueval.cpp, calls dmpak.cpp:dmIncRef (or dupls block if refco unimpl).*/ -* #endif -#endif - *((UCH *)e + b->sOff + ex->srcFn) |= FsVAL; /* field status bit: say value now stored in this member: - is no longer nandle; caller can test/use its value. */ + *pv = ex->ext_v; // TYFL, TYLLI, + *((UCH *)e + b->sOff + ex->ext_srcFn) |= FsVAL; // field status bit: say value now stored in this member: + // is no longer nandle; caller can test/use its value. } - } + } // isEOI // store new value v at all registered places - if (ex->whVal) // insurance -- whValN should be 0 if NULL - for (int i = 0; i < ex->whValN; i++) +#if 1 + ex->ext_StoreValue(); +#else + + NANDAT* pVal; + +#if defined( USEVECT) + for (WHERE w : ex->ext_whVal) { - pVal = pRecRef(ex->whVal[i]); // get pointer to basAnc record member, or NULL + pVal = w.rr_pRecRef(); // get pointer to basAnc record member, or NULL +#else + if (ex->ext_whVal) // insurance -- whValN should be 0 if NULL + for (int i = 0; i < ex->ext_whValN; i++) + { + pVal = ex->ext_whVal[i].rr_pRecRef(); // get pointer to basAnc record member, or NULL +#endif if (pVal) // in case pRat errored { - if (ex->ty==TYSI) // "can't" get here 10-90 + if (ex->ext_ty==TYSI) // "can't" get here 10-90 *(SI *)pVal = (SI)(LI)v; // SI's have only 16 bits - else if (ex->ty==TYSTR) + else if (ex->ext_ty==TYSTR) { +#if 1 + *pVal = v; +#else #if 0 x pursuing string expression memory trash, 3-2016 x attempt here is to copy string rather than share it @@ -1282,8 +1438,9 @@ x strsave( *(char **)(pVal), (const char *)v); cupfree( (void **)pVal); // dec ref count or free block of old ptr if not inline in code nor UNSET, cueval.cpp *pVal = v; // store ptr to string. May be inline in code, or in dm. cupIncRef( (void **)pVal); // increment ref count of block of copied pointer if not inline in code nor NANDLE, + // cueval.cpp, calls dmpak.cpp:dmIncRef (or dupls block if ref count not impl). +#endif #endif - // cueval.cpp, calls dmpak.cpp:dmIncRef (or dupls block if ref count not impl). } else // TYLLI and TYFL *pVal = v; // can just be stored @@ -1292,14 +1449,23 @@ x strsave( *(char **)(pVal), (const char *)v); // increment all registered change flags - if (ex->whChaf) // insurance - for (int i = 0; i < ex->whChafN; i++) +#if defined( USEVECT) + for (WHERE w : ex->ext_whChaf) + { SI* pChaf = (SI*)w.rr_pRecRef(); // get ptr to rat member, or NULL + if (pChaf) // in case pRat errors + (*pChaf)++; // increment change flag + } // whChaf loop +#else + if (ex->ext_whChaf) // insurance + for (int i = 0; i < ex->ext_whChafN; i++) { - SI *pChaf = (SI *)pRecRef(ex->whChaf[i]); // get ptr to rat member, or NULL + SI *pChaf = (SI *)ex->ext_whChaf[i].rr_pRecRef(); // get ptr to rat member, or NULL if (pChaf) // in case pRat errors (*pChaf)++; // increment change flag } // whChaf loop +#endif +#endif } // if (isChanged) return rc; // additonal return(s) above (including CSE_E macros) } // exEvUp @@ -1316,38 +1482,20 @@ RC FC exInfo( // return info on expression # // returns non-RCOK if h is not a valid expression number, NO MESSAGE ISSUED. { EXTAB *ex = exTab + h; - if (h==0 || h > exN || ex->nx < 0) + if (h==0 || h > exN || ex->ext_nx < 0) return RCBAD; // not valid expression number if (pEvf) - *pEvf = ex->evf; + *pEvf = ex->ext_evf; if (pTy) - *pTy = ex->ty; + *pTy = ex->ext_ty; if (pv) - if (ex->ty==TYSI) - *(SI *)pv = (SI)(LI)ex->v; + if (ex->ext_ty==TYSI) + *(SI *)pv = (SI)(LI)ex->ext_v; else - *pv = ex->v; // caller cueval.cpp cupIncRef's pointer if string, 7-92. + *pv = ex->ext_v; // caller cueval.cpp cupIncRef's pointer if string, 7-92. return RCOK; } // exInfo -//=========================================================================== -LOCAL NANDAT * FC pRecRef( RECREF rr) - -// return NULL or pointer to rat member per RECREF -{ - BP b = basAnc::anc4n( rr.ancN, WRN); // access basAnc by #, lib\ancrec.cpp - if (b==0) // if failed - return NULL; // (anc4n issued message) - if (b->ptr()==NULL) // if rat not ratCre'd (insurance) - return NULL; // (no msg) - if (rr.i > (USI)b->n) - { - err( PWRN, (char *)MH_E0106); // "exman.cpp:pRecRef: record subscript out of range" - return NULL; - } - return (NANDAT *)b->recMbr( rr.i, rr.o); // return pointer to record member -} // pRecRef - //********************************** ERROR MESSAGES and support ************************************ @@ -1387,15 +1535,15 @@ const char* FC whatEx( USI h) // identify by what user originally set, not what is being set now. { EXTAB *ex = exTab + h; - BP b = ex->srcB; + BP b = ex->ext_srcB; if (b) // if baseAnc specified in exTab: insurance return strtprintf( "%s of %s%s %s", - MNAME(b->fir + ex->srcFn), // field member name in record (srd.h macro may access special segment) + MNAME(b->fir + ex->ext_srcFn), // field member name in record (srd.h macro may access special segment) (char *)b->what, // rat name: ZONE etc - ex->srcIsType ? " type" : "", // "type" if pertinent + ex->ext_srcIsType ? " type" : "", // "type" if pertinent b->ptr() // note 1 - ? strtprintf( "'%s'", b->rec(ex->srcI).name) // record name - : strtprintf( "[%d]", (INT)ex->srcI) ); // else subscript + ? strtprintf( "'%s'", b->rec(ex->ext_srcI).name) // record name + : strtprintf( "[%d]", (INT)ex->ext_srcI) ); // else subscript else // no b (currently not expected 2-91) return ""; @@ -1404,11 +1552,6 @@ const char* FC whatEx( USI h) If this is a usual problem, need better solution: way to get run rat ptr, or name in table, or ?? */ } // whatEx //=========================================================================== -LOCAL const char* FC whatRr( RECREF rr) // error message insert describing given rat reference -{ - return whatNio( rr.ancN, rr.i, rr.o); -} // whatRr -//=========================================================================== // if needed: LOCAL char * FC whatBio( BP b, TI i, USI off) { return whatNio( b->ancN, i, off); } // proposed name 7-92: whatRecNio. //=========================================================================== @@ -1691,12 +1834,12 @@ RC rerIV( // inner fcn to issue runtime error message; msg handle ok for fmt; t 0EXTAB *ex; USI nuNal; 0 0 ex = exTab + h; -0 if (ex->whValNal <= ex->whValN + 1) -0 { nuNal = ex->whValNal + WHVAL_NADD; -0 dmpral( &ex->whVal, nuNal * sizeof(WHERE), ABT); -0 ex->whValNal = nuNal; +0 if (ex->ext_whValNal <= ex->ext_whValN + 1) +0 { nuNal = ex->ext_whValNal + WHVAL_NADD; +0 dmpral( &ex->ext_whVal, nuNal * sizeof(WHERE), ABT); +0 ex->ext_whValNal = nuNal; 0 } -0 return &ex->whVal[ ex->whValN++]; +0 return &ex->ext_whVal[ ex->ext_whValN++]; 0} // addWhStore #endif #ifdef STATREF @@ -1735,12 +1878,12 @@ RC rerIV( // inner fcn to issue runtime error message; msg handle ok for fmt; t 0EXTAB *ex; USI nuNal; 0 0 ex = exTab + h; -0 if (ex->whChafNal <= ex->whChafN + 1) -0 { nuNal = ex->whChafNal + WHCHAF_NADD; -0 dmpral( &ex->whChaf, nuNal * sizeof(WHERE), ABT); -0 ex->whChafNal = nuNal; +0 if (ex->ext_whChafNal <= ex->ext_whChafN + 1) +0 { nuNal = ex->ext_whChafNal + WHCHAF_NADD; +0 dmpral( &ex->ext_whChaf, nuNal * sizeof(WHERE), ABT); +0 ex->ext_whChafNal = nuNal; 0 } -0 return &ex->whChaf[ ex->whChafN++]; +0 return &ex->ext_whChaf[ ex->ext_whChafN++]; 0} // addWhChaf #endif diff --git a/src/srd.h b/src/srd.h index 4925e1e98..47ec02e88 100644 --- a/src/srd.h +++ b/src/srd.h @@ -130,6 +130,8 @@ struct SFIR USI evf; // field variation (by program, see cncult.c for input variability) (EVF___ defines, cuevf.h). 9 bits 6-95. USI off; // member offset in rec. 14 bits needed 6-95. char* mName; // record struct MEMBER name. for arrays & nested structs, contains composite with .'s and/or [n]'s. + + int sfi_GetDT() const { return sFdtab[fdTy].dtype; } }; //--- Historical macro to point to member name in SFIRstr s #define MNAME(s) ((s)->mName) diff --git a/src/strpak.cpp b/src/strpak.cpp index 75db70012..01ab711a6 100644 --- a/src/strpak.cpp +++ b/src/strpak.cpp @@ -137,6 +137,9 @@ void CULSTR::Set( us_Alloc(); // can move! } + if (!us_hCulStr) + printf("\nSetting str0"); + us_GetCULSTREL().usl_Set(str); } } // CULSTR::Set @@ -158,6 +161,11 @@ bool CULSTR::IsValid() const || (us_hCulStr >= 0 && us_hCulStr < us_vectCULSTREL.size()); if (!bValid) printf("\nBad hCulStr %d", us_hCulStr); + + const char* str0 = us_vectCULSTREL[0].usl_str; + if (!str0 || strlen(str0) > 0) + printf("\nBad str0"); + return bValid; } // CULSTR::IsValid //----------------------------------------------------------------------------- @@ -654,10 +662,9 @@ char* FC strsave( // save a copy of a string in heap const char *s ) // NULL or pointer to character string. // Returns pointer to saved string, or NULL if argument is NULL { - char *p; - if (!s) // for convenience, - return NULL; // strsave(NULL) is NULL. rob 11-91. + return NULL; // strsave(NULL) is NULL + char* p; dmal( DMPP( p), strlen(s)+1, ABT); // allocate heap space, dmpak.c. failure unlikely for small blocks. strcpy( p, s); return p; diff --git a/src/strpak.h b/src/strpak.h index 9321be043..790959e6c 100644 --- a/src/strpak.h +++ b/src/strpak.h @@ -7,60 +7,7 @@ #if !defined( _STRPAK_H) #define _STRPAK_H -// == CULSTR == -// Persistent string type that can be manipulated in the CUL realm. - -using HCULSTR = uint32_t; // string handle - -struct CULSTR -{ - CULSTR(); - CULSTR(const CULSTR& culStr); - CULSTR(const char* s); - ~CULSTR() { Set(nullptr); }; - - HCULSTR us_hCulStr; - operator const char* () { return CStr(); }; - operator const char* () const { return CStr(); }; - CULSTR& operator =(const char* s) { Set(s); return *this; } - CULSTR& operator =(const std::string& s) { Set(s); return *this; } - char* CStrModifiable() const; - const char* CStr() const { return CStrModifiable(); } - const char* CStrDflt(const char* sDflt) const - { return IsSet() ? CStr() : sDflt; - } - void Set(const char* str); - void Set(const std::string& s) { Set(s.c_str()); } - void Set(const CULSTR& cs) { Set(cs.CStr()); } - - void Release(); - void FixAfterCopy(); - - bool IsValid() const; - bool IsNANDLE() const; - bool IsNull() const { return us_hCulStr == 0; } - bool IsSet() const { return us_hCulStr != 0; } - bool IsBlank() const - { const char* s = CStr(); - return s==nullptr || *s=='\0'; - } - -private: - static std::vector us_vectCULSTREL; - static HCULSTR us_freeChainHead; - - void us_Alloc(); - bool us_AllocMightMove() const; - CULSTREL& us_GetCULSTREL() const; - bool us_HasCULSTREL() const; - -}; // struct CULSTR - -inline CULSTR& AsCULSTR(void* p) -{ - return *(reinterpret_cast(p)); -} /////////////////////////////////////////////////////////////////////////// @@ -216,6 +163,79 @@ char* _strupr(char* stringMod); char* _strlwr(char* stringMod); #endif +// == CULSTR == +// Persistent string type that can be manipulated in the CUL realm. + +using HCULSTR = uint32_t; // string handle + +struct CULSTR +{ + CULSTR(); + CULSTR(const CULSTR& culStr); + CULSTR(const char* s); + ~CULSTR() { Set(nullptr); }; + + HCULSTR us_hCulStr; + + operator const char* () { return CStr(); }; + operator const char* () const { return CStr(); }; + CULSTR& operator =(const char* s) { Set(s); return *this; } + CULSTR& operator =(const std::string& s) { Set(s); return *this; } + CULSTR& operator =(const CULSTR& s) { Set(s); return *this; } + char* CStrModifiable() const; + const char* CStr() const { return CStrModifiable(); } + const char* CStrDflt(const char* sDflt) const + { + return IsSet() ? CStr() : sDflt; + } + void Set(const char* str); + void Set(const std::string& s) { Set(s.c_str()); } + void Set(const CULSTR& cs) { Set(cs.CStr()); } + + char* Strsave() const { return strsave(CStr()); } + + void Release(); + void FixAfterCopy(); + + bool IsValid() const; + bool IsNANDLE() const; + bool IsNull() const { return us_hCulStr == 0; } + bool IsSet() const { return us_hCulStr != 0; } + bool IsBlank() const + { + const char* s = CStr(); + return s == nullptr || *s == '\0'; + } + +private: + static std::vector us_vectCULSTREL; + static HCULSTR us_freeChainHead; + + void us_Alloc(); + bool us_AllocMightMove() const; + CULSTREL& us_GetCULSTREL() const; + bool us_HasCULSTREL() const; + +}; // struct CULSTR + +inline CULSTR& AsCULSTR(void* p) +{ + return *(reinterpret_cast(p)); +} +//------------------------------------------------------------------------- +inline const CULSTR& AsCULSTR(const void* p) +{ + return *(reinterpret_cast(p)); +} +//------------------------------------------------------------------------- +inline void CopyCULSTR(void* dest, const void* src) +{ + CULSTR& csDest = AsCULSTR(dest); + const CULSTR& csSrc = AsCULSTR(src); + csDest = csSrc; +} // ::CopyCULSTR +//========================================================================= + #endif // _STRPAK_H // end of strpak.h From 09aa8dc63f2a425db53cd8436e90bb6c70d372d1 Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Fri, 21 Apr 2023 11:21:20 -0400 Subject: [PATCH 17/25] Fix cnglob.h --- src/cnglob.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cnglob.h b/src/cnglob.h index 3098b5644..5a677a264 100644 --- a/src/cnglob.h +++ b/src/cnglob.h @@ -348,6 +348,7 @@ template NANDAT AsNANDAT(T v) { return *reinterpret_cast Date: Mon, 22 May 2023 10:29:19 -0400 Subject: [PATCH 18/25] Restart work branch --- src/strpak.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/strpak.cpp b/src/strpak.cpp index 01ab711a6..7edb3bbab 100644 --- a/src/strpak.cpp +++ b/src/strpak.cpp @@ -39,22 +39,26 @@ static int TmpstrNx = 0; // Next available byte in Tmpstr[]. // Cannot use char * due to 8-byte size on 64 bit. // CULSTREL: one element in vector of strings -// = std::string plus integer that chains free elements. +// = string in dynamic memory plus integer that chains free elements. struct CULSTREL { enum { uslEMPTY, uslDM, uslOTHER}; - CULSTREL() : usl_str{ nullptr }, usl_freeChainNext( 0), usl_status( uslEMPTY) + + CULSTREL() : usl_str( nullptr), usl_freeChainNext( 0), usl_status( uslEMPTY) { } + CULSTREL(const char* str) : CULSTREL() { usl_Set( str); } + CULSTREL(CULSTREL&& src) noexcept : usl_str{ src.usl_str }, usl_freeChainNext{ src.usl_freeChainNext }, usl_status{ src.usl_status } { src.usl_str = nullptr; // prevent dmfree of string in moved-out-of source } + ~CULSTREL() { usl_freeChainNext = 0; @@ -86,7 +90,7 @@ char* CULSTREL::usl_Set( } // CULSTREL::usl_Set //============================================================================= -/*static*/ std::vector CULSTR::us_vectCULSTREL /*= { CULSTREL() }*/; +/*static*/ std::vector CULSTR::us_vectCULSTREL; // { CULSTREL("")}; // element 0 is always "" /*static*/ HCULSTR CULSTR::us_freeChainHead{ 0 }; //----------------------------------------------------------------------------- From 0892721bfc3d4be3e5a7a02caf7c292d61192da4 Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Tue, 23 May 2023 11:22:32 -0400 Subject: [PATCH 19/25] Debugging progress --- src/ancrec.cpp | 4 +- src/ancrec.h | 12 +-- src/cgcomp.cpp | 4 +- src/cgdebug.cpp | 12 +-- src/cgresult.cpp | 16 ++-- src/cgsolar.cpp | 2 +- src/cncult3.cpp | 4 +- src/cncult4.cpp | 7 +- src/cnloads.cpp | 8 +- src/cnztu.cpp | 6 +- src/cul.cpp | 205 ++++++++++++++++++++++++---------------------- src/cul.h | 12 ++- src/culstr.natvis | 4 +- src/cuparse.h | 28 ------- src/dhwcalc.cpp | 6 +- src/exman.cpp | 15 ++-- src/mspak.cpp | 2 +- src/srd.h | 4 +- src/strpak.cpp | 39 +++++---- src/strpak.h | 11 +++ 20 files changed, 207 insertions(+), 194 deletions(-) diff --git a/src/ancrec.cpp b/src/ancrec.cpp index 10380cefb..b7fcf9ba4 100644 --- a/src/ancrec.cpp +++ b/src/ancrec.cpp @@ -121,7 +121,7 @@ float record::FldValFloat(int fn) const //----------------------------------------------------------------------------- int record::IsNameMatch( const char* _name) const { - return !_stricmp( _name, name.CStr()); + return !_stricmp( _name, Name()); } // record::IsNameMatch //----------------------------------------------------------------------------- /*virtual*/ record& record::CopyFrom( @@ -336,7 +336,7 @@ const char* record::classObjTx( // get class name - object name text // if it has a name ... if (!name.IsBlank()) // if this record has nonblank name - return strtprintf("%s '%s'", what, name.CStr()); + return strtprintf("%s '%s'", what, Name()); #if 0 // .bn gone, have not replaced this mechanism (only use yet found: layer, cncult2.cpp.) o// else if it has object-number-for-owner in bn member, show that diff --git a/src/ancrec.h b/src/ancrec.h index 66e643e09..28c83f206 100644 --- a/src/ancrec.h +++ b/src/ancrec.h @@ -501,16 +501,16 @@ template RC anc::AllocResultsRecs( // allocate/init results record T* pR; if (!rc) do { rc |= add(&pR, WRN, i); // init (to 0) results record, 1 thru i. - const char* name; + const char* recName; if (i > src.n) - name = sumName ? sumName : strtprintf("sum_of_%s", src.what); + recName = sumName ? sumName : strtprintf("sum_of_%s", src.what); else { // results records have same name as their source - name = src.rec(i).name; - if (IsBlank(name)) - name = strtprintf("%s_%d", src.what, i); + recName = src.rec(i).Name(); + if (IsBlank(recName)) + recName = strtprintf("%s_%d", src.what, i); } - pR->SetName(name); + pR->SetName(recName); } while (--i > 0); return rc; diff --git a/src/cgcomp.cpp b/src/cgcomp.cpp index 397e323d1..aa9d09cf3 100644 --- a/src/cgcomp.cpp +++ b/src/cgcomp.cpp @@ -2705,7 +2705,7 @@ RC AIRNET::an_Calc( // airnet flow balance { if (!dubCount++) printf("\n\nIteration %d", iter); - printf("\nDubious: % s", ZrB[ix + zi0].name); + printf("\nDubious: % s", ZrB[ix + zi0].Name()); } } #endif @@ -2717,7 +2717,7 @@ RC AIRNET::an_Calc( // airnet flow balance { if (an_mdotAbs[zi] == 0.) err(ERR, "AirNet: Zone '%s' has no air flow, no solution possible.", - ZrB[zi + zi0].name); + ZrB[zi + zi0].Name()); } } err(ABT, diff --git a/src/cgdebug.cpp b/src/cgdebug.cpp index 1d5b5f330..63da33e31 100644 --- a/src/cgdebug.cpp +++ b/src/cgdebug.cpp @@ -310,12 +310,12 @@ o pgbuildr( &pp, &rc, 0, 0, 0, NULL, &cfh, zp, PBDONE ); if (ize->iz_zi1 == zi) { const char* name2 = - ize->iz_zi2 > 0 ? ZrB[ ize->iz_zi2].name.CStr() + ize->iz_zi2 > 0 ? ZrB[ ize->iz_zi2].Name() : ize->iz_IsHERV() ? "(HERV)" : ize->iz_IsExterior() ? "(ambient)" : "--"; pgbuildr( &pp, &rc, 0, 0, 0, NULL, &izxch, ize, - ZrB[ ize->iz_zi1].name.CStr(), // PBARGSI 1 + ZrB[ ize->iz_zi1].Name(), // PBARGSI 1 name2, // 2 ize->getChoiTx( IZXRAT_NVCNTRL, 1),// 3 PBSPECEND ); @@ -411,7 +411,7 @@ static PBHEAD ashwatH = { PBDATOFFL, ashwatT, 0, 0, 0 }; // special arg(s) required by certain specific tables, 2-95 const char * argp = (const char *)PBSPECEND; if (ty==CTINTWALL && adjZi) // if doing other sides of interior walls - argp = ZrB.p[xs->ownTi].name.CStr(); // show owning zone name, where full info is + argp = ZrB.p[xs->ownTi].Name(); // show owning zone name, where full info is else if ( ty==CTEXTWALL || ty==CTINTWALL // for surface... || ty==CTMXWALL || ty==CTWINDOW ) // or window, show exterior condition, with pertinent subfields { @@ -428,7 +428,7 @@ static PBHEAD ashwatH = { PBDATOFFL, ashwatT, 0, 0, 0 }; case C_EXCNDCH_ADJZN: // add adjacent zone name *p++ = ' '; - strcpy( p, ZrB.p[xs->x.sfAdjZi].name.CStr()); + strcpy( p, ZrB.p[xs->x.sfAdjZi].Name()); break; } } @@ -461,7 +461,7 @@ static PBHEAD ashwatH = { PBDATOFFL, ashwatT, 0, 0, 0 }; break; } - const char * s2 = rb->rec(xs->x.sgdist[i].sd_targTi).name.CStr(); + const char * s2 = rb->rec(xs->x.sgdist[i].sd_targTi).Name(); switch (xs->x.sgdist[i].sd_targTy) { case SGDTTZNAIR: @@ -561,7 +561,7 @@ const char* MSRAT::ms_SurfBCDesc( // generate description of boundary condix bcx = "Ground"; break; case MSBCZONE: - bcx = strtprintf("Zone '%s'", ZrB.p[ bc.bc_zi].name.CStr()); + bcx = strtprintf("Zone '%s'", ZrB.p[ bc.bc_zi].Name()); break; case MSBCSPECT: // use cvin2s cuz it checks for expr NANs: diff --git a/src/cgresult.cpp b/src/cgresult.cpp index c137b855c..e26f6c34d 100644 --- a/src/cgresult.cpp +++ b/src/cgresult.cpp @@ -1060,8 +1060,8 @@ LOCAL void FC vpRxHeader( // do report/export header appropropriate for type a default: tu1 = TuB.p + dvrip->tui; // one specific terminal objTx = isExport ? tu1->Name() - : strtprintf( "terminal \"%s\" of zone \"%s\"", - tu1->Name(), ZrB.p[tu1->ownTi].name ); + : strtprintf( "terminal \"%s\" of zone \"%s\"", + tu1->Name(), ZrB.p[tu1->ownTi].Name() ); break; case TI_ALL: objTx = "All Terminals"; @@ -1132,11 +1132,11 @@ LOCAL void FC vpRxHeader( // do report/export header appropropriate for type a vrPrintf(vrh, "\"%s\",%03d\n" // format 3 header lines at start of export "\"%s\"\n" "\"%s\",\"%s\"\n", - Top.runTitle, // user-input run title, quoted (defaulted to "") + Top.runTitle.CStr(), // user-input run title, quoted (defaulted to "") Top.runSerial, // run serial # on same line - Top.runDateTime, // date & time string, cnguts.cpp, quoted + Top.runDateTime.CStr(), // date & time string, cnguts.cpp, quoted what, // object type "Energy Balance", "User-defined", etc - ivlTx); // interval "Month" etc, on same line + ivlTx); // interval "Month" etc, on same line } if (rpTy==C_RPTYCH_UDT) vpUdtExColHeads(dvrip); // virtual print user-defined export col headings, below @@ -1471,7 +1471,7 @@ LOCAL void FC vpEbStRow( // virtual print zone ZEB or ZST row for zone or su vpRxRow( dvrip, rxt, res, rxt->col1, // column 1 time (non-ALL reports) - ZnresB.p[resi].name, // name (exports, "ALL" reports) + ZnresB.p[resi].Name(), // name (exports, "ALL" reports) &rxt->xebM, &rxt->xebD, &rxt->xebH, rxt->xebS, // export time columns znSC, znSC, // shades closure indicator for report, export (colHd differs) mode, &xMode ); // mode for report, export. (6-95 why different?) @@ -1550,7 +1550,7 @@ LOCAL void FC vpTuSzLdRow( DVRI *dvrip, RXPORTINFO *rxt, TI tui) TU *tu = TuB.p + tui; // point terminal record vpRxRow( dvrip, rxt, tu, tu->Name(), // name, used in exports or all- reports. No report time column. - ZrB.p[tu->ownTi].name, // terminal's zone's name + ZrB.p[tu->ownTi].Name(), // terminal's zone's name tu->cmLh & cmStH ? tu->hcAs.az_active ? "a" : "i" : "", // AutoSized/Input/None indicator for local heat coil tu->cmAr & cmStH ? tu->vhAs.az_active ? "a" : "i" : "", // .. heat cfm (tuVfMxH) (set output shows n, and value) tu->cmAr & cmStC ? tu->vcAs.az_active ? "a" : "i" : "" ); // .. cool cfm (tuVfMxC) @@ -1577,7 +1577,7 @@ LOCAL void CDEC vpRxRow( // virtual print report or export row given COLDEF tabl // columns loop char *s = temp; - for (colDef = rxt->colDef; colDef->colhd; colDef++) // CAUTION: ->colhd may be NEAR, don't use ==NULL! + for (colDef = rxt->colDef; colDef->colhd; colDef++) { // fetch data if in arg list now, so list is independent of conditional fields, 6-95. if (colDef->offset > 65529U) // if -1...-5 stored in USI (USE_NEXT_ARG = -1U = 65535) diff --git a/src/cgsolar.cpp b/src/cgsolar.cpp index 1fed27931..ee509bf99 100644 --- a/src/cgsolar.cpp +++ b/src/cgsolar.cpp @@ -1076,7 +1076,7 @@ void SgThruWin::tw_ToZoneCav( // put gain to zone cavity // to implement, must distribute to target zone using control zone's znSC in sgrAdd calls. // meanwhile, issue message and fall thru to use wrong control zone. - rer( PWRN, (char *)MH_R0165, ZrB[ czi].name, zp->Name()); /* "cgsolar.cpp:SgThruWin::toZoneCav:\n" + rer( PWRN, (char *)MH_R0165, ZrB[ czi].Name(), zp->Name()); /* "cgsolar.cpp:SgThruWin::toZoneCav:\n" " control zone (\"%s\") differs from target zone (\"%s\")."*/ } diff --git a/src/cncult3.cpp b/src/cncult3.cpp index 7ab578b60..fca1c7ce5 100644 --- a/src/cncult3.cpp +++ b/src/cncult3.cpp @@ -985,7 +985,7 @@ RC FC topSh() // SHADE processing at RUN { sh->oer( (char *)MH_S0522, /* "Window '%s' is already shaded by shade '%s'. \n" " Only 1 SHADE per window allowed. */ - gz->Name(), WshadR.p[gz->x.iwshad].name ); + gz->Name(), WshadR.p[gz->x.iwshad].Name() ); continue; // skip (msg prevented RUN) } @@ -2665,7 +2665,7 @@ void SBC::sb_SetRunConstants( // set mbrs that do not change during simulation const char* hcModelTx = ::getChoiTxI( DTCONVMODELCH, sb_hcModel); if (sb_zi) { DbPrintf( " %d %s %s hcNatConst[ ta<=ts]=%0.3f hcNatConst[ ta>ts]=%0.3f", - sb_si, ZrB[ sb_zi].name, hcModelTx, sb_hcConst[ 0], sb_hcConst[ 1]); + sb_si, ZrB[ sb_zi].Name(), hcModelTx, sb_hcConst[0], sb_hcConst[1]); } else { const char* hcExCndTx = ::getChoiTxI( DTEXCNDCH, x.sfExCnd); diff --git a/src/cncult4.cpp b/src/cncult4.cpp index 17edcd39a..9a5691812 100644 --- a/src/cncult4.cpp +++ b/src/cncult4.cpp @@ -1037,7 +1037,7 @@ RC RI::ri_oneRxp() // process one report or export for topRxp sname = "Energy Balance"; break; // C_RPTYCH_ZEB } - sprintf( buf, "%s %s %s", sname, exrePort, name.CStr()); // eg "Statistics report userName1", for errmsgs + sprintf( buf, "%s %s %s", sname, exrePort, Name()); // eg "Statistics report userName1", for errmsgs vrOpen( &vrh, buf, optn); // open virtual report, get handle (vrh). if (DvriB.add( &dvrip, WRN)==RCOK) // add record to DVRI / if ok (fail unlikely after al above) { @@ -1424,6 +1424,11 @@ COL::~COL() int options/*=0*/) // options bits { RC rc = record::Validate(options); + if (colVal.vt_IsString()) + { + if (!AsCULSTR(&colVal.vt_val).IsValid()) + rc = RCBAD; + } return rc; } // COL::Validate //--------------------------------------------------------------------------------------- diff --git a/src/cnloads.cpp b/src/cnloads.cpp index 16daf94c1..c87272e52 100644 --- a/src/cnloads.cpp +++ b/src/cnloads.cpp @@ -256,7 +256,7 @@ void SGRAT::sg_ToTarg( // apply solar gain to target void SGRAT::sg_DbDump() const { DbPrintf( "\nSGDIST '%s': isSubhrly=%d addIt=%d\n%s targ=%p control=%p", - name, sg_isSubhrly, sg_addIt, + Name(), sg_isSubhrly, sg_addIt, Top.tp_RepTestPfx(), sg_pTarg, sg_pControl); for (int iH=0; iH<24; iH++) { if (iH%4 == 0) @@ -1121,7 +1121,7 @@ x } tz = zn_tzspD; #if defined( _DEBUG) else - printf( "Zone '%s': control zone vent mismatch\n", name.CStr()); + printf( "Zone '%s': control zone vent mismatch\n", Name()); #endif } } @@ -1131,7 +1131,7 @@ x } #if defined( _DEBUG) float tzx = zn_TAirCR( 0., 0.); if (fabs( tz - tzx) > .0001) - printf( "Zone '%s': floating temp mismatch\n", name.CStr()); + printf( "Zone '%s': floating temp mismatch\n", Name()); #endif } @@ -1415,7 +1415,7 @@ RC ZNR::zn_CondixCR2() // zone conditions, part 2 if (!Top.isWarmup && rs->rs_mode != zn_hcMode) // zone mode should match RSYS mode // don't check during warmup (including autosize) - printf( "Zone '%s': Mode mismatch\n", name.CStr()); + printf( "Zone '%s': Mode mismatch\n", Name()); #endif double mCp = zn_rsAmfSup*Top.tp_airSH; double tSup = rs->rs_asSup.as_tdb; diff --git a/src/cnztu.cpp b/src/cnztu.cpp index b742c1286..c7981c558 100644 --- a/src/cnztu.cpp +++ b/src/cnztu.cpp @@ -2641,8 +2641,8 @@ RC ZNR::ztuMdSeq() // build zone hvac terminal mode sequence table { return rer( (char *)MH_R1257, // " %s and %s" x->sp, (INT)x->spPri, name, - x->ui ? strtprintf( (char *)MH_R1258, TuB.p[x->ui].name) : "natvent", // "terminal '%s'" - nx->ui ? strtprintf( (char *)MH_R1258, TuB.p[nx->ui].name) : "natvent" ); // ditto + x->ui ? strtprintf( (char *)MH_R1258, TuB.p[x->ui].Name()) : "natvent", // "terminal '%s'" + nx->ui ? strtprintf( (char *)MH_R1258, TuB.p[nx->ui].Name()) : "natvent" ); // ditto } else if (!xCool) // if both heating { @@ -2671,7 +2671,7 @@ RC ZNR::ztuMdSeq() // build zone hvac terminal mode sequence table && x->sp < xArH->sp ) // if terminal also heats (note), with larger setpoint return rer( (char *)MH_R1259, // "Cooling setpoint temp (%g) is less than heating setpoint (%g)\n" x->sp, xArH->sp, // " for terminal '%s' of zone '%s'" - TuB.p[x->ui].name, ZrB.p[x->zi].name ); /* note: if terminal does not also heat, x->xiArH will be 0. + TuB.p[x->ui].Name(), ZrB.p[x->zi].Name()); /* note: if terminal does not also heat, x->xiArH will be 0. Zhx record 0 is all 0's. x->sp assumed >= 0 F. */ } diff --git a/src/cul.cpp b/src/cul.cpp index acf73bc0d..e434a75a2 100644 --- a/src/cul.cpp +++ b/src/cul.cpp @@ -264,7 +264,7 @@ LOCAL RC FC datPt( void); LOCAL RC FC ckiCults( void); LOCAL void FC finalClear( void); LOCAL void FC xStkPt( void); -LOCAL RC ganame( USI f, const char* what, CULSTR& cs); +LOCAL RC ganame( USI f, const char* what, CULSTR& str); LOCAL RC xpr( SI ty, USI fdTy, USI _evfOk, USI useCl, USI f, const char *what, NANDAT *p, USI *pGotTy, USI *pGotEvf ); LOCAL void FC termnIf( void); LOCAL RC CDEC perNxE( char *ms, ...); @@ -1016,12 +1016,12 @@ LOCAL RC FC culENDER( // do c u l end cases || xSp->cs==4) // .. or DEFTYPE basAnc record && nxPrec() > PRSEM ) // if next token NOT terminator (eof, verb, verb-like, type, ';') (ungets the token) { - CULSTR cs; - if (ganame( 0, NULL, cs)==RCOK) // get id, "text", or const string expr (uses xSp->c->id) + CULSTR str; + if (ganame( 0, NULL, str)==RCOK) // get id, "text", or const string expr (uses xSp->c->id) { - if (!((record*)xSp->e)->IsNameMatch( cs)) // if name wrong + if (!((record*)xSp->e)->IsNameMatch( str)) // if name wrong pWarnlc( (char *)MH_S0217, // warning message "%s name mismatch: '%s' vs '%s'" - (char *)c->id, cs.CStr(), ((record*)(xSp->e))->Name()); + (char *)c->id, str.CStr(), ((record*)(xSp->e))->Name()); } // else: continue on error. ganame assumed to have perNx'd. } @@ -1156,7 +1156,7 @@ LOCAL RC FC culRATE( // do RATE cult entry // get Identifier, Quoted txt, or constant string eXpression for name. local fcn. if ( ganame( 0, // disallow "all" and "sum" NULL, // use xSp->c->id in error messages - name) // rcvs string ptr. ganame gets terminator. + name) // rcvs string. ganame gets terminator. != RCOK ) return RCSKIP2END; // on error in name, skip stmt blk (ganame already perNx'd). // duplicate name check is below @@ -2092,34 +2092,29 @@ x UCH *fsj = xSp->fs; // fetch field status byte ptr. Incremented for suc USI useCl = (c->EUCL) ? (c->EUCL) : 1; // expr use class (1991) from .uc or as changed; default 0 to 1. // (all uc's are default, 1995; uc must be non-0; 1 is former cncult.h:UGEN). - CULSTR cs; switch (c->ty) { - XSTK* x; - record *e; - SI v; - USI gotEvf, l; - char ch; - const char* s; - const char* p; + USI gotEvf; default: return perNx( (char *)MH_S0234, (INT)c->ty, (char *)c->id, c ); //"cul.cpp:culDAT: Bad .ty %d in CULT for '%s' at %p" - case TYREF: // deferred-resolution reference to basAnc record, or "all"/"sum" per flag bits - // input is name of record; drefRes() stores record subscript at RUN - // get Identifier, Quoted text, or constant string eXpression. local fcn. - rc = ganame(f, // allow "all", "sum", etc per CULT flags; ALL_OK cleared after 1st ARRAY elt. - NULL, // use xSp->c->id in errMsgs - cs); // receives string. ganame gets terminator. - p = cs; - if (rc==RCOK) // if ok record name, not special word or error - { - drefAdd(p); // add dref (Deferred REFerence) to basAnc record named *p; uses xSp. local. - gotEvf = EVEOI; // value will be stored at end of input, do not set FsSET now. - } // (drefAdd uses p without IncRef; dref stuff later dmfrees it). - else - gotEvf = 0; // no variablity for RC_ALL etc + case TYREF: + { // deferred-resolution reference to basAnc record, or "all"/"sum" per flag bits + // input is name of record; drefRes() stores record subscript at RUN + // get Identifier, Quoted text, or constant string eXpression. local fcn. + CULSTR refd; + rc = ganame(f, // allow "all", "sum", etc per CULT flags; ALL_OK cleared after 1st ARRAY elt. + NULL, // use xSp->c->id in errMsgs + refd); // receives string. ganame gets terminator. + if (rc == RCOK) // if ok record name, not special word or error + { + drefAdd(refd); // add dref (Deferred REFerence) to basAnc record named *p; uses xSp. local. + gotEvf = EVEOI; // value will be stored at end of input, do not set FsSET now. + } // (drefAdd uses p without IncRef; dref stuff later dmfrees it). + else + gotEvf = 0; // no variablity for RC_ALL etc + } goto haveFieldRc; // go do other rc's, field status case TYFLSTR: // string or float: get value/NANDLE and type to VALNDT structure, for reportCol @@ -2133,7 +2128,6 @@ x UCH *fsj = xSp->fs; // fetch field status byte ptr. Incremented for suc goto haveFieldRc; // set Fs per rc, break/return case TYDOY: // day of year. See datPt(), xpr(). fall thru. Uses SI expr (incl month names: see cuparse.cpp). - case TYID: case TYCH: case TYNC: @@ -2184,85 +2178,93 @@ x UCH *fsj = xSp->fs; // fetch field status byte ptr. Incremented for suc // be sure nothing permits any kind of expr for [TYCH or] TYQCH as wouldn't be decoded when later eval'd. - case TYQCH: // historical "quick choice" data type (decoding string in .b) - - // get Identifier, Quoted text, or string eXpression. local fcn. - CSE_E( xpr( TYID, // get string, assume quotes around non-reserved undefined words - xSp->fdTy, // field type (or use 0 here?? 2-91) - 0, 0, // no evfOk, no useCL: require constant. - 0, // for flags for "all" and "sum" and numbers - NULL, // use xSp->c->id in errMsgs - (NANDAT *)&p, // receives string ptr. xpr gets terminator. - NULL, NULL ) ) // don't want type and evf: know would be TYSTR and 0. - - // decode using string of form "value0/value1/value2 ..." - l = (USI)strlen(p); - v = 0; // value (count of /'s) - for (s = (char *)c->b; ; ) - { - ch = *s; // char of decode string - if (ch==0) // if end string, not found - { - xSp->fs[xSp->j] |= FsERR; // say ermsg'd for field: suppress "no ___ given". 12-91. - return perNx( (char *)MH_S0235, // "Value '%s' for '%s' not one of %s" - p, (char *)c->id, c->b ); // errMsg, skip to nxt stmt, cuparse.cpp - } - if (isspaceW(ch)) +#if defined( TYQCH) + case TYQCH: + { // historical "quick choice" data type (decoding string in .b) + + // get Identifier, Quoted text, or string eXpression. local fcn. + const char* p; + CSE_E(xpr(TYID, // get string, assume quotes around non-reserved undefined words + xSp->fdTy, // field type (or use 0 here?? 2-91) + 0, 0, // no evfOk, no useCL: require constant. + 0, // for flags for "all" and "sum" and numbers + NULL, // use xSp->c->id in errMsgs + (NANDAT*)&p, // receives string. xpr gets terminator. + NULL, NULL)) // don't want type and evf: know would be TYSTR and 0. + + // decode using string of form "value0/value1/value2 ..." + int l = strlenInt(p); + SI v = 0; // value (count of /'s) + for (const char* s = (char*)c->b; ; ) { - s++; - continue; // skip whitespace - } - if (ch=='/') // / separator means "next value" - { - s++; - v++; - continue; // extra /'s skip values - } // eg leading / makes 1-based - if (_strnicmp( s, p, l)==0) // if matches - { - ch = *(s+l); // decode string char after - if ( ch=='\0' || ch=='/' // if end, separator, or space - || isspaceW(ch) ) // then whole thing matched + char ch = *s; // char of decode string + if (ch == 0) // if end string, not found { - *(SI *)xSp->p = v; // store value - break; // done + xSp->fs[xSp->j] |= FsERR; // say ermsg'd for field: suppress "no ___ given". 12-91. + return perNx((char*)MH_S0235, // "Value '%s' for '%s' not one of %s" + p, (char*)c->id, c->b); // errMsg, skip to nxt stmt, cuparse.cpp } + if (isspaceW(ch)) + { + s++; + continue; // skip whitespace + } + if (ch == '/') // / separator means "next value" + { + s++; + v++; + continue; // extra /'s skip values + } // eg leading / makes 1-based + if (_strnicmp(s, p, l) == 0) // if matches + { + ch = *(s + l); // decode string char after + if (ch == '\0' || ch == '/' // if end, separator, or space + || isspaceW(ch)) // then whole thing matched + { + *(SI*)xSp->p = v; // store value + break; // done + } + } + while (*s && *s != '/') // advance to next / + s++; } - while (*s && *s != '/') // advance to next / - s++; + dmfree(DMPP(p)); // free input string storage + goto setFsVAL; // go set "value stored" bit in field status byte, then break. 12-14-91 } - dmfree( DMPP( p)); // free input string storage - goto setFsVAL; // go set "value stored" bit in field status byte, then break. 12-14-91 +#endif // TYQCH case TYIREF: // reference to already-defined basAnc record - // input is name of record; record subscript is stored. + { // input is name of record; record subscript is stored. - /* TYIREF not TYREF typically used in ownTi's of basAncs that may own - records in others basAncs, so set during input, in case used during - input re ambiguity resolution. Not positive needed. 2-91. */ - // Probably no uses left that are not RDFLIN/NOINP. later 2-91. + /* TYIREF not TYREF typically used in ownTi's of basAncs that may own + records in others basAncs, so set during input, in case used during + input re ambiguity resolution. Not positive needed. 2-91. */ + // Probably no uses left that are not RDFLIN/NOINP. later 2-91. - // get Identifier, Quoted text, or const string eXpression. local fcn. - CSE_E( ganame( 0, // disallow "all" and "sum" **** implement here like TYREF if needed, 1-92 + // get Identifier, Quoted text, or const string eXpression. local fcn. + CULSTR refd; + CSE_E(ganame(0, // disallow "all" and "sum" **** implement here like TYREF if needed, 1-92 NULL, // use xSp->c->id in errMsgs - cs ) ) // receives dm string ptr. gets terminator. + refd)) // receives string. gets terminator. - // search specified basAnc for record with that name. If > 1 found, use the one whose owning RATE is open per xStk. - if (ratLuCtx( (BP)c->b, cs, c->id, &e) != RCOK) // local. if not found... - { - xSp->fs[xSp->j] |= FsERR; // say msg issued for field (eg suppress "no ___ given" if RQD) - return perNx(NULL); // skip input to nxt stmt (ratLuCtx issued message). - } - *(SI *)xSp->p = e->ss; // found. Store subscript. + // search specified basAnc for record with that name. If > 1 found, use the one whose owning RATE is open per xStk. + record* e; + if (ratLuCtx((BP)c->b, refd, c->id, &e) != RCOK) // local. if not found... + { + xSp->fs[xSp->j] |= FsERR; // say msg issued for field (eg suppress "no ___ given" if RQD) + return perNx(NULL); // skip input to nxt stmt (ratLuCtx issued message). + } + *(SI*)xSp->p = e->ss; // found. Store subscript. // also treat as deferred reference so verified still good at RUN -- in case record deleted later - drefAdd(p); // add dref to basAnc entry named *p; uses xSp. local. + drefAdd(refd); // add dref to basAnc entry named *p; uses xSp. local. // (drefAdd uses p without IncRef; dref stuff later dmfrees it). // issue warning if in statement block for another entry of same basAnc - for (x = xStk; x < xSp; x++) - if ( (x->cs==3||x->cs==4) && x->b==c->b && x->e != e) - pWarnlc( (char *)MH_S0236, // "Statement says %s '%s', but it is \n" - (char *)c->id, e->Name(), x->e->classObjTx() ); // " in statement group for %s." + for (const XSTK* x = xStk; x < xSp; x++) + if ((x->cs == 3 || x->cs == 4) && x->b == c->b && x->e != e) + pWarnlc((char*)MH_S0236, // "Statement says %s '%s', but it is \n" + (char*)c->id, e->Name(), x->e->classObjTx()); // " in statement group for %s." + } goto setFsVAL; // go say 'value stored' in fld status bytes } // switch (ty) @@ -2376,7 +2378,10 @@ LOCAL RC FC datPt() // point to DAT and KDAT data storage per xSp->c, e, fs0 if (dt & DTBCHOICB) // modern (1991) choice field data types { if ( ty != TYCH // cult type must by TYCH - && ty != TYQCH ) // or TYQCH (cult decoding overrides) +#if defined( TYQCH) + && ty != TYQCH +#endif + ) // or TYQCH (cult decoding overrides) goto badTynDt; // sz = 2; already set // size is 2 bytes } @@ -2391,9 +2396,11 @@ LOCAL RC FC datPt() // point to DAT and KDAT data storage per xSp->c, e, fs0 USI dtMustBe; switch (ty) // break with sz and dtMustBe set { +#if defined( TYQCH) case TYQCH: dtMustBe = DTSI; break; // or any CHOICB, handled above +#endif case TYIREF: case TYREF: dtMustBe = DTTI; @@ -2639,15 +2646,15 @@ LOCAL RC ganame( USI f, // flag bits: SUM_OK: accept "sum" (returns RC_SUM); ALL_OK, [ELECTRIC_OK,] etc likewise (see xpr). const char* what, // text for errmsgs (eg ttTx) or NULL for xSp->c->id - CULSTR& cs) // receives string (or NANDLE) + CULSTR& str) // receives string (or NANDLE? not possible?) // also uses: if 'what' is NULL: xSp->c->id (re compile errMsgs) // returns: RCOK: normal success, tokTy = CUTCOM if comma followed it and f & ARRAY on. // RC_SUM, RC_ALL, RC_ALLBUT, [RC_ELECTRIC]: returned if special word gotten and enabling flags on. // other: error, message issued, perNx done. { - /* link to a fir in srfd.cpp to get field type of an ANAME, partly to - excercise new fields limit code 2-92 -- later just check length here?*/ + // link to a fir in srfd.cpp to get field type of an ANAME, partly to + // excercise new fields limit code 2-92 -- later just check length here? RC rc = xpr( TYID, // TYID: string, implied quotes on unreserved undeclared words sfirSFI[ SFI_NAME].fdTy, // get field type for an ANAME field so exman.cpp will check string length @@ -2656,12 +2663,12 @@ LOCAL RC ganame( 0, 0, // 0 evfOk, useCl: require constant value f, // pass flags for "all" and "sum", etc 1-92 what, // pass arg thru - (NANDAT *)&cs, // receives pointer to constant string value + (NANDAT *)&str, // receives constant string value NULL, NULL ); // don't want type and evf if (rc==RCOK) // if ok and not special, check characters in name, 4-92. { - char* p = cs.CStrModifiable(); // point to string + char* p = str.CStrModifiable(); // point to string strTrim( p); // in place trim WS from beg and end int len = strlenInt(p); // allow high graphics characters 129-255. Should we bother to disallow 127-128? Embedded spaces ok. diff --git a/src/cul.h b/src/cul.h index 718cd4dde..e16be5994 100644 --- a/src/cul.h +++ b/src/cul.h @@ -76,8 +76,9 @@ struct CULT : public STBK // for initialized data to drive user interface USI f; // input flag bits: RQD, NO_INP, ITFRP, PRFP, ARRAY, etc below; and internal flag bits. unsigned uc:4; // expr use class bits (cncult.h)(always now (1-92) 0=default, use bits to expand evf as needed). unsigned evf:12;// DAT: variability: highest (leftmost bit) eval freq ok for expr. cuevf.h. 9 bits in use 6-95. - SI ty; // DAT,KDAT: cul data type, below, TYSI,TYQCH,TYREF,&c. - void* b; // ptr to basAnc for RATE or if .ty is TYREF/TYIREF; decoding string if ty is TYQCH. + SI ty; // DAT,KDAT: cul data type, below, TYSI, TYREF,&c. + void* b; // ptr to basAnc for RATE or if .ty is TYREF/TYIREF + // iff TYQCH defined: decoding string (believed unused 5-23) void* dfpi; // DAT,KDAT: integer or pointer default value; "itf" fcn ptr for non-data entries. float dff; // DAT/KDAT: float default, used if TYFL, and if TYNC and .dfpi is 0. // (b4 C++, Couldn't find a way to init float in void *). @@ -250,9 +251,14 @@ III. Member Input #define TYIREF 0x3000 // TI. Immediate-resolution reference to already-defined entry in basAnc .b. Input like TYID. // TYIREF not TYREF used in ownTi's of rats that may own entries in others rats, // so set during input, in case used during input re ambiguity resolution - // (not positive needed) 2-91. Typically used with RDFLIN. */ + // (not positive needed) 2-91. Typically used with RDFLIN. +#if 1 +// TYQCH believed unused, 5-2023 +#undef TYQCH +#else #define TYQCH 0x6000 // SI or any CHOICB. "Quick choice", decoded per /-delimited keyword string in cult.b. // historical; still needed 2-91? */ +#endif #define TYDOY 0x7000 // DOY Day of year julian date, input as SI expr (month day syntax accepted). /* bit assignment CAUTION: only 0xf000 avail here; others used in cuparse.h. diff --git a/src/culstr.natvis b/src/culstr.natvis index b0635792e..8d54aa827 100644 --- a/src/culstr.natvis +++ b/src/culstr.natvis @@ -1,11 +1,11 @@ - {us_hCulStr} {us_vectCULSTREL[us_hCulStr].usl_str,s} + {us_hCulStr} {us_csc.us_vectCULSTREL[us_hCulStr].usl_str,s} nandle us_hCulStr - us_vectCULSTREL[us_hCulStr].usl_str,s + us_csc.us_vectCULSTREL[us_hCulStr].usl_str,s \ No newline at end of file diff --git a/src/cuparse.h b/src/cuparse.h index 91dc03725..88347b57e 100644 --- a/src/cuparse.h +++ b/src/cuparse.h @@ -10,34 +10,6 @@ // see cuevf.h for EVFs & variabilities // see srd.h for expr() data types -#if 0 - -//-- expr() data types -- each type is different bit so can represent groups of types and test with 'and'. Data type USI. -#define TYSI 0x01 // 16-bit integer (or BOOlean) -#define TYFL 0x02 // float -#define TYNUM (TYSI|TYFL) // "any numeric data type" (test by and'ing) -#define TYSTR 0x04 // string -#define TYFLSTR (TYFL|TYSTR) // number (as float) or string, known at compile time. for CSE reportCol.colVal. -#define TYID 0x08 // id: string; quotes implied around non-reserved identifier (for record names) at outer level -#define TYCH 0x10 // choice (DTxxx must also be given): string or id, conv to 16/32 bit choicb/choicn value -#define TYNC (TYFL|TYCH) // number (float) or specified 32 bit choicn choice, not necess known til runtime. -// TYDOY day of year: def in cul.h; given to cuparse.cpp as TYSI, 2-91. -// 0x20-0x80 reserved for expansion of above -#define TYANY 0x1f // any value ok: 'or' of all of above -// TYLLI 0x100 not used in cuparse: exman.cpp changes to TYSI. -#define TYNONE 0x200 // no value (start of (sub)expression) -#define TYDONE 0x400 // complete statement: no value on run stack -// CAUTION 0xf000 bits used in cul.h - -//-- exman.cpp:exPile data types -- -#define TYLLI 0x100 // limited long integer: 16 bit value in 32 bit storage to support nan-flagging -//TYSI CAUTION cannot hold nan-flags, use TYLLI (with LI storage!) -// everywhere exman's runtime expressions are to be supported -//TYSTR TYID TYFL TYCH TYNC as above -// not used in exman.cpp: TYNUM, TYANY, TYNONE, ? TYDONE. -#endif - - /*------------------------- FUNCTION DECLARATIONS -------------------------*/ // cuparse.cpp. Also see cuparsex.h -- fcn distribution is capricous, 10-8-90 diff --git a/src/dhwcalc.cpp b/src/dhwcalc.cpp index 6118a118a..c133d738a 100644 --- a/src/dhwcalc.cpp +++ b/src/dhwcalc.cpp @@ -1771,7 +1771,7 @@ RC DHWSYS::ws_DoHourDWHR() // current hour DHWHEATREC modeling (all DHWHEATRECs float qX = tk.wtk_whUse * waterRhoCp * (ws_tUse - tk.wtk_tInletX); float qXHR = qX + qR; if (frDiff(qXHR, qXNoHR, 1.f) > .001f) - { printf("\nDHWSYS '%s': ws_DoHourDWHR tick balance error (md=%d)", name.CStr(), multiDraw); + { printf("\nDHWSYS '%s': ws_DoHourDWHR tick balance error (md=%d)", Name(), multiDraw); if (nReDo++ < 2) goto reDo; // repeat calc (debugging aid) } @@ -1791,7 +1791,7 @@ RC DHWSYS::ws_DoHourDWHR() // current hour DHWHEATREC modeling (all DHWHEATRECs float qX = ws_whUse.total * waterRhoCp * (ws_tUse - tInletX); float qXHR = qX + ws_qDWHR; if (frDiff(qXHR, qXNoHR, 1.f) > .001f) - printf("\nDHWSYS '%s': ws_DoHourDWHR balance error (md=%d)", name.CStr(), multiDraw); + printf("\nDHWSYS '%s': ws_DoHourDWHR balance error (md=%d)", Name(), multiDraw); #endif return rc; @@ -1945,7 +1945,7 @@ RC DHWSYS::ws_WriteDrawCSV()// write this hour draw info to CSV } else { // headings - fprintf(ws_pFDrawCSV, "%s,%s\n", name.CStr(), Top.runDateTime.CStr()); + fprintf(ws_pFDrawCSV, "%s,%s\n", Name(), Top.runDateTime.CStr()); fprintf(ws_pFDrawCSV, "%s %s\n", ProgName, ProgVersion); fprintf(ws_pFDrawCSV, "Mon,Day,DOW,Hr,MinHr,MinDay,tIn (F),tInHR (F),tHot (F),vHot (gal)\n"); } diff --git a/src/exman.cpp b/src/exman.cpp index c7cbcc2d3..7a9f72991 100644 --- a/src/exman.cpp +++ b/src/exman.cpp @@ -1344,7 +1344,12 @@ LOCAL RC FC exEvUp( // evaluate expression. If ok and changed, store and incre #if defined( _DEBUG) isChanged = ex->ext_v == UNSET; if (!isChanged) - isChanged = strcmp((char*)ex->ext_v, AsCULSTR(&pv)); + { + const char* s1 = *reinterpret_cast(&ex->ext_v); // AsCULSTR((const void*)ex->ext_v).CStr(); + const char* s2 = AsCULSTR(pv).CStr(); + isChanged = strcmp(s1, s2); + // isChanged = strcmp((char*)ex->ext_v, AsCULSTR(pv).CStr()); + } #else isChanged = ex->ext_v==UNSET || strcmp( (char *)ex->ext_v, AsCULSTR( &pv)); #endif @@ -1542,7 +1547,7 @@ const char* FC whatEx( USI h) (char *)b->what, // rat name: ZONE etc ex->ext_srcIsType ? " type" : "", // "type" if pertinent b->ptr() // note 1 - ? strtprintf( "'%s'", b->rec(ex->ext_srcI).name) // record name + ? strtprintf( "'%s'", b->rec(ex->ext_srcI).Name()) // record name : strtprintf( "[%d]", (INT)ex->ext_srcI) ); // else subscript else // no b (currently not expected 2-91) return ""; @@ -1574,10 +1579,10 @@ const char* FC whatNio( USI ancN, TI i, USI off) // error message insert descri // record name const char* rName; if ( b->ptr() // if anchor's record block allocated: insurance, and - && b->rec(i).name[0] ) // and if name is non-"" - rName = strtprintf( (char *)MH_E0110, b->rec(i).name, (INT)i); // show name, + subscr in parens. "'%s' (subscript [%d])" + && !b->rec(i).name.IsBlank() ) // and if name is non-"" + rName = strtprintf( (char *)MH_E0110, b->rec(i).Name(), i); // show name, + subscr in parens. "'%s' (subscript [%d])" else - rName = strtprintf( "[%d]", (INT)i); // [unnamed or] null name or not alloc'd, show subscipt only + rName = strtprintf( "[%d]", i); // [unnamed or] null name or not alloc'd, show subscipt only // assemble of [ type] ' [(n)]' etc diff --git a/src/mspak.cpp b/src/mspak.cpp index a37eabf49..909c3944e 100644 --- a/src/mspak.cpp +++ b/src/mspak.cpp @@ -1166,7 +1166,7 @@ void MSRAT::ms_StepFD() // update mass temps with forward difference model bcx[ ibc].ZoneAccum( ms_area, z); #if defined( DEBUGDUMP) if (DbDo( dbdRCM)) - bcx[ ibc].DbDumpZA( strtprintf( "%s %s", z.name, name), ms_area); + bcx[ ibc].DbDumpZA( strtprintf( "%s %s", z.Name(), Name()), ms_area); #endif #if 0 x z.qMsSg += sbc.sb_sgTarg.st_tot; // add surf's inside solar gain to adjacent zone's .qMsSg diff --git a/src/srd.h b/src/srd.h index 47ec02e88..9cb93adc8 100644 --- a/src/srd.h +++ b/src/srd.h @@ -182,8 +182,8 @@ struct VALNDT } bool vt_IsString() const - { - bool isString = vt_ty == TYSTR || vt_ty == DTCULSTR; + { // return true iff vt_ty is CULSTR + bool isString = vt_ty == TYSTR || vt_ty == TYID || vt_ty == DTCULSTR; #if defined( DEBUG) if (!isString && vt_ty != 0 && vt_ty != TYFL) printf("\nvt_IsString: unexpected vt_ty=%d vt_val=%x", vt_ty, (unsigned int)(vt_val)); diff --git a/src/strpak.cpp b/src/strpak.cpp index 7edb3bbab..847da0e1f 100644 --- a/src/strpak.cpp +++ b/src/strpak.cpp @@ -90,8 +90,15 @@ char* CULSTREL::usl_Set( } // CULSTREL::usl_Set //============================================================================= -/*static*/ std::vector CULSTR::us_vectCULSTREL; // { CULSTREL("")}; // element 0 is always "" -/*static*/ HCULSTR CULSTR::us_freeChainHead{ 0 }; +CULSTRCONTAINER::CULSTRCONTAINER() : us_freeChainHead{ 0 } +{ + us_vectCULSTREL.push_back(""); +} + + +/*static */ CULSTRCONTAINER CULSTR::us_csc; + + //----------------------------------------------------------------------------- CULSTR::CULSTR() : us_hCulStr(0) {} @@ -162,11 +169,11 @@ void CULSTR::FixAfterCopy() bool CULSTR::IsValid() const { bool bValid = IsNANDLE() - || (us_hCulStr >= 0 && us_hCulStr < us_vectCULSTREL.size()); + || (us_hCulStr >= 0 && us_hCulStr < us_csc.us_vectCULSTREL.size()); if (!bValid) printf("\nBad hCulStr %d", us_hCulStr); - const char* str0 = us_vectCULSTREL[0].usl_str; + const char* str0 = us_csc.us_vectCULSTREL[0].usl_str; if (!str0 || strlen(str0) > 0) printf("\nBad str0"); @@ -175,23 +182,23 @@ bool CULSTR::IsValid() const //----------------------------------------------------------------------------- CULSTREL& CULSTR::us_GetCULSTREL() const { - return us_vectCULSTREL[ IsValid() ? us_hCulStr : 0]; + return us_csc.us_vectCULSTREL[ IsValid() ? us_hCulStr : 0]; } // CULSTR::us_GetCULSTREL(); //----------------------------------------------------------------------------- void CULSTR::us_Alloc() // allocate { - if (us_freeChainHead) + if (us_csc.us_freeChainHead) { // use available free slot - us_hCulStr = us_freeChainHead; - us_freeChainHead = us_GetCULSTREL().usl_freeChainNext; + us_hCulStr = us_csc.us_freeChainHead; + us_csc.us_freeChainHead = us_GetCULSTREL().usl_freeChainNext; } else { // no free slot, enlarge vector - if (us_vectCULSTREL.size() == 0) - us_vectCULSTREL.emplace_back(""); - us_vectCULSTREL.emplace_back(); - us_hCulStr = us_vectCULSTREL.size() - 1; + if (us_csc.us_vectCULSTREL.size() == 0) + us_csc.us_vectCULSTREL.emplace_back(""); + us_csc.us_vectCULSTREL.emplace_back(); + us_hCulStr = us_csc.us_vectCULSTREL.size() - 1; } } // CULSTR::us_Alloc //----------------------------------------------------------------------------- @@ -205,8 +212,8 @@ void CULSTR::Release() // release string if (el.usl_status == CULSTREL::uslOTHER) el.usl_str = nullptr; // but maybe set null - el.usl_freeChainNext = us_freeChainHead; - us_freeChainHead = us_hCulStr; + el.usl_freeChainNext = us_csc.us_freeChainHead; + us_csc.us_freeChainHead = us_hCulStr; } us_hCulStr = 0; @@ -216,8 +223,8 @@ void CULSTR::Release() // release string bool CULSTR::us_AllocMightMove() const // check if reallocation is possible // returns true iff next us_Alloc might trigger us_vectCULSTR reallocation { - return us_freeChainHead == 0 - && us_vectCULSTREL.size() == us_vectCULSTREL.capacity(); + return us_csc.us_freeChainHead == 0 + && us_csc.us_vectCULSTREL.size() == us_csc.us_vectCULSTREL.capacity(); } // CULSTR::us_AllocMightMove /////////////////////////////////////////////////////////////////////////////// diff --git a/src/strpak.h b/src/strpak.h index 790959e6c..54c26cc82 100644 --- a/src/strpak.h +++ b/src/strpak.h @@ -168,6 +168,14 @@ char* _strlwr(char* stringMod); using HCULSTR = uint32_t; // string handle +struct CULSTRCONTAINER +{ + CULSTRCONTAINER(); + + std::vector us_vectCULSTREL; // { CULSTREL("")}; // element 0 is always "" + HCULSTR us_freeChainHead; +}; // struct CULSTRCONTAINER + struct CULSTR { CULSTR(); @@ -208,8 +216,11 @@ struct CULSTR } private: + static CULSTRCONTAINER us_csc; +#if 0 static std::vector us_vectCULSTREL; static HCULSTR us_freeChainHead; +#endif void us_Alloc(); bool us_AllocMightMove() const; From 064b17e4cdf02b579241d6fd51e2af7778d73b3d Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Wed, 24 May 2023 13:27:22 -0400 Subject: [PATCH 20/25] Change 'name' to 'Name()' --- src/CNRECS.DEF | 4 ++-- src/ancrec.cpp | 6 +++--- src/ancrec.h | 2 +- src/battery.cpp | 2 +- src/cgcomp.cpp | 22 ++++++++++---------- src/cgdebug.cpp | 2 +- src/cgenbal.cpp | 4 ++-- src/cgresult.cpp | 16 +++++++------- src/cgsolar.cpp | 6 +++--- src/cnah1.cpp | 12 +++++------ src/cnah2.cpp | 34 +++++++++++++++--------------- src/cncoil.cpp | 54 ++++++++++++++++++++++++------------------------ src/cncp.cpp | 10 ++++----- src/cncult2.cpp | 2 +- src/cncult3.cpp | 24 ++++++++++----------- src/cncult4.cpp | 19 +++++++---------- src/cncult5.cpp | 2 +- src/cnguts.cpp | 14 ++++++------- src/cnhp.cpp | 4 ++-- src/cnloads.cpp | 34 +++++++++++++++--------------- src/cntp.cpp | 8 +++---- src/cnztu.cpp | 30 +++++++++++++-------------- src/cse.cpp | 2 +- src/cul.cpp | 22 ++++++++++---------- src/dhwcalc.cpp | 12 +++++------ src/impf.cpp | 4 ++-- src/mspak.cpp | 10 ++++----- src/srd.h | 27 +++++++++++++++++------- src/strpak.h | 8 ++++--- 29 files changed, 203 insertions(+), 193 deletions(-) diff --git a/src/CNRECS.DEF b/src/CNRECS.DEF index fb3a91e5b..c93493952 100644 --- a/src/CNRECS.DEF +++ b/src/CNRECS.DEF @@ -1746,8 +1746,8 @@ RECORD COL "reportCol" *RAT // holds info for columns in user-defined table repo *i SI colWid // column width *i SI colDec // colDecimals: max digits after point *i JUSTCH colJust // justification: C_JUSTCH_L or _R - *s *p VALNDT colVal // value .val and data type .dt (TYFL/TYSTR in input, DTFLOAT/DTCULSTR in run), used at end report interval. - //derived + *s *p VALNDT colVal // value vt_val and data type vt_dt (TYFL/TYSTR in input, DTFLOAT/DTCULSTR in run), used at end report interval. + // derived TI nxColi // for runtime: COL subscript of next column in this report, 0 if last one *END // COL //============================================================================= diff --git a/src/ancrec.cpp b/src/ancrec.cpp index b7fcf9ba4..578b55760 100644 --- a/src/ancrec.cpp +++ b/src/ancrec.cpp @@ -72,7 +72,7 @@ void record::RRFldCopy( // record-to-record field copy { #if defined( _DEBUG) if (b->rt != r->b->rt) - err( PWRN, "%s:%s RRFldCopy: RT mismatch", b->what, name); + err( PWRN, "%s:%s RRFldCopy: RT mismatch", b->what, Name()); #endif int dt = DType( fn); int sz = GetDttab( dt).size; @@ -89,10 +89,10 @@ void record::FldCopy( // field-to-field copy (within record) #if defined( _DEBUG) int dtD = DType( fnD); if (dtD != dtS) - err( PWRN, "%s:%s FldCopy: DT mismatch", b->what, name); + err( PWRN, "%s:%s FldCopy: DT mismatch", b->what, Name()); if (IsAusz( fnS)) err( PWRN, "%s:%s FldCopy: source is AUTOSIZEd", - b->what, name); + b->what, Name()); #endif int sz = GetDttab( dtS).size; memcpy( field( fnD), field( fnS), sz); diff --git a/src/ancrec.h b/src/ancrec.h index 28c83f206..c01134e0c 100644 --- a/src/ancrec.h +++ b/src/ancrec.h @@ -193,7 +193,7 @@ class record // base class for records int sz = GetDttab( dt).size; #if defined( _DEBUG) if (sz != sizeof( T)) - err( PWRN, "%s:%s FldSet: size mismatch", b->what, name); + err( PWRN, "%s:%s FldSet: size mismatch", b->what, Name()); #endif memcpy( field( fn), &v, sz); fStat( fn) |= FsSET | FsVAL; diff --git a/src/battery.cpp b/src/battery.cpp index eb743c45e..a82ebe9b7 100644 --- a/src/battery.cpp +++ b/src/battery.cpp @@ -89,7 +89,7 @@ RC BATTERY::bt_DoHour( if (!Wthr.d.wd_HasTdvData()) { rer(ABT, "BATTERY '%s': No TDV values available for bt_ControlAlg=TDVPeakSave.\n" - " Use Top.tdvFName to specify TDV data file.", name); + " Use Top.tdvFName to specify TDV data file.", Name()); controlAlg = 0; } } diff --git a/src/cgcomp.cpp b/src/cgcomp.cpp index aa9d09cf3..adb08a07c 100644 --- a/src/cgcomp.cpp +++ b/src/cgcomp.cpp @@ -801,13 +801,13 @@ RC IZXRAT::iz_CalcHERV() // set mbrs re HERV model // report run time error with date/time (queries abort or continue) if (iz_vfMin < 0.f) rc |= rer("IZXFER '%s': invalid HERV izVfMin=%0.f (must be >= 0)", - name, iz_vfMin); + Name(), iz_vfMin); if (iz_EATR >= 1.f) rc |= rer("IZXFER '%s': invalid HERV izEATR=%0.2f (must be < 1)", - name, iz_EATR); + Name(), iz_EATR); if (iz_ASRE < iz_SRE) rc |= rer("IZXFER '%s': invalid HERV izASRE (%0.2f) must be >= izSRE (%0.2f)", - name, iz_ASRE,iz_SRE); + Name(), iz_ASRE, iz_SRE); // current operating supply AVF (into z1) // always >= 0 (checks just above) @@ -830,7 +830,7 @@ RC IZXRAT::iz_CalcHERV() // set mbrs re HERV model #if 0 && defined( DEBUGDUMP) if (DbDo( dbdAIRNET)) DbPrintf( "HERV '%s' in: avf=%.2f rho=%.5f mdotP=%.5f\n out: avf=%.2f rho=%.5f mdotP=%.5f\n", - name, avfGross, iz_rho2, ad.ad_mdotP, avfGross*iz_vfExhRat, rhoX, ad.ad_mdotX); + Name(), avfGross, iz_rho2, ad.ad_mdotP, avfGross * iz_vfExhRat, rhoX, ad.ad_mdotX); #endif // iz_air2 / iz_rho2 = air state into z1 @@ -1968,7 +1968,7 @@ RC IZXRAT::iz_BegSubhr() // set subhr constants if (isnan(iz_rho1)) printf("\nNAN"); if ((iz_IsSysOrDuct() || iz_IsOAVRelief()) != (iz_pAF != NULL)) - err( PWRN, "IZXRAT '%s': inconsistent iz_pAF", name); + err( PWRN, "IZXRAT '%s': inconsistent iz_pAF", Name()); #endif if (iz_pAF) @@ -2169,7 +2169,7 @@ RC IZXRAT::iz_ZoneXfers( // calc transfers due to airnet mass flow "vent delRho delpF mDotB\n", iV); dbgDoneHorizHdg[ iV]++; } - DbPrintf( "%-20.20s %10.5f %10.5f %10.5f\n", name, delRho, delpF, ad.ad_mdotB); + DbPrintf( "%-20.20s %10.5f %10.5f %10.5f\n", Name(), delRho, delpF, ad.ad_mdotB); } #endif } @@ -2388,7 +2388,7 @@ RC AIRNET_SOLVER::an_Calc( // airnet flow balance { const ANDAT& ad = ize->iz_ad[iV]; DbPrintf("%-20.20s %d %6.4f %9.4f %10.6f %10.5f %10.5f %11.5f\n", - ize->name, iV, ize->iz_rho1, ize->iz_rho2, ad.ad_delP, ad.ad_mdotP, ad.ad_mdotX, ad.ad_dmdp); + ize->Name(), iV, ize->iz_rho1, ize->iz_rho2, ad.ad_delP, ad.ad_mdotP, ad.ad_mdotX, ad.ad_dmdp); } #endif } // IZXRAT loop @@ -2415,7 +2415,7 @@ RC AIRNET_SOLVER::an_Calc( // airnet flow balance for (zi = 0; zi < an_nz; zi++) { ZNR* zp = ZrB.GetAt(zi + zi0); - DbPrintf("%-20.20s %8.5f %11.8f\n", zp->name, zp->zn_pz0W[iV], (*rV)(zi)); + DbPrintf("%-20.20s %8.5f %11.8f\n", zp->Name(), zp->zn_pz0W[iV], (*rV)(zi)); } } #endif @@ -2448,7 +2448,7 @@ RC AIRNET_SOLVER::an_Calc( // airnet flow balance for (zi = 0; zi < nzDb; zi++) { ZNR* zp = ZrB.GetAt(zi + zi0); - DbPrintf("%-20.20s %8.5f %10.5f %8.5f ", zp->name, zp->zn_pz0W[iV], rVSave[zi], (*rV)(zi)); + DbPrintf("%-20.20s %8.5f %10.5f %8.5f ", zp->Name(), zp->zn_pz0W[iV], rVSave[zi], (*rV)(zi)); VDbPrintf(NULL, &jacSave[zi * nzDb], nzDb, " %10.3f"); } } @@ -2502,7 +2502,7 @@ RC AIRNET_SOLVER::an_Calc( // airnet flow balance if (!Top.tp_autoSizing || Top.tp_pass2) err(WRN, "Zone '%s', %s: unreasonable mode %d pressure %0.2f lb/ft2\n", - zp->name, Top.When(C_IVLCH_S), iV, zp->zn_pz0W[iV]); + zp->Name(), Top.When(C_IVLCH_S), iV, zp->zn_pz0W[iV]); } } } @@ -3288,7 +3288,7 @@ void DUCTSEG::ds_DbDump() const " amfFL=%.1f amfLeak=%.1f uaTot=%0.4f beta=%0.3f tSrf=%0.2f\n" " runF=%0.3f qCondAir=%0.2f qCondRad=%0.2f, qCondTot=%0.2f\n" " ta0=%.2f ta1=%.2f ta2=%.2f ta3=%.2f\n", - name, getChoiTx( DUCTSEG_TY), loc, + Name(), getChoiTx(DUCTSEG_TY), loc, ds_sbcO.sb_txa, ds_sbcO.sb_txr, ds_sbcO.sb_txe, ds_sbcO.sb_hxa, ds_sbcO.sb_hxr, ds_sbcO.sb_hxtot, ds_sbcO.sb_cx, ds_Rduct, ds_Uduct, ds_amfFL, runF*ds_amfFL*ds_leakF, diff --git a/src/cgdebug.cpp b/src/cgdebug.cpp index 63da33e31..42e27969d 100644 --- a/src/cgdebug.cpp +++ b/src/cgdebug.cpp @@ -371,7 +371,7 @@ static PB_DATOFFL sgdt[] = { // pgfmt r c memberOff dt units wid cvfmt label // newline: is continuation on same PAGE // caller supplies THREE string args describing target -{ L, C+1, 16, PBARGSI, DTCULSTR, UNN, 20, FS, "SgDist to " }, // "mass"/"surface"/"zone" +{ L, C+1, 16, PBARGSI, DTCH, UNN, 20, FS, "SgDist to " }, // "mass"/"surface"/"zone" { L, C, C+1, PBARGSI, DTCH, UNN, 20, FS, " " }, // name { L, C, C+1, PBARGSI, DTCH, UNN, 20, FS, " " }, // "inside"/"outside"/"CAir"/"total" { L, C, C+6+3, off( SGDIST, sd_FSO), DTF, UNN, 7, FL+3, " FSO: " }, diff --git a/src/cgenbal.cpp b/src/cgenbal.cpp index f51def6c7..2ba231b7e 100644 --- a/src/cgenbal.cpp +++ b/src/cgenbal.cpp @@ -84,7 +84,7 @@ void cgenbal( // Check energy balances; issue warning message if out of toleran { const DHWSYSRES_IVL* pWSL = &pWS->Y + ivl - 1; double wsTot = pWSL->wsr_SumAbs(); double wsNet = pWSL->qBal; - cgecheck(wsNet, wsTot, tolDHWSYS, absTolDHWSYS, "DHWSYS '%s'", pWS->name, ivl, + cgecheck(wsNet, wsTot, tolDHWSYS, absTolDHWSYS, "DHWSYS '%s'", pWS->Name(), ivl, pWS->wsr_ebErrCount); } #endif @@ -144,7 +144,7 @@ x } 2*tol, // increase tolerance for masses: larger errors than zones. // (2*tol needed with tol=.0001 for bug0050.zip:slab.inp, 2-95) .1, - "surface '%s'", name, ivl, ms_ebErrCount); + "surface '%s'", Name(), ivl, ms_ebErrCount); return rc; diff --git a/src/cgresult.cpp b/src/cgresult.cpp index e26f6c34d..c85129614 100644 --- a/src/cgresult.cpp +++ b/src/cgresult.cpp @@ -669,7 +669,7 @@ void FC vpRxports( // virtual print reports and exports of given frequency for { rer( (char *)MH_R0152, // "%sCond for %s '%s' is unset or not yet evaluated" isExport ? "ex" : "rp", isExport ? "export" : "report", - dvrip->rpTitle.CStrDflt( dvrip->Name())); // title if any, else name + dvrip->rpTitle.CStrIfNotBlank( dvrip->Name())); // title if any, else name continue; // treat as FALSE } if (!(SI)dvrip->rpCond) // if condition false (value is SI, storage is LI to hold NAN for expr) @@ -1115,8 +1115,8 @@ LOCAL void FC vpRxHeader( // do report/export header appropropriate for type a break; // insert for title, 6-95 case C_RPTYCH_UDT: - what = dvrip->rpTitle.CStrDflt( // insert for title for user-defined report: - strtcat( dvrip->name.CStrDflt("User-defined"), // report name else "User-defined" + what = dvrip->rpTitle.CStrIfNotBlank( // insert for title for user-defined report: + strtcat( dvrip->name.CStrIfNotBlank("User-defined"), // report name else "User-defined" isExport ? NULL : " Report", // followed by " Report" if report NULL)); break; @@ -1751,13 +1751,13 @@ LOCAL void FC vpUdtRpColHeads( DVRI *dvrip) // user-defined report column heads p = q + colp->colGap; // nominal start of column, to adjust for overflow / justification q = p + colWid + sTween; // nominal start of next column's gap, if there is another col //s is next avail position in buffer = min value for p - int dt = colp->colVal.vt_ty; // data type, DTFLOAT or DTCULSTR, from VALNDT struct member + int dt = colp->colVal.vt_dt; // data type, DTFLOAT or DTCULSTR, from VALNDT struct member JUSTCH jus = colp->colJust; // justification if (!jus) jus = dt==DTFLOAT ? C_JUSTCH_R : C_JUSTCH_L; // default right-justified for numbers, left for strings // get text to display, adjust position - const char* text = colp->colHead.CStrDflt( colp->name); // use colHead member if set, else use reportCol record name + const char* text = colp->colHead.CStrIfNotBlank( colp->Name()); // use colHead member if set, else use reportCol record name int acWid = strlenInt(text); if (acWid > colWid) // if overwide p -= min( (SI)(acWid - colWid), (SI)(p - s)); // move left into any available space between columns @@ -1802,7 +1802,7 @@ LOCAL void FC vpUdtExColHeads( DVRI *dvrip) // user-defined export column heads for (int i = dvrip->coli; i; i = colp->nxColi) // loop over columns of table { colp = XcolB.p + i; - const char* text = colp->colHead.CStrDflt( colp->name); + const char* text = colp->colHead.CStrIfNotBlank( colp->Name()); // use colHead member if set, else use reportCol record name // store text in quotes, separating comma @@ -1851,7 +1851,7 @@ LOCAL void FC vpUdtRpRow( DVRI *dvrip) // virtual print current interval row fo // format data - int dt = colp->colVal.vt_ty; // data type, DTFLOAT or DTCULSTR, from VALNDT struct member + int dt = colp->colVal.vt_dt; // data type, DTFLOAT or DTCULSTR, from VALNDT struct member JUSTCH jus = colp->colJust; // justification if (!jus) jus = dt==DTFLOAT ? C_JUSTCH_R : C_JUSTCH_L; // default right-justified for numbers, left for strings @@ -1951,7 +1951,7 @@ LOCAL void FC vpUdtExRow( DVRI *dvrip) // virtual print current interval row for // format data - int dt = colp->colVal.vt_ty; // data type, DTFLOAT or DTCULSTR, from VALNDT struct member + int dt = colp->colVal.vt_dt; // data type, DTFLOAT or DTCULSTR, from VALNDT struct member const char* text; if (ISNANDLE(colp->colVal.vt_val)) // if UNSET (bug)(exman.h) or expression not evaluated yet, show "?". text = "?"; // show "?". Issue message? treat UNSET differently? diff --git a/src/cgsolar.cpp b/src/cgsolar.cpp index ee509bf99..d9f045a7b 100644 --- a/src/cgsolar.cpp +++ b/src/cgsolar.cpp @@ -602,7 +602,7 @@ void XSRAT::xr_SGIncTrans( // hour exterior incident and transmitted solar gai for (int oc=0; oc x.sco + ABOUT0) // note wnSMSO/C values may be from gtSMSO/C. - rer( (char *)MH_R0163, name, x.scc, x.sco); + rer( (char *)MH_R0163, Name(), x.scc, x.sco); // "Window '%s': wnSMSC (%g) > wnSMSO (%g):\n" // " SHGC Multiplier for Shades Closed must be <= same for Shades Open" tDf1[ 0] = gDf * x.sco; @@ -1107,7 +1107,7 @@ void ZNR::zn_DbDumpSGDIST( // dump zone solar gain distribution values DbPrintf( "%s %s rmAbs=%0.3f rmAbsCAir=%0.3f\n" " rmTrans[ 0]=%0.3f sgfCavBm[ 0]=%0.3f sgfCavDf[ 0]=%0.3f sgfCAirBm[ 0]=%0.3f sgfCAirDf[ 0]=%0.3f\n" " rmTrans[ 1]=%0.3f sgfCavBm[ 1]=%0.3f sgfCavDf[ 1]=%0.3f sgfCAirBm[ 1]=%0.3f sgfCAirDf[ 1]=%0.3f\n", - tag, name, rmAbs, rmAbsCAir, + tag, Name(), rmAbs, rmAbsCAir, rmTrans[ 0], sgfCavBm[ 0], sgfCavDf[ 0], sgfCAirBm[ 0], sgfCAirDf[ 0], rmTrans[ 1], sgfCavBm[ 1], sgfCavDf[ 1], sgfCAirBm[ 1], sgfCAirDf[ 1]); diff --git a/src/cnah1.cpp b/src/cnah1.cpp index eeefcfb86..afeb858ff 100644 --- a/src/cnah1.cpp +++ b/src/cnah1.cpp @@ -788,7 +788,7 @@ RC AH::begHour() // airHandler stuff done at start of hour, after expression // check hourly variables if (ahTsMn > ahTsMx) - rer( (char *)MH_R1270, name, ahTsMn, ahTsMx); // "airHandler '%s': ahTsMn (%g) > ahTsMx (%g)" + rer( (char *)MH_R1270, Name(), ahTsMn, ahTsMx); // "airHandler '%s': ahTsMn (%g) > ahTsMx (%g)" // default autoSizing design supply temps (hourly) ahTsMn/Mx, and check. 6-95. if (!(sstat[AH_AHTSDSH] & FsSET)) // if ahTsDsH not given @@ -797,7 +797,7 @@ RC AH::begHour() // airHandler stuff done at start of hour, after expression ahTsDsC = ahTsMn; // use min ts (hourly variable --> copy at runtime. dfl 40). if (Top.tp_autoSizing) // else moot, error message would just cause confusion. if (ahTsDsC > ahTsDsH) - rer( "airHandler '%s': ahTsDsC (%g) > ahTsDsMx (%g).", name, ahTsDsC, ahTsDsH); + rer( "airHandler '%s': ahTsDsC (%g) > ahTsDsMx (%g).", Name(), ahTsDsC, ahTsDsH); // set member flag if ah supply temp setpoint is under ZN (heat/off/cool) or ZN2 (heat/fanOnly/cool) control, this hour. 5-95. isZNorZN2 = (ISNCHOICE(ahTsSp) && (CHN(ahTsSp)==C_TSCMNC_ZN || CHN(ahTsSp)==C_TSCMNC_ZN2)); @@ -816,7 +816,7 @@ RC AH::begHour() // airHandler stuff done at start of hour, after expression // frFanOnNx will be set each subhour by puteRa. // fanCyles and ZN2 are contradictory if (ISNCHOICE(ahTsSp) && CHN(ahTsSp)==C_TSCMNC_ZN2) - rer( PABT, (char *)MH_R1271, name); // "airHandler '%s': ahFanCycles=YES not allowed when ahTsSp is ZN2" + rer( PABT, (char *)MH_R1271, Name()); // "airHandler '%s': ahFanCycles=YES not allowed when ahTsSp is ZN2" // only one terminal is supported, because we are using znTerminal's fraction flow to represent ah's fraction time on. // (for additional terminals, would need to force same flow fraction as control terminal.) @@ -839,10 +839,10 @@ RC AH::begHour() // airHandler stuff done at start of hour, after expression " can't AUTOSIZE tuVfMn when air handler fan cycles:\n" " When fan cycles, terminal minimum flow must be zero, but \n" " AUTOSIZE tuVfMn makes minumum flow equal to maximum flow.", // NUMS - ctu->Name(), name, ctu->tuVfMn ); + ctu->Name(), Name(), ctu->tuVfMn ); else rer( PWRN, (char *)MH_R1274, //"Control terminal '%s' of airHandler '%s':\n" - ctu->Name(), name, ctu->tuVfMn ); //" terminal minumum flow (tuVfMn=%g) must be 0 when fan cycles" + ctu->Name(), Name(), ctu->tuVfMn ); //" terminal minumum flow (tuVfMn=%g) must be 0 when fan cycles" } // determine upper limit of fanF that could reduce ah flow this hour: @@ -1059,7 +1059,7 @@ RC AH::ahCompute() // airHandler full computation ("refine"), after terminals // CAUTION -Pr's & ts random: assumes .ahPtf set when turned ON again #ifdef DEBUG if (frFanOn > Top.hiTol /* + Top.relTol if necess */) // no msg if within vsh tolerances - rWarn( PWRN, (char *)MH_R1275, name, frFanOn); // devel aid warning "airHandler '%s': frFanOn (%g) > 1.0" + rWarn( PWRN, (char *)MH_R1275, Name(), frFanOn); // devel aid warning "airHandler '%s': frFanOn (%g) > 1.0" #endif /* set flags re tu_endAutosize message if autoSizing flow got huge in antRatTs as ts approached sp, diff --git a/src/cnah2.cpp b/src/cnah2.cpp index ed3ea000a..bd203cb67 100644 --- a/src/cnah2.cpp +++ b/src/cnah2.cpp @@ -245,7 +245,7 @@ x // autoSized fan should always be big enough, expect no fanF/fanlimited #ifdef DEBUG2 // omit message from release version. TESTED 5-12-95: enabled msg did not occur in any CKALL tests. if ( Top.iter >= 2 // conditional warning. 2 non-cnvs seen in SA11B13, consider normal. && Top.iter < 12 ) // crude way to limit to 10 messages in one subhour - rWarn( (char *)MH_R1294, name, (INT)Top.iter, // "airHandler '%s' not yet converged. Top.iter=%d\n" + rWarn( (char *)MH_R1294, Name(), (INT)Top.iter, // "airHandler '%s' not yet converged. Top.iter=%d\n" tr, wr, cr, frFanOn, // " tr=%g wr=%g cr=%g frFanOn=%g\n" po, aTs, aWs, fanF, (INT)ahMode, // " po=%g ts=%g ws=%g fanF=%g ahMode=%d\n" trNx, wrNx, crNx ); // " trNx=%g wrNx=%g crNx=%g\n" @@ -2237,7 +2237,7 @@ x setToMin( ulim, max( tSen, ulim1) ); // don't let tSen go hier, { default: rer( PABT, (char *)MH_R1279, // "Internal error: Airhandler '%s': unrecognized ts sp control method 0x%lx" - name, CSE_V ahTsSp); + Name(), CSE_V ahTsSp); case C_TSCMNC_RA: // return air supply temp setpoint control @@ -2245,20 +2245,20 @@ x setToMin( ulim, max( tSen, ulim1) ); // don't let tSen go hier, * // can't use RA with autoSize part A model as don't know whether to use Hi or Lo supply temp. * if (asFlow && Top.tp_pass1A) // must check at run time cuz ahTsSp is hourly variable. * rc |= rer( "airHandler '%s': Cannot use \"ahTsSp = RA\"\n" -* " when autoSizing supply fan or any connected terminal", name); // NUMS +* " when autoSizing supply fan or any connected terminal", Name()); // NUMS #endif // limits of return air range over which ts sp varies must be given. fatal 6-13-92 if (!(sstat[AH_AHTSRAMN] & FsSET)) - rc |= rer(ABT,(char *)MH_R1280,name); // "airHandler '%s': ahTsSp is RA but no ahTsRaMn has been given" + rc |= rer(ABT,(char *)MH_R1280,Name()); // "airHandler '%s': ahTsSp is RA but no ahTsRaMn has been given" if (!(sstat[AH_AHTSRAMX] & FsSET)) - rc |= rer(ABT,(char *)MH_R1281,name); // "airHandler '%s': ahTsSp is RA but no ahTsRaMx has been given" + rc |= rer(ABT,(char *)MH_R1281,Name()); // "airHandler '%s': ahTsSp is RA but no ahTsRaMx has been given" // ts sp limits, otherwise optional, must also be given: these specify range over which ts sp varies if (!(sstat[AH_AHTSMN] & FsSET)) - rc |= rer( ABT, (char *)MH_R1282, name); // "airHandler '%s': ahTsSp is RA but no ahTsMn has been given" + rc |= rer( ABT, (char *)MH_R1282, Name()); // "airHandler '%s': ahTsSp is RA but no ahTsMn has been given" if (!(sstat[AH_AHTSMX] & FsSET)) - rc |= rer( ABT, (char *)MH_R1283, name); // "airHandler '%s': ahTsSp is RA but no ahTsMx has been given" + rc |= rer( ABT, (char *)MH_R1283, Name()); // "airHandler '%s': ahTsSp is RA but no ahTsMx has been given" if (!rc) // if error (missing input), let ts sp be default set above tTsSp = ahTsMx // when tr2Nx is ahTsRaMn, ts sp is Mx @@ -2277,7 +2277,7 @@ x setToMin( ulim, max( tSen, ulim1) ); // don't let tSen go hier, if (ahCtu) // no control terminal possible if ahTsSp is runtime expr ctu = &TuB.p[ahCtu]; // point to specified control terminal for ZN/ZN2 methods else // fatal error 6-13-92 - rer( ABT, (char *)MH_R1284, name); // "ahTsSp for airHandler '%s' is ZN or ZN2 but no ahCtu has been given" + rer( ABT, (char *)MH_R1284, Name()); // "ahTsSp for airHandler '%s' is ZN or ZN2 but no ahCtu has been given" if (ahMode & ahCOOLBIT) // heating & cooling exclusive here cooling = TRUE; // if cooling, say so (low setpoint); leave FALSE for heating (hi sp). /* limitation: if ah has TWO terminals in zone (nothing yet disallows this if not fcc?), @@ -2302,10 +2302,10 @@ x setToMin( ulim, max( tSen, ulim1) ); // don't let tSen go hier, } // require ahTsMn/Mx with ZN and fancycles, since used as setpoints. .460, 5-95. if (!(sstat[AH_AHTSMN] & FsSET)) - rer( ABT, (char *)MH_R1295, name); /* "airHandler '%s': ahTsSp is ZN (with ahFanCycles=YES)" + rer( ABT, (char *)MH_R1295, Name()); /* "airHandler '%s': ahTsSp is ZN (with ahFanCycles=YES)" " but no ahTsMn has been given." */ if (!(sstat[AH_AHTSMX] & FsSET)) - rer( ABT, (char *)MH_R1296, name); /* "airHandler '%s': ahTsSp is ZN (with ahFanCycles=YES)" + rer( ABT, (char *)MH_R1296, Name()); /* "airHandler '%s': ahTsSp is ZN (with ahFanCycles=YES)" " but no ahTsMx has been given." */ #ifdef ZNJUST // (un)def'd at top file, 6-97. /* for ZN/ZN2 autosizing, use only ts that coil can now produce or zone needs, to get large frFanOn. @@ -2906,10 +2906,10 @@ x (and increasing (heat) ts INCREASES flow) */ && ctu // and control terminal not missing && !(ctu->sstat[cooling ? TU_TUTC : TU_TUTH] & FsSET) ) // and needed ctrl tu sp not set, specific msg rer( ABT, (char *)MH_R1286, // "airHandler '%s': ahTsSp is '%s'\n" - name, cmtx, ctu->Name(), whatSp ); // " but control terminal '%s' has no %s" + Name(), cmtx, ctu->Name(), whatSp ); // " but control terminal '%s' has no %s" else // else general msg rer( PABT, (char *)MH_R1287, // "airHandler '%s': ahTsSp is '%s'\n" - name, cmtx, whatSp ); // " but no control zone with terminal with %s found" + Name(), cmtx, whatSp ); // " but no control zone with terminal with %s found" } } // AH::wzczSp //----------------------------------------------------------------------------------------------------------------------------- @@ -3043,7 +3043,7 @@ void AH::antRatTs() // anticipated return air conditions for current (changed) int md = zp->zn_md; // zone's mode, used in following checks #ifdef DEBUG if (zp->mdSeq[md] != MDS_FLOAT) - rer( PWRN, (char *)MH_R1288, name); // "airHandler %s: antRatTs: internal error: not float mode as expected" + rer( PWRN, (char *)MH_R1288, Name()); // "airHandler %s: antRatTs: internal error: not float mode as expected" #endif DBL cMx = aCv; // max aCv: set to tu->cMxH or C in some paths below if (md > 0) // if not mode 0, there is sp mode below the float. @@ -3134,7 +3134,7 @@ x || aTs > tz && ahMode & ahHEATBIT ) ZHX *x = ZhxB.p + (tuCooling ? tu->xiArC : tu->xiArH); // point zhx in use #ifdef DEBUG2 // internal consistency check, omit in release version if (x->mda != zp->zn_md) - rer( PWRN, (char *)MH_R1289, name, tu->Name()); // "airHandler %s: Internal error in antRatTs: \n" + rer( PWRN, (char *)MH_R1289, Name(), tu->Name()); // "airHandler %s: Internal error in antRatTs: \n" // " terminal %s is not terminal of zone's active zhx" #endif /* autoSize flow-tried-to-run-away flag: clear here if ts on "right" side of sp; @@ -3358,7 +3358,7 @@ x || aTs > tz && ahMode & ahHEATBIT ) } else // end of if tu->useAr...else if... rer( PWRN, (char *)MH_R1290, // printf-->rer 10-92 - name, (UI)tu->useAr ); // "airHandler %s: Internal error in antRatTs: unexpected tu->useAr 0x%x" + Name(), (UI)tu->useAr ); // "airHandler %s: Internal error in antRatTs: unexpected tu->useAr 0x%x" // antRatTs: ALL TU CASES merge here with tz, cz, aCv set to prior or updated values @@ -3587,7 +3587,7 @@ void AH::setFrFanOn( // determine fan on fraction this subhour. Call only if #ifdef DEBUG if (!(uUseAr & (uStH|uStC|uMxH|uMxC))) // devel aid check. uUseAr is set in zRat. rer( PWRN, (char *)MH_R1292, // "AH::setFrFanOn: airHandler '%s': unexpected 'uUseAr' 0x%x" - name, (UI)uUseAr ); // after msg fall thru (assumes heating) + Name(), (UI)uUseAr ); // after msg fall thru (assumes heating) #endif cMxnx = // flow for frFanOn=1.0 this subhour for this ah/tu is smaller of tu, sfan min( uUseAr & (uStC|uMxC) // test whether ah is on cuz terminal called for cooling or heat @@ -3598,7 +3598,7 @@ void AH::setFrFanOn( // determine fan on fraction this subhour. Call only if if (cMxnx==0. && crNx != 0.) // fatal error if there is flow when no flow is possible if (!Top.tp_sizing) /* in autoSizing can have flow here b4 tu and/or sfan cMx made non-0 to reflect the demand. Fall thru & make frFanOnNx 1. 7-95. */ - rer( PABT, (char *)MH_R1293, name, crNx ); //"AH::setFrFanOn: airHandler '%s': \n cMxnx is 0 but crNx is non-0: %g" + rer( PABT, (char *)MH_R1293, Name(), crNx ); //"AH::setFrFanOn: airHandler '%s': \n cMxnx is 0 but crNx is non-0: %g" /* cMxnx==0 cd occur if ctu->cMxH/C scheduled 0 to disable function, and there were no leaks. But then there shd be no flow. (Only 1 tu allowed under fcc.) (Review re future infil/exfil imbalance.) */ diff --git a/src/cncoil.cpp b/src/cncoil.cpp index 196907615..44ae027c7 100644 --- a/src/cncoil.cpp +++ b/src/cncoil.cpp @@ -646,7 +646,7 @@ BOO AH::doHWCoil( // compute tex that HW heating coil can and will produce { //rWarn? rer( (char *)MH_R1310, // "AirHandler %s's heat coil is scheduled on, \n but heatPlant %s is scheduled off." - name, hp->Name() ); + Name(), hp->Name() ); ahhc.co_capMax = 0.; // coil capac is 0 when plant is off. fall thru to set tex, ahhc.q, coilLimited. // should coilLimited be TRUE when plant OFF? probably not, as not on when coil off, but unimportant now since error 9-92. } @@ -1366,7 +1366,7 @@ BOO AH::doChwCoil( // compute tex, etc, that CHW cooling coil can and will prod { //rWarn? rer( (char *)MH_R1311, // "AirHandler %s's cool coil is scheduled on, \n but coolPlant %s is scheduled off." - name, cp->Name() ); + Name(), cp->Name() ); //plant off. set output variables for plant off, and return. doCoils has done: tex=ten, wex=wen, chwQ=0. //should coilLimited be TRUE when plant OFF? probably not, as not on when coil off, but unimportant now since error 9-92. tPossC = ten; // plant-off achievable temp (after bypass air remixed) is entry temp @@ -1576,7 +1576,7 @@ x coilIsWet = 0; // means coil is dry // error if water clearly frozen (eg when texWant < 32 cuz of hi dT of following poorly-spec'd drawthru fan, 12-3-92) if (ahcc.tr < 32. && cp->cpTs >= 32.) // but if entering "water" temp < 32 (assume cncp.cpp msg'd), omit per-coil msg here. rer( (char *)MH_R1340, // "airHandler %s: frozen CHW cooling coil: leaving water temperature computed as %g F or less" - name, ahcc.tr ); + Name(), ahcc.tr ); // conditionally call-flag coolplant serving coil @@ -1906,7 +1906,7 @@ x } // msg issued in coilsEndSubhr if xLGain nz at ah-tu convergence. x // if entering air supersaturated, message & do nothing x if (wen > psyHumRat3(ten0)) // (-1 for ten0 > boiling not expected) x { rer( (char *)MH_R1320, // "airHandler '%s': Air entering DX cooling coil is supersaturated:\n" -x name, ten0, wen); // " ten = %g wen = %g. Coil model won't work." +x Name(), ten0, wen); // " ten = %g wen = %g. Coil model won't work." x return; // caller has set tex=ten, wex=wen for 0 coil output: ahcc.q = .co_plr = 0. x } #endif @@ -1921,7 +1921,7 @@ x } if (ahcc.captRat==0) /* precaution: 0 capacity is illegal input, but can result from autoSizing, but does not call here from doCoils, 10-96. */ { - rer( "airHandler '%s': DX cool coil has ahccCaptRat = 0.", name); // bug. NUMS. + rer( "airHandler '%s': DX cool coil has ahccCaptRat = 0.", Name()); // bug. NUMS. return ret; // don't continue: would /0. } @@ -2012,7 +2012,7 @@ x } // /10 gets messages for CBECC cases, 5-2022 // /5 seems tight enough? RER( (char *)MH_R1322, // "airHandler '%s' DX coil inconsistency:\n" - name, he, te,we, he1, wena, (INT)cs1 ); // " he is %g but h(te=%g,we=%g) is %g. wena=%g. cs1=%d" + Name(), he, te,we, he1, wena, (INT)cs1 ); // " he is %g but h(te=%g,we=%g) is %g. wena=%g. cs1=%d" #endif // endtest: done if line horizontal, or, on first iteration, slopes down toward effective point if ( !nIter && we <= wena || fabs(we-wena) < .000003 // TESTED 5-92: .000001 vs .00001 adds but 1 iter. @@ -2032,7 +2032,7 @@ x } } if (nIter > MAXITER1) // non-convergence check & msg, while max info avail { - rer( (char *)MH_R1323, name, // "airHandler '%s':\n" + rer( (char *)MH_R1323, Name(), // "airHandler '%s':\n" // " DX coil full-load exit state convergence failure.\n" ten0, wen0, ahcc.plrVf, // " entry conditions: ten=%g wen=%g plrVf=%g\n" te, we, we1, // " unfinished results: te=%g we=%g last we=%g\n" @@ -2145,7 +2145,7 @@ x } // " capt = %g, but menFOn*(hexf-hen) = %g.\n" // " wen=%g wena=%g we=%g wexf=%g; ten=%g texf=%g; cs=%d,%d\n" // " hexf=%g hexf2=%g hen=%g hen2=%g (hena-hen)*menFOn=%g", - // name, ahcc.capt, capt2, wen0, wena, we, wexf, ten0, texf, (INT)cs1,(INT)cs2, + // Name(), ahcc.capt, capt2, wen0, wena, we, wexf, ten0, texf, (INT)cs1,(INT)cs2, // hexf, hexf2, ahcc.hen, hen2, capt3, hh ); //} @@ -2155,7 +2155,7 @@ x } // RER( "airHandler '%s' DX cool coil caps-capt inconsistency: \n" // " capt = %g, but caps=%g + 1061*menFOn*(wexf-wen)=%g = %g.\n" // " wen=%g wena=%g we=%g wexf=%g; ten=%g texf=%g; cs=%d,%d", - // name, ahcc.capt, ahcc.caps, capl2, ahcc.caps + capl2, wen0, wena, we, wexf, ten0, texf, (INT)cs1,(INT)cs2 ); + // Name(), ahcc.capt, ahcc.caps, capl2, ahcc.caps + capl2, wen0, wena, we, wexf, ten0, texf, (INT)cs1,(INT)cs2 ); // restore if slopee-slopef test gives messages //if (te != ten0) @@ -2164,7 +2164,7 @@ x } // RER( "airHandler '%s' DX cool coil inconsistency: \n" // " efecO = %g but (texf - ten)/(te - ten) = %g.\n" // " wen=%g wena=%g we=%g wexf=%g; ten=%g texf=%g; cs=%d,%d", - // name, ahcc.efecO, efecT, wen0, wena, we, wexf, ten0, texf, (INT)cs1,(INT)cs2 ); + // Name(), ahcc.efecO, efecT, wen0, wena, we, wexf, ten0, texf, (INT)cs1,(INT)cs2 ); //} // restore if slopee-slopef test gives messages @@ -2174,7 +2174,7 @@ x } // RER( "airHandler '%s' DX cool coil inconsistency: \n" // " efecO = %g but (wexf - wen)/(we - wen) = %g. \n" // " wen=%g wena=%g we=%g wexf=%g; ten=%g texf=%g; cs=%d,%d", - // name, ahcc.efecO, efecW, wen0, wena, we, wexf, ten0, texf, (INT)cs1,(INT)cs2 ); + // Name(), ahcc.efecO, efecW, wen0, wena, we, wexf, ten0, texf, (INT)cs1,(INT)cs2 ); //} if ( we <= wen0 // if we > wen, wexf == wen, slopes not ==. @@ -2183,7 +2183,7 @@ x } DBL slopee = (we - wen0)/(te - ten0); DBL slopef = (wexf - wen0)/(texf - ten0); if (RELCHANGE( slopef, slopee) > Top.relTol/10.) - RER( (char *)MH_R1324, name, // "airHandler '%s' DX cool coil inconsistency: \n" + RER( (char *)MH_R1324, Name(), // "airHandler '%s' DX cool coil inconsistency: \n" slopef, slopee, // " slopef = %g but slopee = %g.\n" wen0, wena, we, wexf, // " wen=%g wena=%g we=%g wexf=%g;\n" ten0, texf, (INT)cs1,(INT)cs2 ); // " ten=%g texf=%g; cs=%d,%d" @@ -2254,7 +2254,7 @@ x } consistency msgs (b4 tolerances increased) */ if (nIter1 > MAXITER2) // non-convergence check & msg { - rer( (char *)MH_R1325, name, // "airHandler '%s':\n" + rer( (char *)MH_R1325, Name(), // "airHandler '%s':\n" // " DX coil exit humidity ratio convergence failure.\n" ten0, wen0, tex, // " inputs: ten=%g wen=%g tex=%g\n" wex, wexWas, // " unfinished result: wex=%g last wex=%g\n" @@ -2281,40 +2281,40 @@ x } // actual significance level is maybe .01 or .1. */ { if (ahcc.capt >= 0.) - RER( (char *)MH_R1326, name, ahcc.capt); // "airHandler %s: Inconsistency #1: total capacity (%g) not negative" + RER( (char *)MH_R1326, Name(), ahcc.capt); // "airHandler %s: Inconsistency #1: total capacity (%g) not negative" if (ahcc.caps >= 0.) - RER( (char *)MH_R1327, name, ahcc.caps); // "airHandler %s: Inconsistency #1a: sensible capacity (%g) not negative" + RER( (char *)MH_R1327, Name(), ahcc.caps); // "airHandler %s: Inconsistency #1a: sensible capacity (%g) not negative" if (ahcc.caps < ahcc.capt - .01) - RER( (char *)MH_R1328, name, ahcc.caps, ahcc.capt); // "airHandler %s: Inconsistency #2: sensible capacity (%g)\n" + RER( (char *)MH_R1328, Name(), ahcc.caps, ahcc.capt); // "airHandler %s: Inconsistency #2: sensible capacity (%g)\n" // " larger than total capacity (%g)" if (wex > wen0 + .000001) - RER( (char *)MH_R1329, name, wex, wen0); // "airHandler %s: Inconsistency #3: wex (%g) > wen (%g)" + RER( (char *)MH_R1329, Name(), wex, wen0); // "airHandler %s: Inconsistency #3: wex (%g) > wen (%g)" if (ten0 < tex - .00001) - RER( (char *)MH_R1330, name, tex, ten0); // "airHandler %s: Inconsistency #4: tex (%g) > ten (%g)" + RER( (char *)MH_R1330, Name(), tex, ten0); // "airHandler %s: Inconsistency #4: tex (%g) > ten (%g)" if (teCOn < te - .040) /* .0001 ok most files 3..10-92; larger seen with sutter\SA11B13.INP. .002 is 4e-5 relative, ok cuz a psy fcn (psyHumRat3) is used re teCOn. -->.003 after seeing .0022 in AUSZ testing 7-7-95. -->.005 after seeing .0046 in saturation testing (T17) rob 5-97. -->.040 after Bruce got a .01 in one of his tests. */ - RER( (char *)MH_R1331, name, teCOn, te, // "airHandler %s: Inconsistency #5: teCOn (%g) < te (%g)\n" + RER( (char *)MH_R1331, Name(), teCOn, te, // "airHandler %s: Inconsistency #5: teCOn (%g) < te (%g)\n" wen0, wena, we, wexf, ten0, texf, // " wen=%g wena=%g we=%g wexf=%g; ten=%g texf=%g\n" ahcc.qs, ahcc.ql, ahcc.q, // " ql=%g qs=%g q=%g; plr=%g plrSens=%g; case=%d,%d" ahcc.co_plr, ahcc.plrSens, (INT)cs1,(INT)cs2 ); if (weSatCOn < we - .000010) /* .0000001 ok most files 3..10-92; larger seen with sutter\SA11B13.INP; .0000012 seen in testing condensation 5-97 (humtst2.inp). .0000025 produced by Bruce, 6-97. */ - RER( (char *)MH_R1332, name, weSatCOn, we, // "airHandler %s: Inconsistency #6: weSatCOn (%g) < we (%g)\n" + RER( (char *)MH_R1332, Name(), weSatCOn, we, // "airHandler %s: Inconsistency #6: weSatCOn (%g) < we (%g)\n" wen0, wena, we, wexf, ten0, texf, // " wen=%g wena=%g we=%g wexf=%g; ten=%g texf=%g\n" ahcc.qs, ahcc.ql, ahcc.q, // " ql=%g qs=%g q=%g; plr=%g plrSens=%g; case=%d,%d" ahcc.co_plr, ahcc.plrSens, (INT)cs1,(INT)cs2 ); if (wex < wen0) { if (wex < weSatCOn - .000001) - RER( (char *)MH_R1333, name, wex, weSatCOn); // "airHandler %s: Inconsistency #7: wex (%g) < weSatCOn (%g)" + RER( (char *)MH_R1333, Name(), wex, weSatCOn); // "airHandler %s: Inconsistency #7: wex (%g) < weSatCOn (%g)" if (wex < we - .00001) - RER( (char *)MH_R1334, name, wex, we); // "airHandler %s: Inconsistency #8: wex (%g) < we (%g)" + RER( (char *)MH_R1334, Name(), wex, we); // "airHandler %s: Inconsistency #8: wex (%g) < we (%g)" if (wex < wexf - .00001) - RER( (char *)MH_R1335, name, wex, wexf); // "airHandler %s: Inconsistency #9: wex (%g) < wexf (%g)" + RER( (char *)MH_R1335, Name(), wex, wexf); // "airHandler %s: Inconsistency #9: wex (%g) < wexf (%g)" } } #endif @@ -2346,7 +2346,7 @@ x x " CSE had to assume a latent loss of %g Btu/hr \n" x x " to eliminate supersaturation of air entering the cooling coil. \n" x x " CSE does not simulate condensation. In your input, please specify \n" x x " sufficient infiltration or ventilation for this airHandler's zones.", // NUMS -x x name, ahcc.xLGain ); +x x Name(), ahcc.xLGain ); x x // continue now; run ended elsewhere if too many errors. x #endif x /* possible future 10-96: simulate condensation by checking saturation and adding at least some @@ -2401,9 +2401,9 @@ x if (coilUsed==cuHEAT) // if heat coil used, 12-3-92 case C_COILTYCH_GAS: // gas furnace "coil" // runtime checks cuz exprs may be allowed for captRat, eirRat eg re flue loss simulation 7-6-92. if (ahhc.captRat <= 0) rer( (char *)MH_R1336, // "airHandler '%s':\n" - name, ahhc.captRat ); // " heat coil capacity 'ahhcCaptRat' (%g) not > 0" + Name(), ahhc.captRat ); // " heat coil capacity 'ahhcCaptRat' (%g) not > 0" if (ahhc.eirRat < 1.0) rer( (char *)MH_R1337, // "airHandler '%s':\n" - name, ahhc.eirRat ); // " heat coil full-load energy input ratio 'ahhcEirR' (%g) not > 1.0" + Name(), ahhc.eirRat ); // " heat coil full-load energy input ratio 'ahhcEirR' (%g) not > 1.0" // optional DOE2 gas/oil furnace part-load flueLoss. Skip for speed if none (default 0; .flueLoss 0'd above). if (sstat[AH_AHHC + HEATCOIL_STACKEFFECT] & FsSET) // if stack effect coeff given by user (unusual; fast test) @@ -2658,7 +2658,7 @@ x Only one terminal (enforced in setup): allowing addl terminals would r x { x TU * ctu = &TuB.p[ahCtu]; // ah's control terminal x if (!ahCtu) // ** enforce in cncult5, unless fcc becomes run-variable -x rer( PABT, "fanCyCoil for airHandler '%s' is YES but no ahCtu has been given", name); // no return +x rer( PABT, "fanCyCoil for airHandler '%s' is YES but no ahCtu has been given", Name()); // no return x x cPoss = min( ctu->cMxC, sfan.cMx); // ruling max flow is smaller of tu's current cool max and sfan's (with overrun) x // tu->cMxC is set in AH::ahVshNLims; sfan->cMx is set in FAN::pute. diff --git a/src/cncp.cpp b/src/cncp.cpp index fd5d3f8be..edeba912d 100644 --- a/src/cncp.cpp +++ b/src/cncp.cpp @@ -199,7 +199,7 @@ RC COOLPLANT::cpCompute() // conditionally compute coolplant { // check hourly variable ts setpoint (do in a begHour fcn if one is added). 12-3-92. if (cpTsSp < 32.) - rer( (char *)MH_R1360, name, cpTsSp); // "COOLPLANT '%s': cpTsSp (%g F) is below freezing" + rer( (char *)MH_R1360, Name(), cpTsSp); // "COOLPLANT '%s': cpTsSp (%g F) is below freezing" #undef DUMMYCHW // also independenly definable in cncoil.cpp, cntp.cpp. #ifdef DUMMYCHW // for simple computation model for initial test of interfaces & overall program logic @@ -287,7 +287,7 @@ RC COOLPLANT::cpCompute() // conditionally compute coolplant // move following check to endSubhr fcn, if one is added, for fewer messages. if ( tr < 32. // if return "water" is frozen (lo texWant, CHW coils heating cold air) && cpTs >= 32. ) // but omit msg if supplied "water" frozen (cpTsSp < 32 msg'd above) - rer( (char *)MH_R1361, name, // "COOLPLANT '%s': \n" + rer( (char *)MH_R1361, Name(), // "COOLPLANT '%s': \n" tr ); // " return water temperature (%g F) from coils is below freezing" // chillers input power and heat to cooling towers, for ON chillers of ON coolplant @@ -388,7 +388,7 @@ DBL/*POWER*/ COOLPLANT::capStg() // power of stage .stgi incl pump heat at curre cap, chCapDs negative. */ if (cap > 0.) // positive capacity may screw up calling code rer( (char *)MH_R1362, - name, INT(stgi+1), -(cap - stgPPQ[stgi]), // "COOLPLANT '%s' stage %d chiller capacity (%g)\n" + Name(), INT(stgi+1), -(cap - stgPPQ[stgi]), // "COOLPLANT '%s' stage %d chiller capacity (%g)\n" stgPPQ[stgi], cpTs, tCnd ); // " is less than pump heat (%g) (ts=%g, tCnd=%g)" return cap; } // COOLPLANT::capStg @@ -414,7 +414,7 @@ RC CHILLER::endSubhr() DBL chTs = cp->tr + q / chpp.mw; // this chiller output temp assuming no flow overrun (q negative) if ( chTs < 32. // if frozen && cp->cpTs >= 32. ) // but overall coolplant not frozen (that yields msg in cpCompute) - rer( (char *)MH_R1363, name, cp->Name(), chTs); /* "CHILLER '%s' of COOLPLANT '%s': \n" + rer( (char *)MH_R1363, Name(), cp->Name(), chTs); /* "CHILLER '%s' of COOLPLANT '%s': \n" " delivered water temp (%g F) is below freezing" */ } else // chiller is off @@ -470,7 +470,7 @@ BOO COOLPLANT::nxChStg( CHILLER *&ch, int _stgi /*=-1*/ ) // first/next chille if (_stgi < 0 || _stgi >= NCPSTAGES) // if bad arg given or stgi member not yet set { rer( PWRN, (char *)MH_R1364, // "COOLPLANT %s: bad stage number %d: not in range 1..%d" - name, (INT)_stgi, INT(NCPSTAGES-1) ); // NCPSTAGES: rccn.h. + Name(), (INT)_stgi, INT(NCPSTAGES-1) ); // NCPSTAGES: rccn.h. return FALSE; } diff --git a/src/cncult2.cpp b/src/cncult2.cpp index 51395446c..4b2307530 100644 --- a/src/cncult2.cpp +++ b/src/cncult2.cpp @@ -842,7 +842,7 @@ const char* TOPRAT::When( IVLCH _ivl) const // date / time doc for error messag // result is in TmpStr[] = transient / do not delete // returns "" if simulation not underway { - const char* dateStrX = dateStr.CStrDflt("(no date)"); + const char* dateStrX = dateStr.CStrIfNotBlank("(no date)"); const char* s = NULL; switch (_ivl) { diff --git a/src/cncult3.cpp b/src/cncult3.cpp index fca1c7ce5..e61702111 100644 --- a/src/cncult3.cpp +++ b/src/cncult3.cpp @@ -215,7 +215,7 @@ RC SFI::sf_TopSf1() // door/window: get/check owning surface and zone #if 0 && defined( _DEBUG) -0 if (strMatch( name, "North_Door")) +0 if (strMatch( Name(), "North_Door")) 0 printf( "Hit\n"); #endif SFI* ownSf; @@ -499,7 +499,7 @@ RC SFI::sf_TopSf1() // (documentation only) #if 0 && defined( _DEBUG) -x if (strMatch( name, "North_Door")) +x if (strMatch( Name(), "North_Door")) x printf( "Hit\n"); #endif // topSf1: surface/door: determine time constant of construction @@ -690,7 +690,7 @@ RC MSRAT::ms_Make( // fill MSRAT for SFI + CON // fill mass record (even if not RCOK) name = sf->name; // name #if 0 && defined( _DEBUG) -x if (strMatch( name, "North_Door")) +x if (strMatch( Name(), "North_Door")) x printf( "Hit\n"); #endif ms_area = sf->x.xs_area; // net area @@ -735,7 +735,7 @@ x printf( "Hit\n"); // if outside of mass is exposed, add XSURF to inside zone to rcv insolation XSRAT* xr; - rc=cnuCompAdd( &sf->x, sf->name, inside.bc_zi, &sf->xi, &xr); // add XSRAT to mass's inside zone, ret ptr. + rc=cnuCompAdd( &sf->x, sf->Name(), inside.bc_zi, &sf->xi, &xr); // add XSRAT to mass's inside zone, ret ptr. if (!rc) // if added ok: insurance { // mass wall XSURF differences from SFI.x (do not change input (esp .x.xs_ty) in case surf quick-modelled on later run) xr->x.xs_ty = CTMXWALL; // XSURF type: mass ext wall @@ -761,7 +761,7 @@ const SFI* MSRAT::ms_GetSFI() const : NULL; SFI* pS; if (!pB) - { errCrit( WRN, "MSRAT '%s': bad ms_sfClass %d", name, ms_sfClass); + { errCrit( WRN, "MSRAT '%s': bad ms_sfClass %d", Name(), ms_sfClass); pS = NULL; } else @@ -1102,7 +1102,7 @@ RC SFI::sf_TopSf2() { case C_EXCNDCH_AMBIENT: // regular ol' traditional exterior surface, door, or window case C_EXCNDCH_SPECT: // specified temp on other side - CSE_E( cnuCompAdd( &x, name, zi, &xi, &xr) ) // add XSRAT record, below. return if error. + CSE_E( cnuCompAdd( &x, Name(), zi, &xi, &xr) ) // add XSRAT record, below. return if error. if (x.sfExCnd==C_EXCNDCH_SPECT) // if specT { // specified temp on other side: own xsurf chain for speed: @@ -1128,7 +1128,7 @@ RC SFI::sf_TopSf2() case C_EXCNDCH_ADIABATIC: // no heat nor solar transfer // make runtime surface cuz solar gain & rad intgain targeting use inside of all surfaces, 2-95 - CSE_E( cnuCompAdd( &x, name, zi, &xi, &xr) ) // add XSRAT record, below. return if error. + CSE_E( cnuCompAdd( &x, Name(), zi, &xi, &xr) ) // add XSRAT record, below. return if error. xr->x.xs_ty = CTINTWALL; // change to "interior wall" to be sure ... break; // ... outside won't receive solar @@ -1267,7 +1267,7 @@ void ZNR::zn_SetAirRadXArea() // set mbrs re zone air radiant pseudo surface #if defined( DEBUGDUMP) if (DbDo( dbdRADX)) DbPrintf( "%s radXArea tz=%0.3f relHum=%0.4f airArea=%0.1f CxF=%0.6g\n", - name, tz, zn_relHum, zn_airRadXArea, zn_airCxF); + Name(), tz, zn_relHum, zn_airRadXArea, zn_airCxF); #endif } // ZNR::zn_SetAirRadXArea //----------------------------------------------------------------------------- @@ -1391,7 +1391,7 @@ RC ZNR::zn_RadX() RC rc1 = FFactors( nS+1, tArea.data(), F.data(), errTxt); if (rc1 != RCOK) { rc |= rc1; - errCrit( WRN, "Zone '%s' LW FFactors failure (%s)", name, errTxt); + errCrit( WRN, "Zone '%s' LW FFactors failure (%s)", Name(), errTxt); } // add Oppenheim surface resistance @@ -1416,7 +1416,7 @@ RC ZNR::zn_RadX() rc1 = FFactors( iSX, tArea.data(), F.data(), errTxt); if (rc1 != RCOK) { rc |= rc1; - errCrit( WRN, "Zone '%s' SW FFactors failure (%s)", name, errTxt); + errCrit( WRN, "Zone '%s' SW FFactors failure (%s)", Name(), errTxt); } for (iSX=0,iS=0; iSx.xs_ty = CTKIVA; // XSURF type: kiva surface diff --git a/src/cncult4.cpp b/src/cncult4.cpp index 9a5691812..ff21385ca 100644 --- a/src/cncult4.cpp +++ b/src/cncult4.cpp @@ -260,11 +260,13 @@ RC topCol( int isExport) // copy input rat entries to run rat entries, check, init, set info in owning report COL* colip; - COL* colp; RLUP( *coliB, colip) // loop input column RAT records { + COL* colp{ nullptr }; // run record + // copy data from input rat to run rat, same subscript (needed in this case?) colB->add( &colp, ABT, colip->ss); // add run COL record, ret ptr to it. err unexpected cuz al'd. + *colp = *colip; // copy entire entry incl name, and incr ref count of heap pointers // (.colHead; colVal.vt_val if constant (unlikely!)) @@ -315,18 +317,11 @@ RC topCol( int isExport) evfTx( colEvf,2) ); // text for evf bits,cuparse.cpp,2=noun eg "each hour" } +#if 0 // translate cuparse data types to cvpak data types for use at runtime, in string-or-float value VALNDT structure. - switch (colip->colVal.vt_ty) - { - case TYFL: - colp->colVal.vt_ty = DTFLOAT; - break; // set data type to use when converting to print during run - case TYSTR: - colp->colVal.vt_ty = DTCULSTR; - break; - default: - colip->oer( (char *)MH_S0547, colip->colVal.vt_ty); // "Bad data type (colVal.dt) %d" - } + if (!colip->colVal.vt_SetDT(colip->colVal.vt_dt)) + colip->oer( (char *)MH_S0547, colip->colVal.vt_dt); // "Bad data type (colVal.dt) %d" +#endif // default width if not given. Note: gap is defaulted to 1 per CULT table, and is limit-checked for nonNegative. if (!colp->colWid) diff --git a/src/cncult5.cpp b/src/cncult5.cpp index a862369cd..b40525d29 100644 --- a/src/cncult5.cpp +++ b/src/cncult5.cpp @@ -287,7 +287,7 @@ x ? sfan.vfDs - oaVfDsMn // default rfan cfm: sf { // fanCyles and ZN2 (fan stays on even when ctrl zone is floating) are contradictory if (ISNCHOICE(ahTsSp) && CHN(ahTsSp)==C_TSCMNC_ZN2) - rc |= ooer( AH_AHFANCYCLES, (char *)MH_S0624, name); // "ahFanCycles=YES not allowed when ahTsSp is ZN2" + rc |= ooer( AH_AHFANCYCLES, (char *)MH_S0624, Name()); // "ahFanCycles=YES not allowed when ahTsSp is ZN2" // only 1 terminal can be used (or would have to force other-tu fraction of full flow to match control tu) // (with ahTsSp=ZN/2 and ahFanCycles=NO we are not yet enforcing single tu as would work even if unreal, 6-92) diff --git a/src/cnguts.cpp b/src/cnguts.cpp index 02f6a2162..63237547d 100644 --- a/src/cnguts.cpp +++ b/src/cnguts.cpp @@ -270,7 +270,7 @@ BOOL DbDo( // handy DbShouldPrint + headings ? strtprintf(" pass=%s itr=%d", Top.tp_AuszPassTag(), Top.tp_auszDsDayItr) : ""; DbPrintf( "\n\n================\n%s%s hr=%d subhr=%d\n----------------\n", - Top.dateStr.CStrDflt( "(No date)"), + Top.dateStr.CStrIfNotBlank( "(No date)"), tAusz, Top.iHr, Top.iSubhr); dbgDoneStepHdg = TRUE; @@ -1332,13 +1332,13 @@ RC GAIN::gn_DoHour() const // derive and apply hourly heat gains // check that not more than 100% of gain is distributed. runtime check needed as hourly expr input accepted. if (gnFrZn + gnFrPl + gnFrRtn > 1.f) // "For GAIN '%s': More than 100 percent of gnPower distributed:\n" rc |= rer( (char *)MH_C0101, // " Total of fractions gnFrZn, gnFrPl, and gnFrRtn exceeds 1.0:\n" - name, // " gnFrZn (%g) + gnFrPl (%g) + gnFrRtn (%g) = %g" + Name(), // " gnFrZn (%g) + gnFrPl (%g) + gnFrRtn (%g) = %g" gnFrZn, gnFrPl, gnFrRtn, gnFrZn + gnFrPl + gnFrRtn ); if (gnFrRad + gnFrLat > 1.f) // 11-95 rc |= rer( "For GAIN '%s': More than 100 percent of gnPower distributed:\n" // NEWMS. %% --> percent 10-23-96. " Total of fractions gnFrRad and gnFrlat exceeds 1.0:\n" " gnFrRad (%g) + gnFrLat (%g) = %g", - name, gnFrRad, gnFrLat, gnFrRad + gnFrLat ); + Name(), gnFrRad, gnFrLat, gnFrRad + gnFrLat ); // accumulate zone lighting power before and after daylighting reduction, for binary results file and/or custom reports #if 0 @@ -1410,7 +1410,7 @@ LI ZNRES::zr_GetRunTotalLI( int fn) const LI sum = 0; if (dt != DTLI) err( PERR, "ZNRES::zr_GetRunTotalLI '%s': bad fn = %d", - name, fn); + Name(), fn); else { sum = *(LI *)field( ZNRES_CURR + ZNRES_SUB_Y + fn ) + *(LI *)field( ZNRES_CURR + ZNRES_SUB_M + fn ) @@ -2168,7 +2168,7 @@ static RC sortSubMeterList( // sort and check re submeters #if 0 printf("\nSorted list: "); for (auto iV : vSorted) - printf(" %s", b.GetAtSafe(iV)->name); + printf(" %s", b.GetAtSafe(iV)->Name()); #endif // warn on duplicate refs @@ -2178,14 +2178,14 @@ static RC sortSubMeterList( // sort and check re submeters { // vertex is top level const record* pRRoot = b.GetAtSafe(iV); #if 0 - printf("\nRoot: %s", pRRoot->name); + printf("\nRoot: %s", pRRoot->Name()); #endif if (!dgsm.dg_CountRefs(iV, vRefCounts)) continue; // unexpected cyclic for (size_t i=0; i 1) { record* pR = b.GetAtSafe(i); - pR->oWarn("Duplicate reference from %s '%s'", b.what, pRRoot->name); + pR->oWarn("Duplicate reference from %s '%s'", b.what, pRRoot->Name()); // rc not changed, let run continue // dups accum correctly but probably not intended } diff --git a/src/cnhp.cpp b/src/cnhp.cpp index d463df858..c8ef532bd 100644 --- a/src/cnhp.cpp +++ b/src/cnhp.cpp @@ -183,7 +183,7 @@ RC HEATPLANT::hpCompute() // conditionally compute heatplant // due to tolerance in decrCapF it is normal to get here with "tol" excess load. if (q > stgCap[stgi] * Top.hiTol) // if overload by more than tol, issue message rer( PWRN, // continue for now; errors end run elsewhere. - (char *)MH_R1350, name, q, stgCap[stgi] ); // "heatPlant %s overload failure: q (%g) > stgCap[stgMxQ] (%g)" + (char *)MH_R1350, Name(), q, stgCap[stgi] ); // "heatPlant %s overload failure: q (%g) > stgCap[stgMxQ] (%g)" } } @@ -415,7 +415,7 @@ BOO HEATPLANT::nxBlrStg( BOILER *&blr, SI _stgi /*=-1*/ ) // first/next boiler if (_stgi < 0) _stgi = this->stgi; // default to current stage if (_stgi < 0 || _stgi >= NHPSTAGES) // if bad arg given or stgi member not yet set { - rer( PWRN, (char *)MH_R1351, name, _stgi, NHPSTAGES-1); // "heatPlant %s: bad stage number %d: not in range 0..%d" + rer( PWRN, (char *)MH_R1351, Name(), _stgi, NHPSTAGES-1); // "heatPlant %s: bad stage number %d: not in range 0..%d" return FALSE; // NHPSTAGES: rccn.h. } diff --git a/src/cnloads.cpp b/src/cnloads.cpp index c87272e52..7c7e41fa9 100644 --- a/src/cnloads.cpp +++ b/src/cnloads.cpp @@ -331,10 +331,10 @@ RC ZNR::zn_BegHour2() // beginning-of-hour calcs for zone // (Changed value can persist due to expression eval optimization.) if (i.znQMxH < -0.01f) warn( "Zone '%s', %s: znQMxH %0.f taken as 0 (s/b >= 0)", - name, Top.When( C_IVLCH_H), i.znQMxH); + Name(), Top.When( C_IVLCH_H), i.znQMxH); if (i.znQMxC > 0.01f) warn( "Zone '%s', %s: znQMxC %0.f taken as 0 (s/b <= 0)", - name, Top.When( C_IVLCH_H), i.znQMxC); + Name(), Top.When( C_IVLCH_H), i.znQMxC); /* hourly-only load change checks: zn_xqHr: Hourly parts of b * t - a, just above. @@ -840,7 +840,7 @@ RC ZNR::zn_InitSubhr() if (DbDo( dbdRCM)) DbPrintf( "%s air qsIgHr=%0.1f qrIgTot=%0.1f uaInfil=%0.1f\n" " nAir=%0.2f dAir=%0.2f nRad=%0.2f dRad=%0.2f CxF=%0.6g CX=%0.2f\n", - name, qsIgHr, qrIgTot, zn_uaInfil, + Name(), qsIgHr, qrIgTot, zn_uaInfil, nAirSh, dAirSh, nRadSh, dRadSh, zn_airCxF, zn_airCx); #endif return RCOK; @@ -920,7 +920,7 @@ void ZNR::zn_DbDump() const // int nhour = (Top.jDay-1)*24 + Top.iHr; // int stepno = Top.iSubhr+1; DbPrintf("%s %s: anMCp/T[ 0]=%.2f/%.1f anMCp/T[ 1]=%.2f/%.1f ventUt=%d\n", - name, zn_IsUZ() ? "UZ" : "CZ", + Name(), zn_IsUZ() ? "UZ" : "CZ", zn_AnAmfCp( 0), zn_AnAmfCpT( 0), zn_AnAmfCp( 1), zn_AnAmfCpT( 1), zn_ventUt); DbPrintf(" Nair=%.2f Dair=%.2f Nrad=%.2f Drad=%.2f CX=%.2f airX=%.3f\n", @@ -1005,7 +1005,7 @@ int ZNR::zn_FVentCR() // find zone's preferred vent fraction { #if 0 && defined( _DEBUG) if (Top.jDay == 178) - printf("\nzn_FVentCR '%s'", name); + printf("\nzn_FVentCR '%s'", Name()); #endif int ret = 0; @@ -1058,7 +1058,7 @@ RC ZNR::zn_CondixCR( // zone conditions part 1, convective/radiant model #if 0 && defined( _DEBUG) x if (!Top.isWarmup) -x { if (Top.jDay==31 && strMatch( name, "SDuctZone")) +x { if (Top.jDay==31 && strMatch( Name(), "SDuctZone")) x printf( "Hit\n"); x } #endif @@ -1214,7 +1214,7 @@ x printf( "1B\n"); #if defined( _DEBUG) if (tz < -100.f || tz > 200.f) - warn( "Zone '%s': unreasonable air temp %0.2f\n", name, tz); + warn( "Zone '%s': unreasonable air temp %0.2f\n", Name(), tz); #endif return rc; @@ -1429,7 +1429,7 @@ RC ZNR::zn_CondixCR2() // zone conditions, part 2 zn_sysAirO.af_AccumDry( -zn_rsAmfRet, tz, wzls); // w finalized in zn_AirXMoistureBal #if defined( _DEBUG) if (tz < -100.f || tz > 200.f) - warn( "Zone '%s': unreasonable air temp %0.2f\n", name, tz); + warn( "Zone '%s': unreasonable air temp %0.2f\n", Name(), tz); #endif } @@ -1487,7 +1487,7 @@ RC ZNR::zn_AirFlowVsTsup() f = fopen(strtprintf("AirCurves.csv"), "wt"); if (!f) return RCBAD; // can't open file - fprintf(f, "%s\n", rs->rs_desc.CStrDflt( "Curves")); + fprintf(f, "%s\n", rs->rs_desc.CStrIfNotBlank( "Curves")); fprintf(f, "Mon,Day,Hr,Sh,fAmf,amf,tReg,amfNeeded\n"); @@ -1797,7 +1797,7 @@ x printf("Mismatch\n"); { DbPrintf("%s W: mwIG=%0.3f mwInf=%0.3f mwAN=%0.3f mwDuctLk=%0.3f mwSys=%0.3f mwSum=%0.3f\n" " tdb=%0.2f airX=%0.3f hcAirX=%0.3f dryAirMass=%0.2f XLGain=%0.2f W=%0.6f twb=%0.2f rh=%0.4f\n", - name, mwIG, mwInf, mwAN, zn_ductLkI.af_Wmf(), zn_sysAirI.af_Wmf(), mw, + Name(), mwIG, mwInf, mwAN, zn_ductLkI.af_Wmf(), zn_sysAirI.af_Wmf(), mw, _tz, zn_airX, i.zn_hcAirX, zn_dryAirMass, znXLGain, wz, zn_twb, zn_relHum); DbPrintf(" rho=%0.4f rho0ls=%0.4f wzls=%0.6f dryAirMassEff=%0.2f qlHvac=%0.2f qlIz=%0.2f\n", zn_rho, zn_rho0ls, wzls, zn_dryAirMassEff, zn_qlHvac, zn_qlIz); @@ -1969,7 +1969,7 @@ RC ZNR::zn_ComfortCR() // calculate comfort conditions, conv/radiant model zn_comfPPD7730 = zn_pComf->GetPPD() * 100.f; } else - rc = errCrit( WRN, "Zone '%s': Comfort calculation failure", name); + rc = errCrit( WRN, "Zone '%s': Comfort calculation failure", Name()); } #endif return rc; @@ -4060,7 +4060,7 @@ static float tdbO[] = { 75.f, 85.f, 95.f, 105.f, 115.f, 125.f, 0.f }; RSYS rsSave( *this); // save for restore at exit // (we alter mbrs here) - fprintf(f, "%s\n", rs_desc.CStrDflt(nameX)); + fprintf(f, "%s\n", rs_desc.CStrIfNotBlank(nameX)); fprintf( f, "cfm,IDB (F),IWB (F),ODB (F),CapTot (kBtuh),CapSen (kBtuh),Pwr (kW)\n"); @@ -4124,7 +4124,7 @@ RC RSYS::rs_ExportCorrelationValues() // write CSV file containing values from R RSYS rsSave(*this); // save for restore at exit // (we alter mbrs here) - fprintf(f, "%s\n", rs_desc.CStrDflt(nameX)); + fprintf(f, "%s\n", rs_desc.CStrIfNotBlank(nameX)); fprintf(f, "cfm/ton,ODB (F),EDB (F),EWB (F),RH,SHR,fCap,fEER,fInp\n"); @@ -4187,7 +4187,7 @@ RC RSYS::rs_PerfDataASHP() // (we alter mbrs here) fprintf( f, "%s,All values include rating fan power,,%s,CSE %s\n", - rs_desc.CStrDflt( nameX), + rs_desc.CStrIfNotBlank( nameX), Top.runDateTime.CStr(), Top.tp_progVersion.CStr()); @@ -4591,7 +4591,7 @@ RC RSYS::rs_SetupASHP() // set ASHP defaults and derived parameters } if ((rc1 || iTry==nTry) && !rs_isAuszH) rc |= err("RSYS '%s': No reasonable value found for rsCOP17 and/or rsCOP47." - "\n Check rsHSPF and other heating inputs.", name); + "\n Check rsHSPF and other heating inputs.", Name()); } } @@ -5294,7 +5294,7 @@ RC RSYS::rs_SizeHtASHP( // size ASHP cap47, f1, // x1, f1 cap47+100.); // x2 (f2) if (ret != 0) - { rc = err( "RSYS '%s': Cap47 for design load fail (return code=%d)", name, ret); + { rc = err( "RSYS '%s': Cap47 for design load fail (return code=%d)", Name(), ret); cap47 = cap47Est; } rs_cap47 = cap47; // redundant? @@ -5858,7 +5858,7 @@ RC RSYS::rs_AllocateZoneAir() // finalize zone air flows rs_asSupAux.as_tdb, 1. / rs_amfReq[1]); // x2, f2 if (ret != 0) { - warn("RSYS '%s': ASHP aux heat supply temp fail (%d)", name, ret); + warn("RSYS '%s': ASHP aux heat supply temp fail (%d)", Name(), ret); } #if defined( _DEBUG) // check tSup -- should be between noAux and fullAux temps diff --git a/src/cntp.cpp b/src/cntp.cpp index f6f40324b..91f02ec06 100644 --- a/src/cntp.cpp +++ b/src/cntp.cpp @@ -258,10 +258,10 @@ RC TOWERPLANT::endSubhr() // towers end-subhour computations: fraction on, # tow RC rc=RCOK; if (tpTs <= 32.) // Farenheight assumed! - rc |= rer( (char *)MH_R1370, name, tpTs); // "Frozen towerPlant '%s': supply temp tpTs = %gF" + rc |= rer( (char *)MH_R1370, Name(), tpTs); // "Frozen towerPlant '%s': supply temp tpTs = %gF" //check return... no, check returned water in each load. then delete here: if (tpTs >= 212.) // Farenheight assumed! - rc |= rer( (char *)MH_R1371, name, tpTs); //"Boiling towerPlant '%s': supply temp tpTs = %gF" + rc |= rer( (char *)MH_R1371, Name(), tpTs); //"Boiling towerPlant '%s': supply temp tpTs = %gF" // add any computations or result recording not needed to determine tpTs ... @@ -430,7 +430,7 @@ RC TOWERPLANT::varSpeedF( // determine f needed for one tower to output power q #define NITMAX 10 // increase when need found if (++niter > NITMAX) { - rer( (char *)MH_R1372, name, (INT)niter, // "TowerPlant '%s': varSpeedF() convergence failure, %d iterations \n" + rer( (char *)MH_R1372, Name(), (INT)niter, // "TowerPlant '%s': varSpeedF() convergence failure, %d iterations \n" qWant, _q, _f ); // " qWant=%g q=%g f=%g" break; } @@ -470,7 +470,7 @@ RC TOWERPLANT::varSpeedF( // determine f needed for one tower to output power q * #define NITMAX = 10; // increase if need found * if (++niter > NITMAX) * { rer( "TowerPlant '%s': varSpeedF() convergence failure, %d iterations \n qWant=%g q=%g f=%g", -* name, (INT)niter, qWant, _q, _f ); +* Name(), (INT)niter, qWant, _q, _f ); * break; * } * #undef NITMAX diff --git a/src/cnztu.cpp b/src/cnztu.cpp index c7981c558..866cb2eb9 100644 --- a/src/cnztu.cpp +++ b/src/cnztu.cpp @@ -651,18 +651,18 @@ RC TU::tu_Setup() // check and set up terminal record: call for each terminal // add zhx (zone hvac transfer) records for each capability of terminal. cncult2.cpp:topZn cleared ZhxB. if (cmLh == cmSo) - CSE_E(addZhx(ss, ownTi, 0, LhSo, 0, 0, name, &xiLh)) // local heat, set output + CSE_E(addZhx(ss, ownTi, 0, LhSo, 0, 0, Name(), &xiLh)) // local heat, set output else if (cmLh == cmStH) - CSE_E(addZhx(ss, ownTi, 0, LhStH, CSE_V tuTLh, tuPriLh, name, &xiLh)) // local heat, set temp + CSE_E(addZhx(ss, ownTi, 0, LhStH, CSE_V tuTLh, tuPriLh, Name(), &xiLh)) // local heat, set temp if (cmAr == cmSo) - CSE_E(addZhx(ss, ownTi, ai, ArSo, 0, 0, name, &xiArH)) // air heat/cool set out. Will be linked as heat. + CSE_E(addZhx(ss, ownTi, ai, ArSo, 0, 0, Name(), &xiArH)) // air heat/cool set out. Will be linked as heat. else { if (cmAr & cmStH) - CSE_E(addZhx(ss, ownTi, ai, ArStH, CSE_V tuTH, tuPriH, name, &xiArH)) // set temp air heat + CSE_E(addZhx(ss, ownTi, ai, ArStH, CSE_V tuTH, tuPriH, Name(), &xiArH)) // set temp air heat if (cmAr & cmStC) - CSE_E(addZhx(ss, ownTi, ai, ArStC, CSE_V tuTC, tuPriC, name, &xiArC)) // set temp air cool: can have both zhx's + CSE_E(addZhx(ss, ownTi, ai, ArStC, CSE_V tuTC, tuPriC, Name(), &xiArC)) // set temp air cool: can have both zhx's } if (xiLh) { @@ -919,7 +919,7 @@ RC TU::tu_p2EndTest() // autoSize pass 2 end test // ... (expect tuhc plr linearly related to capacity). if ( Top.verbose > 2 && !Top.tp_auszNotDone // at verbose = 3 show the first not done thing, rob 6-97 || Top.verbose > 3) // at verbose = 4 show all not dones, rob 6-97 - screen( 0, " TU[%s] p2EndTest hc plr%6.3g capt%8g -->%8g", name, hcAs.plrPkAs, was, tuhc.captRat ); + screen( 0, " TU[%s] p2EndTest hc plr%6.3g capt%8g -->%8g", Name(), hcAs.plrPkAs, was, tuhc.captRat ); } // max air flows @@ -938,7 +938,7 @@ RC TU::tu_p2EndTest() // autoSize pass 2 end test tuVfMxH= tuVfMxC= hcXPk * hcPlr / auszLoTol2; // adj max flows to bring plr to 1 - tol/2 (linearity expected) if ( Top.verbose > 2 && !Top.tp_auszNotDone // at verbose = 3 show the first not done thing, rob 6-97 || Top.verbose > 3) // at verbose = 4 show all not dones - screen( 0, " TU[%s] p2EndTest vh+c plr%6.3g vfMx%8g -->%8g", name, vhAs.plrPkAs, was, tuVfMxH ); + screen( 0, " TU[%s] p2EndTest vh+c plr%6.3g vfMx%8g -->%8g", Name(), vhAs.plrPkAs, was, tuVfMxH ); } } else // heat and cool being sized separately @@ -953,7 +953,7 @@ RC TU::tu_p2EndTest() // autoSize pass 2 end test tuVfMxH = vhAs.xPkAs * vhAs.plrPkAs / auszLoTol2; // adj max flow to bring plr to 1 - half of tol (expect linear). if ( Top.verbose > 2 && !Top.tp_auszNotDone // at verbose = 3 show the first not done thing, rob 6-97 || Top.verbose > 3) // at verbose = 4 show all not dones - screen( 0, " TU[%s] p2EndTest vh plr%6.3g vfMx%8g -->%8g", name, vhAs.plrPkAs, was, tuVfMxH ); + screen( 0, " TU[%s] p2EndTest vh plr%6.3g vfMx%8g -->%8g", Name(), vhAs.plrPkAs, was, tuVfMxH ); } if ( vcAs.az_active // if autoSizing air cool && vcAs.plrPkAs && tuVfMxC // and value and its plr are non-0 @@ -965,7 +965,7 @@ RC TU::tu_p2EndTest() // autoSize pass 2 end test tuVfMxC = vcAs.xPkAs * vcAs.plrPkAs / auszLoTol2; // adj max flow to bring plr to 1 - half of tol (expect linear). if ( Top.verbose > 2 && !Top.tp_auszNotDone // at verbose = 3 show the first not done thing, rob 6-97 || Top.verbose > 3) // at verbose = 4 show all not dones - screen( 0, " TU[%s] p2EndTest vc plr%6.3g vfMx%8g -->%8g", name, vcAs.plrPkAs, was, tuVfMxC ); + screen( 0, " TU[%s] p2EndTest vc plr%6.3g vfMx%8g -->%8g", Name(), vcAs.plrPkAs, was, tuVfMxC ); } } @@ -1631,19 +1631,19 @@ RC TU::tu_EndSubhr() // terminal stuff done at end subhr: record load; checks a if (hp->hpMode != C_OFFONCH_ON) // heatplant must be scheduled OFF, or would have come on from ztuCompute. // rWarn? shd be ok to continue: 0 lh used when plant off. rer( (char *)MH_R1252, // "heatPlant %s is scheduled OFF, \n" - hp->Name(), name, tuQMnLh, tuQMxLh ); // " but terminal %s's local heat is NOT scheduled off: \n" + hp->Name(), Name(), tuQMnLh, tuQMxLh ); // " but terminal %s's local heat is NOT scheduled off: \n" break; // " tuQMnLh = %g tuQMxLh = %g" } // check for local heat requiring air flow scheduled on when no flow - // necessary becuase don't believe checks elsewhere cover all cases yet (3-92) + // necessary because don't believe checks elsewhere cover all cases yet (3-92) if (tuhc.q > 0.f) // if lh output is non-0 if (tuLhNeedsFlow==C_NOYESCH_YES) // and terminal's lh needs flow if ( cz==0.f // if terminal has no air heat/cool flow (in excess of leaks/backflow) && CHN(tfanSch)==C_TFANSCHVC_OFF ) // and fan is off *COMPLETE THIS* TFAN CODE INCOMPLETE .. HEATING,VAV ... return rer( (char *)MH_R1253, // "Local heat that requires air flow is on without flow\n" - name, name ); // " for terminal '%s' of zone '%s'.\n" + Name(), Name()); // " for terminal '%s' of zone '%s'.\n" // " Probable internal error, \n" // " but perhaps you can compensate by scheduling local heat off." @@ -1890,7 +1890,7 @@ RC ZNR::ztuMode() // ztuCompute inner fcn: determine zone mode, zone temp, term { // floating modes if (bZn==0.) - return rer((char *)MH_R1254, name); // "Internal error: 'b' is 0, cannot determine float temp for zone '%s'" + return rer((char *)MH_R1254, Name()); // "Internal error: 'b' is 0, cannot determine float temp for zone '%s'" t = a/bZn; // zone temp: with no tstat-ctrl'd zhx, there is no q not already in a // change modes if temp out of range. // tFuzz prevents getting stuck in inf loop cuz of accumulated roundoff errors @@ -2533,7 +2533,7 @@ RC ZNR::ztuMode() // ztuCompute inner fcn: determine zone mode, zone temp, term // store zone results. No change-check here cuz ah computes and checks tr and cr from tz's and c's. if (t < PSYCHROMINT || t > PSYCHROMAXT) { - rer( "Zone '%s': unreasonable air temp = %0.1f", name, t); + rer( "Zone '%s': unreasonable air temp = %0.1f", Name(), t); t = max( DBL( PSYCHROMINT), min( t, DBL( PSYCHROMAXT))); // constrain result (else psychro trouble) } tz = t; // store zone temp, our copy for results (see ztuEndSubhr). @@ -2640,7 +2640,7 @@ RC ZNR::ztuMdSeq() // build zone hvac terminal mode sequence table else if (x->spPri==nx->spPri) // "Equal setpoints (%g) with equal priorities (%d) in zone '%s' -- \n" { return rer( (char *)MH_R1257, // " %s and %s" - x->sp, (INT)x->spPri, name, + x->sp, (INT)x->spPri, Name(), x->ui ? strtprintf( (char *)MH_R1258, TuB.p[x->ui].Name()) : "natvent", // "terminal '%s'" nx->ui ? strtprintf( (char *)MH_R1258, TuB.p[nx->ui].Name()) : "natvent" ); // ditto } diff --git a/src/cse.cpp b/src/cse.cpp index 314a87565..166398c58 100644 --- a/src/cse.cpp +++ b/src/cse.cpp @@ -1317,7 +1317,7 @@ void TOPRAT::tp_SetOptions() // apply command line options etc. to Top record //----------------------------------------------------------------------------- const char* TOPRAT::tp_RepTestPfx() const { - return tp_repTestPfx.CStrDflt(""); // prefix or "" if no prefix + return tp_repTestPfx.CStrIfSet(""); // prefix or "" if no prefix } // TOPRAT::tp_RepTestPfx //----------------------------------------------------------------------------- RC TOPRAT::tp_CheckOutputFilePath( // check output file name diff --git a/src/cul.cpp b/src/cul.cpp index e434a75a2..9053e3a42 100644 --- a/src/cul.cpp +++ b/src/cul.cpp @@ -1245,14 +1245,6 @@ LOCAL RC FC culRATE( // do RATE cult entry perlc( (char *)MH_S0228, (char *)c->id, defTy ? " type" : "", name ); // "duplicate %s%s name '%s'" // and continue here (?) (perlc prevents RUN) // if necessary to avoid (future) ambiguity during defTy, also search regular table (b). -#if 0/* added 11-94, -x and undone cuz error msg already occurs in exman.cpp over 15 chars and truncation to 14 chars below fixed. */ -x // warn & continue if name overlong. This message added and search comparisons limited to ANAME-1 characters 11-94. -x if (strlen(name) > sizeof(ANAME)-1) -x pWarnlc( (char *)MH_S0280, // "%s%s name \"%s\" is too long (%d characters). \n" -x (char *)c->id, defTy ? " type" : "", // " Only %d characters will be used." -x name, strlen(name), sizeof(ANAME)-1 ); -#endif } // add record to specified basAnc @@ -2085,8 +2077,8 @@ x UCH *fsj = xSp->fs; // fetch field status byte ptr. Incremented for suc { // call pre-input fcn if this datum has one - CSE_E( cuf( PRF, RGLR, 1) ) /* if nonNULL, call xSp->c->prf with args. - return any err to our caller now (cuf skipped input to nxt stmt). */ + CSE_E( cuf( PRF, RGLR, 1) ) // if nonNULL, call xSp->c->prf with args. + // return any err to our caller now (cuf skipped input to nxt stmt). // get and store value according to type @@ -2121,7 +2113,10 @@ x UCH *fsj = xSp->fs; // fetch field status byte ptr. Incremented for suc { #define VDP ((VALNDT*)xSp->p) VALNDT& cv = *(reinterpret_cast(xSp->p)); - rc = xpr(c->ty, xSp->fdTy, c->evf, useCl, 0, NULL, (NANDAT *)&cv.vt_val, &cv.vt_ty, &gotEvf); // below + USI tyXpr{ TYNONE }; + rc = xpr(c->ty, xSp->fdTy, c->evf, useCl, 0, NULL, (NANDAT *)&cv.vt_val, &tyXpr, &gotEvf); // below + if (!cv.vt_SetDT(tyXpr)) + printf("\nBAD"); if (cv.vt_IsString()) AsCULSTR(&cv.vt_val).IsValid(); } @@ -2786,6 +2781,11 @@ LOCAL RC xpr( // our local expression compiler interface / checker } } +#if defined( _DEBUG) + if (gotTy == TYID) + printf("\nTYID"); +#endif + if (pGotTy) *pGotTy = gotTy; // return type if caller wants it diff --git a/src/dhwcalc.cpp b/src/dhwcalc.cpp index c133d738a..709111cab 100644 --- a/src/dhwcalc.cpp +++ b/src/dhwcalc.cpp @@ -109,7 +109,7 @@ const char* suffix[ 8] = { "A", "B", "C", "D", "E", "F", "G", "H"}; { iDay++; const char* name = strtprintf( "%s%s", colNames[ iCol], weekSched ? suffix[ iDay] : ""); - fprintf( f, "DHWDAYUSE %s\n", name); + fprintf( f, "DHWDAYUSE %s\n", Name()); drawPrior = 0; drawDur = 0; iRowPrior = -1; @@ -837,7 +837,7 @@ int DHWSYS::ws_IsCentralDHWSYS() const #if defined( _DEBUG) if (b == &WSiB) err( PERR, "ZNRES::ws_IsCentralDHWSYS '%s': called on input record", - name); + Name()); #endif return ws_childDHWSYSCount > 0.f; } // DHWSYS::ws_IsCentralDHWSYS @@ -1423,7 +1423,7 @@ RC DHWSYS::ws_DoHour( // hourly calcs float qX = ws_whUse.total * waterRhoCp * (ws_tUse - ws_tInletX); float qXR = qXNoHR - qX; if (frDiff(ws_qDWHR, qXR, .01f) > .001f) - printf( "\nDHWSYS '%s': HR heat balance error", name); + printf( "\nDHWSYS '%s': HR heat balance error", Name()); } #endif @@ -1578,7 +1578,7 @@ RC DHWSYS::ws_DoHourDrawAccounting( // water use accounting } else { // headings - fprintf(ws_pFDrawCSV, "%s,%s\n", name, Top.runDateTime.CStr()); + fprintf(ws_pFDrawCSV, "%s,%s\n", Name(), Top.runDateTime.CStr()); fprintf(ws_pFDrawCSV, "Draw=,%d,,Load=,%d\n", ws_drawMaxDur, ws_loadMaxDur); fprintf(ws_pFDrawCSV, "Mon,Day,Hr,Draw,Load\n"); } @@ -2274,7 +2274,7 @@ RC DHWSYSRES::wsr_Init( // init (set to 0) (&Y + (ivl - C_IVLCH_Y))->wsr_Clear(); #if defined( _DEBUG) else - rc = err(PWRN, "DHWSYSRES '%s': Invalid ivl %d", name, ivl); + rc = err(PWRN, "DHWSYSRES '%s': Invalid ivl %d", Name(), ivl); #endif return rc; @@ -4532,7 +4532,7 @@ RC DHWHEATER::wh_HPWHInit() // initialize HPWH model if (wh_HPWH.hw_IsSetpointFixed()) { int fn = pWS->ws_GetTSetpointFN( wh_fcn); if (fn) - pWS->ignore(strtprintf("-- HPWH '%s' has a fixed setpoint.", name), fn); + pWS->ignore(strtprintf("-- HPWH '%s' has a fixed setpoint.", Name()), fn); // force consistent ws_tSetpointDes float tspFixed = wh_HPWH.hw_pHPWH->getSetpoint(HPWH::UNITS_F); diff --git a/src/impf.cpp b/src/impf.cpp index 508880902..ec585d147 100644 --- a/src/impf.cpp +++ b/src/impf.cpp @@ -160,8 +160,8 @@ RC FC ImpFldDcdr::axFile( int iffnmi) // access import file, set .iffnmi, .iffn " Import file subscript %d out of range 1 to %d." */ srcFile, line, impfi, ImpfB.n )); impf = &ImpfB.p[impfi]; // point Import File record - impfName = impf->im_fileName.CStrDflt(impf->name); // name for error messages: pathName if present, - // else object name, which is "" if not given + impfName = impf->im_fileName.CStrIfNotBlank(impf->name); // name for error messages: pathName if present, + // else object name, which is "" if not given if (!impf->isOpen) // unless file is open and buffer allocated ok return IMPERR(( (char *)MH_R1907, /* "%s(%d): Internal error:\n" " Import file %s was not opened successfully." */ diff --git a/src/mspak.cpp b/src/mspak.cpp index 909c3944e..d25e2d4dc 100644 --- a/src/mspak.cpp +++ b/src/mspak.cpp @@ -833,9 +833,9 @@ void MSRAT::ms_BegIvl( // beg-of-interval this mass init } #if 0 && defined( _DEBUG) - if (ivl <= C_IVLCH_M && trapName && strMatch( name, trapName)) + if (ivl <= C_IVLCH_M && trapName && strMatch( Name(), trapName)) DbPrintf( "BegIvl %d %c %s: ms_qm=%.f ms_dqm=%.f ms_QIE=%.f ms_QIEDelta=%.f\n", - ivl, Top.isWarmup ? 'W' : '-', name, + ivl, Top.isWarmup ? 'W' : '-', Name(), ms_qm, ms_dqm, ms_QIE( ivl), ms_QIEDelta( ivl)); #endif @@ -892,10 +892,10 @@ void MSRAT::ms_EndIvl( // end-of-interval this mass calcs printf( "M error\n"); if (fabs( ms_dqd - ms_QIEDelta( C_IVLCH_D)) > .01) printf( "D error\n"); - if (trapName && strMatch( name, trapName)) + if (trapName && strMatch( Name(), trapName)) { if (ivl <= C_IVLCH_M) { DbPrintf( "EndIvl %d %c %s: ms_qm=%.f ms_dqm=%.f ms_QIE=%.f ms_QIEDelta=%.f\n", - ivl, Top.isWarmup ? 'W' : '-', name, + ivl, Top.isWarmup ? 'W' : '-', Name(), ms_qm, ms_dqm, ms_QIE( ivl), ms_QIEDelta( ivl)); if (ivl == C_IVLCH_Y) printf( "Y\n"); @@ -984,7 +984,7 @@ RC MSRAT::ms_SetMSBCTNODE( // alter inside boundary condition re external UZM s else if (outside.bc_ty != MSBCADIABATIC) msg = "sfExCnd not 'adiabatic'"; if (!IsBlank( msg)) - err( erOp, "Surface '%s': UZM MSBCTNODE linkage fail (%s)", name, msg); + err( erOp, "Surface '%s': UZM MSBCTNODE linkage fail (%s)", Name(), msg); else { inside.bc_ty = MSBCTNODE; inside.bc_exTa = 70.f; diff --git a/src/srd.h b/src/srd.h index 9cb93adc8..835d5cf6c 100644 --- a/src/srd.h +++ b/src/srd.h @@ -172,21 +172,34 @@ extern SRD sRd[]; /* null-terminated array of SRD, generated by rcdef.exe. struct VALNDT { - void* vt_val; - USI vt_ty; + void* vt_val; // must be first, input data placed here + USI vt_dt; // data type; initially TYFL/TYSTR + // DTFLOAT/DTCULSTR at runtime - VALNDT() : vt_ty(0), vt_val(nullptr) {} + VALNDT() : vt_dt( DTNONE), vt_val(nullptr) {} ~VALNDT() { vt_ReleaseIfString(); } + bool vt_SetDT(USI ty) // map TYFL/TYSTR to DTFLOAT/DTCULSTR + { if (ty == TYFL) + vt_dt = DTFLOAT; + else if (ty == TYSTR) + vt_dt = DTCULSTR; + else + { vt_dt = DTNONE; + return false; + } + + return true; + } bool vt_IsString() const - { // return true iff vt_ty is CULSTR - bool isString = vt_ty == TYSTR || vt_ty == TYID || vt_ty == DTCULSTR; + { // return true iff vt_val is CULSTR + bool isString = vt_dt == DTCULSTR; #if defined( DEBUG) - if (!isString && vt_ty != 0 && vt_ty != TYFL) - printf("\nvt_IsString: unexpected vt_ty=%d vt_val=%x", vt_ty, (unsigned int)(vt_val)); + if (!isString && vt_dt != DTNONE && vt_dt != DTFLOAT) + printf("\nvt_IsString: unexpected vt_dt=%d vt_val=%x", vt_dt, (unsigned int)(vt_val)); #endif return isString; } diff --git a/src/strpak.h b/src/strpak.h index 54c26cc82..63acfa92a 100644 --- a/src/strpak.h +++ b/src/strpak.h @@ -192,9 +192,11 @@ struct CULSTR CULSTR& operator =(const CULSTR& s) { Set(s); return *this; } char* CStrModifiable() const; const char* CStr() const { return CStrModifiable(); } - const char* CStrDflt(const char* sDflt) const - { - return IsSet() ? CStr() : sDflt; + const char* CStrIfSet(const char* sDflt) const + { return IsSet() ? CStr() : sDflt; + } + const char* CStrIfNotBlank(const char* sDflt) const + { return !IsBlank() ? CStr() : sDflt; } void Set(const char* str); void Set(const std::string& s) { Set(s.c_str()); } From 059d305a07eba008b6ff1beacb48abd63622d6b0 Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Wed, 31 May 2023 10:11:06 -0400 Subject: [PATCH 21/25] CULSTR progress --- src/CMakeLists.txt | 1 + src/cueval.cpp | 14 +++--- src/cueval.h | 4 +- src/cul.cpp | 5 -- src/cul.h | 2 +- src/cuparse.cpp | 121 +++++++++++++++++++++++---------------------- src/cuparsex.h | 2 +- src/exman.cpp | 60 +++++++++++++--------- src/strpak.cpp | 3 +- 9 files changed, 112 insertions(+), 100 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 40e15d026..fe8428a7b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -136,6 +136,7 @@ set(source vrpak.cpp wfpak.cpp yacam.cpp + culstr.natvis "${CMAKE_CURRENT_BINARY_DIR}/srfd.cpp" "${CMAKE_CURRENT_BINARY_DIR}/untab.cpp" ) diff --git a/src/cueval.cpp b/src/cueval.cpp index 503f7f354..cdfd4fc51 100644 --- a/src/cueval.cpp +++ b/src/cueval.cpp @@ -226,7 +226,6 @@ LOCAL RC FC cuEvalI( specific error codes include: RCUNSET, unset value or un-evaluated expression accessed (PSRATLODxx), 0 or handle returned *pBadH. */ { - PSOP op; // pseudo op code being interpreted const char *ms = NULL; // init to no error RC rc = RCOK; // if error (ms nz), RCBAD will be supplied at exit unless other nz value set. SI idx=0, lo=0, hi=0; // errMsg info, PSDISP_ to PSCHUFAI. @@ -251,7 +250,7 @@ LOCAL RC FC cuEvalI( } // fetch next pseudo-code - op = *IPOP++; + PSOP op = *IPOP++; printif( runtrace, " ip=0x%x sp=%d op=%d ", (ULI)evIp, evSp, op); @@ -293,9 +292,11 @@ made things worse TODO (MP) #if defined( USE_PSPKONN) case PSPKONN: // PSPKONN nwords literal: load ptr to inline const - *--SPP = (char *)(IPOP + 1); // push ptr to literal - IPOP += (~*(SI *)IPOP) + 1; // evIp: pass ~nwords & lit. - break; // ... (SI *) so 32-bit version sign-extends b4 ~. + { const char* pLit = (const char*)(IPOP + 1); // ptr to literal + *--SPP = (void *)pLit; // push + IPOP += (~*(SI*)IPOP) + 1; // evIp: pass ~nwords & lit. + break; // ... (SI *) so 32-bit version sign-extends b4 ~. + } #endif //--- load constants or variables from memory locations @@ -889,7 +890,7 @@ w case PSRATLOD1S: POINT; *--SPI = (SI)*(CH*)v; break; // 1 byte, extend sign POINT; *--SPP = AsCULSTR(v).Strsave(); break; // char[], eg ANAME: put in dm. NAN not expected. - case PSRATLODS: // CULSTR: copy to DM, 4 byte pointer + case PSRATLODS: // CULSTR: 4 byte value #if 0 // cuRmGet now handles CULSTR if ((rc = cuRmGet(&p,&ms,pBadH)) != RCOK) // char *. 1st fetch/check/fix 4 bytes. goto breakbreak; // if unset data or uneval'd expr, ms set. @@ -1037,6 +1038,7 @@ w case PSRATLOD1S: POINT; *--SPI = (SI)*(CH*)v; break; // 1 byte, extend sign ms = strtprintf( (char *)MH_R0221, // "cuEvalI internal error:\n Bad pseudo opcode 0x%x at psip=%p" (UI)op, IPOP-1 ); case PSEND: // normal terminator + printif(runtrace, "\n"); goto breakbreak; } // switch (op) } // for ( ; ; ) diff --git a/src/cueval.h b/src/cueval.h index 7d1924ab0..ac993ff12 100644 --- a/src/cueval.h +++ b/src/cueval.h @@ -21,7 +21,7 @@ /////////////////////////////////////////////////////////////////////////////// // pseudo-code operation codes /////////////////////////////////////////////////////////////////////////////// -#undef USE_PSPKONN +#define USE_PSPKONN enum PSOPE { PSNUL, // means "output no code" in cuparse.c @@ -134,7 +134,7 @@ PSFATAN, // atan PSFATAN2, // atan2 PSFSIND, // sin (degrees) PSFCOSD, // cos -PSFTAND, // tan +PSFTAND, // tan (degrees) PSFASIND, // asin PSFACOSD, // acos PSFATAND, // atan diff --git a/src/cul.cpp b/src/cul.cpp index 9053e3a42..6d917d581 100644 --- a/src/cul.cpp +++ b/src/cul.cpp @@ -2781,11 +2781,6 @@ LOCAL RC xpr( // our local expression compiler interface / checker } } -#if defined( _DEBUG) - if (gotTy == TYID) - printf("\nTYID"); -#endif - if (pGotTy) *pGotTy = gotTy; // return type if caller wants it diff --git a/src/cul.h b/src/cul.h index e16be5994..126ada52b 100644 --- a/src/cul.h +++ b/src/cul.h @@ -241,7 +241,7 @@ III. Member Input // CULT.ty data types ------------------------------------------------------- -//TYSI, TYLLI, TYFL, TYSTR, TYCH, TYNC, TYID: see cuparse.h. +//TYSI, TYLLI, TYFL, TYSTR, TYCH, TYNC, TYID: see srd.h. // --cul type-- --Dttab type(s)-- --comments-- // TYSI DTSI TYSI cannot accept exprs. // TYLLI DTLI ? add SI limits? diff --git a/src/cuparse.cpp b/src/cuparse.cpp index 183b7138b..6f2e862b6 100644 --- a/src/cuparse.cpp +++ b/src/cuparse.cpp @@ -617,21 +617,9 @@ LOCAL SYTBH symtab = { NULL, 0 }; LOCAL UFARG *fArg = NULL; // arg info array (see UFST above): points into funcDef's stack. /*--- PARSE STACK: one entry ("frame") for each subexpression being processed. - When argument subexpressions to an operator have been completely parsed and - type checks and conversions are done, their frames are merged with each - other and the frame for the preceding code (and the operator's code is - emitted). parSp points to top entry, containing current values. */ -//struct PARSTK -//{ USI ty; // data type info (TY defines, cuparse.h?) -// USI evf; // evaluation frequency bits (EVF defines, cuevf.h) -#if 0 -x // SI did; // nz if does something: value stored or side effect -#else // rob 10-95 -// char did; // nz if does something: value stored or side effect -// UCH nNops; // 0 or # nop place holders at end stack frame, to be sure not confused with operands. see cnvPrevSf(). -#endif -// PSOP *psp1, *psp2; // pointers (psp values) to start & end of pseudo-code -//}; + When argument subexpressions to an operator have been completely parsed and type checks and conversions are done, + their frames are merged with each other and the frame for the preceding code (and the operator's code is emitted). + parSp points to top entry, containing current values. */ PARSTK parStk[ 500] = { 0 }; // parse stack buffer PARSTK* parSp = parStk; // parse stack stack pointer @@ -640,6 +628,8 @@ x // SI did; // nz if does something: value stored or side effect LOCAL PSOP* psp0 = NULL; // initial psp value, for computing length LOCAL PSOP* pspMax = NULL;// ptr to end of code buf less *6* bytes (6= one float or ptr + 1 PSEND) for checking in emit() &c. LOCAL SI psFull = 0; // non-0 if *psp has overflowed + constexpr int PSSZ = 4000; // max # words of pseudo-code for fcn or expr. + // for expr, 40 usually enuf, but 1000 has overflowed. /*--- re Parse Error Messages ---*/ // 1 when parsing fcn defn arg list: says a type word is NOT start new statement until a ')' has been passed: @@ -711,8 +701,8 @@ LOCAL RC FC emiSto( SI dup1st, void *p); LOCAL RC FC emiDup( void); LOCAL RC FC emiPop( void); LOCAL RC FC emit4( void **p); -#if 0 -LOCAL RC FC emitStr( char *s); +#if defined( USE_PSPKONN) +LOCAL RC FC emitStr(const char* s, int sLen); #endif LOCAL RC FC emiBufFull( void); LOCAL SI FC tokeTest( SI tokTyPar); @@ -752,7 +742,7 @@ void FC cuParseClean( // cuParse overall init/cleanup routine //parSp = parStk is done in itPile(). //psp points to caller-supplied buffer, don't clean up here. tokTy = prec = nextPrec = lastPrec = 0; - choiDt = 0; // insurance. beleived redundant. 12-31-93. + choiDt = 0; // insurance. believed redundant. 12-31-93. // clean cutok.cpp and preprocessor cuTokClean(cs); // clean up cutok.cpp; also cleans up ppxxx files. @@ -794,7 +784,6 @@ LOCAL RC FC funcDef( // compile function definition ENDFUNCTION []; */ { #define MAXNARG 100 // max # args for fcn (temp storage size) -#define PSSZ 4000 // max # words of pseudo-code for fcn. another PSSZ is below in exOrk(). 4000 3-9-92. PSOP ps[PSSZ]; // holds fcn pseudo-code during compilation USI codeSize; @@ -938,7 +927,6 @@ LOCAL RC FC funcDef( // compile function definition return RCOK; // also many error returns above. // note dm string storage for id's is NOT (yet) recovered on error returns. #undef MAXNARG -#undef PSSZ } // funcDef //========================================================================== LOCAL BOO funcDel( // clean up and free a user function symbol table block @@ -1013,42 +1001,53 @@ RC FC exOrk( // compile expression from current input file, return constant valu /* if not RCOK, attempts to return functional constant zero or null value. */ { -#define PSSZ 4000 // space for 1 expr's psuedo-code. 40 usually enuf, but 1000 has overflowed. 4000 3-9-92. - // another PSSZ is above in funcDef(). - PSOP ps[PSSZ]; // holds pseudo-code during compilation - - USI gotTy=wanTy, gotEvf=0; SI isK; ULI v=0; void *pv; USI codeSize; PSOP *ip = nullptr; RC rc; - #define Eer(f) { rc = (f); if (rc!=RCOK) goto er; } // local err handler + RC rc = RCOK; // init + PSOP ps[PSSZ]; // holds pseudo-code during compilation Eer( itPile( ps, sizeof(ps) ) ) // init to compile, below. code to stack for now. CAUTION dflts evfOk, ermTx, choiDt. choiDt = choiDtPar; // store choice type (for acceptable words/conversion) if TYCH/TYNC evfOk = evfOkPar; // acceptable evf and eval-at-end-ivl bits to global for expr() ermTx = ermTxPar; // description for msgs to global for expr() - ip = NULL; // init to no code to return (if constant, or error) + PSOP* ip{ nullptr }; // init to no code to return (if constant, or error) if (toprec < 0) // if no terminator precedence given toprec = PRCOM; // terminate on , ; ) ] } verb eof. + // compile expression - Eer( expTy( toprec, wanTy, ermTx, 0) ) /* compile expr of type 'wanTy'. Parse to token of precedence <= 'toprec'. - Ungets terminating token. Below. Errors go to 'er:' (expTy issues msgs). */ - gotTy = parSp->ty; // type found, 11-91 + USI gotTy{ wanTy }; // init vars in case expTy returns error + USI gotEvf{ 0 }; + SI isK{ 0 }; + Eer( expTy( toprec, wanTy, ermTx, 0) ) // compile expr of type 'wanTy'. Parse to token of precedence <= 'toprec'. + // Ungets terminating token. Below. Errors go to 'er:' (expTy issues msgs). + gotTy = parSp->ty; // type found // selectively pass terminator. Unget verb, type, other. Leave tokTy set. tokeIfn( CUTCOM, CUTSEM, CUTRPR, CUTRB, 0); // pass , ; ) ]. // determine if constant + void* pv; Eer( konstize( &isK, &pv, 0 ) ) // evals if evaluable and un-eval'd. Rets flag and ptr (ptr to ptr for TYSTR). below. + USI codeSize; Eer( finPile( &codeSize) ) // now terminate compilation / get size // for constant, return value and no code + ULI v = 0; if (isK) // if konstize found (or made) a constant value { // fetch from konstize's storage, condition value - if (gotTy==TYSTR) // pv points to ptr to text - v = (ULI)cuStrsaveIf( *(char **)pv); /* if text is inline in code, copy to dm, - so caller can discard code & retain value. cueval.cpp */ + if (gotTy == TYSTR) // pv points to ptr to text +#if 1 + { + CULSTR sv = *(const char**)pv; + sv.IsValid(); + v = *reinterpret_cast(&sv); + } +#else + v = (ULI)cuStrsaveIf( *(char **)pv); // if text is inline in code, copy to dm, + // so caller can discard code & retain value. cueval.cpp +#endif else if (gotTy==TYSI // (short) int, or || gotTy==TYCH && choiDt & DTBCHOICB && !ISNCHOICE(*(void**)pv)) // choice, 2-byte ch req'd, didn't get 4-byte ch // (redundancy: distrust choiDt global) @@ -1097,11 +1096,10 @@ RC FC exOrk( // compile expression from current input file, return constant valu *pip = ip; // NULL or pointer to pseudo-code if (isK) // *pvPar left unchanged if non-constant if (pvPar) - *(ULI*)pvPar = v; // value (for string, pointer to dm) + *(ULI*)pvPar = v; // value return rc; #undef Eer -#undef PSSZ } // exOrk // possibly LOCAL if all entry thru exOrk, 10-90 @@ -3174,7 +3172,7 @@ RC FC konstize( // if possible, evaluate current (sub)expression (parSp) now an check space for inline string (inDm==0) AFTER eval, save/restore psp.) */ // if need found: don't do if it has a trailing jump (or terminate, evaluate, move/restore). { - printif( kztrace, " y%d ", (INT)parSp->ty); + printif( kztrace, " y%d ", parSp->ty); isK++; // say is constant // get value @@ -3292,6 +3290,10 @@ LOCAL SI FC isKE( // test if *parSp is a constant expression break; } // else is load using pointer. fall thru. /*lint -e616 */ +#else + kop = PSKON4; // op code + szkon = sizeof(PSOP) + sizeof(CULSTR); + break; #endif case TYFL: kop = PSKON4; // op code @@ -3830,14 +3832,16 @@ RC CDEC emiKon( // emit code to load constant // ~nwords: # words in string, as a word, excl self, ONE'S COMPLEMENTED // (so unlike a dm block from strsave -- see cueval.cpp:cupfree()). // string: text, with null, padded to whole word. - EE( emit( PSPKONN) ) - EE( emit(~(((PSOP)strlen(*(char **)p)+1+1)/sizeof(PSOP))) ) + EE(emit(PSPKONN)) + const char* pLit = *(const char**)p; + int litLen = strlenInt(pLit); + EE(emit(~(((PSOP)(litLen) + 1 + 1) / sizeof(PSOP)))) #ifndef EMIKONFIX - char* p1 = (char *)psp; // where text will be + char* p1 = (char *)psp; // where text will be #else//to fix apparent konstize bug * p1 = (char **)&psp; // ptr to ptr to where text will be #endif - EE( emitStr(*(char **)p) ) + EE( emitStr( pLit, litLen) ) if (pp) // if req'd, ret text destination ptr ptr now. *pp = p1; // not sooner: might overwrite p. break; @@ -4031,31 +4035,30 @@ LOCAL RC FC emit4( void **p) // emit 4-byte quantity POINTED TO by p: float or p return RCOK; } // emit4 //========================================================================== -#if 0 -LOCAL RC FC emitStr( char *s) // emit string in pseudo-code stream. pad to whole # words. +#if defined( USE_PSPKONN) // emit string in pseudo-code stream. pad to whole # words. +LOCAL RC FC emitStr( + const char *s, // string + int sLen) // length of string { - USI l; RC rc; + RC rc{ RCOK }; - if (s != NULL) // needed? + int l = sLen + 1; // length, bytes, incl \0 + while ((PSOP *)((char *)psp +l +1) >= pspMax) // if won't fit { - l = (USI)strlen(s) + 1; // length, bytes, incl \0 - while ((PSOP *)((char *)psp +l +1) >= pspMax) // if won't fit - { CSE_E( emiBufFull() ) // realloc (future) or errmsg & return bad. // else loop to see if now enuf space - } - memmove( psp, s, l); // move string with its null - // memmove as could overlap from emiKon() from konstize(). - IncP( DMPP( psp), l); - while (l % sizeof(PSOP)) // pad out to whole # words - { - *(char *)psp = '\\'; - IncP( DMPP( psp), 1); - l++; - } - return emit(0); // terminate, update parSp->psp2, etc } - return RCOK; + memmove( psp, s, l); // move string with its null + // memmove as could overlap from emiKon() from konstize(). + IncP( DMPP( psp), l); + while (l % sizeof(PSOP)) // pad out to whole # words + { + *(char *)psp = '\\'; + IncP( DMPP( psp), 1); + l++; + } + rc = emit(0); // terminate, update parSp->psp2, etc + return rc; } // emitStr #endif //========================================================================== diff --git a/src/cuparsex.h b/src/cuparsex.h index dd21c8764..952e86ebc 100644 --- a/src/cuparsex.h +++ b/src/cuparsex.h @@ -47,7 +47,7 @@ struct PARSTK PSOP *psp1, *psp2; // pointers (psp values) to start & end of pseudo-code }; extern PARSTK parStk[]; // parse stack buffer -extern PARSTK* parSp; // parse stack stack pointer +extern struct PARSTK* parSp; // parse stack stack pointer /*--- CODE OUTPUT variables */ //extern PSOP* psp; // set by itPile(), used by emit() &cpp. diff --git a/src/exman.cpp b/src/exman.cpp index 7a9f72991..ab5983fe2 100644 --- a/src/exman.cpp +++ b/src/exman.cpp @@ -83,6 +83,7 @@ LOCAL const char* FC txVal(SI ty, void* p); #if 0 && defined( _DEBUG) #define EXTDUMP // define to enable debug printfs #define EXTDUMPIF( t) extDump( t) +static void extDump(const char* tag=NULL); #else #define EXTDUMPIF( t) #endif @@ -430,7 +431,7 @@ void FC extClr() // clear expression table void EXTAB::ext_StoreValue() const // store current expression value into record(s) { #if defined( USEVECT) - for (WHERE w : ext_whVal) + for (const WHERE& w : ext_whVal) { NANDAT* pVal = w.rr_pRecRef(); // get pointer to basAnc record member, or NULL #else @@ -454,7 +455,7 @@ void EXTAB::ext_StoreValue() const // store current expression value into record // increment all registered change flags #if defined( USEVECT) - for (WHERE w : ext_whChaf) + for (const WHERE& w : ext_whChaf) { SI* pChaf = (SI*)w.rr_pRecRef(); // get ptr to rat member, or NULL if (pChaf) // in case pRat errors @@ -544,7 +545,7 @@ TYSI Integer in 16 bit storage: user interface supports only #if defined( EXTDUMP) static void extDump(const char* tag/*=""*/) { - printf("\nExTab %s exNal=%d", tag, exNal); + printf("\nExTab %s exN=%d exNal=%d", tag, exN, exNal); if (exTab) for (int iEX = 0; iEX <= exN; iEX++) { const EXTAB* pEX = exTab + iEX; @@ -557,17 +558,17 @@ static void extDump(const char* tag/*=""*/) void EXTAB::extDump1() const // debug aid: printf EXTAB info { int iEx = this - exTab; - printf("\n%d: %s[%d] fn=%2d nx=%2d ip=%p evf=%d", iEx, - srcB ? srcB->what : "?", srcI, ext_srcFn, nx, ip, evf); - for (int iW = 0; iW < whValN; iW++) - (whVal + iW)->dump(); + printf("\n %d: %s[%d] fn=%2d nx=%2d ip=%p evf=%d", iEx, + ext_srcB ? ext_srcB->what : "?", ext_srcI, ext_srcFn, ext_nx, ext_ip, ext_evf); + for (const WHERE& w : ext_whVal) + w.dump(); } // EXTAB::extDump //----------------------------------------------------------------------------- void RECREF::dump() const { BP b = rr_GetBP(); - printf(" %s[%d] %d", b->what, i, o); + printf(" %s[%d] %d", b->what, rr_i, rr_o); } // RECREF::dump() #endif //----------------------------------------------------------------------------- @@ -578,11 +579,9 @@ static RC extValidate( { RC rc = RCOK; if (exTab) - { int iEX; - EXTAB* pEX; - // 0 flags in all EXTABs and count deleted entries + { // 0 flags in all EXTABs and count deleted entries int nDeleted{ 0 }; - for (iEX = 0; iEX <= exN; iEX++) + for (int iEX = 0; iEX <= exN; iEX++) { exTab[iEX].ext_flags = 0; if (exTab[iEX].ext_nx < 0) nDeleted++; @@ -591,7 +590,7 @@ static RC extValidate( // verify that each EXTAB appears only once in nx chain int nSeen{ 0 }; int nLoop{ 0 }; - pEX = exTab; + EXTAB* pEX = exTab; // follow nx chain until terminator (0) or deleted (<0)=error while (nSeen < exN && pEX->ext_nx > 0) { ++nSeen; @@ -708,9 +707,11 @@ RC FC exPile( // compile an expression from current input // " 4-byte choice value returned by exOrk for 2-byte type". devel aid } else if (gotTy == TYSTR) - (*reinterpret_cast(pDest)).Set((const char*)v); + *reinterpret_cast(pDest) = AsCULSTR(&v); else + { *pDest = v; // all other types return 32 bits + } extDelFn( b, i, fn); // delete any pre-existing expression table entry for this member } @@ -994,9 +995,10 @@ RC FC exWalkRecs() WHERE w(static_cast(ancN), 0, 0); // anchor number number to addStore arg for (TI i = b->mn; i <= b->n; i++) // loop subscripts { - char *e = (char *)&b->rec(i); // point record - if (((record *)e)->gud <= 0) // if deleted or skip-flagged + record& rec = b->rec(i); + if (rec.gud <= 0) // if deleted or skip-flagged continue; // ... record, skip it 2-91 + char* e = (char*)&rec; // point record // look for NANDLEs at offsets tabulated above @@ -1296,7 +1298,13 @@ LOCAL RC FC exEvUp( // evaluate expression. If ok and changed, store and incre EXTAB *ex = exTab + h; if (ex->ext_ip==NULL) - return err( PWRN, (char *)MH_E0103, (INT)h ); // "exman.cpp:exEv: expr %d has NULL ip" + return err( PWRN, (char *)MH_E0103, h ); // "exman.cpp:exEv: expr %d has NULL ip" + +#if 0 + if (ex->ext_ty == TYSTR) + printf("\nString"); +#endif + const char* ms; NANDAT* pv = nullptr; RC rc = cuEvalR( ex->ext_ip, (void**)&pv, &ms, pBadH); // evaluate, return ptr. @@ -1341,24 +1349,28 @@ LOCAL RC FC exEvUp( // evaluate expression. If ok and changed, store and incre switch (ex->ext_ty) { case TYSTR: -#if defined( _DEBUG) + { const char* pS = *(const char**)pv; +#if 1 || defined( _DEBUG) isChanged = ex->ext_v == UNSET; if (!isChanged) { const char* s1 = *reinterpret_cast(&ex->ext_v); // AsCULSTR((const void*)ex->ext_v).CStr(); - const char* s2 = AsCULSTR(pv).CStr(); - isChanged = strcmp(s1, s2); + isChanged = strcmp(s1, pS); // isChanged = strcmp((char*)ex->ext_v, AsCULSTR(pv).CStr()); } #else - isChanged = ex->ext_v==UNSET || strcmp( (char *)ex->ext_v, AsCULSTR( &pv)); + isChanged = ex->ext_v == UNSET || strcmp((char*)ex->ext_v, AsCULSTR(&pv)); #endif if (isChanged) { - CopyCULSTR(&ex->ext_v, pv); + // printf("\nSet: %s", pS); + AsCULSTR(&ex->ext_v).Set(pS); + } + // delete pS? + // move pS to CULSTR? + // else // new value same as old + // AsCULSTR(pv).Release(); } - else // new value same as old - AsCULSTR(pv).Release(); break; case TYSI: // (10-90: insurance: SI's can't get here as exPile accepts only constant values for user SI type) diff --git a/src/strpak.cpp b/src/strpak.cpp index 847da0e1f..70a170503 100644 --- a/src/strpak.cpp +++ b/src/strpak.cpp @@ -156,9 +156,8 @@ void CULSTR::Set( } // CULSTR::Set //----------------------------------------------------------------------------- void CULSTR::FixAfterCopy() -// do not call for special cases (not DM, NANDAT, ) { - if (IsSet()) + if (!IsNANDLE() && IsSet()) { const char* culStr = CStr(); us_hCulStr = 0; From 4a4bfcfb2184f95fc921a380a4e108be447bb6d9 Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Wed, 31 May 2023 16:41:00 -0400 Subject: [PATCH 22/25] CULSTR tweaks --- src/CNRECS.DEF | 2 +- src/cueval.cpp | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/CNRECS.DEF b/src/CNRECS.DEF index 31331c54a..2a145af11 100644 --- a/src/CNRECS.DEF +++ b/src/CNRECS.DEF @@ -1802,7 +1802,7 @@ RECORD IMPF "importFile" *RAT // IMPORTFILE input (Impfib) and run (ImpfiB) reco //input. name is required. *f CULSTR im_fileName // file name, path optional, in heap or pseudocode. *i cuz VEOI in cncult. RQD. *f CULSTR im_title // title string. If given, file's must match. - // *z SI imPhaseSpare // for possible future AUTOSIZE/MAINSIM/BOTH choice 6-95 + // *z SI imPhaseSpare .. idea for possible future AUTOSIZE/MAINSIM/BOTH choice *i IVLCH imFreq // frequency of record reads, Y M D H; HS and Subhour not allowed. RQD. *f NOYESCH hasHeader // file has header no/yes, default yes. *i *hide NOYESCH imBinary // possible future binary file option. default no. diff --git a/src/cueval.cpp b/src/cueval.cpp index cdfd4fc51..2f13f4bd4 100644 --- a/src/cueval.cpp +++ b/src/cueval.cpp @@ -1160,6 +1160,11 @@ LOCAL RC FC cuRmGet( } } #if 1 + if (fir->sfi_GetDT() == DTCULSTR) + *(const char**)pv = AsCULSTR(&v); + else + *(NANDAT*)pv = v; +#elif 0 if (fir->sfi_GetDT() == DTCULSTR) CopyCULSTR(pv, &v); else From 6ad207f127036f22562aab4127a9277c0fd991cb Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Mon, 12 Jun 2023 12:59:21 -0400 Subject: [PATCH 23/25] Debug progress --- src/cueval.cpp | 4 ++++ src/exman.cpp | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/src/cueval.cpp b/src/cueval.cpp index 2f13f4bd4..c7483c5d7 100644 --- a/src/cueval.cpp +++ b/src/cueval.cpp @@ -888,7 +888,11 @@ w case PSRATLOD1S: POINT; *--SPI = (SI)*(CH*)v; break; // 1 byte, extend sign break; /*lint +e70 */ // add UNSET ck if need found. case PSRATLODA: POINT; +#if 1 + * --SPP = strsave( (const char*)v); +#else *--SPP = AsCULSTR(v).Strsave(); +#endif break; // char[], eg ANAME: put in dm. NAN not expected. case PSRATLODS: // CULSTR: 4 byte value #if 0 // cuRmGet now handles CULSTR diff --git a/src/exman.cpp b/src/exman.cpp index ab5983fe2..34dcc2b72 100644 --- a/src/exman.cpp +++ b/src/exman.cpp @@ -99,6 +99,7 @@ struct RECREF RECREF() : rr_ancN(0), rr_i(0), rr_o(0) {} RECREF(int ancN, int i, int o) : rr_ancN(ancN), rr_i(i), rr_o(o) {} + ~RECREF() { } const char* rr_What() const // error message insert describing given rat reference { return whatNio(rr_ancN, rr_i, rr_o); @@ -863,8 +864,13 @@ RC FC exClrExUses( // re-init old expr table entries for next run #endif ex->ext_v = UNSET; // set prior value to "unset", to be sure stored/chaf'd when first evaluated #if defined( USEVECT) +#if 1 + ex->ext_whVal.resize(0); // say no uses of expression value + ex->ext_whChaf.resize(0); // say no change flags registered +#else ex->ext_whVal.clear(); // say no uses of expression value ex->ext_whChaf.clear(); // say no change flags registered +#endif #else ex->ext_whValN = 0; // say no uses of expression value (but leave whVal allocated) ex->ext_whChafN = 0; // say no change flags registered From a11d3f638b3dac1db1e89d5debbf68d4e077b7bd Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Sun, 16 Jul 2023 11:27:37 -0400 Subject: [PATCH 24/25] Cleanup; some tweaks re 64 bit --- src/RCDEF/rcdef.cpp | 20 ++++++++++---------- src/cncult.cpp | 2 +- src/cnglob.h | 2 +- src/cnguts.cpp | 2 +- src/cvpak.cpp | 2 +- src/dmpak.cpp | 10 +++++----- src/dmpak.h | 4 ++-- src/nummeth.h | 4 ++-- src/srd.h | 6 +++--- src/strpak.cpp | 8 ++++---- src/strpak.h | 17 ++++++++--------- test/unit/xiopak.unit.cpp | 2 +- 12 files changed, 39 insertions(+), 40 deletions(-) diff --git a/src/RCDEF/rcdef.cpp b/src/RCDEF/rcdef.cpp index 21408bb3a..9779aaf98 100644 --- a/src/RCDEF/rcdef.cpp +++ b/src/RCDEF/rcdef.cpp @@ -342,7 +342,7 @@ bool argNotNUL[ REQUIRED_ARGS+1]; /* non-0 if argv[i] not NULL; /*------------- Data type global variables -------------*/ -LI Dttab[MAXDTH + MAXDTC + 1]; +ULI Dttab[MAXDTH + MAXDTC + 1]; // table of data type info, subscripted by data type. While filling, next subscript is dttabsz // Simple types: (int, float, ): contains 0 // "choice" types (a hi bit flag in type define), also receives # choices and choice texts. @@ -859,13 +859,13 @@ LOCAL void dtypes( // do data types // check/fill choice's slot in Dttab entry int i = dttabsz + 1 + nchoices; // choice text's Dttab subscript, after LI size/#choices, previous choices ASSERT( sizeof(char *)==sizeof(LI)); // our assert macro, cnglob.h, 8-95. - LI * pli = Dttab + i; + ULI* pli = Dttab + i; if (*pli) rcderr( "Choice handle 0x%x for dtype %s apparently conflicts:\n" " slot 0x%x already non-0. Dttab will be bad.", chan, dtnames[val], i ); - *pli = LI(chStr); // choicb / n text snake offset to Dttab : + *pli = ULI(chStr); // choicb / n text snake offset to Dttab : nchoices++; // count choices for this data type } } // while (!gtoks("p")) choices loop @@ -1041,7 +1041,7 @@ static const char* getChoiceText( // retrieve choice text int chan) // choice idx (1 based) { int dtm = dt & DTBMASK; - LI* pli = Dttab + dtm; + auto pli = Dttab + dtm; const char* chtx = (const char*)(*(pli + chan)); return chtx; } // getChoiceText @@ -1137,14 +1137,14 @@ LOCAL void wDttab() // write C++ source data types table dttab.cpp fprintf( f, "\n/* Data types table */\n" "\n" - "LI Dttab[] =\n" + "ULI Dttab[] =\n" "{ /* size #choices if choice type\n" " choice texts if choice type // type (Dttab subscript + bits) & symbol (dtypes.h) */\n"); // write content of data types table // sizeof(SI), // DTSI -// ML(sizeof(SI),2), (LI)"yes", -// (LI)"no", // DTNOYES +// ML(sizeof(SI),2), (ULI)"yes", +// (ULI)"no", // DTNOYES int w = 0; // counts Dttab array members written for (int i = 0; i < ndtypes; i++) // loop data types { @@ -1173,10 +1173,10 @@ LOCAL void wDttab() // write C++ source data types table dttab.cpp } // write info for type - LI* pli = Dttab + dtm; // point Dttab entry for type + auto pli = Dttab + dtm; // point Dttab entry for type if (!(dttype[i] & (DTBCHOICB|DTBCHOICN))) // if not a choice { - // non-choice type: size (in LI) is entire entry. + // non-choice type: size (in ULI) is entire entry. fprintf( f, " sizeof(%s), ", dtnames[i]); // write size: let compiler evaluate sizeof(type) fprintf( f, "\t\t\t"); // space over pli++; // point past non-choice Dttab entry @@ -1194,7 +1194,7 @@ LOCAL void wDttab() // write C++ source data types table dttab.cpp for (int j = 0; j < n; j++) // loop choices { const char* chtx = getChoiceText( dttype[ i], j+1); - fprintf( f, "\n\t\t(LI)%-13s\t", // write a choice text + fprintf( f, "\n\t\t(ULI)%-13s\t", // write a choice text strtprintf( "\"%s\",", chtx) ); } w += 1 + n; // # Dttab LI's written / next avail subscript diff --git a/src/cncult.cpp b/src/cncult.cpp index 24f2f91c3..157834afc 100644 --- a/src/cncult.cpp +++ b/src/cncult.cpp @@ -57,7 +57,7 @@ cnculti.h: cncult internal functions shared only amoung cncult,2,3,4,5,6.cpp */ #define N NULL // to shorten following data #define v (void *) // .. -#define nc(nck) NCHOICE(nck) // cnglob.h macro makes full 32-bit NCHOICE value from hi-word dtypes.h constant +#define nc(nck) ((void*)NCHOICE(nck)) // cnglob.h macro makes full 32-bit NCHOICE value from hi-word dtypes.h constant //==================== TABLES FOR COMMANDS IN TOP TABLE ===================== diff --git a/src/cnglob.h b/src/cnglob.h index b031a3026..1a8ddc3ae 100644 --- a/src/cnglob.h +++ b/src/cnglob.h @@ -380,7 +380,7 @@ x #define CSE_V *(void **)& #define ISNCHOICE(n) ((AsNANDAT(n) & 0xff800000L)==0x7f800000L) // macro to generate 32-bit value from 16-bit choice constants, for use where full value needed, as in initialized data // usage: float y = NCHOICE(C_ABCNC_X); -#define NCHOICE(nck) ((void *)(static_cast(nck) << 16)) // put in hi word. nck must include 0x7f80. +#define NCHOICE(nck) (NANDAT(static_cast(nck) << 16)) // put in hi word. nck must include 0x7f80. #else // macro to fetch/store into variable n's hi word. Use w 16-bit flag/choice # dtypes.h C_DTYPE_XXXX constants gen'd by rcdef. diff --git a/src/cnguts.cpp b/src/cnguts.cpp index e79bbe2ca..e7cb46c47 100644 --- a/src/cnguts.cpp +++ b/src/cnguts.cpp @@ -2183,7 +2183,7 @@ static RC sortSubMeterList( // sort and check re submeters #endif if (!dgsm.dg_CountRefs(iV, vRefCounts)) continue; // unexpected cyclic - for (size_t i=0; i 1) { record* pR = b.GetAtSafe(i); pR->oWarn("Duplicate reference from %s '%s'", b.what, pRRoot->Name()); diff --git a/src/cvpak.cpp b/src/cvpak.cpp index 8eeeaa322..b632ca22f 100644 --- a/src/cvpak.cpp +++ b/src/cvpak.cpp @@ -1444,7 +1444,7 @@ RC FC cvS2Choi( // convert string to choice value for given data type else for if (dt & DTBCHOICN) // for choice in number-choice store bit pattern of { if (pv) #if defined( ND3264) - *reinterpret_cast(pv) = NCHOICE(v | NCNAN); + *reinterpret_cast(pv) = NCHOICE(v | NCNAN); #else *(void **)pv = NCHOICE( v | NCNAN); #endif diff --git a/src/dmpak.cpp b/src/dmpak.cpp index d9aca7a73..dd753fc40 100644 --- a/src/dmpak.cpp +++ b/src/dmpak.cpp @@ -24,9 +24,9 @@ static inline ULI& dmSize( void* p) { return *(((ULI*)p)-1); } // Statistics available to tune memory mgmt // TODO: not maintained in MSVC -ULI Dmused = 0L; // Number of bytes currently allocated in dm (including overhead, at least under MSC) -ULI DmMax = 0L; // largest Dmused seen -static USI DmCount = 0; // number of blocks currently in use +size_t Dmused = 0; // Number of bytes currently allocated in dm (including overhead, at least under MSC) +size_t DmMax = 0; // largest Dmused seen +static int DmCount = 0; // number of blocks currently in use //============================================================================= static DMP mgMalloc( // malloc with statistics @@ -39,7 +39,7 @@ static DMP mgMalloc( // malloc with statistics DMP q = malloc( blkSz); // adjust size for overhead if (q != NULL) // if succeeded { p = dmAppP( q); // app pointer (after overhead) - dmSize( p) = blkSz; + dmSize(p) = ULI(blkSz); dmRefCount( p) = 1; DmCount++; // statistics: # blocks in use Dmused += blkSz; // .. # bytes in use @@ -71,7 +71,7 @@ static DMP dmralloc( // Reallocate heap space using realloc() DMP qNu = realloc( qOld, nuSz + dmBlkOvhd); if (qNu) { pNu = dmAppP( qNu); - dmSize( pNu) = nuSz + dmBlkOvhd; + dmSize(pNu) = ULI(nuSz + dmBlkOvhd); Dmused += dmSize( pNu) - oldsz; // statistics if (Dmused > DmMax) DmMax = Dmused; diff --git a/src/dmpak.h b/src/dmpak.h index 01097d4ff..15bdabbb7 100644 --- a/src/dmpak.h +++ b/src/dmpak.h @@ -27,8 +27,8 @@ const int DMFREEOLD = EROP2; // if pointer nonNULL, free it first. [dmpal], etc /*--------------------------- PUBLIC VARIABLES ----------------------------*/ -XULI Dmused; // Current number of dm bytes in use -XULI DmMax; // max Dmused seen +extern size_t Dmused; // Current number of dm bytes in use +extern size_t DmMax; // max Dmused seen /*------------------------- FUNCTION DECLARATIONS -------------------------*/ // dmpak.cpp diff --git a/src/nummeth.h b/src/nummeth.h index 50bfe9858..2bde455b2 100644 --- a/src/nummeth.h +++ b/src/nummeth.h @@ -42,9 +42,9 @@ class DGRAPH bool dg_TopologicalSort( std::vector& vSorted); bool dg_CountRefs(int ivRoot, std::vector< int>& vRefCounts); int dg_ChildCount(int iV) const - { return dg_edges[iV].size(); } + { return int(dg_edges[iV].size()); } int dg_ParentCount(int iV) const - { return dg_edgesRev[iV].size(); } + { return int(dg_edgesRev[iV].size()); } private: int dg_nV; // # of verticies diff --git a/src/srd.h b/src/srd.h index 450b8b91d..aaa667ba7 100644 --- a/src/srd.h +++ b/src/srd.h @@ -27,7 +27,7 @@ //--- Data type table // data type table globals - but access using GetDttab(), below -extern LI Dttab[]; // dttab.cpp, generated by rcdef.exe +extern ULI Dttab[]; // dttab.cpp, generated by rcdef.exe extern size_t Dttmax; // size (in LI's) of Dttab // structure for accessing data type table entry @@ -163,11 +163,11 @@ w #define RTBSUB 0x8000 /* Substructure type definition, only for nesting in struct VALNDT { - void* vt_val; // must be first, input data placed here + NANDAT vt_val; // must be first, input data placed here USI vt_dt; // data type; initially TYFL/TYSTR // DTFLOAT/DTCULSTR at runtime - VALNDT() : vt_dt( DTNONE), vt_val(nullptr) {} + VALNDT() : vt_dt( DTNONE), vt_val( 0) {} ~VALNDT() { vt_ReleaseIfString(); diff --git a/src/strpak.cpp b/src/strpak.cpp index 70a170503..9553137a2 100644 --- a/src/strpak.cpp +++ b/src/strpak.cpp @@ -35,7 +35,7 @@ static int TmpstrNx = 0; // Next available byte in Tmpstr[]. // Persistent string type that can be manipulated in the CUL realm. // (e.g. user input data and expressions, probes etc.) // Implemented as indicies into a vector of std::string. -// Important motivation is 4-byte size (same as float). +// Important motivation is 4-byte size (same as float and NANDLE). // Cannot use char * due to 8-byte size on 64 bit. // CULSTREL: one element in vector of strings @@ -78,12 +78,12 @@ struct CULSTREL }; // struct CULSTREL //----------------------------------------------------------------------------- -char* CULSTREL::usl_Set( +char* CULSTREL::usl_Set( // set CULSTR const char* s) // source string (will be copied) { if (usl_status == uslOTHER) usl_str = nullptr; - int sz = strlen(s) + 1; + int sz = strlenInt(s) + 1; dmral(DMPP(usl_str), sz, ABT); usl_status = uslDM; return strcpy(usl_str, s); @@ -197,7 +197,7 @@ void CULSTR::us_Alloc() // allocate if (us_csc.us_vectCULSTREL.size() == 0) us_csc.us_vectCULSTREL.emplace_back(""); us_csc.us_vectCULSTREL.emplace_back(); - us_hCulStr = us_csc.us_vectCULSTREL.size() - 1; + us_hCulStr = HCULSTR( us_csc.us_vectCULSTREL.size()) - 1; } } // CULSTR::us_Alloc //----------------------------------------------------------------------------- diff --git a/src/strpak.h b/src/strpak.h index 63acfa92a..a35b52fc2 100644 --- a/src/strpak.h +++ b/src/strpak.h @@ -7,9 +7,6 @@ #if !defined( _STRPAK_H) #define _STRPAK_H - - - /////////////////////////////////////////////////////////////////////////// // public fcns /////////////////////////////////////////////////////////////////////////// @@ -166,14 +163,16 @@ char* _strlwr(char* stringMod); // == CULSTR == // Persistent string type that can be manipulated in the CUL realm. -using HCULSTR = uint32_t; // string handle +using HCULSTR = uint32_t; // CULSTR handle: 32 bit index into CULSTRCONTAINER::us_vectCULSTREL + // same size as NANDLE re support of string expressions +// container for strings = vector of CULSTREL (char * to text + management) struct CULSTRCONTAINER { CULSTRCONTAINER(); - - std::vector us_vectCULSTREL; // { CULSTREL("")}; // element 0 is always "" - HCULSTR us_freeChainHead; + std::vector us_vectCULSTREL; // vector of string elements + // [ 0] always "" (see c'tor) + HCULSTR us_freeChainHead; // 1st free element (0 = none) }; // struct CULSTRCONTAINER struct CULSTR @@ -234,12 +233,12 @@ struct CULSTR inline CULSTR& AsCULSTR(void* p) { return *(reinterpret_cast(p)); -} +} // ::AsCULSTR //------------------------------------------------------------------------- inline const CULSTR& AsCULSTR(const void* p) { return *(reinterpret_cast(p)); -} +} // ::AsCULSTR //------------------------------------------------------------------------- inline void CopyCULSTR(void* dest, const void* src) { diff --git a/test/unit/xiopak.unit.cpp b/test/unit/xiopak.unit.cpp index 81d5db127..7e0b8b73f 100644 --- a/test/unit/xiopak.unit.cpp +++ b/test/unit/xiopak.unit.cpp @@ -16,7 +16,7 @@ namespace filesystem = std::experimental::filesystem; #endif // Stubs defined separately for RCDEF -LI Dttab[691]; +ULI Dttab[691]; UNIT Untab[80*sizeof(UNIT)]; int Unsysext = 0; From c73cc3cb41f1b125d95ae7f16db8c6bacc5695a0 Mon Sep 17 00:00:00 2001 From: Chip Barnaby Date: Mon, 17 Jul 2023 12:37:19 -0400 Subject: [PATCH 25/25] New test commands.cse and associated fixes --- src/cnguts.cpp | 2 +- src/cul.cpp | 91 +- test/CMakeLists.txt | 3 +- test/SACRAMENTO-EXECUTIVE_STYP20.epw | 8768 ++++++++++++++++++++++++++ test/commands.cse | 1634 +++++ test/ref/commands.rep | 3096 +++++++++ 6 files changed, 13559 insertions(+), 35 deletions(-) create mode 100644 test/SACRAMENTO-EXECUTIVE_STYP20.epw create mode 100644 test/commands.cse create mode 100644 test/ref/commands.rep diff --git a/src/cnguts.cpp b/src/cnguts.cpp index e90255feb..0fc300008 100644 --- a/src/cnguts.cpp +++ b/src/cnguts.cpp @@ -926,7 +926,7 @@ RC FC cgRddInit( // Perform initialization common to main simulation run and eac // Set up weather file, TDV file, and DESCONDs // Do each phase, allowing file or location changes. // Messages errors. - CSE_EF( Top.tp_WthrInit() ) // also uses Top .tp_wfName, .skyModel [,.isDT] + CSE_EF( Top.tp_WthrInit() ) #if 0 // enable if needed 0 // pre-run DHW init diff --git a/src/cul.cpp b/src/cul.cpp index 92d5414de..ad6c1c434 100644 --- a/src/cul.cpp +++ b/src/cul.cpp @@ -1364,18 +1364,19 @@ x name, strlen(name), sizeof(ANAME)-1 ); //=========================================================================== LOCAL RC FC nuCult( - /* initialize to use new xSp->cult table: STAR, flags, non-array defaults and member init fcns. - see also xCult: context dependent portions */ +// initialize to use new xSp->cult table: STAR, flags, non-array defaults and member init fcns. +// see also xCult: context dependent portions - SI clr, /* non-0: clear: remove all records from ref'd basAncs: used to init at cul() entry, and from culCLEAR. - 0: do not clear: used normally, in case basAnc ref'd elsewhere and data already entered. */ + SI clr, // non-0: clear: remove all records from ref'd basAncs: used to init at cul() entry, and from culCLEAR. + // 0: do not clear: used normally, in case basAnc ref'd elsewhere and data already entered. - SI lity ) /* non-0 if RATE already init, as with LIKE or USETYPE: don't default data; don't call member itf fcns 1-2-91 - (will probably need likeItf fcns or addl info to fcns) */ -// (1-91: culRATE passes lity = 1 for COPY/LIKE, 2 for USETYPE, in case we need to distinguish) + SI lity ) // non-0 if RATE already init, as with LIKE or USETYPE: don't default data; don't call member itf fcns 1-2-91 + // (will probably need likeItf fcns or addl info to fcns) */ + // (1-91: culRATE passes lity = 1 for COPY/LIKE, 2 for USETYPE, in case we need to distinguish) -/* inits, for DAT cult entries: default values. - IFLAGS bits: BEEN_SET: 0 */ +// inits, for DAT cult entries: default values. +// IFLAGS bits: BEEN_SET: 0 +// // calls: initialization fcns for STAR, DAT. // uses: xSp->cult, ->e, @@ -1383,15 +1384,15 @@ LOCAL RC FC nuCult( // CAUTION: also alters xSp->c, ->p, ->sz -/* returns: RCOK: succesful -- continue - RCFATAL: fatal error, message already issued, terminate session - [other: non-fatal error, message issued, rest of input stmt skipped, return to culDo and continue compilation.] */ +// returns: RCOK: succesful -- continue +// RCFATAL: fatal error, message already issued, terminate session +// [other: non-fatal error, message issued, rest of input stmt skipped, return to culDo and continue compilation.] { RC rc; CULT *c = xSp->cult; - /* STAR entry: overall default data and/or initialization function */ + // STAR entry: overall default data and/or initialization function // itf fcn call occurs AFTER default data and .itf from calling entry, but b4 member defaults and .itfs if ( c->cs==STAR // if have STAR entry (always 1st if present) @@ -1403,7 +1404,7 @@ LOCAL RC FC nuCult( NB E'ing would make mess by skipping then continuing. */ } - /* loop over members of table */ + // loop over members of table for ( /*c=xSp->cult*/ ; c->id; c++) { @@ -1415,20 +1416,42 @@ LOCAL RC FC nuCult( c->IFLAGS &= ~BEEN_SET; // clear flag saying entry has been used // flag bits in field status byte +#if 0 +Unsuccessful attempt to unify FS bit clearing, crashes 7-17-2023 + // may be redundant for !lity, ratAdd inits them to 0 + // However, cases have been seen after CLEAR where bits persist + if (c->cs == DAT) // if datum -- else has no fs byte + { + UCH* fs = xSp->fs0 + c->fn; // point field's data status byte + // like/type fs flag init not fully clear yet, but at least clear "error msg issued", + // and "value has been entered" under type/uselike if type said "required" + UCH clrWhat = FsERR; // say no msg issued for field: insure full checking. + if (lity) + { + if (fs[0] & FsRQD) // only set here via type (or like). NB FsRQD[0] applies to all ARRAY elts. + clrWhat |= FsSET; // only set here via like or type. can leave FsVAL on, as not used re rqd check, right? + } + else + clrWhat |= (FsSET | FsVAL | FsAS); + int j = 0; // element subscript in array field + do + { fs[xSp->j] &= ~clrWhat; + } while (c->f & ARRAY && ++j < int(c->p2)); // if array field, loop over elements +#else if ( lity // if not like or usetype, ratAdd inits them 0. - && c->cs==DAT ) // if datum -- else has no fs byte + && c->cs==DAT ) // if datum -- else has no fs byte { - UCH *fs = xSp->fs0 + c->fn; // point field's data status byte - /* like/type fs flag init not fully clear yet, but at least clear "error msg issued", - and "value has been entered" under type/uselike if type said "required" */ + UCH* fs = xSp->fs0 + c->fn; // point field's data status byte + // like/type fs flag init not fully clear yet, but at least clear "error msg issued", + // and "value has been entered" under type/uselike if type said "required" int j = 0; // element subscript in array field do - { - fs[j] &= ~FsERR; // say no msg issued for field: insure full checking. 12-91. + { fs[j] &= ~FsERR; // say no msg issued for field: insure full checking. 12-91. if (fs[0] & FsRQD) // only set here via type (or like). NB FsRQD[0] applies to all ARRAY elts. fs[j] &= ~FsSET; // only set here via like or type. can leave FsVAL on, as not used re rqd check, right? } while (c->f & ARRAY && ++j < int( c->p2)); // if array field, loop over elements +#endif } // call init fcn for NODAT entry, if any. Uses xSp->c. @@ -1469,10 +1492,11 @@ LOCAL RC FC nuCult( return rc; // return fatal error to caller else // non-fatal errors skip member (in 'for' endtest) & continue for ( ; xSp->j < xSp->arSz && rc==RCOK; // loop over array elements (usually 1 only) if/while ok - xSp->j++, IncP( DMPP( xSp->p), xSp->sz) ) + xSp->j++, IncP( DMPP( xSp->p), xSp->sz) ) { USI sz = xSp->sz; void *p = xSp->p; // fetch member (element) size and location + UCH* fs = xSp->fs0 + c->fn; if (lity) { @@ -1507,8 +1531,12 @@ x dmfree( DMPP( *p)); // free any prior string value: free ram, NUL dmfree( (void **)p); // free any prior string value: free ram, NULL ptr, dmpak.cpp #endif } - if (sz==4 && c->f & RQD) // insurance: if a 4-byte required item - *(NANDAT*)p = UNSET; // default to "not set" + if (sz == 4 && c->f & RQD) // insurance: if a 4-byte required item + { + *reinterpret_cast(p) = UNSET; // default to "not set" + fs[xSp->j] &= // record field status: + ~(FsSET | FsVAL | FsERR | FsAS); // clear has-been-entered, value-is-stored, error-msg-issued, autosize + } #ifdef DF1 else if (c->ty==TYFL || c->ty==TYNC) // floats: units. #else @@ -3367,9 +3395,6 @@ LOCAL RC FC msgMissReq() // returns RCOK if none; also each message ++'s errCount. { - CULT *c; - const char* ms; - UCH fs, *fsp = nullptr; RC rc=RCOK; // no checks if defining a type: omitting anything is ok @@ -3378,15 +3403,15 @@ LOCAL RC FC msgMissReq() // check each table entry (only checks element [0] of arrays -- intentional) - for (c = xSp->cult; c->id; c++) // loop table + for (CULT* c = xSp->cult; c->id; c++) // loop table { + UCH fs{ 0 }; + UCH* fsp{ nullptr }; if (c->cs==DAT) { fsp = xSp->fs0 + c->fn; // point to data field status (sstat[]) byte in record fs = *fsp; // get its contents } - else - fs = 0; // dummy field status for RATE etc // test if required but not given, and not error'd yet. Only first element of ARRAYs is checked. @@ -3396,8 +3421,8 @@ LOCAL RC FC msgMissReq() | (fs & FsSET) ) // fld status: data only, ??lasts thru type/like, includes AUTOSIZE && !(fs & FsERR) ) // no further msg e.g. if error occurred decoding choice for this field { - if (c->cs==DAT) // if a data field -- else has no fs byte - *fsp |= FsERR; // say errMsg'd this field: may suppress addl msgs eg in user check code. 12-91. + if (fsp) // if a data field -- else has no fs byte + *fsp |= FsERR; // say errMsg'd this field: may suppress addl msgs eg in user check code. 12-91. // msg subtext saying where: "input file", "zone 'foo'", "ebalck", etc const char* watIn; @@ -3410,8 +3435,8 @@ LOCAL RC FC msgMissReq() watIn = xSp->e->classObjTx(); // 'zone "Z1"', 'sgdist', etc, below. // message text for member assignment or for RATE group - ms = c->cs==DAT ? (char *)MH_S0263 // "No %s given in %s" - : (char *)MH_S0264; // "No %s in %s" + const char* ms = c->cs==DAT ? (char *)MH_S0263 // "No %s given in %s" + : (char *)MH_S0264; // "No %s in %s" // issue message with name of item and what it is missing from. rc |= perlc( ms, (char *)c->id, watIn ); /* [no caret:] item missing somewhere in preceding statement group. diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index add4a195d..c06439908 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -20,7 +20,8 @@ macro(make_cse_test case) endmacro() make_cse_test(minimum_running_file.cse) -make_cse_test(wthr01.CSE) +make_cse_test(wthr01.cse) +make_cse_test(commands.cse) make_cse_test(600.cse) make_cse_test(930.cse) make_cse_test(960.cse) diff --git a/test/SACRAMENTO-EXECUTIVE_STYP20.epw b/test/SACRAMENTO-EXECUTIVE_STYP20.epw new file mode 100644 index 000000000..af80dc20c --- /dev/null +++ b/test/SACRAMENTO-EXECUTIVE_STYP20.epw @@ -0,0 +1,8768 @@ +LOCATION,CA_SACRAMENTO-EXECUTIVE-,-,USA,Custom-724830,724830,38.51,-121.50,-8.0,7.0 +DESIGN CONDITIONS,1,Climate Design Data 2013 ASHRAE Handbook,,Heating,12,-0.5,1,-7.1,2.1,10,-4.2,2.7,10.6,11.4,11.6,10.3,11.2,0.9,330,Cooling,7,18.1,37.8,21.1,36.2,20.4,34.2,19.7,22.5,35.4,21.4,34,20.5,32.4,3.3,200,17.7,12.7,29.1,16.5,11.7,26.5,15.6,11.1,25.1,66,35.2,62,34,58.8,32.5,1071,Extremes,9.1,8.1,7.2,31.1,-2.7,41.6,1.8,1.3,-4,42.5,-5.1,43.3,-6.1,44,-7.4,45 +TYPICAL/EXTREME PERIODS,6,Summer - Week Nearest Max Temperature For Period,Extreme,6/29,7/ 5,Summer - Week Nearest Average Temperature For Period,Typical,7/27,8/ 2,Winter - Week Nearest Min Temperature For Period,Extreme,12/15,12/21,Winter - Week Nearest Average Temperature For Period,Typical,1/13,1/19,Autumn - Week Nearest Average Temperature For Period,Typical,10/ 6,10/12,Spring - Week Nearest Average Temperature For Period,Typical,3/ 8,3/14 +GROUND TEMPERATURES,3,.5,,,,9.31,10.65,13.26,15.74,20.42,22.88,23.56,22.31,19.43,15.83,12.28,9.95,2,,,,11.16,11.49,12.97,14.63,18.23,20.53,21.68,21.42,19.78,17.29,14.49,12.29,4,,,,13.07,12.84,13.49,14.43,16.81,18.59,19.75,20.03,19.31,17.85,15.95,14.24 +HOLIDAYS/DAYLIGHT SAVINGS,No,0,0,0 +COMMENTS 1,Custom/User Format -- WMO#724830 +COMMENTS 2, -- Ground temps produced with a standard soil diffusivity of 2.3225760E-03 {m**2/day} +DATA PERIODS,1,1,Data,Sunday, 1/ 1,12/31 +2004,1,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.9,87,101000,0,0,334,0,0,0,0,0,0,0,170,5.9,10,10,4.8,5451,9,999999999,15,0.0000,0,88,999.000,1.3,1.0 +2004,1,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,7.2,88,101200,0,0,335,0,0,0,0,0,0,0,150,5.0,10,10,4.2,4149,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,7.5,89,101100,0,0,336,0,0,0,0,0,0,0,140,6.5,10,10,4.4,10016,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.8,90,101100,0,0,337,0,0,0,0,0,0,0,150,6.2,10,10,4.8,2493,9,999999999,16,0.0000,0,88,999.000,1.8,1.0 +2004,1,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.0,94,101100,0,0,341,0,0,0,0,0,0,0,170,5.9,10,10,4.8,5451,9,999999999,17,0.0000,0,88,999.000,1.3,1.0 +2004,1,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,8.1,93,101100,0,0,337,0,0,0,0,0,0,0,170,8.0,10,10,4.8,4142,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,8.3,93,101000,0,0,338,0,0,0,0,0,0,0,160,8.0,10,10,4.8,2588,9,999999999,17,0.0000,0,88,999.000,0.8,1.0 +2004,1,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,8.2,93,101000,34,736,337,1,0,1,170,0,268,7,150,10.0,10,10,4.6,10564,9,999999999,16,0.0000,0,88,999.000,2.1,1.0 +2004,1,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,8.2,93,101000,239,1411,337,15,0,15,1692,0,2555,64,150,12.3,10,10,4.4,5331,9,999999999,16,0.0000,0,88,999.000,4.3,1.0 +2004,1,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,8.3,93,101000,431,1411,337,19,0,19,2143,0,3156,77,150,10.6,10,10,2.5,426,9,999999999,17,0.0000,0,88,999.000,2.0,1.0 +2004,1,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,8.3,93,101000,572,1411,337,46,0,46,4982,0,7070,179,170,11.7,10,10,4.0,3936,9,999999999,17,0.0000,0,88,999.000,0.5,1.0 +2004,1,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,8.0,93,101100,650,1411,336,70,0,70,7507,0,10436,271,180,7.1,10,10,3.9,1553,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.5,90,101200,661,1411,331,105,4,103,11229,444,15115,401,170,5.9,9,9,16.0,903,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.9,93,101200,604,1411,296,171,18,163,17953,1791,23432,635,170,6.5,0,0,16.0,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,8.8,92,101300,482,1411,309,110,6,108,11655,563,16093,427,170,5.3,3,3,16.0,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,8.2,86,101400,305,1411,310,71,0,71,7598,0,11044,293,180,5.7,3,3,16.0,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,7.8,82,101400,96,1334,319,17,0,17,1838,0,2793,73,170,5.7,6,6,16.0,21580,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,7.9,84,101500,0,0,321,0,0,0,0,0,0,0,170,5.4,7,7,16.0,21580,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,8.2,92,101500,0,0,293,0,0,0,0,0,0,0,160,3.1,0,0,16.0,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,7.7,90,101600,0,0,304,0,0,0,0,0,0,0,140,3.1,3,3,15.8,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,7.2,90,101700,0,0,304,0,0,0,0,0,0,0,140,3.2,4,4,13.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.2,96,101800,0,0,285,0,0,0,0,0,0,0,160,4.0,0,0,9.2,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,7.1,96,101800,0,0,285,0,0,0,0,0,0,0,160,3.6,0,0,6.2,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,6.7,97,101800,0,0,291,0,0,0,0,0,0,0,160,3.5,2,2,4.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.8,6.8,100,101800,0,0,295,0,0,0,0,0,0,0,170,2.9,4,4,4.5,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,6.0,100,101900,0,0,319,0,0,0,0,0,0,0,180,2.4,10,10,2.9,410,9,999999999,13,0.0000,0,88,999.000,12.9,1.0 +2004,1,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,6.1,100,101900,0,0,320,0,0,0,0,0,0,0,160,3.1,10,10,0.4,549,9,999999999,13,0.0000,0,88,999.000,0.3,1.0 +2004,1,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,5.6,100,101800,0,0,317,0,0,0,0,0,0,0,150,2.1,10,10,0.4,549,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,5.0,100,101800,0,0,314,0,0,0,0,0,0,0,150,3.1,10,10,0.4,549,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,5.0,100,101800,0,0,314,0,0,0,0,0,0,0,140,2.1,10,10,0.4,549,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,5.6,100,101700,0,0,317,0,0,0,0,0,0,0,150,3.1,10,10,0.4,549,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,5.6,100,101800,34,733,317,4,0,4,419,0,652,16,170,2.1,10,10,0.3,549,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,6.1,100,101800,239,1411,320,24,0,24,2610,0,3921,100,150,3.1,10,10,0.8,549,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,7.1,100,101800,432,1411,326,72,0,72,7712,0,11059,288,170,3.7,10,10,1.6,78,9,999999999,15,0.0000,0,88,999.000,0.5,1.0 +2004,1,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,7.2,100,101800,572,1411,326,69,0,69,7402,0,10422,270,190,3.1,10,10,1.6,1158,9,999999999,15,0.0000,0,88,999.000,0.3,1.0 +2004,1,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.2,96,101700,651,1411,329,45,0,45,4947,0,6955,177,170,4.6,10,10,4.0,9693,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.8,93,101600,663,1411,335,200,90,158,22814,6181,18066,824,150,4.1,10,10,8.0,11826,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,8.1,92,101600,606,1411,328,154,54,131,17702,3435,15080,673,180,3.4,9,9,10.3,12436,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.7,83,101500,485,1411,320,108,25,100,12362,1335,11422,492,200,2.2,8,8,16.0,12436,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,6.2,81,101500,308,1411,290,145,327,73,16143,10803,8217,339,200,3.0,0,0,16.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,6.1,83,101500,99,1347,298,26,15,25,2852,0,2744,105,190,2.5,2,2,16.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,5.7,84,101500,0,0,302,0,0,0,0,0,0,0,190,2.2,5,5,16.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,6.0,93,101500,0,0,295,0,0,0,0,0,0,0,200,2.5,4,4,14.5,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.1,5.1,100,101600,0,0,272,0,0,0,0,0,0,0,240,2.5,0,0,14.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,3.7,92,101600,0,0,270,0,0,0,0,0,0,0,240,0.0,0,0,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.8,2.2,89,101600,0,0,265,0,0,0,0,0,0,0,240,0.0,0,0,15.4,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.7,2.1,96,101700,0,0,260,0,0,0,0,0,0,0,220,0.0,0,0,10.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.7,1.6,99,101700,0,0,256,0,0,0,0,0,0,0,220,0.2,0,0,8.7,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.4,0.9,97,101800,0,0,254,0,0,0,0,0,0,0,220,1.6,0,0,13.8,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.5,-0.5,100,101900,0,0,246,0,0,0,0,0,0,0,220,2.0,0,0,10.3,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.5,0.0,96,102000,0,0,250,0,0,0,0,0,0,0,260,1.3,0,0,15.6,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.0,0.0,100,102000,0,0,248,0,0,0,0,0,0,0,260,0.0,0,0,9.3,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.7,-0.7,100,102000,0,0,245,0,0,0,0,0,0,0,260,0.0,0,0,8.8,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.7,-0.7,100,102000,0,0,245,0,0,0,0,0,0,0,260,0.0,0,0,12.2,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-1.6,-1.6,100,102100,0,0,241,0,0,0,0,0,0,0,320,0.0,0,0,8.9,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.3,-0.3,100,102200,34,731,247,16,103,14,1777,0,1510,58,320,0.0,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.5,1.8,95,102400,239,1411,259,144,573,47,16260,8114,5283,210,320,0.2,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.3,2.9,85,102500,432,1411,271,297,767,62,34793,32181,7265,299,320,1.5,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,3.3,76,102500,574,1411,279,417,848,72,49825,44357,8659,367,300,1.7,0,0,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,3.3,73,102400,653,1411,282,487,892,75,58977,49328,9043,388,300,3.2,0,0,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,3.0,67,102400,665,1411,285,498,902,73,60542,50071,8929,384,340,3.7,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,1.2,58,102400,609,1411,284,451,887,68,54527,47427,8234,349,320,4.5,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,1.7,59,102400,488,1411,286,348,830,61,41410,38263,7309,303,350,3.5,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,1.7,61,102400,311,1411,284,203,697,49,23466,18126,5713,228,310,3.0,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,2.0,66,102400,102,1362,281,54,338,29,5882,0,3232,125,320,2.5,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,2.2,72,102500,0,0,277,0,0,0,0,0,0,0,320,1.9,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,2.2,86,102500,0,0,266,0,0,0,0,0,0,0,320,0.0,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.3,2.3,93,102500,0,0,263,0,0,0,0,0,0,0,300,0.2,0,0,15.3,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.1,2.7,97,102600,0,0,262,0,0,0,0,0,0,0,300,1.3,0,0,9.4,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.7,1.7,100,102600,0,0,256,0,0,0,0,0,0,0,300,0.0,0,0,7.8,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.4,1.4,100,102600,0,0,255,0,0,0,0,0,0,0,300,0.0,0,0,4.9,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.0,1.0,100,102600,0,0,253,0,0,0,0,0,0,0,230,0.0,0,0,2.9,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.7,-0.7,100,102600,0,0,245,0,0,0,0,0,0,0,230,0.0,0,0,2.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.6,-0.6,100,102700,0,0,246,0,0,0,0,0,0,0,220,1.5,0,0,1.2,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.8,-0.8,100,102700,0,0,245,0,0,0,0,0,0,0,220,0.0,0,0,3.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-1.1,-1.1,100,102700,0,0,243,0,0,0,0,0,0,0,110,0.0,0,0,2.7,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.7,-0.7,100,102700,0,0,245,0,0,0,0,0,0,0,110,0.0,0,0,2.5,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-1.8,-2.3,96,102700,0,0,240,0,0,0,0,0,0,0,110,0.0,0,0,5.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-2.1,-2.7,96,102800,0,0,239,0,0,0,0,0,0,0,110,0.0,0,0,7.5,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-1.4,-2.0,96,102800,34,730,242,16,105,14,1778,0,1505,58,110,0.0,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.4,-0.5,87,102900,239,1411,253,84,160,57,9333,3173,6319,254,110,0.0,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.6,0.1,78,103000,433,1411,262,230,403,107,25893,22328,12042,517,320,0.0,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,1.1,72,102900,575,1411,272,417,861,66,50211,44638,7980,336,320,0.0,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,1.0,62,102800,655,1411,279,486,896,70,59143,49592,8567,366,320,0.0,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,0.5,56,102700,667,1411,283,496,897,72,60392,50303,8742,375,320,0.0,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,-0.3,51,102700,612,1411,284,399,670,109,46629,41609,12789,562,320,0.3,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,1.6,59,102700,491,1411,286,325,703,81,37910,35920,9425,399,320,2.7,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,1.4,60,102700,315,1411,283,160,406,70,18038,13917,7875,324,300,3.1,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,1.4,65,102700,104,1376,279,40,143,29,4364,0,3213,124,320,2.8,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,1.7,69,102700,0,0,277,0,0,0,0,0,0,0,320,2.6,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,1.8,72,102600,0,0,275,0,0,0,0,0,0,0,340,2.7,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,2.3,80,102600,0,0,271,0,0,0,0,0,0,0,330,3.2,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,2.7,85,102700,0,0,270,0,0,0,0,0,0,0,340,4.0,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,2.1,82,102700,0,0,269,0,0,0,0,0,0,0,340,3.6,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,1.1,77,102700,0,0,268,0,0,0,0,0,0,0,340,3.5,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,1.2,80,102700,0,0,266,0,0,0,0,0,0,0,330,2.5,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,1.7,83,102600,0,0,266,0,0,0,0,0,0,0,330,2.3,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.8,1.6,86,102600,0,0,264,0,0,0,0,0,0,0,310,3.6,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.3,1.1,86,102600,0,0,262,0,0,0,0,0,0,0,320,3.5,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.2,1.1,86,102600,0,0,261,0,0,0,0,0,0,0,340,2.7,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.6,1.0,89,102600,0,0,259,0,0,0,0,0,0,0,340,0.0,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.0,0.5,97,102600,0,0,252,0,0,0,0,0,0,0,340,0.0,0,0,15.6,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.5,-0.1,96,102700,0,0,250,0,0,0,0,0,0,0,80,0.0,0,0,13.2,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.1,-0.3,98,102700,34,730,248,16,96,14,1745,0,1497,57,80,0.0,0,0,15.6,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.5,1.7,88,102700,240,1411,263,142,549,48,15987,8335,5476,218,80,0.2,0,0,13.2,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.3,1.8,78,102700,434,1411,270,294,748,64,34373,32186,7505,310,80,2.2,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,2.2,70,102700,576,1411,278,413,835,73,49438,44132,8691,369,170,2.5,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,2.2,67,102600,657,1411,281,482,869,77,58238,48954,9355,403,230,1.9,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,2.2,63,102500,670,1411,285,491,866,80,59343,49476,9688,419,230,0.0,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,2.2,58,102400,615,1411,289,440,824,82,52564,46108,9759,420,140,0.2,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,2.2,56,102400,494,1411,292,258,370,128,29000,23209,14482,636,140,1.7,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,2.2,57,102400,318,1411,290,134,211,86,14793,8536,9565,400,300,3.0,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,2.2,61,102400,107,1389,286,37,88,30,4051,0,3330,129,310,2.5,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,2.2,67,102400,0,0,281,0,0,0,0,0,0,0,310,1.9,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,2.2,79,102300,0,0,271,0,0,0,0,0,0,0,310,0.0,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,2.1,82,102300,0,0,269,0,0,0,0,0,0,0,310,0.0,0,0,15.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,1.7,83,102300,0,0,266,0,0,0,0,0,0,0,40,0.0,0,0,14.2,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.5,1.8,83,102300,0,0,267,0,0,0,0,0,0,0,40,0.2,0,0,12.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,2.3,80,102300,0,0,271,0,0,0,0,0,0,0,40,1.3,0,0,12.6,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,2.9,90,102300,0,0,268,0,0,0,0,0,0,0,240,0.2,0,0,11.2,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.5,3.4,93,102300,0,0,268,0,0,0,0,0,0,0,240,1.9,0,0,11.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.1,3.9,92,102200,0,0,271,0,0,0,0,0,0,0,40,0.2,0,0,11.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,3.9,89,102200,0,0,289,0,0,0,0,0,0,0,40,1.3,5,5,9.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,3.9,88,102100,0,0,307,0,0,0,0,0,0,0,40,0.2,9,9,9.6,2987,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,4.0,87,102000,0,0,308,0,0,0,0,0,0,0,40,2.1,9,9,9.6,2896,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,4.3,91,102000,0,0,316,0,0,0,0,0,0,0,280,2.2,10,10,9.8,2896,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,3.9,86,102000,0,0,309,0,0,0,0,0,0,0,10,2.3,9,9,11.0,2943,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.2,3.9,85,101900,34,730,309,1,0,1,114,0,182,4,290,0.2,9,9,9.8,3334,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,3.9,79,102000,240,1411,307,12,0,12,1327,0,2026,50,290,1.9,8,8,11.6,3600,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,3.8,75,102000,435,1411,295,74,2,73,7827,165,11185,292,10,0.2,3,3,14.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,3.2,66,101900,578,1411,300,181,42,164,20341,3030,18485,835,10,2.0,3,3,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,2.9,66,101800,659,1411,300,148,18,139,15463,1783,20032,541,70,1.6,4,4,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,3.9,69,101700,673,1411,288,158,13,152,16473,1250,21652,588,70,1.9,0,0,15.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,4.0,69,101700,618,1411,288,63,0,63,6798,0,9573,247,260,0.2,0,0,14.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,4.5,72,101600,498,1411,304,65,0,65,6919,0,9897,256,260,1.5,4,4,14.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,4.7,73,101700,322,1411,301,74,8,72,7821,665,11131,294,230,1.5,3,3,12.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,4.7,74,101700,110,1404,308,27,8,27,3024,0,2964,114,140,1.8,6,6,12.8,3300,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,4.4,74,101700,0,0,322,0,0,0,0,0,0,0,140,2.2,9,9,12.6,3300,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,4.5,75,101700,0,0,321,0,0,0,0,0,0,0,120,2.5,9,9,11.2,3217,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,4.9,79,101600,0,0,320,0,0,0,0,0,0,0,120,2.3,9,9,11.0,4628,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,4.5,78,101600,0,0,319,0,0,0,0,0,0,0,140,3.4,9,9,9.4,19878,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,5.7,87,101600,0,0,327,0,0,0,0,0,0,0,140,1.9,10,10,7.6,18354,9,999999999,13,0.0000,0,88,999.000,0.5,1.0 +2004,1,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,6.2,90,101600,0,0,327,0,0,0,0,0,0,0,250,0.0,10,10,4.5,14920,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.7,97,101600,0,0,326,0,0,0,0,0,0,0,250,1.9,10,10,2.8,15484,9,999999999,15,0.0000,0,88,999.000,1.1,1.0 +2004,1,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,6.8,98,101700,0,0,325,0,0,0,0,0,0,0,80,1.7,10,10,2.6,11379,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,6.6,92,101600,0,0,328,0,0,0,0,0,0,0,110,3.1,10,10,5.0,18709,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,6.0,88,101600,0,0,328,0,0,0,0,0,0,0,110,3.1,10,10,6.6,17947,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,5.6,84,101600,0,0,329,0,0,0,0,0,0,0,160,3.2,10,10,8.0,3911,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,5.7,87,101600,0,0,327,0,0,0,0,0,0,0,220,3.2,10,10,7.6,18532,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,6.0,92,101600,0,0,325,0,0,0,0,0,0,0,160,0.4,10,10,5.2,18709,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,5.6,83,101600,0,0,329,0,0,0,0,0,0,0,160,2.7,10,10,7.8,19878,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,5.7,83,101700,34,730,330,1,0,1,114,0,182,4,130,0.2,10,10,6.4,18709,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,6.2,80,101800,241,1411,336,39,35,33,4507,208,3824,148,130,2.2,10,10,6.4,20056,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,6.8,80,101800,436,1411,330,84,35,73,9690,1520,8472,354,60,3.0,9,9,6.4,19878,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,7.3,77,101800,579,1411,336,169,26,158,18975,1819,17834,805,160,2.7,9,9,6.6,18532,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,7.8,74,101700,661,1411,342,303,213,203,33911,16429,22851,1063,100,3.0,9,9,8.2,16654,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,7.8,71,101700,675,1411,344,267,146,197,29993,11088,22221,1032,160,2.2,9,9,9.6,2420,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,7.9,69,101600,621,1411,357,94,1,94,10048,127,13846,364,140,2.5,10,10,9.8,4536,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,8.4,71,101700,501,1411,358,131,10,128,13858,923,18868,505,220,2.3,10,10,10.6,19275,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,8.8,79,101700,326,1411,353,73,3,73,7826,284,11216,296,300,4.1,10,10,6.1,1803,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,9.1,87,101800,113,1411,347,17,0,17,1881,0,2853,74,310,3.7,10,10,3.7,1581,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.9,93,101800,0,6,341,0,0,0,0,0,0,0,300,3.0,10,10,4.0,15199,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.9,93,101900,0,0,341,0,0,0,0,0,0,0,10,2.3,10,10,4.2,10098,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.2,95,101900,0,0,342,0,0,0,0,0,0,0,360,2.4,10,10,4.3,7450,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.9,94,101900,0,0,341,0,0,0,0,0,0,0,340,2.9,10,10,4.8,11698,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,9.0,100,101900,0,0,337,0,0,0,0,0,0,0,330,1.5,10,10,4.6,3060,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,8.7,97,101800,0,0,321,0,0,0,0,0,0,0,20,1.6,8,8,3.1,14874,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,8.3,99,101800,0,0,306,0,0,0,0,0,0,0,280,3.0,5,5,2.2,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,8.3,96,101800,0,0,326,0,0,0,0,0,0,0,10,2.6,9,9,3.3,15484,9,999999999,17,0.0000,0,88,999.000,0.3,1.0 +2004,1,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,8.4,97,102000,0,0,335,0,0,0,0,0,0,0,350,2.6,10,10,3.9,13852,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,8.9,100,102000,0,0,336,0,0,0,0,0,0,0,360,2.6,10,10,2.8,15484,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,8.8,97,101900,0,0,329,0,0,0,0,0,0,0,60,1.9,9,9,3.9,1219,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,8.3,96,101900,0,0,308,0,0,0,0,0,0,0,100,0.2,5,5,2.9,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,8.1,95,101900,0,0,325,0,0,0,0,0,0,0,100,2.0,9,9,3.7,14735,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.9,100,101900,0,0,330,0,0,0,0,0,0,0,250,0.0,10,10,2.4,14866,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,9.0,97,102000,34,732,339,2,0,2,226,0,353,9,260,2.5,10,10,2.1,18354,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,9.3,94,102000,242,1411,343,25,0,25,2765,0,4125,105,320,1.9,10,10,2.9,13130,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,10.0,92,102000,437,1411,348,101,66,80,11554,2909,9240,390,50,3.1,10,10,3.2,15233,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.0,86,102000,581,1411,353,177,70,148,19941,4574,16748,753,60,3.1,10,10,3.2,20056,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,9.0,74,101900,664,1411,359,219,87,178,24732,6273,20175,929,60,0.0,10,10,8.2,2321,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,9.6,69,101800,678,1411,351,374,413,176,42469,29326,20049,924,320,0.6,8,8,9.2,2591,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.0,87,101800,624,1411,311,329,369,166,37048,25184,18751,856,320,5.2,0,0,6.6,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.5,87,101800,505,1411,327,233,246,145,25904,15509,16197,721,310,5.1,5,5,8.0,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,10.3,86,101800,330,1411,327,115,89,94,12604,3619,10349,437,310,4.1,5,5,8.0,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.0,86,101800,117,1411,331,25,0,25,2675,0,4021,106,320,3.8,7,7,8.0,3300,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.9,86,101800,0,20,343,0,0,0,0,0,0,0,320,3.5,9,9,8.2,3300,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.4,90,101800,0,0,325,0,0,0,0,0,0,0,360,2.5,7,7,9.4,3300,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,9.4,97,101800,0,0,296,0,0,0,0,0,0,0,330,2.1,0,0,7.6,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,9.3,100,101800,0,0,293,0,0,0,0,0,0,0,330,2.2,0,0,4.7,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.7,98,101800,0,0,291,0,0,0,0,0,0,0,330,2.9,0,0,4.4,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,8.9,100,101800,0,0,291,0,0,0,0,0,0,0,340,2.7,0,0,4.8,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,8.8,100,101800,0,0,326,0,0,0,0,0,0,0,310,2.5,9,9,4.1,1158,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,8.0,99,101800,0,0,315,0,0,0,0,0,0,0,10,1.6,8,8,4.8,120,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,8.1,100,101800,0,0,331,0,0,0,0,0,0,0,360,1.2,10,10,6.4,462,9,999999999,16,0.0000,0,88,999.000,0.3,1.0 +2004,1,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,8.3,100,101800,0,0,332,0,0,0,0,0,0,0,360,0.0,10,10,0.4,549,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.8,100,101800,0,0,330,0,0,0,0,0,0,0,90,0.0,10,10,0.4,549,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.8,100,101800,0,0,330,0,0,0,0,0,0,0,90,2.1,10,10,0.4,549,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,8.3,100,101800,0,0,332,0,0,0,0,0,0,0,90,0.0,10,10,0.4,549,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,8.3,100,101900,0,0,332,0,0,0,0,0,0,0,250,0.0,10,10,0.4,549,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,8.3,100,102000,35,735,332,3,0,3,334,0,520,13,250,2.1,10,10,0.3,549,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,8.3,100,102000,242,1411,332,29,0,29,3150,0,4696,120,100,2.6,10,10,0.4,549,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,8.2,100,102000,439,1411,323,69,6,67,7373,537,10285,267,110,2.4,9,9,2.5,393,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,8.4,95,102100,583,1411,301,144,13,138,15171,1304,20117,540,120,0.0,2,2,5.2,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.9,89,102000,666,1411,299,219,65,188,24633,4820,21255,983,190,0.2,0,0,8.2,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,8.9,82,101900,681,1411,321,270,124,210,30239,9608,23662,1106,190,1.5,5,5,9.6,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.0,81,102000,628,1411,342,151,8,148,15943,830,21245,573,230,1.7,9,9,9.4,4585,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.4,83,102100,509,1411,343,162,85,132,18195,5164,14807,654,300,2.7,9,9,8.2,18887,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,10.1,86,102100,334,1411,354,31,0,31,3427,0,5036,127,300,0.2,10,10,9.2,20058,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,10.6,91,102100,120,1411,354,12,0,12,1378,0,2096,53,360,1.9,10,10,5.5,7016,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,11.1,96,102200,0,35,352,0,0,0,0,0,0,0,50,1.7,10,10,5.4,18176,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,11.0,95,102200,0,0,352,0,0,0,0,0,0,0,50,3.5,10,10,9.6,15484,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,10.7,93,102200,0,0,352,0,0,0,0,0,0,0,60,2.6,10,10,9.6,11997,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,10.7,93,102200,0,0,352,0,0,0,0,0,0,0,30,1.7,10,10,10.9,12656,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,10.6,92,102200,0,0,352,0,0,0,0,0,0,0,10,1.6,10,10,11.2,5801,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,10.6,91,102300,0,0,354,0,0,0,0,0,0,0,330,2.4,10,10,10.6,6411,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,10.5,96,102300,0,0,348,0,0,0,0,0,0,0,310,4.4,10,10,6.4,5986,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,10.0,97,102300,0,0,345,0,0,0,0,0,0,0,330,3.6,10,10,6.4,1696,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,10.0,99,102200,0,0,343,0,0,0,0,0,0,0,340,3.7,10,10,6.4,1158,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,10.0,97,102200,0,0,345,0,0,0,0,0,0,0,330,4.5,10,10,6.7,1226,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,10.0,100,102200,0,0,343,0,0,0,0,0,0,0,330,3.3,10,10,6.2,1158,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,10.0,100,102100,0,0,343,0,0,0,0,0,0,0,340,4.9,10,10,4.6,846,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.7,98,102200,0,0,342,0,0,0,0,0,0,0,350,4.3,10,10,5.3,1262,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.2,95,102200,0,0,342,0,0,0,0,0,0,0,340,3.6,10,10,8.0,7227,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.1,94,102200,35,739,332,15,79,13,1669,0,1459,56,360,2.9,9,9,6.4,7884,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,9.3,91,102200,244,1411,314,117,366,54,13086,5555,6054,244,320,2.8,4,4,7.7,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,10.0,93,102200,440,1411,319,245,479,95,27720,23197,10832,463,310,3.1,5,5,8.4,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.1,83,102200,585,1411,319,369,620,112,42601,35729,12942,570,330,3.6,2,2,16.0,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,10.6,80,102000,669,1411,315,465,751,108,54647,43803,12800,568,340,3.6,0,0,16.0,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,10.6,75,101900,684,1411,319,478,758,110,56290,44580,13025,580,330,3.7,0,0,16.0,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,10.6,72,101900,631,1411,322,374,504,149,42634,32956,17018,771,350,4.5,0,0,16.0,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.7,73,101800,513,1411,321,303,551,103,34691,29301,11808,512,330,4.0,0,0,16.0,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,10.9,76,101800,338,1411,320,169,378,79,18872,13331,8802,367,330,3.1,0,0,16.0,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.8,79,101800,124,1411,317,51,162,37,5533,0,4002,158,310,2.8,0,0,16.0,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.6,81,101800,0,50,314,0,0,0,0,0,0,0,310,2.5,0,0,16.0,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,10.5,88,101800,0,0,324,0,0,0,0,0,0,0,310,2.0,4,4,16.0,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,9.4,93,101800,0,0,298,0,0,0,0,0,0,0,290,1.3,0,0,15.8,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.5,97,101800,0,0,296,0,0,0,0,0,0,0,290,0.2,0,0,14.0,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.9,99,101800,0,0,297,0,0,0,0,0,0,0,290,2.2,0,0,11.4,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.3,95,101800,0,0,296,0,0,0,0,0,0,0,310,2.5,0,0,13.2,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.9,94,101800,0,0,295,0,0,0,0,0,0,0,340,1.3,0,0,16.0,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,8.8,99,101700,0,0,291,0,0,0,0,0,0,0,270,0.2,0,0,15.4,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.4,96,101700,0,0,291,0,0,0,0,0,0,0,270,1.5,0,0,11.4,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,8.8,97,101700,0,0,293,0,0,0,0,0,0,0,90,1.3,0,0,12.4,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,8.3,99,101700,0,0,301,0,0,0,0,0,0,0,90,0.0,3,3,10.0,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,8.3,96,101700,0,0,303,0,0,0,0,0,0,0,40,0.2,3,3,12.8,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,8.4,97,101700,0,0,335,0,0,0,0,0,0,0,40,1.6,10,10,10.8,3600,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,8.3,100,101600,0,0,323,0,0,0,0,0,0,0,110,2.1,9,9,0.4,853,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,8.3,100,101700,36,743,323,15,77,13,1671,0,1461,56,90,0.0,9,9,0.3,549,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,8.3,100,101700,245,1411,323,59,80,45,6667,923,5096,202,30,0.0,9,9,0.3,549,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,8.9,100,101700,442,1411,327,115,10,112,12189,948,16742,446,30,0.0,9,9,0.4,549,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,10.0,100,101700,588,1411,333,258,213,170,28869,14830,19047,867,30,0.0,9,9,0.8,1158,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,10.0,77,101600,672,1411,314,414,564,145,47608,36846,16778,762,30,0.0,0,0,11.4,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,10.0,72,101500,688,1411,318,438,615,138,50722,39428,16061,728,170,0.0,0,0,12.6,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,10.1,73,101400,635,1411,318,374,518,141,42843,33275,16195,730,170,0.4,0,0,11.0,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,10.3,74,101500,517,1411,319,235,253,143,26239,15875,15979,711,170,3.0,0,0,9.4,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.6,81,101500,342,1411,314,179,440,73,20196,14903,8229,341,160,2.6,0,0,8.0,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,10.3,84,101500,127,1411,310,63,311,35,6865,0,3803,149,150,2.9,0,0,8.0,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,9.9,88,101500,0,67,305,0,0,0,0,0,0,0,150,3.2,0,0,7.5,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,9.3,97,101500,0,0,331,0,0,0,0,0,0,0,140,3.7,9,9,2.4,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,9.4,100,101600,0,0,339,0,0,0,0,0,0,0,160,2.7,10,10,2.3,549,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,9.4,100,101600,0,0,339,0,0,0,0,0,0,0,160,2.8,10,10,1.6,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,9.1,100,101600,0,0,337,0,0,0,0,0,0,0,180,2.6,10,10,1.9,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,9.0,97,101700,0,0,339,0,0,0,0,0,0,0,150,1.6,10,10,3.2,1158,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.1,94,101700,0,0,342,0,0,0,0,0,0,0,150,2.3,10,10,3.0,478,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,9.4,100,101700,0,0,339,0,0,0,0,0,0,0,150,1.5,10,10,0.4,549,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,8.9,100,101800,0,0,336,0,0,0,0,0,0,0,120,2.6,10,10,1.2,549,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,8.3,100,101800,0,0,332,0,0,0,0,0,0,0,130,2.6,10,10,0.8,549,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,8.3,100,101900,0,0,332,0,0,0,0,0,0,0,140,0.0,10,10,1.9,549,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,8.3,100,101900,0,0,332,0,0,0,0,0,0,0,80,1.5,10,10,1.2,549,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,8.2,99,101900,0,0,332,0,0,0,0,0,0,0,80,0.0,10,10,2.0,549,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,8.2,99,102000,0,0,332,0,0,0,0,0,0,0,80,0.0,10,10,1.9,549,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,8.3,100,102000,36,748,332,1,0,1,92,0,147,3,80,0.0,10,10,0.8,549,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,8.3,100,102200,246,1410,332,7,0,7,847,0,1295,31,140,0.0,10,10,0.8,1158,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,8.3,100,102200,444,1410,332,78,26,70,9095,1102,8175,341,140,0.0,10,10,1.2,1158,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,8.3,96,102300,590,1410,335,97,26,87,11504,1384,10261,443,140,0.0,10,10,1.2,1158,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,8.0,91,102200,675,1410,337,92,0,92,9870,0,13576,359,140,1.5,10,10,4.0,1831,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.8,86,102200,691,1410,340,111,0,111,11758,0,16064,429,140,1.5,10,10,4.0,2377,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,7.8,86,102200,639,1410,331,128,0,128,13514,0,18544,497,140,0.0,9,9,6.4,3093,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,7.9,82,102200,521,1410,322,134,84,103,15375,4616,11865,515,290,0.0,7,7,6.4,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.0,82,102200,346,1410,299,99,84,79,11152,3171,8877,370,290,0.3,0,0,4.8,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,8.1,83,102200,131,1410,323,13,0,13,1458,0,2225,57,290,2.9,7,7,4.8,390,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.1,88,102200,1,85,340,0,0,0,0,0,0,0,300,2.1,10,10,4.3,1682,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,102200,0,0,341,0,0,0,0,0,0,0,330,2.3,10,10,6.4,2915,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,102300,0,0,341,0,0,0,0,0,0,0,340,3.6,10,10,6.6,2448,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.2,89,102300,0,0,340,0,0,0,0,0,0,0,10,3.8,10,10,7.4,1953,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,102400,0,0,341,0,0,0,0,0,0,0,340,3.0,10,10,6.4,3525,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.3,90,102400,0,0,340,0,0,0,0,0,0,0,360,2.7,10,10,6.4,2915,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,8.3,93,102400,0,0,338,0,0,0,0,0,0,0,10,3.0,10,10,6.2,2377,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,8.3,93,102400,0,0,337,0,0,0,0,0,0,0,10,2.1,10,10,4.7,2305,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.1,94,102500,0,0,336,0,0,0,0,0,0,0,300,1.7,10,10,4.0,789,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,8.2,96,102500,0,0,335,0,0,0,0,0,0,0,30,2.1,10,10,3.9,1158,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,7.8,97,102500,0,0,331,0,0,0,0,0,0,0,70,2.2,10,10,2.8,1158,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.9,100,102500,0,0,330,0,0,0,0,0,0,0,50,2.0,10,10,3.0,624,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.1,95,102500,0,0,329,0,0,0,0,0,0,0,340,1.5,10,10,4.6,846,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.1,95,102500,0,0,329,0,0,0,0,0,0,0,290,2.2,10,10,3.1,742,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.1,95,102500,37,754,329,16,81,14,1725,0,1497,57,280,0.0,10,10,2.7,534,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.2,96,102500,248,1410,329,24,81,10,3094,0,1269,45,360,0.0,10,10,2.4,1158,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,7.1,92,102600,446,1410,332,26,0,26,2858,0,4183,103,360,1.9,10,10,5.0,1839,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.7,86,102600,593,1410,334,76,0,76,8104,0,11362,295,360,0.0,10,10,6.4,2448,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,6.8,86,102500,678,1410,334,107,0,107,11322,0,15540,414,360,0.0,10,10,6.4,2987,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,7.2,86,102400,695,1410,337,121,0,121,12792,0,17446,469,150,0.3,10,10,6.4,2470,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.2,83,102400,643,1410,339,140,0,140,14705,0,20141,543,150,0.2,10,10,8.0,3668,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.1,82,102400,525,1410,323,184,119,140,20606,7601,15713,698,150,1.9,8,8,7.5,4206,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,6.7,80,102400,351,1410,306,168,339,84,18804,13766,9421,395,150,1.5,3,3,6.4,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.7,83,102400,135,1410,297,66,283,39,7176,0,4226,166,150,0.7,1,1,6.4,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,6.8,88,102400,1,104,294,0,0,0,0,0,0,0,130,0.3,1,1,6.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.7,90,102400,0,0,331,0,0,0,0,0,0,0,160,0.0,10,10,8.0,4206,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.8,90,102400,0,0,331,0,0,0,0,0,0,0,160,0.0,10,10,8.0,4134,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,7.2,92,102400,0,0,332,0,0,0,0,0,0,0,160,0.0,10,10,8.0,3597,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.1,89,102400,0,0,334,0,0,0,0,0,0,0,160,0.0,10,10,8.0,3597,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.8,87,102400,0,0,334,0,0,0,0,0,0,0,290,0.0,10,10,8.0,2488,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.1,92,102400,0,0,331,0,0,0,0,0,0,0,290,0.0,10,10,6.4,2915,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,6.8,91,102400,0,0,330,0,0,0,0,0,0,0,290,0.2,10,10,6.2,2305,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.2,96,102300,0,0,329,0,0,0,0,0,0,0,290,1.6,10,10,4.7,1768,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.5,7.1,97,102300,0,0,327,0,0,0,0,0,0,0,320,2.1,10,10,4.0,1180,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.7,97,102200,0,0,326,0,0,0,0,0,0,0,310,1.3,10,10,4.0,1158,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.7,97,102200,0,0,326,0,0,0,0,0,0,0,310,0.0,10,10,4.0,1158,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,6.8,98,102200,0,0,325,0,0,0,0,0,0,0,300,0.5,10,10,4.3,818,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.8,97,102200,0,0,326,0,0,0,0,0,0,0,300,0.0,10,10,4.1,931,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.7,97,102200,38,761,326,1,0,1,148,0,234,6,140,0.2,10,10,1.6,1158,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.7,97,102200,250,1410,326,10,0,10,1171,0,1784,44,140,1.3,10,10,1.8,1002,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,6.8,97,102300,448,1410,326,20,0,20,2246,0,3305,81,180,1.6,10,10,3.2,977,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.5,6.7,95,102300,596,1410,327,28,0,28,3113,0,4463,110,250,0.2,10,10,3.2,1768,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,6.7,93,102200,681,1410,328,60,0,60,6500,0,9045,234,270,2.1,10,10,2.8,1768,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.5,6.7,89,102100,699,1410,332,136,5,133,14324,543,19100,516,270,0.0,10,10,3.3,1895,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.7,86,102000,647,1410,334,105,0,105,11161,0,15398,409,300,0.0,10,10,4.0,2987,9,999999999,15,0.0000,0,88,999.000,0.3,1.0 +2004,1,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,7.2,90,102000,530,1410,334,72,0,72,7685,0,10876,282,300,0.4,10,10,4.0,3205,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.2,93,102000,355,1410,331,42,0,42,4590,0,6721,172,300,3.6,10,10,4.0,335,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,7.0,93,102000,139,1410,330,11,0,11,1265,0,1939,49,290,4.1,10,10,4.0,244,9,999999999,15,0.0000,0,88,999.000,0.7,1.0 +2004,1,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,7.1,93,102000,1,123,331,0,0,0,0,0,0,0,310,2.6,10,10,3.6,1293,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.1,95,101900,0,0,329,0,0,0,0,0,0,0,40,2.9,10,10,8.0,954,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.2,96,101900,0,0,320,0,0,0,0,0,0,0,310,1.6,9,9,8.2,2682,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.1,95,101800,0,0,305,0,0,0,0,0,0,0,330,2.6,6,6,9.6,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.1,95,101900,0,0,295,0,0,0,0,0,0,0,310,1.7,2,2,6.9,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,7.1,99,101900,0,0,292,0,0,0,0,0,0,0,310,0.0,2,2,7.5,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,6.3,98,101900,0,0,279,0,0,0,0,0,0,0,310,0.0,0,0,3.4,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.5,6.1,97,101900,0,0,293,0,0,0,0,0,0,0,220,0.0,4,4,2.2,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,6.7,100,101800,0,0,323,0,0,0,0,0,0,0,220,0.0,10,10,0.4,2073,9,999999999,15,0.0000,0,88,999.000,1.0,1.0 +2004,1,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,6.7,100,101800,0,0,323,0,0,0,0,0,0,0,220,0.0,10,10,0.4,2073,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,6.7,100,101800,0,0,323,0,0,0,0,0,0,0,220,0.0,10,10,1.2,853,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,7.2,100,101700,0,0,326,0,0,0,0,0,0,0,120,1.5,10,10,0.8,549,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,7.2,99,101700,0,0,327,0,0,0,0,0,0,0,140,0.6,10,10,1.5,549,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,7.2,100,101700,0,0,326,0,0,0,0,0,0,0,140,0.0,10,10,0.8,549,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,7.2,100,101700,38,768,326,17,91,14,1831,0,1564,60,180,0.0,10,10,0.4,549,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,7.3,100,101800,251,1410,327,98,363,33,11442,2828,3906,151,170,2.0,10,10,3.2,1033,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.8,100,101800,451,1410,330,71,0,71,7593,0,10852,282,150,1.5,10,10,3.2,1158,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,7.9,97,101800,599,1410,333,118,0,118,12533,0,17332,462,230,0.2,10,10,8.2,1839,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,8.3,92,101700,684,1410,338,197,28,183,22287,2043,20848,964,240,1.3,10,10,9.6,2448,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.2,89,101600,702,1410,324,230,60,200,25930,4547,22671,1058,210,0.3,8,8,9.9,2987,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,7.9,82,101500,651,1410,335,290,181,207,32374,14103,23153,1077,210,0.9,9,9,12.2,2234,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,8.3,80,101500,534,1410,339,220,145,165,24364,10076,18348,827,220,0.0,9,9,12.8,4816,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,8.3,82,101500,360,1410,337,108,35,99,11978,1620,11022,469,220,0.2,9,9,12.6,4869,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,8.3,85,101500,143,1410,335,34,5,33,3638,377,5357,142,180,1.5,9,9,11.0,5326,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,8.3,86,101500,1,142,334,0,0,0,0,0,0,0,180,2.7,9,9,9.6,4925,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.1,88,101500,0,0,340,0,0,0,0,0,0,0,150,3.5,10,10,9.6,1331,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,101600,0,0,341,0,0,0,0,0,0,0,160,2.7,10,10,9.2,5425,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.3,90,101600,0,0,340,0,0,0,0,0,0,0,140,3.2,10,10,6.4,5425,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,8.2,92,101700,0,0,338,0,0,0,0,0,0,0,150,3.5,10,10,6.4,5425,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.8,90,101700,0,0,337,0,0,0,0,0,0,0,130,2.6,10,10,6.4,5425,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.8,90,101700,0,0,337,0,0,0,0,0,0,0,140,2.6,10,10,6.4,5425,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.8,90,101700,0,0,337,0,0,0,0,0,0,0,160,2.3,10,10,6.6,5496,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,7.7,90,101700,0,0,337,0,0,0,0,0,0,0,130,0.2,10,10,8.0,6248,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.5,91,101700,0,0,334,0,0,0,0,0,0,0,130,1.5,10,10,8.0,5097,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.8,93,101700,0,0,335,0,0,0,0,0,0,0,130,1.3,10,10,6.2,2915,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,7.7,93,101700,0,0,334,0,0,0,0,0,0,0,160,0.2,10,10,4.8,2131,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.2,93,101700,0,0,331,0,0,0,0,0,0,0,160,1.5,10,10,4.8,2987,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.7,90,101800,0,0,331,0,0,0,0,0,0,0,160,0.0,10,10,6.2,3988,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,6.8,91,101800,39,777,330,2,0,2,258,0,405,10,210,0.0,10,10,4.6,5376,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,6.8,90,101800,253,1410,331,17,0,17,1872,0,2824,70,210,0.2,10,10,4.0,6877,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.2,89,101900,453,1410,334,31,0,31,3424,0,4987,124,210,1.2,10,10,4.0,5254,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.2,89,101900,602,1410,334,60,0,60,6519,0,9168,236,240,1.6,10,10,4.0,4874,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.2,86,101800,688,1410,336,80,0,80,8613,0,11879,312,240,2.6,10,10,4.0,5121,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.3,87,101700,706,1410,337,95,0,95,10150,0,13899,369,210,0.0,10,10,4.0,4439,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,7.9,91,101600,655,1410,337,124,56,98,14712,3249,11653,512,150,0.5,10,10,4.0,2766,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.8,86,101600,539,1410,340,164,59,142,18445,3787,15993,713,150,0.0,10,10,5.0,6735,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.7,86,101600,364,1410,340,113,80,92,12553,3511,10291,435,150,0.0,10,10,6.4,5192,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.8,86,101600,148,1410,340,19,0,19,2119,0,3209,83,260,0.0,10,10,6.4,5801,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,7.8,87,101600,2,163,340,0,0,0,0,0,0,0,260,0.2,10,10,6.6,6482,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.9,90,101700,0,0,337,0,0,0,0,0,0,0,260,2.0,10,10,7.8,7487,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,8.2,93,101700,0,0,328,0,0,0,0,0,0,0,250,1.3,9,9,6.4,7020,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.0,93,101700,0,0,308,0,0,0,0,0,0,0,220,0.0,5,5,5.0,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,7.0,98,101800,0,0,326,0,0,0,0,0,0,0,230,1.5,10,10,4.8,690,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.2,93,101800,0,0,331,0,0,0,0,0,0,0,170,1.3,10,10,4.8,7254,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.2,93,101800,0,0,331,0,0,0,0,0,0,0,170,0.2,10,10,4.8,7325,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,7.2,92,101800,0,0,332,0,0,0,0,0,0,0,170,1.3,10,10,5.0,7864,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.2,89,101800,0,0,334,0,0,0,0,0,0,0,160,0.2,10,10,6.4,7864,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.1,89,101800,0,0,334,0,0,0,0,0,0,0,160,1.6,10,10,6.4,7864,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,6.7,87,101900,0,0,333,0,0,0,0,0,0,0,160,2.0,10,10,6.4,7864,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.7,90,101800,0,0,331,0,0,0,0,0,0,0,150,1.6,10,10,6.4,7864,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.7,90,101800,0,0,331,0,0,0,0,0,0,0,130,2.5,10,10,6.4,7864,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.7,90,101900,0,0,331,0,0,0,0,0,0,0,150,1.5,10,10,6.2,7864,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,6.7,89,101900,40,786,331,17,80,15,1854,0,1608,62,250,1.3,10,10,4.8,7792,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.6,86,101900,256,1410,333,35,80,20,4240,230,2474,92,250,0.0,10,10,5.0,7254,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,6.2,83,102000,456,1410,333,46,0,46,5021,0,7258,185,250,0.0,10,10,6.4,7254,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.7,83,102000,605,1410,336,76,0,76,8127,0,11373,296,230,0.2,10,10,6.4,7254,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.7,83,101900,692,1410,336,99,0,99,10550,0,14477,385,230,1.6,10,10,6.4,7254,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.7,83,101900,710,1410,336,105,0,105,11139,0,15221,407,230,2.0,10,10,6.4,7254,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,6.7,83,101800,660,1410,336,95,0,95,10081,0,13917,368,220,1.3,10,10,6.4,7254,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,6.6,80,101800,543,1410,338,89,3,88,9442,316,13097,343,170,0.2,10,10,6.6,7076,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,6.3,80,101800,369,1410,336,98,137,62,11283,4831,7165,294,170,1.4,10,10,8.0,5730,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.1,80,101800,152,1410,335,78,316,44,8529,0,4829,192,170,0.7,10,10,8.0,5730,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.2,81,101800,2,184,335,3,0,3,329,0,513,13,220,0.0,10,10,8.2,5801,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.6,83,101800,0,0,336,0,0,0,0,0,0,0,220,0.2,10,10,9.6,6340,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,6.2,81,101800,0,0,335,0,0,0,0,0,0,0,220,1.3,10,10,9.4,6340,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.6,86,101800,0,0,333,0,0,0,0,0,0,0,230,0.2,10,10,8.0,6340,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.1,83,101900,0,0,333,0,0,0,0,0,0,0,230,2.0,10,10,8.0,6411,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,6.1,83,101900,0,0,332,0,0,0,0,0,0,0,210,1.3,10,10,8.0,7020,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.1,86,102000,0,0,330,0,0,0,0,0,0,0,140,0.2,10,10,8.0,7559,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.2,87,102000,0,0,330,0,0,0,0,0,0,0,140,1.9,10,10,8.0,7381,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.6,89,102100,0,0,331,0,0,0,0,0,0,0,140,0.2,10,10,8.0,6035,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,5.6,83,102100,0,0,329,0,0,0,0,0,0,0,140,1.5,10,10,8.0,6106,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,5.6,83,102000,0,0,329,0,0,0,0,0,0,0,130,1.3,10,10,7.6,6573,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,5.6,84,102100,0,0,329,0,0,0,0,0,0,0,130,0.0,10,10,5.0,6035,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,5.7,87,102100,0,0,318,0,0,0,0,0,0,0,280,0.3,9,9,6.4,5137,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,5.7,90,102100,0,0,324,0,0,0,0,0,0,0,280,0.0,10,10,6.1,7615,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.1,93,102200,41,796,309,17,81,15,1858,0,1603,61,280,0.0,8,8,4.0,5730,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,6.1,89,102200,258,1410,319,117,341,55,13163,6577,6173,249,280,0.0,9,9,4.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,5.6,79,102200,459,1410,333,140,37,128,15549,2211,14278,625,290,0.0,10,10,5.0,6949,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,5.7,74,102200,608,1410,338,188,42,170,21181,3059,19211,875,290,0.3,10,10,6.4,6877,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,6.1,73,102200,695,1410,341,266,92,220,29747,7422,24780,1163,290,2.5,10,10,6.4,6340,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,6.1,71,102100,715,1410,343,192,20,182,20018,2017,25512,704,10,1.3,10,10,6.4,6411,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,6.2,72,102000,664,1410,343,161,4,160,16895,371,22764,619,310,0.2,10,10,6.4,6949,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,6.6,74,102000,548,1410,344,148,11,144,15508,1047,20925,563,310,1.3,10,10,6.4,6949,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,6.3,72,102000,374,1410,335,117,57,102,12938,2774,11294,481,310,0.0,9,9,6.4,6949,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.0,71,102000,157,1410,317,63,240,37,7040,0,4095,160,310,0.0,6,6,6.4,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,6.6,78,102000,3,205,295,3,29,3,408,0,401,14,170,0.0,0,0,6.6,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.1,86,102100,0,0,286,0,0,0,0,0,0,0,170,0.2,0,0,7.8,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,6.0,87,102100,0,0,285,0,0,0,0,0,0,0,170,1.5,0,0,6.6,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.4,5.4,93,102100,0,0,278,0,0,0,0,0,0,0,180,1.5,0,0,6.5,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,5.6,93,102100,0,0,279,0,0,0,0,0,0,0,190,2.1,0,0,4.8,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.4,5.7,95,102100,0,0,278,0,0,0,0,0,0,0,160,1.9,0,0,4.6,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.8,4.7,93,102200,0,0,275,0,0,0,0,0,0,0,150,0.5,0,0,3.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,4.3,100,102200,0,0,268,0,0,0,0,0,0,0,130,1.7,0,0,3.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,3.3,96,102200,0,0,266,0,0,0,0,0,0,0,130,0.0,0,0,0.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.5,3.5,100,102200,0,0,297,0,0,0,0,0,0,0,100,0.0,9,9,2.4,3910,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,5.2,95,102200,0,0,318,0,0,0,0,0,0,0,100,2.0,10,10,3.4,3877,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.8,6.1,95,102200,0,0,323,0,0,0,0,0,0,0,100,2.2,10,10,4.2,3178,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.5,6.4,93,102200,0,0,327,0,0,0,0,0,0,0,80,1.7,10,10,4.3,2934,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,6.8,93,102200,0,0,329,0,0,0,0,0,0,0,90,2.9,10,10,4.5,2634,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.6,6.9,95,102200,43,806,328,17,86,15,1892,0,1612,62,110,2.3,10,10,2.4,2151,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,6.8,93,102200,260,1409,328,29,86,13,3615,31,1620,59,100,1.7,10,10,2.9,2961,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,6.7,93,102300,462,1409,328,38,0,38,4132,0,5990,151,100,0.0,10,10,2.8,3137,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,7.1,93,102300,612,1409,331,74,0,74,7905,0,11052,287,280,0.0,10,10,2.8,2023,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.8,87,102200,699,1409,334,106,0,106,11243,0,15382,411,280,0.0,10,10,2.8,2879,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.2,89,102100,719,1409,334,74,0,74,7971,0,10963,288,280,2.1,10,10,2.8,4206,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.8,87,102000,669,1409,334,76,0,76,8116,0,11249,294,120,1.5,10,10,3.3,4206,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.2,89,101900,553,1409,334,57,0,57,6146,0,8715,223,140,1.5,10,10,4.0,3709,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,7.2,88,101900,379,1409,335,77,131,42,9216,3866,5031,200,160,1.5,10,10,4.1,4517,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,7.1,88,101900,161,1409,334,82,312,46,8936,0,5067,202,180,1.9,10,10,4.5,1959,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,7.0,87,101900,4,228,334,4,0,4,414,0,642,17,160,2.6,10,10,3.2,510,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,7.0,93,101900,0,0,330,0,0,0,0,0,0,0,150,2.7,10,10,4.3,1083,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.7,90,101900,0,0,331,0,0,0,0,0,0,0,140,3.1,10,10,6.6,5425,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.6,89,101900,0,0,331,0,0,0,0,0,0,0,140,3.0,10,10,8.0,5425,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.1,86,101900,0,0,330,0,0,0,0,0,0,0,150,2.3,10,10,8.0,5318,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.1,86,101900,0,0,330,0,0,0,0,0,0,0,140,0.3,10,10,8.0,4511,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.2,87,101900,0,0,330,0,0,0,0,0,0,0,140,2.3,10,10,7.8,4368,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,6.8,91,101900,0,0,330,0,0,0,0,0,0,0,140,0.0,10,10,5.5,2589,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.2,96,101900,0,0,329,0,0,0,0,0,0,0,140,0.0,10,10,2.0,2432,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.2,96,101900,0,0,329,0,0,0,0,0,0,0,140,0.0,10,10,2.4,4816,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.1,95,101900,0,0,329,0,0,0,0,0,0,0,140,0.0,10,10,2.8,4283,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.1,95,101800,0,0,329,0,0,0,0,0,0,0,140,0.0,10,10,2.4,2605,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.2,96,101900,0,0,329,0,0,0,0,0,0,0,270,0.0,10,10,2.9,2584,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.1,95,101900,0,0,329,0,0,0,0,0,0,0,270,0.0,10,10,3.0,1210,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.2,96,101900,44,818,329,17,73,15,1891,0,1647,63,270,0.0,10,10,2.1,7113,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.1,95,101900,263,1409,329,33,73,20,4077,283,2413,90,270,0.0,10,10,2.9,5144,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.2,93,101900,465,1409,331,47,0,47,5063,0,7298,186,270,0.0,10,10,4.0,4511,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,7.8,97,101900,615,1409,331,71,0,71,7604,0,10623,275,270,1.5,10,10,2.5,1824,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,7.9,89,101900,703,1409,338,186,22,175,19507,2149,24742,680,300,2.4,10,10,5.3,1442,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,7.7,85,101800,723,1409,331,287,111,230,32132,8969,25886,1224,310,1.9,9,9,9.6,7040,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,7.1,75,101800,674,1409,324,371,416,172,42172,29827,19639,902,310,0.0,7,7,10.2,5425,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,6.2,66,101800,558,1409,303,387,784,77,45886,40434,9147,390,30,0.2,0,0,12.8,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,6.5,67,101800,383,1409,303,245,669,63,28332,24691,7330,301,30,1.5,0,0,12.6,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,7.0,72,101800,166,1409,302,88,394,41,9682,0,4584,181,150,1.8,0,0,11.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,7.2,78,101800,4,250,298,4,39,4,514,0,501,18,150,2.2,0,0,9.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,7.1,86,101800,0,0,291,0,0,0,0,0,0,0,150,3.0,0,0,11.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,6.6,90,101800,0,0,286,0,0,0,0,0,0,0,170,2.0,0,0,9.4,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,6.1,93,101900,0,0,281,0,0,0,0,0,0,0,180,1.6,0,0,7.8,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,6.0,96,101900,0,0,279,0,0,0,0,0,0,0,150,1.9,0,0,6.4,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.2,5.1,99,102000,0,0,273,0,0,0,0,0,0,0,150,1.2,0,0,3.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,4.0,93,102100,0,0,271,0,0,0,0,0,0,0,100,2.1,0,0,4.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,3.9,97,102100,0,0,268,0,0,0,0,0,0,0,100,1.3,0,0,6.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.6,2.6,100,102200,0,0,260,0,0,0,0,0,0,0,100,0.0,0,0,2.4,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.1,1.9,99,102300,0,0,258,0,0,0,0,0,0,0,20,0.0,0,0,1.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.3,1.3,100,102300,0,0,254,0,0,0,0,0,0,0,20,1.5,0,0,6.8,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.1,1.1,93,102300,0,0,257,0,0,0,0,0,0,0,100,0.0,0,0,3.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.8,1.3,97,102300,0,0,256,0,0,0,0,0,0,0,300,1.1,0,0,1.6,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.1,1.1,100,102400,0,0,253,0,0,0,0,0,0,0,300,0.0,0,0,0.4,549,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.7,1.7,100,102400,45,830,256,28,249,20,3000,0,2148,84,300,0.0,0,0,0.3,549,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.8,2.8,100,102500,266,1409,261,124,351,58,13943,8131,6528,264,10,0.0,0,0,0.3,549,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,5.6,100,102600,468,1409,275,334,836,56,39752,35197,6705,276,10,0.0,0,0,1.2,549,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,5.6,76,102600,619,1409,291,461,888,71,55649,46937,8631,368,10,0.2,0,0,6.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,2.3,51,102500,708,1409,299,539,921,76,65792,52734,9320,404,10,1.9,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,3.0,50,102500,728,1409,304,556,929,76,68133,53280,9335,406,10,0.2,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,4.3,52,102400,678,1409,308,513,914,73,62465,50541,8903,383,310,2.2,0,0,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,3.3,44,102300,563,1409,314,411,861,67,49297,43757,8051,339,310,2.7,0,0,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,3.4,44,102300,388,1409,314,263,750,57,30757,27444,6624,270,310,0.1,0,0,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,3.9,48,102300,170,1409,311,97,477,40,10811,0,4407,173,340,0.8,0,0,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,4.4,52,102300,5,273,309,5,56,5,600,0,577,21,340,1.7,0,0,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,4.5,62,102300,0,0,298,0,0,0,0,0,0,0,150,3.0,0,0,15.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,5.1,72,102300,0,0,292,0,0,0,0,0,0,0,150,2.5,0,0,14.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,5.0,93,102400,0,0,276,0,0,0,0,0,0,0,180,1.5,0,0,9.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.4,5.0,91,102400,0,0,277,0,0,0,0,0,0,0,150,1.8,0,0,8.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,4.9,89,102400,0,0,278,0,0,0,0,0,0,0,150,2.2,0,0,7.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,4.4,90,102500,0,0,275,0,0,0,0,0,0,0,120,2.6,0,0,6.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,4.4,92,102600,0,0,274,0,0,0,0,0,0,0,130,2.1,0,0,4.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,3.9,93,102600,0,0,271,0,0,0,0,0,0,0,120,2.3,0,0,5.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,3.9,93,102600,0,0,271,0,0,0,0,0,0,0,120,0.0,0,0,6.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.8,2.8,100,102600,0,0,261,0,0,0,0,0,0,0,120,0.0,0,0,4.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.1,1.7,97,102600,0,0,258,0,0,0,0,0,0,0,120,0.0,0,0,4.3,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.7,1.7,100,102700,0,0,256,0,0,0,0,0,0,0,120,0.0,0,0,0.4,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.1,1.1,100,102700,0,0,253,0,0,0,0,0,0,0,120,0.0,0,0,6.4,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.1,1.1,100,102800,47,843,253,28,217,21,2996,0,2232,87,290,0.0,0,0,4.8,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,4.4,92,102800,269,1409,274,171,646,48,19495,11924,5464,218,290,0.0,0,0,4.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,5.0,80,102800,471,1409,285,335,811,63,39518,36022,7504,311,290,0.0,0,0,6.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,5.6,71,102800,623,1409,295,460,852,83,54858,47059,9918,428,290,0.0,0,0,8.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,6.7,77,102700,712,1409,296,538,890,88,64906,51220,10652,467,290,2.1,0,0,8.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,6.7,74,102600,733,1409,299,554,893,90,67027,51939,10900,480,290,2.2,0,0,8.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,6.7,69,102500,683,1409,303,508,859,92,60834,49531,10991,482,320,2.6,0,0,8.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,6.6,66,102500,568,1409,305,406,798,84,47829,42549,9973,428,300,2.5,0,0,8.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,6.1,64,102400,394,1409,304,259,673,71,29732,27184,8196,340,300,2.0,0,0,8.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,5.8,65,102400,175,1409,302,95,351,52,10374,1784,5639,226,300,0.9,0,0,8.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,5.7,69,102400,6,296,298,5,0,5,571,0,881,23,300,0.0,0,0,8.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,6.1,87,102400,0,0,286,0,0,0,0,0,0,0,300,0.0,0,0,7.8,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.5,6.0,90,102400,0,0,283,0,0,0,0,0,0,0,30,0.0,0,0,6.2,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,5.0,97,102400,0,0,274,0,0,0,0,0,0,0,30,0.0,0,0,4.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,5.0,100,102400,0,0,272,0,0,0,0,0,0,0,30,0.0,0,0,3.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,4.5,97,102400,0,0,271,0,0,0,0,0,0,0,30,0.0,0,0,2.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.1,3.1,100,102400,0,0,263,0,0,0,0,0,0,0,30,1.3,0,0,1.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.7,1.7,100,102400,0,0,261,0,0,0,0,0,0,0,30,0.0,1,1,0.3,549,9,999999999,10,0.0000,0,88,999.000,0.3,1.0 +2004,1,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.7,1.7,100,102400,0,0,267,0,0,0,0,0,0,0,30,0.0,3,3,0.3,549,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.6,0.6,100,102400,0,0,266,0,0,0,0,0,0,0,250,0.0,5,5,0.4,549,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.0,0.0,100,102400,0,0,269,0,0,0,0,0,0,0,250,0.0,7,7,0.4,549,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.0,0.0,100,102300,0,0,273,0,0,0,0,0,0,0,250,0.0,8,8,0.4,549,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.6,0.6,100,102300,0,0,290,0,0,0,0,0,0,0,260,0.0,10,10,0.3,549,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.6,0.6,100,102400,0,0,290,0,0,0,0,0,0,0,290,1.5,10,10,0.4,549,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.7,1.7,100,102400,48,857,296,1,0,1,147,0,235,6,360,0.0,10,10,0.3,549,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.8,2.8,100,102400,272,1408,302,26,0,26,2846,0,4272,108,360,1.5,10,10,0.3,549,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,3.9,100,102400,475,1408,308,121,12,117,12726,1158,17397,464,360,1.5,10,10,0.3,549,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,5.0,100,102300,627,1408,314,249,120,196,27778,9249,21940,1012,350,1.5,10,10,2.0,549,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.1,93,102200,716,1408,298,380,329,213,42800,25909,24077,1130,310,2.1,5,5,2.8,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.7,86,102100,737,1408,304,411,384,210,46529,29877,23890,1123,280,2.2,4,4,2.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.7,86,102000,688,1408,289,378,396,185,42854,29289,21022,973,290,3.1,0,0,2.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,6.7,77,101900,573,1408,296,340,533,124,38942,32861,14200,628,300,2.1,0,0,4.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,6.7,78,101800,399,1408,295,213,447,87,24101,20194,9837,415,300,0.1,0,0,4.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.7,83,101800,180,1408,291,77,179,54,8395,1284,5923,239,250,0.8,0,0,4.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,6.7,87,101700,7,320,289,4,0,4,435,0,674,17,250,1.5,0,0,4.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,6.8,93,101800,0,0,291,0,0,0,0,0,0,0,220,1.9,1,1,4.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.8,6.8,100,101700,0,0,315,0,0,0,0,0,0,0,190,2.5,9,9,1.9,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.5,6.5,100,101800,0,0,313,0,0,0,0,0,0,0,190,1.5,9,9,1.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,6.1,100,101800,0,0,311,0,0,0,0,0,0,0,160,1.0,9,9,1.7,77777,9,999999999,13,0.0000,0,88,999.000,1.0,1.0 +2004,1,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.3,6.1,99,101800,0,0,321,0,0,0,0,0,0,0,120,0.5,10,10,2.4,324,9,999999999,13,0.0000,0,88,999.000,0.7,1.0 +2004,1,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.5,6.5,100,101700,0,0,322,0,0,0,0,0,0,0,140,3.4,10,10,2.7,12066,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,6.0,99,101700,0,0,320,0,0,0,0,0,0,0,250,1.3,10,10,2.8,2918,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,6.2,97,101600,0,0,323,0,0,0,0,0,0,0,260,0.2,10,10,2.4,13334,9,999999999,13,0.0000,0,88,999.000,0.5,1.0 +2004,1,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,6.7,100,101600,0,0,323,0,0,0,0,0,0,0,260,1.3,10,10,1.9,9577,9,999999999,15,0.0000,0,88,999.000,0.5,1.0 +2004,1,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.8,97,101500,0,0,326,0,0,0,0,0,0,0,50,0.6,10,10,1.6,1804,9,999999999,15,0.0000,0,88,999.000,0.3,1.0 +2004,1,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,7.2,100,101500,0,0,326,0,0,0,0,0,0,0,230,1.7,10,10,1.6,8778,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,7.2,100,101500,0,0,326,0,0,0,0,0,0,0,220,2.1,10,10,1.2,1158,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.2,96,101500,0,0,329,0,0,0,0,0,0,0,100,1.9,10,10,2.0,2047,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,7.5,99,101600,50,871,329,24,66,22,2592,0,2348,92,100,0.0,10,10,1.9,7532,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.8,100,101600,275,1408,330,27,66,15,3437,239,1814,66,70,0.0,10,10,1.2,1463,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.9,93,101600,479,1408,335,63,0,63,6769,0,9662,249,50,1.5,10,10,6.2,337,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.2,89,101700,631,1408,334,115,0,115,12165,0,16771,447,340,0.4,10,10,8.0,4930,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,7.1,87,101600,721,1408,335,128,0,128,13563,0,18392,498,270,0.6,10,10,7.0,2628,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.0,82,101600,742,1408,339,144,0,144,15127,0,20387,558,310,1.3,10,10,9.6,955,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,7.9,86,101500,693,1408,341,166,9,161,17402,917,22879,625,290,2.5,10,10,9.2,4683,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.2,83,101500,578,1408,345,225,198,144,25499,12948,16365,734,240,1.5,10,10,6.8,10002,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,8.0,82,101500,404,1408,345,229,476,92,25762,22174,10441,443,240,1.4,10,10,9.6,5425,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,7.8,83,101500,185,1408,343,41,0,41,4412,0,6565,174,240,0.7,10,10,9.6,5425,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,7.8,83,101500,8,344,342,2,0,2,276,0,431,11,160,0.2,10,10,9.8,5567,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.9,87,101600,0,0,340,0,0,0,0,0,0,0,160,1.6,10,10,11.2,6787,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.2,89,101600,0,0,340,0,0,0,0,0,0,0,140,2.3,10,10,11.0,8112,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.8,86,101600,0,0,340,0,0,0,0,0,0,0,130,3.5,10,10,9.4,10174,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.8,86,101600,0,0,340,0,0,0,0,0,0,0,130,2.6,10,10,7.8,11841,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,7.8,87,101600,0,0,339,0,0,0,0,0,0,0,150,2.6,10,10,6.4,11240,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.8,90,101700,0,0,337,0,0,0,0,0,0,0,140,0.0,10,10,6.4,6735,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.8,90,101700,0,0,328,0,0,0,0,0,0,0,360,0.4,9,9,6.4,5057,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.8,90,101800,0,0,328,0,0,0,0,0,0,0,360,3.6,9,9,6.4,4511,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.8,93,101800,0,0,326,0,0,0,0,0,0,0,330,3.1,9,9,4.8,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,7.9,99,101800,0,0,322,0,0,0,0,0,0,0,350,3.6,9,9,3.3,517,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,4.8,88,101800,0,0,287,0,0,0,0,0,0,0,340,3.1,2,2,11.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,3.2,85,101900,0,0,272,0,0,0,0,0,0,0,340,3.1,0,0,14.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.1,2.1,81,102000,0,0,269,0,0,0,0,0,0,0,340,3.2,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,1.0,72,102000,52,887,271,30,191,23,3203,0,2459,97,330,3.8,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.8,0.8,66,102100,278,1408,275,175,622,52,19950,14416,5979,240,340,5.2,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,2.2,67,102100,482,1408,281,311,677,79,36239,33956,9249,391,320,5.3,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,2.2,62,102100,635,1408,286,443,758,101,52258,45751,11994,526,320,5.9,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,2.0,53,102000,725,1408,294,554,928,76,67888,53538,9375,407,330,7.1,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,0.5,45,102000,747,1408,297,506,691,140,59440,47481,16453,749,320,6.3,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,0.1,42,101900,699,1408,298,424,515,169,48655,37962,19437,892,300,7.2,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,0.9,47,101900,583,1408,296,319,402,152,36050,28192,17281,777,320,7.1,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,0.2,46,102000,409,1408,294,189,275,110,21114,15126,12265,526,330,6.0,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,0.1,47,102000,190,1408,291,80,193,54,8805,2161,5969,240,300,4.5,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,0.7,51,102000,9,369,290,5,0,5,589,0,913,24,300,3.0,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,1.6,60,102000,0,0,285,0,0,0,0,0,0,0,290,1.9,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,1.2,69,102000,0,0,274,0,0,0,0,0,0,0,320,0.2,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.4,1.6,77,102000,0,0,270,0,0,0,0,0,0,0,320,1.3,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,1.2,83,102000,0,0,264,0,0,0,0,0,0,0,320,0.0,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.8,1.7,86,102100,0,0,264,0,0,0,0,0,0,0,150,0.0,0,0,15.4,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.4,1.8,89,102100,0,0,263,0,0,0,0,0,0,0,150,0.2,0,0,10.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.8,2.7,93,102100,0,0,265,0,0,0,0,0,0,0,150,1.3,0,0,8.7,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.4,1.6,88,102100,0,0,268,0,0,0,0,0,0,0,100,0.2,1,1,14.6,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.8,1.2,83,102200,0,0,290,0,0,0,0,0,0,0,100,1.9,8,8,16.0,3300,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.4,1.8,89,102200,0,0,278,0,0,0,0,0,0,0,100,0.2,5,5,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,2.2,86,102100,0,0,293,0,0,0,0,0,0,0,100,2.0,8,8,16.0,2438,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,2.1,86,102200,0,0,271,0,0,0,0,0,0,0,130,1.3,1,1,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.4,1.8,89,102200,0,0,289,0,0,0,0,0,0,0,140,0.2,8,8,16.0,3300,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.1,2.3,88,102300,54,903,277,15,7,15,1716,0,1690,64,140,1.5,3,3,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,2.9,82,102300,282,1408,284,84,46,75,9281,1479,8297,342,160,1.8,3,3,15.4,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,4.0,82,102300,486,1408,312,123,40,109,13963,2298,12429,538,140,4.0,9,9,11.4,3000,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,4.4,76,102400,640,1408,329,304,254,189,34166,19362,21295,981,120,3.2,10,10,12.8,2987,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,4.3,70,102300,730,1408,324,298,131,231,33528,10771,26044,1231,190,3.2,9,9,13.0,2896,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,3.9,66,102300,752,1408,308,191,11,185,19868,1084,25852,719,100,0.5,5,5,14.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,3.9,66,102200,704,1408,308,140,2,140,14710,177,19921,541,100,4.0,5,5,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,3.9,63,102300,589,1408,311,117,7,115,12352,655,16802,447,120,3.2,5,5,15.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,3.9,64,102200,414,1408,338,120,48,106,13413,2556,11870,509,120,3.9,10,10,14.5,3664,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,3.9,65,102200,195,1408,337,12,0,12,1375,0,2105,52,120,1.8,10,10,15.3,11558,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,4.0,66,102200,11,394,336,0,0,0,35,0,56,1,180,0.3,10,10,16.0,18887,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,4.4,68,102200,0,0,336,0,0,0,0,0,0,0,180,2.5,10,10,15.8,21580,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,4.4,68,102300,0,0,336,0,0,0,0,0,0,0,170,1.6,10,10,14.4,19346,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,4.5,69,102200,0,0,336,0,0,0,0,0,0,0,160,2.6,10,10,14.2,4493,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,5.0,74,102300,0,0,334,0,0,0,0,0,0,0,130,2.6,10,10,12.6,19878,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,5.0,74,102300,0,0,334,0,0,0,0,0,0,0,120,2.7,10,10,11.2,18887,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,5.0,74,102300,0,0,334,0,0,0,0,0,0,0,140,3.1,10,10,11.0,20833,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,5.1,75,102200,0,0,334,0,0,0,0,0,0,0,140,3.2,10,10,9.6,14787,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,5.6,77,102200,0,0,335,0,0,0,0,0,0,0,150,3.7,10,10,9.8,11612,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,5.6,75,102100,0,0,337,0,0,0,0,0,0,0,150,4.1,10,10,11.4,8951,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,5.7,78,102100,0,0,335,0,0,0,0,0,0,0,170,4.1,10,10,12.2,1974,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,6.0,81,102100,0,0,334,0,0,0,0,0,0,0,160,4.6,10,10,10.4,5021,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,5.3,73,102100,0,0,337,0,0,0,0,0,0,0,150,4.7,10,10,14.7,7828,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,7.1,88,102000,0,0,334,0,0,0,0,0,0,0,140,5.3,10,10,5.4,7701,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,6.8,81,102000,56,919,339,1,0,1,115,0,184,4,150,5.7,10,10,9.3,7202,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,6.8,81,102100,285,1407,339,24,0,24,2676,0,3995,101,150,6.1,10,10,4.5,6114,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,7.6,87,102100,490,1407,338,46,0,46,4966,0,7131,181,150,4.7,10,10,2.4,5400,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,7.2,80,102100,644,1407,342,61,0,61,6607,0,9231,238,160,4.6,10,10,2.4,8169,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.8,86,102000,735,1407,340,84,0,84,9023,0,12325,327,160,6.2,10,10,3.2,7559,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.3,85,102000,757,1407,344,45,0,45,4964,0,6855,177,150,6.1,10,10,4.3,7559,9,999999999,17,0.0000,0,88,999.000,0.5,1.0 +2004,1,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.3,83,101900,709,1407,346,75,0,75,8092,0,11119,292,150,5.1,10,10,6.0,6647,9,999999999,17,0.0000,0,88,999.000,1.0,1.0 +2004,1,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.9,89,101900,594,1407,345,54,0,54,5835,0,8213,210,150,3.6,10,10,3.0,5430,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,8.9,88,101900,420,1407,345,57,16,53,6789,572,6240,254,150,3.6,10,10,4.1,5774,9,999999999,17,0.0000,0,88,999.000,1.8,1.0 +2004,1,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.0,88,101900,200,1407,346,26,16,24,3077,0,2815,106,150,3.1,10,10,4.8,923,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,9.3,94,101900,12,418,343,0,0,0,0,0,0,0,130,1.8,10,10,3.4,5114,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,9.8,93,102000,0,0,347,0,0,0,0,0,0,0,150,3.6,10,10,4.0,4939,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,10.0,95,102000,0,0,346,0,0,0,0,0,0,0,110,2.4,10,10,4.0,3685,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.9,94,102100,0,0,341,0,0,0,0,0,0,0,130,1.7,10,10,5.2,2915,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,8.9,97,102200,0,0,338,0,0,0,0,0,0,0,320,3.5,10,10,7.6,2117,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,8.9,97,102200,0,0,338,0,0,0,0,0,0,0,330,3.4,10,10,4.8,133,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,8.2,100,102300,0,0,332,0,0,0,0,0,0,0,310,5.3,10,10,5.1,950,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,7.9,98,102300,0,0,332,0,0,0,0,0,0,0,340,4.1,10,10,5.6,818,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,8.2,97,102300,0,0,334,0,0,0,0,0,0,0,350,4.0,10,10,5.2,924,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,7.7,97,102300,0,0,331,0,0,0,0,0,0,0,310,4.9,10,10,8.9,1509,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.6,6.9,95,102300,0,0,312,0,0,0,0,0,0,0,350,3.3,8,8,10.8,7254,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.7,97,102300,0,0,326,0,0,0,0,0,0,0,330,3.5,10,10,11.2,2305,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,6.6,97,102300,0,0,325,0,0,0,0,0,0,0,320,2.7,10,10,10.6,1696,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.8,6.1,95,102400,0,0,323,0,0,0,0,0,0,0,340,2.9,10,10,5.6,924,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,6.1,100,102400,58,937,320,12,0,12,1271,0,1941,51,320,2.1,10,10,1.2,549,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,6.1,96,102400,289,1407,292,104,163,71,11594,4921,7890,325,340,2.6,3,3,10.3,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,6.1,89,102500,495,1407,304,267,433,115,30221,25051,13049,569,300,2.6,6,6,16.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,6.2,83,102500,649,1407,324,314,268,191,35300,20287,21522,994,300,0.2,9,9,16.0,2970,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,6.8,80,102400,740,1407,330,415,396,207,47096,30578,23606,1109,300,1.6,9,9,16.0,2772,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,7.1,76,102400,763,1407,345,391,293,233,44149,23679,26395,1255,300,1.9,10,10,16.0,2970,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,6.7,69,102400,715,1407,340,297,151,220,33389,12084,24890,1172,300,0.2,9,9,16.0,2743,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,6.6,69,102300,599,1407,318,216,117,166,24271,8268,18767,853,300,2.0,4,4,16.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,6.5,70,102300,425,1407,301,237,480,92,26847,23290,10444,444,280,1.4,0,0,16.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,6.4,71,102300,205,1407,300,96,346,46,10736,2184,5121,203,280,0.7,0,0,16.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.7,75,102300,14,443,298,9,63,8,968,0,903,34,320,0.2,0,0,16.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,6.6,77,102300,0,0,296,0,0,0,0,0,0,0,320,1.5,0,0,16.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,6.2,78,102300,0,0,293,0,0,0,0,0,0,0,350,1.6,0,0,16.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.2,86,102300,0,0,292,0,0,0,0,0,0,0,310,1.9,0,0,16.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,7.1,87,102300,0,0,290,0,0,0,0,0,0,0,310,0.0,0,0,15.6,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,6.1,96,102300,0,0,280,0,0,0,0,0,0,0,310,0.2,0,0,12.6,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,6.1,97,102300,0,0,279,0,0,0,0,0,0,0,310,1.9,0,0,10.5,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,5.0,100,102300,0,0,272,0,0,0,0,0,0,0,210,0.0,0,0,0.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,5.0,100,102300,0,0,281,0,0,0,0,0,0,0,220,1.5,2,2,0.8,2682,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,4.9,100,102300,0,0,271,0,0,0,0,0,0,0,250,0.0,0,0,2.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,3.9,100,102300,0,0,267,0,0,0,0,0,0,0,140,0.6,0,0,4.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,3.3,96,102300,0,0,266,0,0,0,0,0,0,0,90,2.1,0,0,1.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,4.4,100,102300,0,0,283,0,0,0,0,0,0,0,110,2.1,4,4,0.4,549,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,4.4,100,102300,0,0,285,0,0,0,0,0,0,0,100,0.0,5,5,0.4,549,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,5.0,100,102400,61,955,294,32,182,24,3459,0,2624,103,100,1.5,7,7,0.3,549,9,999999999,12,0.0000,0,88,999.000,0.3,1.0 +2004,1,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,5.6,100,102400,293,1407,302,130,390,48,14901,8522,5575,223,130,2.6,8,8,0.3,549,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,6.7,100,102400,499,1407,314,92,0,92,9810,0,13867,365,120,1.5,9,9,1.2,549,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.5,97,102500,653,1407,330,143,0,143,15095,49,20577,556,190,1.0,10,10,3.5,837,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,7.9,93,102400,745,1407,335,204,19,194,21337,1911,27041,753,220,2.2,10,10,3.7,860,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,7.1,84,102300,768,1407,337,261,54,231,29478,4388,26257,1248,120,2.1,10,10,6.4,1953,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,7.5,80,102200,720,1407,313,393,411,182,44829,30034,20901,970,180,2.6,4,4,7.2,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,7.8,78,102200,605,1407,314,402,696,102,46962,40070,12005,526,180,2.5,3,3,0.0,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,7.9,78,102200,431,1407,311,259,592,78,29756,26185,8973,377,180,2.4,2,2,0.0,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,8.0,80,102100,210,1407,306,116,453,48,12898,3512,5375,214,130,2.3,1,1,0.0,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,7.9,82,102100,15,469,298,9,61,9,1021,0,951,36,130,2.2,0,0,5.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,7.7,83,102100,0,0,297,0,0,0,0,0,0,0,130,2.1,0,0,9.4,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,7.2,87,102100,0,0,291,0,0,0,0,0,0,0,120,2.1,0,0,7.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,7.1,93,102100,0,0,296,0,0,0,0,0,0,0,190,1.9,2,2,6.4,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,7.0,93,102100,0,0,314,0,0,0,0,0,0,0,130,0.0,8,8,5.2,420,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,7.1,93,102200,0,0,309,0,0,0,0,0,0,0,130,2.1,7,7,4.8,510,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,7.9,93,102200,0,0,335,0,0,0,0,0,0,0,140,2.2,10,10,6.4,5425,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,8.2,93,102100,0,0,328,0,0,0,0,0,0,0,140,3.1,9,9,6.2,5425,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,7.9,95,102100,0,0,299,0,0,0,0,0,0,0,150,2.8,2,2,4.6,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,7.1,96,102000,0,0,285,0,0,0,0,0,0,0,160,2.2,0,0,3.9,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.7,97,102000,0,0,288,0,0,0,0,0,0,0,140,3.1,1,1,3.2,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.4,7.1,98,102000,0,0,318,0,0,0,0,0,0,0,150,3.1,9,9,3.2,2962,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.1,95,102000,0,0,329,0,0,0,0,0,0,0,130,3.6,10,10,4.3,1121,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,7.1,93,102000,0,0,330,0,0,0,0,0,0,0,140,4.2,10,10,4.0,2015,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.8,97,102100,63,974,332,1,0,1,116,0,184,4,160,3.7,10,10,1.9,4169,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.8,97,102200,297,1406,332,23,0,23,2576,0,3839,96,270,3.4,10,10,1.6,1583,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,7.9,97,102100,503,1406,333,46,0,46,5044,0,7225,183,150,2.1,10,10,2.0,332,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,8.4,93,102100,658,1406,338,189,50,165,21480,3513,18891,865,160,2.3,10,10,1.9,1238,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,9.4,90,102000,750,1406,337,374,256,237,41974,20657,26774,1274,200,3.4,9,9,5.0,2073,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,9.1,78,101900,773,1406,324,420,338,234,47391,27000,26546,1265,210,2.1,4,4,13.2,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,6.7,64,101800,725,1406,314,365,276,223,41074,22098,25208,1189,210,1.9,1,1,16.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,6.7,62,101800,610,1406,335,266,179,188,29653,13433,21105,970,210,0.0,7,7,16.0,13960,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,6.7,64,101700,436,1406,308,139,54,122,15425,3087,13631,593,60,0.0,0,0,16.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,7.0,68,101700,215,1406,305,53,12,51,5615,960,8009,212,60,0.0,0,0,16.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,7.2,73,101700,17,494,302,5,0,5,544,0,838,22,60,0.3,0,0,16.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,7.3,80,101700,0,0,306,0,0,0,0,0,0,0,60,2.6,2,2,15.3,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,8.2,86,101700,0,0,297,0,0,0,0,0,0,0,70,2.3,0,0,9.6,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,7.1,87,101700,0,0,291,0,0,0,0,0,0,0,70,0.0,0,0,9.2,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,6.8,93,101700,0,0,294,0,0,0,0,0,0,0,350,0.0,2,2,6.4,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.2,93,101700,0,0,302,0,0,0,0,0,0,0,350,1.6,4,4,6.6,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,7.1,93,101700,0,0,287,0,0,0,0,0,0,0,310,2.2,0,0,7.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.6,96,101800,0,0,282,0,0,0,0,0,0,0,340,3.3,0,0,6.6,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,5.1,87,101700,0,0,280,0,0,0,0,0,0,0,310,4.8,0,0,8.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,1.1,68,101700,0,0,274,0,0,0,0,0,0,0,330,6.1,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,1.0,71,101700,0,0,272,0,0,0,0,0,0,0,310,5.5,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,0.6,74,101700,0,0,267,0,0,0,0,0,0,0,320,3.5,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.5,0.5,76,101700,0,0,266,0,0,0,0,0,0,0,330,3.2,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.1,0.0,70,101700,0,0,267,0,0,0,0,0,0,0,320,4.1,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,0.1,68,101700,66,993,270,24,36,23,2657,0,2482,97,320,4.2,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.4,0.7,67,101700,301,1406,273,149,330,78,16507,12018,8687,360,320,5.4,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,1.0,59,101800,508,1406,282,335,715,77,39346,36673,9028,381,320,6.6,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,0.5,48,101800,663,1406,292,468,779,100,55522,47745,11936,525,340,6.4,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,-0.6,42,101700,755,1406,294,532,782,112,63638,50524,13414,601,320,8.0,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,-0.5,40,101600,779,1406,298,597,939,77,73789,55782,9534,417,320,6.6,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,0.3,41,101600,731,1406,301,555,927,73,68334,53654,9028,391,330,6.3,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,-1.9,34,101600,616,1406,300,455,884,68,55188,48313,8238,349,340,7.1,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,-1.1,36,101600,441,1406,300,306,788,58,36165,34030,6925,284,320,6.5,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,0.0,42,101600,221,1406,298,132,561,44,14883,5771,4944,195,320,5.2,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,-0.1,44,101600,19,520,295,12,90,11,1284,0,1157,44,320,3.6,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,-0.3,48,101600,0,0,288,0,0,0,0,0,0,0,220,0.2,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,1.6,65,101700,0,0,280,0,0,0,0,0,0,0,220,1.3,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,1.5,63,101700,0,0,281,0,0,0,0,0,0,0,210,0.2,0,0,14.4,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,3.2,75,101800,0,0,279,0,0,0,0,0,0,0,210,1.5,0,0,12.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,4.5,83,101900,0,0,280,0,0,0,0,0,0,0,230,1.3,0,0,11.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,1,31,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,5.0,90,101900,0,0,278,0,0,0,0,0,0,0,230,0.0,0,0,9.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,5.1,90,102000,0,0,279,0,0,0,0,0,0,0,150,2.5,0,0,7.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.7,3.4,91,102000,0,0,269,0,0,0,0,0,0,0,170,1.8,0,0,6.3,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.9,2.7,99,102100,0,0,262,0,0,0,0,0,0,0,170,0.0,0,0,4.7,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.0,0.8,92,102200,0,0,256,0,0,0,0,0,0,0,100,0.0,0,0,3.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.0,2.0,100,102200,0,0,258,0,0,0,0,0,0,0,100,0.0,0,0,1.4,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.0,0.0,100,102300,0,0,248,0,0,0,0,0,0,0,250,0.0,0,0,6.4,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.2,0.0,99,102300,0,0,260,0,0,0,0,0,0,0,250,0.0,3,3,6.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.0,1.0,100,102400,69,1014,253,23,22,22,2559,0,2449,95,250,0.0,0,0,4.3,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.6,2.1,97,102400,306,1406,292,141,263,84,15616,10214,9326,389,250,0.0,9,9,7.6,3900,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,3.0,75,102400,513,1406,313,346,700,91,40127,37877,10546,452,250,0.0,9,9,16.1,4040,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,3.1,67,102400,668,1406,309,439,618,145,50678,42429,16836,762,250,0.2,7,7,16.1,5100,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,3.9,70,102400,761,1406,287,427,383,219,48422,30730,24994,1181,250,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,3.0,62,102300,784,1406,290,398,270,248,44960,22799,28127,1345,250,1.6,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,3.0,58,102200,737,1406,294,356,231,235,40004,19286,26519,1256,250,2.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,3.0,62,102200,622,1406,290,209,55,185,23428,4196,20786,953,240,2.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,2.8,61,102100,447,1406,290,147,63,127,16386,3847,14209,620,240,3.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,3.0,62,102100,226,1406,290,86,211,52,9587,3072,5814,233,230,2.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,3.4,66,102100,21,546,288,11,52,10,1183,0,1102,42,230,1.4,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,3.6,72,102100,0,0,289,0,0,0,0,0,0,0,230,0.7,1,1,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,4.0,82,102100,0,0,290,0,0,0,0,0,0,0,230,0.0,3,3,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,4.0,87,102100,0,0,289,0,0,0,0,0,0,0,230,0.2,4,4,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.8,3.9,88,102200,0,0,274,0,0,0,0,0,0,0,230,1.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,3.0,93,102200,0,0,266,0,0,0,0,0,0,0,220,1.3,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,2.9,93,102200,0,0,266,0,0,0,0,0,0,0,220,0.0,0,0,15.5,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.0,2.0,100,102200,0,0,258,0,0,0,0,0,0,0,220,0.0,0,0,9.7,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.9,1.9,100,102200,0,0,257,0,0,0,0,0,0,0,200,0.0,0,0,9.7,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.1,1.1,100,102200,0,0,253,0,0,0,0,0,0,0,200,0.0,0,0,10.4,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.1,2.0,99,102100,0,0,258,0,0,0,0,0,0,0,200,0.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.0,2.0,93,102100,0,0,273,0,0,0,0,0,0,0,200,1.5,3,3,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.0,2.0,93,102100,0,0,293,0,0,0,0,0,0,0,130,1.6,9,9,16.1,3389,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.1,2.1,93,102100,0,0,302,0,0,0,0,0,0,0,120,2.6,10,10,16.1,1764,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.1,3.0,93,102200,72,1035,307,2,0,2,226,0,358,9,110,2.5,10,10,16.1,1500,9,999999999,11,0.0000,0,88,999.000,0.3,1.0 +2008,2,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.1,3.1,87,102200,310,1405,312,17,0,17,1922,0,2895,72,120,2.4,10,10,15.5,1500,9,999999999,12,0.0000,0,88,999.000,0.3,1.0 +2008,2,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,4.0,87,102100,518,1405,318,120,28,110,13771,1665,12618,549,120,4.7,10,10,11.8,1464,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,4.0,81,102000,673,1405,322,139,28,125,16228,1844,14689,658,130,5.5,10,10,16.1,1182,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,4.0,81,101900,766,1405,322,41,0,41,4433,0,6167,158,150,3.8,10,10,15.9,1050,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,4.0,76,101800,790,1405,326,91,0,91,9690,0,13167,355,150,5.8,10,10,14.7,1050,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,3.9,75,101600,743,1405,326,191,14,184,19892,1409,25688,713,140,6.7,10,10,16.1,1050,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,3.0,71,101500,628,1405,325,145,1,145,15128,77,20814,562,140,6.7,10,10,16.1,1053,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,3.1,70,101400,453,1405,326,65,0,65,6916,0,9966,258,140,6.8,10,10,16.1,1072,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,3.0,71,101400,231,1405,325,22,0,22,2365,0,3576,91,150,7.8,10,10,16.1,1012,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,3.0,71,101300,23,572,325,2,0,2,200,0,317,8,150,8.4,10,10,16.1,914,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,3.0,71,101200,0,0,325,0,0,0,0,0,0,0,140,9.6,10,10,15.9,697,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,3.1,76,101000,0,0,321,0,0,0,0,0,0,0,150,11.5,10,10,14.3,764,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,4.0,81,100900,0,0,322,0,0,0,0,0,0,0,150,9.1,10,10,12.1,862,9,999999999,12,0.0000,0,88,999.000,1.3,1.0 +2008,2,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,4.1,82,100900,0,0,322,0,0,0,0,0,0,0,160,7.9,10,10,6.4,795,9,999999999,12,0.0000,0,88,999.000,2.0,1.0 +2008,2,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,5.3,89,100800,0,0,323,0,0,0,0,0,0,0,150,8.6,10,10,5.9,594,9,999999999,12,0.0000,0,88,999.000,1.3,1.0 +2008,2,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,6.0,93,100800,0,0,324,0,0,0,0,0,0,0,160,6.5,10,10,5.7,392,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,6.0,93,100600,0,0,324,0,0,0,0,0,0,0,150,5.8,10,10,11.8,698,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,6.0,93,100500,0,0,324,0,0,0,0,0,0,0,170,6.1,10,10,15.9,540,9,999999999,13,0.0000,0,88,999.000,0.3,1.0 +2008,2,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,6.0,88,100400,0,0,328,0,0,0,0,0,0,0,160,5.6,10,10,13.3,507,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,6.0,93,100400,0,0,324,0,0,0,0,0,0,0,160,5.3,10,10,11.3,233,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,6.9,93,100400,0,0,298,0,0,0,0,0,0,0,200,4.5,3,3,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,5.9,87,100400,0,0,312,0,0,0,0,0,0,0,230,4.2,8,8,16.1,2400,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,4.9,87,100500,0,0,280,0,0,0,0,0,0,0,220,5.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,4.0,81,100600,75,1056,294,32,105,27,3483,0,2887,113,220,3.6,4,4,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,4.2,77,100700,315,1405,283,180,472,75,20161,16653,8388,347,230,0.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,5.8,79,100700,523,1405,289,354,714,88,41186,37772,10316,442,230,2.8,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,4.0,62,100800,679,1405,295,485,802,98,57843,48064,11687,514,250,4.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,3.9,58,100800,772,1405,312,356,304,189,40987,22917,21845,1022,240,3.7,3,3,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,3.1,58,100800,796,1405,307,343,194,233,39002,15933,26641,1269,250,3.9,3,3,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,3.8,57,100700,748,1405,329,505,706,128,59619,46496,15230,690,250,2.3,8,8,16.1,1500,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,2.1,48,100700,633,1405,311,368,505,140,42287,34242,16180,727,320,0.2,2,2,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,2.5,49,100800,458,1405,301,307,732,68,35950,33529,7985,332,320,1.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,3.0,53,100800,237,1405,300,136,514,49,15275,7602,5540,221,290,1.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,3.0,56,100800,25,598,296,13,82,12,1417,0,1262,48,290,1.6,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,3.0,67,100900,0,0,285,0,0,0,0,0,0,0,290,2.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,3.0,71,101000,0,0,282,0,0,0,0,0,0,0,240,2.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,3.1,71,101100,0,0,299,0,0,0,0,0,0,0,270,2.0,5,5,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,4.0,77,101200,0,0,305,0,0,0,0,0,0,0,170,1.3,7,7,16.1,2400,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.8,3.9,88,101300,0,0,274,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,3.0,94,101400,0,0,266,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.2,3.0,99,101500,0,0,263,0,0,0,0,0,0,0,300,0.3,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,2.8,86,101600,0,0,270,0,0,0,0,0,0,0,300,2.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,1.0,76,101600,0,0,268,0,0,0,0,0,0,0,320,3.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,1.0,81,101700,0,0,264,0,0,0,0,0,0,0,330,3.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,0.9,80,101700,0,0,264,0,0,0,0,0,0,0,340,4.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,0.0,76,101800,0,0,263,0,0,0,0,0,0,0,330,4.4,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.0,0.0,81,101900,0,0,259,0,0,0,0,0,0,0,320,3.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.4,0.0,79,101900,78,1079,261,46,296,30,4968,0,3210,127,330,3.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.2,0.1,65,102000,319,1404,272,209,692,52,24119,19802,5982,240,330,4.4,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,0.9,60,102100,528,1404,280,382,847,64,45751,41908,7684,321,320,6.6,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,-0.1,49,102100,684,1404,287,518,914,73,63233,52069,8901,383,340,6.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,-1.2,42,102100,777,1404,290,599,946,76,74145,56190,9415,411,340,9.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,-3.0,34,102000,801,1404,292,620,951,77,76905,57361,9564,419,330,11.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,-3.0,34,102000,754,1404,292,575,929,76,70891,55400,9414,410,340,10.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,-2.9,35,102000,639,1404,292,472,880,72,57294,49671,8745,374,330,9.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,-2.6,36,102000,464,1404,291,322,785,63,38099,36420,7448,308,330,8.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,-2.0,39,102100,242,1404,290,146,577,47,16577,9288,5327,211,330,7.9,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,-2.0,40,102100,27,624,288,15,99,13,1606,0,1403,54,330,7.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,-2.0,46,102100,0,0,281,0,0,0,0,0,0,0,330,6.8,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,-1.9,46,102100,0,0,281,0,0,0,0,0,0,0,340,7.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,-1.1,49,102100,0,0,281,0,0,0,0,0,0,0,340,7.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,-2.0,49,102200,0,0,276,0,0,0,0,0,0,0,340,6.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,-1.9,53,102200,0,0,273,0,0,0,0,0,0,0,330,5.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,-1.1,60,102200,0,0,270,0,0,0,0,0,0,0,330,5.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.8,-2.0,57,102300,0,0,268,0,0,0,0,0,0,0,340,4.4,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,-1.9,65,102400,0,0,261,0,0,0,0,0,0,0,320,3.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.8,-1.1,70,102400,0,0,261,0,0,0,0,0,0,0,340,4.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.9,-2.0,74,102500,0,0,254,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.9,-2.0,81,102500,0,0,250,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.1,-2.0,85,102500,0,0,247,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.1,-1.9,81,102600,0,0,251,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.5,-1.0,77,102600,95,1280,257,48,313,27,5298,0,2981,115,180,0.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,-1.0,60,102700,324,1404,270,184,557,56,21197,17313,6441,260,180,0.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,-1.0,56,102700,533,1404,275,353,692,91,41219,38958,10633,456,180,0.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,-0.6,51,102700,689,1404,282,509,875,80,61836,51146,9702,421,180,0.2,0,0,14.6,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,2.0,62,102700,783,1404,285,589,903,85,72225,54136,10494,463,150,2.1,0,0,10.7,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,2.0,54,102600,807,1404,293,608,906,88,74734,54805,10790,478,220,1.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,2.0,54,102600,760,1404,293,566,891,84,69270,53002,10288,452,190,2.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,2.0,51,102600,645,1404,315,466,844,78,56142,47579,9451,407,140,0.2,5,5,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,2.4,52,102600,470,1404,313,278,545,96,31824,29278,10996,471,140,1.6,4,4,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,2.6,55,102600,247,1404,305,123,359,60,13674,7774,6666,270,180,2.4,2,2,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,3.0,58,102600,29,650,294,12,57,11,1374,0,1246,47,180,2.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,3.0,63,102600,0,0,289,0,0,0,0,0,0,0,140,0.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,3.0,71,102700,0,0,281,0,0,0,0,0,0,0,140,1.6,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,2.9,75,102600,0,0,278,0,0,0,0,0,0,0,130,2.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,2.0,71,102700,0,0,277,0,0,0,0,0,0,0,140,2.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,2.0,71,102700,0,0,276,0,0,0,0,0,0,0,160,1.6,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,2.0,76,102700,0,0,282,0,0,0,0,0,0,0,140,2.2,2,2,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,2.0,76,102700,0,0,272,0,0,0,0,0,0,0,140,3.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.1,2.0,81,102700,0,0,285,0,0,0,0,0,0,0,140,2.1,5,5,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,2.1,77,102700,0,0,295,0,0,0,0,0,0,0,160,2.0,7,7,16.1,2100,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,3.0,88,102600,0,0,270,0,0,0,0,0,0,0,150,1.6,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,3.0,93,102600,0,0,266,0,0,0,0,0,0,0,140,2.1,0,0,15.9,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,3.0,93,102700,0,0,266,0,0,0,0,0,0,0,120,2.0,0,0,14.3,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,3.0,93,102700,0,0,266,0,0,0,0,0,0,0,120,1.7,0,0,12.5,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,3.1,91,102700,98,1295,268,29,35,26,3170,0,2910,112,140,2.9,0,0,9.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,4.2,81,102700,329,1404,280,152,265,90,16850,11219,10024,421,140,1.6,0,0,11.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,6.1,81,102800,538,1404,290,362,724,85,42431,38090,9958,426,170,2.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,7.0,76,102700,695,1404,298,489,775,105,58022,46587,12524,556,240,2.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,7.0,72,102700,789,1404,302,569,816,111,68372,50422,13327,600,240,3.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,7.0,72,102600,813,1404,302,515,569,185,59671,41507,21552,1012,300,3.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,6.9,71,102600,766,1404,308,485,579,169,56178,41065,19643,911,300,3.1,1,1,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,6.1,67,102500,651,1404,338,451,753,102,53280,44686,12088,532,310,3.2,9,9,16.1,6000,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,6.6,69,102500,475,1404,333,248,363,126,27795,21671,14113,618,310,4.1,8,8,16.1,6000,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,7.0,72,102500,253,1404,315,123,339,62,13640,7319,6892,280,300,3.8,3,3,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,7.0,73,102500,32,676,301,14,67,13,1559,0,1398,53,300,3.5,0,0,15.9,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.9,87,102600,0,0,289,0,0,0,0,0,0,0,320,2.5,0,0,14.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,5.9,87,102600,0,0,284,0,0,0,0,0,0,0,290,1.3,0,0,15.9,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,5.0,88,102600,0,0,279,0,0,0,0,0,0,0,290,0.0,0,0,13.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,5.1,93,102600,0,0,276,0,0,0,0,0,0,0,290,0.0,0,0,9.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.5,5.5,93,102600,0,0,278,0,0,0,0,0,0,0,290,0.0,0,0,6.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,4.0,100,102700,0,0,267,0,0,0,0,0,0,0,290,0.0,0,0,0.5,360,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.1,3.1,100,102600,0,0,276,0,0,0,0,0,0,0,130,0.0,4,4,0.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.9,2.9,100,102600,0,0,294,0,0,0,0,0,0,0,130,0.0,9,9,0.4,450,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.2,2.2,100,102600,0,0,290,0,0,0,0,0,0,0,130,0.0,9,9,0.6,450,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.6,2.6,100,102600,0,0,260,0,0,0,0,0,0,0,130,0.0,0,0,0.9,390,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.0,2.0,100,102600,0,0,258,0,0,0,0,0,0,0,130,0.0,0,0,2.6,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.0,2.0,100,102600,0,0,269,0,0,0,0,0,0,0,120,1.8,3,3,3.9,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.1,2.1,100,102700,0,0,258,0,0,0,0,0,0,0,110,1.3,0,0,6.2,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.5,3.4,99,102700,102,1312,265,48,252,30,5273,0,3286,128,130,0.2,0,0,4.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.0,92,102800,334,1403,291,205,608,60,23434,19035,6900,281,130,1.9,2,2,6.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,6.0,81,102800,543,1403,295,320,533,114,36689,31597,13104,574,130,0.3,1,1,14.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,6.1,76,102700,701,1403,330,446,595,150,51636,40574,17364,792,130,2.3,9,9,16.1,4500,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,7.0,71,102700,795,1403,327,585,873,91,71457,51395,11113,494,170,0.4,7,7,16.1,4500,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,7.0,67,102500,819,1403,307,580,784,122,69488,49899,14674,668,170,2.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,7.0,62,102400,772,1403,311,437,390,222,49548,30860,25331,1201,350,1.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,7.0,59,102400,656,1403,315,354,364,183,39901,26900,20781,958,350,1.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,7.1,59,102400,481,1403,315,251,363,126,28094,21762,14208,623,350,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,7.0,61,102400,258,1403,313,103,177,71,11374,4675,7813,321,290,1.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,7.1,64,102400,34,702,310,11,29,10,1225,0,1148,43,290,2.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,7.9,77,102300,0,0,303,0,0,0,0,0,0,0,310,2.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,7.0,77,102300,0,0,298,0,0,0,0,0,0,0,310,2.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,7.0,82,102400,0,0,293,0,0,0,0,0,0,0,340,3.1,0,0,15.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,7.0,87,102400,0,0,290,0,0,0,0,0,0,0,350,3.0,0,0,12.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.9,87,102400,0,0,289,0,0,0,0,0,0,0,340,2.5,0,0,11.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,6.0,88,102400,0,0,284,0,0,0,0,0,0,0,320,1.5,0,0,9.5,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.5,5.5,93,102400,0,0,278,0,0,0,0,0,0,0,300,1.8,0,0,6.4,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.7,4.4,98,102400,0,0,270,0,0,0,0,0,0,0,290,1.0,0,0,1.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,3.9,100,102300,0,0,267,0,0,0,0,0,0,0,280,0.0,0,0,1.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.0,3.0,100,102400,0,0,262,0,0,0,0,0,0,0,280,0.0,0,0,0.6,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.0,2.5,97,102400,0,0,262,0,0,0,0,0,0,0,310,0.0,0,0,4.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.0,2.0,100,102400,0,0,258,0,0,0,0,0,0,0,310,1.2,0,0,6.5,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.2,1.2,93,102400,0,0,258,0,0,0,0,0,0,0,20,1.3,0,0,8.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,3.2,92,102500,105,1326,284,53,298,31,5820,0,3385,132,20,0.0,5,5,7.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,4.9,85,102500,339,1403,295,218,678,55,25224,20599,6316,255,320,0.3,4,4,7.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,4.0,70,102500,549,1403,288,389,821,68,46514,41302,8165,344,320,2.8,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,4.0,61,102500,706,1403,301,520,871,82,63168,50212,9984,435,350,4.2,1,1,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,4.0,54,102400,800,1403,341,569,788,119,68177,50793,14311,648,340,4.9,9,9,16.1,6000,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,4.0,50,102300,825,1403,334,526,572,190,61100,42818,22140,1041,10,3.2,7,7,16.1,6000,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,4.0,45,102300,778,1403,316,583,902,83,71554,53091,10254,451,340,4.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,3.9,44,102200,662,1403,317,417,587,140,48163,39481,16189,730,320,3.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,3.6,42,102100,487,1403,319,261,408,120,29479,24476,13565,592,360,2.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,3.6,43,102100,263,1403,318,104,164,73,11437,4834,8078,333,330,2.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,4.0,46,102100,37,728,315,11,20,10,1209,0,1151,43,330,2.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,4.1,53,102100,0,0,306,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,4.9,72,102100,0,0,291,0,0,0,0,0,0,0,230,0.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,4.0,76,102100,0,0,283,0,0,0,0,0,0,0,230,1.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,4.0,77,102100,0,0,282,0,0,0,0,0,0,0,230,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,4.0,87,102100,0,0,275,0,0,0,0,0,0,0,140,0.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,3.9,81,102200,0,0,278,0,0,0,0,0,0,0,140,1.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,3.0,82,102200,0,0,273,0,0,0,0,0,0,0,140,0.0,0,0,15.7,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,2.9,87,102200,0,0,269,0,0,0,0,0,0,0,140,0.0,0,0,12.9,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,2.0,87,102200,0,0,265,0,0,0,0,0,0,0,140,0.0,0,0,12.9,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,2.0,88,102100,0,0,265,0,0,0,0,0,0,0,140,0.0,0,0,12.3,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.0,2.0,93,102200,0,0,261,0,0,0,0,0,0,0,310,0.0,0,0,8.6,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.9,1.9,93,102200,0,0,261,0,0,0,0,0,0,0,310,0.0,0,0,12.9,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.1,1.1,93,102200,0,0,257,0,0,0,0,0,0,0,310,0.0,0,0,12.9,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.6,2.4,92,102200,109,1340,264,57,339,31,6292,0,3420,133,310,0.2,0,0,12.7,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,3.6,84,102300,344,1402,275,182,436,75,20569,16861,8534,354,310,1.5,0,0,11.3,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,5.0,75,102300,554,1402,289,402,852,65,48218,42165,7827,329,310,1.5,0,0,11.3,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,6.4,68,102300,712,1402,302,538,916,73,65896,50616,8993,389,310,1.5,0,0,11.3,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,7.0,62,102200,806,1402,311,620,941,79,76638,53812,9778,431,310,1.3,0,0,11.5,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,7.0,58,102100,831,1402,316,602,813,121,72384,51566,14566,663,310,0.0,0,0,13.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,6.9,52,102000,784,1402,324,555,773,123,66145,49339,14745,669,310,0.0,0,0,14.5,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,6.1,49,102000,668,1402,323,490,848,86,58800,48088,10326,450,310,0.0,0,0,14.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,5.1,44,102000,492,1402,324,306,606,93,35216,32142,10731,460,310,0.0,0,0,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,5.3,47,102000,269,1402,321,107,171,75,11819,5145,8237,340,310,0.0,0,0,15.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,5.5,51,102000,40,754,317,10,9,10,1107,0,1081,40,310,0.0,0,0,14.2,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,5.4,59,102000,0,0,306,0,0,0,0,0,0,0,310,0.0,0,0,13.3,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,5.9,80,102000,0,0,289,0,0,0,0,0,0,0,310,0.0,0,0,12.4,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,4.8,86,102000,0,0,279,0,0,0,0,0,0,0,310,0.0,0,0,11.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.5,4.6,88,102000,0,0,277,0,0,0,0,0,0,0,340,0.0,0,0,10.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.5,4.4,99,102000,0,0,269,0,0,0,0,0,0,0,340,0.0,0,0,9.7,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,4.0,93,102100,0,0,271,0,0,0,0,0,0,0,340,0.0,0,0,8.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,4.0,94,102100,0,0,270,0,0,0,0,0,0,0,340,0.0,0,0,7.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,4.0,100,102100,0,0,267,0,0,0,0,0,0,0,340,0.0,0,0,4.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,3.9,99,102100,0,0,267,0,0,0,0,0,0,0,340,0.0,0,0,6.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,3.8,99,102100,0,0,267,0,0,0,0,0,0,0,340,0.0,0,0,4.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.7,3.7,93,102100,0,0,269,0,0,0,0,0,0,0,340,0.0,0,0,4.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.1,3.1,93,102100,0,0,267,0,0,0,0,0,0,0,340,0.0,0,0,3.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,3.0,93,102200,0,0,266,0,0,0,0,0,0,0,340,0.0,0,0,4.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.6,3.5,93,102200,113,1355,269,24,0,24,2590,0,3933,104,340,0.0,0,0,4.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.0,85,102300,350,1402,291,200,479,81,22456,18937,9096,380,340,0.2,0,0,5.4,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,7.1,72,102300,560,1402,303,390,765,85,45920,40544,9974,428,340,1.5,0,0,9.5,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,7.9,66,102200,718,1402,312,530,866,87,64133,49316,10551,463,300,1.5,0,0,8.0,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,8.5,62,102200,812,1402,321,613,898,93,74909,52585,11399,509,300,1.4,0,0,7.7,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,8.6,58,102200,837,1402,326,634,904,95,77679,53265,11651,522,300,1.2,0,0,7.5,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,8.6,52,102200,790,1402,334,593,889,92,72245,51800,11270,501,300,1.1,0,0,7.2,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,7.9,50,102200,674,1402,333,492,846,85,59109,47270,10282,448,300,1.0,0,0,6.9,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,6.9,45,102200,498,1402,334,343,754,75,40172,36311,8815,372,300,0.9,0,0,6.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,7.3,48,102200,274,1402,331,135,321,72,14930,9243,8016,330,300,0.7,0,0,6.4,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,7.6,53,102100,42,780,326,13,34,12,1476,0,1363,51,300,0.6,0,0,6.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,7.6,62,102100,0,0,315,0,0,0,0,0,0,0,300,0.5,0,0,5.9,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.2,85,102100,0,0,298,0,0,0,0,0,0,0,300,0.4,0,0,5.6,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,7.1,90,102100,0,0,288,0,0,0,0,0,0,0,300,0.2,0,0,5.3,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,7.0,93,102100,0,0,286,0,0,0,0,0,0,0,300,0.1,0,0,5.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,7.0,93,102100,0,0,286,0,0,0,0,0,0,0,300,0.0,0,0,4.3,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,7.1,94,102100,0,0,286,0,0,0,0,0,0,0,290,0.0,0,0,7.9,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.6,7.3,98,102200,0,0,284,0,0,0,0,0,0,0,290,0.0,0,0,5.3,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.5,6.5,100,102200,0,0,279,0,0,0,0,0,0,0,290,0.0,0,0,4.5,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,4.2,88,102200,0,0,275,0,0,0,0,0,0,0,290,0.0,0,0,2.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,5.7,98,102100,0,0,286,0,0,0,0,0,0,0,290,0.0,2,2,0.5,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,4.0,93,102100,0,0,298,0,0,0,0,0,0,0,290,0.0,8,8,0.7,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,4.0,100,102100,0,0,300,0,0,0,0,0,0,0,290,0.0,9,9,0.7,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.5,3.5,100,102100,0,0,297,0,0,0,0,0,0,0,290,0.0,9,9,1.7,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,5.0,93,102200,117,1371,276,29,10,29,3264,0,3180,123,290,0.0,0,0,1.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.1,86,102200,355,1401,291,207,521,75,23416,19854,8520,354,290,0.0,0,0,5.2,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,7.9,75,102200,566,1401,304,308,423,137,34882,27019,15597,696,290,0.2,0,0,8.8,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,7.1,62,102200,724,1401,312,416,427,195,47281,32199,22307,1042,290,1.6,0,0,14.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,7.9,58,102200,818,1401,321,493,472,217,56460,36406,25022,1191,290,2.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,7.1,52,102100,843,1401,325,491,410,245,56005,33246,28037,1349,290,2.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,7.9,51,102000,796,1401,330,446,371,236,50608,29808,26845,1282,290,1.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,7.0,46,102000,680,1401,333,369,363,193,41669,27386,21905,1017,360,3.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,7.0,45,101900,504,1401,333,253,310,141,28195,19886,15837,703,320,3.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,7.0,48,101900,280,1401,330,118,200,78,12947,6359,8595,356,340,2.8,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,6.9,49,101900,45,806,327,12,17,12,1375,0,1315,49,340,2.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,6.1,53,101900,0,0,317,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,7.0,68,101900,0,0,306,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,7.0,77,101900,0,0,298,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.0,82,101900,0,0,294,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,7.0,82,101900,0,0,293,0,0,0,0,0,0,0,130,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,7.0,87,101900,0,0,290,0,0,0,0,0,0,0,130,1.6,0,0,15.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,6.9,82,102000,0,0,293,0,0,0,0,0,0,0,130,2.5,0,0,12.9,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,6.0,88,102100,0,0,284,0,0,0,0,0,0,0,90,1.3,0,0,13.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,6.0,93,102000,0,0,281,0,0,0,0,0,0,0,90,0.0,0,0,14.5,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,5.9,93,102000,0,0,280,0,0,0,0,0,0,0,90,0.0,0,0,13.9,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,4.9,93,102000,0,0,275,0,0,0,0,0,0,0,90,0.0,0,0,9.7,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,4.0,94,102000,0,0,270,0,0,0,0,0,0,0,70,0.0,0,0,9.3,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.2,4.0,99,102000,0,0,268,0,0,0,0,0,0,0,70,0.0,0,0,6.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,4.4,86,102100,121,1388,278,56,205,38,6047,0,4140,163,70,0.2,0,0,10.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,7.1,76,102200,361,1401,299,219,555,76,24782,21637,8653,360,70,1.6,0,0,13.5,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,8.1,71,102200,571,1401,309,391,729,94,45776,40014,11016,478,110,1.9,0,0,6.4,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,9.0,67,102100,730,1401,318,529,822,101,63387,48400,12148,541,110,0.0,0,0,6.6,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,9.0,59,102000,824,1401,327,612,861,106,74217,51863,12877,581,110,0.0,0,0,8.0,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,9.0,55,101900,849,1401,331,635,875,105,77318,52675,12841,581,320,0.0,0,0,8.0,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,9.1,53,101800,802,1401,335,596,872,97,72465,51309,11881,532,320,0.2,0,0,8.4,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,10.0,56,101700,686,1401,336,496,829,90,59424,46258,10805,474,320,1.7,0,0,11.5,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,9.8,56,101700,509,1401,336,346,739,78,40527,35353,9105,386,290,3.6,0,0,13.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,9.4,56,101700,285,1401,333,169,542,58,19013,12527,6596,268,280,3.3,0,0,14.7,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,9.0,58,101700,48,832,328,26,133,21,2753,0,2271,89,280,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,8.9,71,101600,0,0,313,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,8.0,69,101700,0,0,311,0,0,0,0,0,0,0,130,0.2,0,0,15.7,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.0,82,101700,0,0,299,0,0,0,0,0,0,0,130,1.3,0,0,12.7,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,8.0,83,101600,0,0,298,0,0,0,0,0,0,0,130,0.0,0,0,10.9,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.0,93,101600,0,0,291,0,0,0,0,0,0,0,330,0.0,0,0,7.9,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.9,93,101600,0,0,290,0,0,0,0,0,0,0,330,0.2,0,0,6.6,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.0,94,101600,0,0,285,0,0,0,0,0,0,0,330,1.3,0,0,7.5,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,7.0,93,101500,0,0,286,0,0,0,0,0,0,0,320,2.0,0,0,4.6,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,7.0,100,101400,0,0,282,0,0,0,0,0,0,0,120,1.1,0,0,2.3,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.6,6.6,93,101300,0,0,284,0,0,0,0,0,0,0,110,2.2,0,0,3.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,7.0,100,101300,0,0,282,0,0,0,0,0,0,0,140,1.4,0,0,4.4,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,7.0,99,101200,0,0,282,0,0,0,0,0,0,0,140,0.0,0,0,6.4,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,7.0,93,101300,0,3,286,0,0,0,0,0,0,0,20,0.0,0,0,6.2,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,7.2,93,101300,125,1400,287,38,50,34,4199,0,3717,145,20,0.5,0,0,4.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.0,81,101300,366,1400,299,120,71,102,13296,3373,11274,481,40,1.7,0,0,8.4,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,7.2,72,101300,577,1400,319,243,158,177,27020,11535,19845,905,330,4.1,4,4,11.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,0.8,40,101300,736,1400,305,457,534,177,52599,39849,20412,945,330,7.8,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,-1.1,31,101300,830,1400,311,647,936,92,79588,58281,11335,505,340,8.9,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,-2.1,29,101200,855,1400,310,577,666,170,68004,49050,20143,941,340,11.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,-3.1,26,101100,808,1400,308,599,848,110,72520,55436,13363,601,330,12.4,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,-4.0,25,101100,692,1400,307,529,923,73,64758,53835,9000,388,330,13.5,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,-4.7,24,101100,515,1400,305,374,845,64,44751,42429,7616,317,330,14.3,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,-4.6,25,101100,291,1400,302,189,676,48,21729,16827,5588,223,340,13.8,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-5.0,26,101100,51,858,298,31,252,22,3376,0,2391,94,340,12.9,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,-5.0,28,101200,0,0,293,0,0,0,0,0,0,0,340,9.4,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,-5.3,29,101200,0,0,289,0,0,0,0,0,0,0,340,9.9,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,-8.2,22,101300,0,0,286,0,0,0,0,0,0,0,360,10.2,0,0,16.1,77777,9,999999999,5,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,-9.9,20,101300,0,0,284,0,0,0,0,0,0,0,360,9.4,0,0,16.1,77777,9,999999999,5,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,-9.1,22,101300,0,0,281,0,0,0,0,0,0,0,360,9.7,0,0,16.1,77777,9,999999999,5,0.0000,0,88,999.000,0.0,1.0 +2008,2,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,-9.9,21,101400,0,0,280,0,0,0,0,0,0,0,360,8.5,0,0,16.1,77777,9,999999999,5,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,-8.7,25,101400,0,0,277,0,0,0,0,0,0,0,350,6.6,0,0,16.1,77777,9,999999999,5,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,-6.0,38,101400,0,0,269,0,0,0,0,0,0,0,330,6.3,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,-6.1,37,101500,0,0,269,0,0,0,0,0,0,0,340,6.7,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,-7.0,33,101500,0,0,271,0,0,0,0,0,0,0,350,6.8,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,-6.9,35,101500,0,0,268,0,0,0,0,0,0,0,340,7.6,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,-5.8,41,101600,0,0,265,0,0,0,0,0,0,0,340,6.8,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,-4.0,47,101600,0,21,267,0,0,0,0,0,0,0,340,7.1,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.2,-4.0,47,101700,130,1400,268,73,399,36,8059,0,4012,157,340,6.9,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,-3.9,42,101800,372,1400,275,257,762,54,30033,27989,6381,258,350,8.6,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,-3.0,41,101900,583,1400,281,436,885,67,52622,47600,8135,343,340,8.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,-2.9,35,101900,742,1400,292,574,939,77,70634,55889,9433,410,330,8.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,-2.2,34,101800,837,1400,297,657,965,80,81764,58827,10020,442,340,8.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,-3.9,30,101700,861,1400,295,678,969,81,84570,59770,10191,451,330,8.7,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,-2.9,31,101700,814,1400,300,632,949,81,78379,57892,10041,442,310,8.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,-2.1,33,101700,698,1400,301,528,910,74,64581,52949,9116,394,300,7.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,-2.3,32,101700,521,1400,302,374,832,65,44728,41810,7743,323,320,7.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,-2.4,32,101700,296,1400,301,190,661,50,21817,17037,5766,230,330,6.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,-2.0,33,101600,55,883,300,33,129,28,3460,0,2938,117,330,5.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,-1.9,38,101600,0,0,293,0,0,0,0,0,0,0,310,4.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,-1.0,43,101600,0,0,290,0,0,0,0,0,0,0,310,4.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,-1.0,44,101600,0,0,289,0,0,0,0,0,0,0,330,5.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,-1.0,47,101600,0,0,285,0,0,0,0,0,0,0,330,5.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,-1.1,49,101600,0,0,282,0,0,0,0,0,0,0,310,4.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,-2.1,46,101700,0,0,280,0,0,0,0,0,0,0,330,5.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,-3.0,45,101700,0,0,275,0,0,0,0,0,0,0,340,4.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,-3.0,48,101700,0,0,272,0,0,0,0,0,0,0,310,5.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,-3.0,52,101700,0,0,268,0,0,0,0,0,0,0,360,2.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,-3.0,53,101700,0,0,267,0,0,0,0,0,0,0,40,1.9,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.9,-3.0,64,101800,0,0,256,0,0,0,0,0,0,0,40,0.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.0,-3.0,70,101900,0,0,253,0,0,0,0,0,0,0,40,0.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.1,-2.8,69,101900,0,41,254,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.6,-0.9,72,102000,135,1399,261,74,396,36,8127,0,3935,154,170,0.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,0.1,57,102100,378,1399,279,253,751,51,29812,26369,5974,241,170,2.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,1.1,57,102100,589,1399,285,429,868,63,52019,45194,7665,323,160,2.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,1.9,53,102100,748,1399,294,563,911,77,69292,53046,9447,412,120,2.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,1.0,44,102100,843,1399,301,647,938,81,80393,56539,10156,449,120,3.6,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,1.0,41,102000,867,1399,304,667,943,83,83155,57143,10380,461,130,3.4,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,1.0,41,101900,820,1399,305,624,924,82,77218,55659,10232,452,130,1.6,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,1.0,39,101900,703,1399,309,521,883,77,63614,51167,9466,411,190,2.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,1.1,38,101900,526,1399,310,369,801,68,43957,40253,8085,339,190,1.5,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,1.0,39,101900,301,1399,309,187,624,53,21457,16641,6069,244,160,1.8,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,1.0,39,101900,58,909,308,33,208,24,3530,0,2616,103,160,1.9,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,1.0,45,101900,0,0,299,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,1.0,54,101900,0,0,287,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,1.1,58,102000,0,0,283,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,2.0,67,102100,0,0,280,0,0,0,0,0,0,0,110,0.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,2.0,70,102100,0,0,277,0,0,0,0,0,0,0,110,1.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,1.9,67,102100,0,0,280,0,0,0,0,0,0,0,120,1.3,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.8,1.0,72,102200,0,0,271,0,0,0,0,0,0,0,110,0.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,1.0,81,102200,0,0,264,0,0,0,0,0,0,0,110,1.3,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,1.0,81,102200,0,0,264,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,0.9,81,102200,0,0,264,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.0,0.1,81,102300,0,0,260,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.9,1.0,87,102300,0,0,260,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.2,1.1,93,102300,0,62,257,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.6,2.1,84,102400,140,1399,268,71,325,39,7785,0,4235,166,330,0.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,2.9,65,102400,384,1399,286,247,674,62,28656,25927,7254,298,330,1.6,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,2.0,53,102400,595,1399,294,422,816,75,50572,44292,8962,382,340,2.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,2.0,47,102400,754,1399,302,558,883,82,68387,52283,10097,443,350,2.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,2.1,44,102300,849,1399,306,641,914,86,79401,55374,10704,476,350,1.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,3.0,42,102200,874,1399,316,662,917,89,82058,55771,11118,497,10,3.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,3.0,39,102100,826,1399,320,618,894,90,76034,54298,11131,496,10,2.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,2.9,39,102100,709,1399,319,517,853,84,62699,49958,10243,448,280,2.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,2.1,37,102000,532,1399,318,367,767,75,43390,39778,8904,377,290,1.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,1.4,37,102000,307,1399,315,186,583,58,21162,17027,6623,268,290,1.5,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,1.1,37,102000,61,935,312,33,186,25,3538,0,2670,105,290,1.3,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,2.0,48,102000,0,0,301,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,2.1,52,102000,0,0,296,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,3.0,62,102000,0,0,289,0,0,0,0,0,0,0,290,0.0,0,0,15.9,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,3.0,67,102000,0,0,285,0,0,0,0,0,0,0,290,0.0,0,0,14.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,3.0,76,102000,0,0,278,0,0,0,0,0,0,0,290,0.0,0,0,10.9,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,3.0,76,102100,0,0,277,0,0,0,0,0,0,0,290,0.0,0,0,8.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.8,3.0,82,102100,0,0,273,0,0,0,0,0,0,0,290,0.0,0,0,8.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,2.9,93,102000,0,0,266,0,0,0,0,0,0,0,290,0.0,0,0,8.2,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,2.0,88,102000,0,0,265,0,0,0,0,0,0,0,290,0.0,0,0,9.3,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.0,2.0,93,102000,0,0,261,0,0,0,0,0,0,0,260,0.0,0,0,6.6,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.0,2.0,93,102000,0,0,261,0,0,0,0,0,0,0,260,0.0,0,0,8.2,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.9,1.9,93,102000,0,0,261,0,0,0,0,0,0,0,260,0.0,0,0,9.3,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.1,1.1,93,102000,1,83,257,0,0,0,0,0,0,0,260,0.0,0,0,6.6,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.5,2.2,91,102000,145,1398,263,70,271,42,7671,0,4623,183,260,0.0,0,0,8.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,4.2,81,102000,390,1398,280,243,592,78,27702,25640,8941,374,260,0.0,0,0,8.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,6.0,75,102000,602,1398,294,416,737,99,48793,42579,11642,508,260,0.2,0,0,9.8,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,6.0,66,102000,760,1398,302,553,819,108,66353,50562,12994,583,260,1.3,0,0,11.3,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,6.0,58,101900,855,1398,311,638,865,109,77629,53827,13268,601,260,0.0,0,0,11.5,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,5.9,51,101900,880,1398,318,661,881,107,80867,54646,13094,594,260,0.2,0,0,12.9,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,4.9,48,101800,832,1398,318,619,867,103,75430,53665,12599,567,260,1.6,0,0,13.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,4.0,42,101800,715,1398,321,518,827,95,62292,49605,11410,503,220,2.0,0,0,14.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,4.5,43,101700,538,1398,322,367,740,82,43127,39113,9693,414,180,1.5,0,0,14.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,5.1,47,101700,312,1398,319,187,554,63,21142,16867,7166,293,190,1.5,0,0,13.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,5.8,51,101700,65,960,318,34,170,26,3665,0,2830,112,190,1.5,0,0,12.9,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,4.1,50,101700,0,0,310,0,0,0,0,0,0,0,190,1.6,0,0,13.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,5.1,67,101700,0,0,296,0,0,0,0,0,0,0,230,2.3,0,0,14.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,6.0,73,101800,0,0,296,0,0,0,0,0,0,0,210,0.2,0,0,14.3,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,6.0,87,101800,0,0,285,0,0,0,0,0,0,0,210,1.3,0,0,12.9,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,6.0,88,101800,0,0,284,0,0,0,0,0,0,0,210,0.0,0,0,12.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,5.9,93,101800,0,0,280,0,0,0,0,0,0,0,210,0.0,0,0,10.9,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,4.9,95,101800,0,0,274,0,0,0,0,0,0,0,210,0.0,0,0,7.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.7,4.0,95,101800,0,0,270,0,0,0,0,0,0,0,200,0.0,0,0,2.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.2,4.1,99,101800,0,0,268,0,0,0,0,0,0,0,200,0.0,0,0,6.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.7,4.4,98,101800,0,0,270,0,0,0,0,0,0,0,200,0.0,0,0,4.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,4.0,97,101800,0,0,269,0,0,0,0,0,0,0,340,0.0,0,0,3.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,4.0,100,101700,0,0,308,0,0,0,0,0,0,0,40,1.5,10,10,0.4,51,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,3.9,100,101800,1,105,308,0,0,0,0,0,0,0,200,0.0,10,10,0.4,82,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,4.0,100,101800,150,1398,285,68,231,43,7424,0,4733,187,200,0.0,6,6,0.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.3,6.1,99,101800,396,1398,278,223,512,78,25423,21966,8920,373,200,0.0,0,0,5.2,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,7.0,86,101800,608,1398,291,403,653,119,46607,40078,13814,613,270,0.0,0,0,8.4,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,7.0,71,101800,767,1398,303,508,636,159,59169,44081,18581,858,270,0.0,0,0,11.3,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,7.0,62,101700,862,1398,311,629,795,139,75175,52424,16647,769,270,0.2,0,0,11.5,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,7.0,58,101700,886,1398,316,556,513,230,64117,40158,26707,1284,270,1.9,0,0,13.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,6.9,51,101600,838,1398,324,578,703,156,68199,48209,18502,860,270,0.0,0,0,14.3,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,6.1,46,101500,721,1398,327,511,767,115,60602,48036,13710,615,230,0.2,0,0,13.2,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,6.1,47,101500,543,1398,326,361,668,101,41793,37823,11765,511,230,1.6,0,0,15.9,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,6.4,52,101500,317,1398,321,181,454,78,20163,16326,8705,362,240,2.4,0,0,14.3,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,6.3,54,101500,68,986,317,33,119,27,3529,0,2917,115,240,3.2,0,0,12.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,8.8,77,101500,0,0,308,0,0,0,0,0,0,0,230,3.7,0,0,11.6,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,6.9,77,101500,0,0,297,0,0,0,0,0,0,0,220,4.6,0,0,14.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,6.0,82,101500,0,0,289,0,0,0,0,0,0,0,220,4.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,6.0,82,101600,0,0,289,0,0,0,0,0,0,0,220,4.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.0,82,101600,0,0,288,0,0,0,0,0,0,0,220,5.5,0,0,15.9,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,6.0,87,101600,0,0,285,0,0,0,0,0,0,0,220,4.0,0,0,14.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,6.0,87,101600,0,0,285,0,0,0,0,0,0,0,220,6.7,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,5.9,87,101600,0,0,285,0,0,0,0,0,0,0,220,3.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,5.0,82,101700,0,0,283,0,0,0,0,0,0,0,160,2.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,5.0,87,101600,0,0,280,0,0,0,0,0,0,0,160,2.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,5.0,87,101700,0,0,280,0,0,0,0,0,0,0,150,3.4,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,5.0,81,101700,0,0,289,0,0,0,0,0,0,0,210,5.4,1,1,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,5.0,81,101700,1,128,312,0,0,0,0,0,0,0,200,3.2,8,8,16.1,3300,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,5.1,77,101800,155,1397,303,58,136,43,6402,0,4757,188,200,3.5,4,4,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,6.0,82,101900,402,1397,301,52,67,33,6351,2010,4008,157,200,2.7,3,3,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.4,82,101900,614,1397,311,151,57,126,17398,3597,14565,649,200,3.0,6,6,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.0,76,101900,773,1397,344,285,91,235,32214,7365,26665,1271,200,3.5,10,10,16.1,533,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.1,77,101900,868,1397,344,278,38,255,31778,3134,29225,1414,160,3.2,10,10,16.1,480,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.0,82,101900,892,1397,345,243,18,231,25254,1857,31069,919,200,3.4,10,10,16.1,480,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.0,81,101800,844,1397,346,286,46,258,32436,3789,29446,1424,200,1.9,10,10,15.9,480,9,999999999,16,0.0000,0,88,999.000,0.3,1.0 +2008,2,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,8.2,79,101800,727,1397,349,127,12,121,13438,1177,17299,468,120,0.6,10,10,13.4,469,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,8.7,84,101800,549,1397,348,23,0,23,2553,0,3683,90,120,2.1,10,10,11.1,471,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.0,88,101800,323,1397,346,54,8,52,5788,695,8149,212,120,2.4,10,10,10.2,397,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.0,88,101800,72,1011,346,10,0,10,1125,0,1715,44,130,2.0,10,10,11.3,401,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.0,88,101800,0,0,346,0,0,0,0,0,0,0,110,2.5,10,10,11.3,540,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,9.0,88,101800,0,0,346,0,0,0,0,0,0,0,150,1.3,10,10,10.9,571,9,999999999,17,0.0000,0,88,999.000,2.3,1.0 +2008,2,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.1,94,101700,0,0,342,0,0,0,0,0,0,0,150,0.0,10,10,7.4,803,9,999999999,17,0.0000,0,88,999.000,1.7,1.0 +2008,2,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.6,97,101700,0,0,342,0,0,0,0,0,0,0,270,0.0,10,10,2.7,811,9,999999999,17,0.0000,0,88,999.000,3.8,1.0 +2008,2,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.0,94,101800,0,0,341,0,0,0,0,0,0,0,250,1.0,10,10,2.5,166,9,999999999,17,0.0000,0,88,999.000,4.4,1.0 +2008,2,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.0,94,101700,0,0,341,0,0,0,0,0,0,0,220,1.7,10,10,3.2,862,9,999999999,17,0.0000,0,88,999.000,1.2,1.0 +2008,2,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,9.0,96,101700,0,0,330,0,0,0,0,0,0,0,110,2.7,9,9,5.3,907,9,999999999,17,0.0000,0,88,999.000,1.2,1.0 +2008,2,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,9.0,94,101700,0,0,332,0,0,0,0,0,0,0,160,2.1,9,9,9.3,1092,9,999999999,17,0.0000,0,88,999.000,1.2,1.0 +2008,2,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,9.0,100,101600,0,0,320,0,0,0,0,0,0,0,150,2.1,8,8,6.4,960,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,9.0,100,101600,0,0,309,0,0,0,0,0,0,0,150,2.0,5,5,6.2,77777,9,999999999,17,0.0000,0,88,999.000,0.3,1.0 +2008,2,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,9.0,100,101600,0,0,337,0,0,0,0,0,0,0,160,1.5,10,10,4.8,2016,9,999999999,17,0.0000,0,88,999.000,0.3,1.0 +2008,2,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,9.0,100,101700,0,0,337,0,0,0,0,0,0,0,170,1.3,10,10,5.0,1498,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,9.0,100,101700,2,152,337,0,0,0,0,0,0,0,170,0.0,10,10,5.9,1843,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,9.0,100,101800,161,1396,337,32,0,32,3422,0,5116,135,170,0.5,10,10,6.4,942,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,9.0,92,101800,408,1396,333,113,18,108,11949,1680,16150,431,140,2.2,9,9,3.6,150,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,8.7,85,101800,620,1396,337,270,248,160,30566,17005,18187,827,130,1.5,9,9,10.8,428,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,7.4,72,101800,779,1396,342,250,50,222,28445,3959,25387,1206,240,2.9,9,9,16.1,1187,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,6.1,63,101700,874,1396,343,221,76,174,26089,5425,20556,966,230,0.0,9,9,16.1,1800,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,7.0,63,101600,898,1396,348,407,219,266,46490,18099,30575,1488,350,0.2,9,9,16.1,1800,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,6.9,66,101600,850,1396,344,338,237,193,39291,17490,22596,1069,350,2.1,9,9,16.1,1730,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,6.0,59,101600,733,1396,348,531,819,101,63724,49490,12146,540,310,2.4,9,9,16.1,1206,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,5.9,59,101600,555,1396,339,381,743,85,44758,39875,10074,433,290,4.5,8,8,16.1,1260,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,6.0,61,101600,328,1396,320,200,578,64,22744,18710,7333,300,340,4.0,3,3,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,6.0,63,101600,76,1036,305,40,194,30,4327,0,3211,127,340,3.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,6.0,68,101600,0,0,300,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,6.0,77,101600,0,0,292,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.0,82,101600,0,0,288,0,0,0,0,0,0,0,230,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,6.0,88,101600,0,0,284,0,0,0,0,0,0,0,230,0.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,6.0,93,101600,0,0,281,0,0,0,0,0,0,0,230,1.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,6.0,93,101600,0,0,281,0,0,0,0,0,0,0,230,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,6.0,93,101500,0,0,281,0,0,0,0,0,0,0,120,0.0,0,0,15.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,6.0,93,101500,0,0,286,0,0,0,0,0,0,0,120,0.2,1,1,13.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,6.0,93,101400,0,0,308,0,0,0,0,0,0,0,120,1.6,8,8,14.1,3300,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,6.0,93,101300,0,0,286,0,0,0,0,0,0,0,110,2.1,1,1,11.6,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,6.0,93,101300,0,0,315,0,0,0,0,0,0,0,120,2.2,9,9,14.7,3230,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,6.0,87,101300,0,0,319,0,0,0,0,0,0,0,140,2.7,9,9,16.1,2630,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,6.0,87,101300,2,178,320,0,0,0,0,0,0,0,140,3.5,9,9,15.7,2100,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,6.1,82,101300,167,1396,306,4,0,4,487,0,760,18,160,3.2,5,5,13.2,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,7.0,86,101200,414,1396,326,73,6,72,7837,549,10985,287,140,4.1,9,9,16.1,2400,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,7.1,76,101200,627,1396,345,162,20,153,17039,1977,22007,596,160,4.2,10,10,15.5,2400,9,999999999,15,0.0000,0,88,999.000,0.5,1.0 +2008,2,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,8.1,78,101200,786,1396,350,206,19,195,21508,1924,26950,759,150,4.9,10,10,11.1,2281,9,999999999,16,0.0000,0,88,999.000,1.5,1.0 +2008,2,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,9.0,88,101200,881,1396,346,126,0,126,13425,0,17659,502,170,3.2,10,10,9.1,1320,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,9.0,92,101100,905,1396,343,78,0,78,8428,0,11186,313,150,4.6,10,10,4.8,948,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.9,81,101000,856,1396,345,236,39,212,27298,2955,24660,1176,150,5.8,10,10,16.1,1747,9,999999999,16,0.0000,0,88,999.000,0.3,1.0 +2008,2,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.1,77,100900,739,1396,344,112,6,109,11913,599,15699,423,140,6.8,10,10,15.0,1353,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,7.4,77,100900,560,1396,346,91,6,89,9723,580,13254,347,130,7.2,10,10,7.0,1376,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,7.4,76,100800,334,1396,347,13,0,13,1451,0,2180,53,140,7.2,10,10,11.8,1346,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,6.9,72,100800,80,1061,348,2,0,2,228,0,359,9,140,7.3,10,10,16.1,1313,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.0,71,100800,0,0,343,0,0,0,0,0,0,0,150,7.4,10,10,16.1,1273,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.0,71,100800,0,0,343,0,0,0,0,0,0,0,150,5.4,10,10,16.1,1393,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.0,71,100800,0,0,343,0,0,0,0,0,0,0,150,7.6,10,10,16.1,1569,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.1,72,100800,0,0,343,0,0,0,0,0,0,0,150,7.1,10,10,16.1,2100,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.0,76,100900,0,0,344,0,0,0,0,0,0,0,160,6.4,10,10,16.1,1981,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.0,76,100900,0,0,344,0,0,0,0,0,0,0,170,4.2,10,10,16.1,1052,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.8,90,100900,0,0,337,0,0,0,0,0,0,0,190,3.8,10,10,14.8,1120,9,999999999,16,0.0000,0,88,999.000,0.1,1.0 +2008,2,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.0,93,100900,0,0,335,0,0,0,0,0,0,0,180,3.5,10,10,12.7,1761,9,999999999,16,0.0000,0,88,999.000,0.1,1.0 +2008,2,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.0,93,100900,0,0,335,0,0,0,0,0,0,0,190,2.7,10,10,11.8,1473,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.0,93,100900,0,0,335,0,0,0,0,0,0,0,200,3.1,10,10,16.1,1433,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.0,93,100900,0,0,335,0,0,0,0,0,0,0,210,3.0,10,10,15.5,870,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.0,93,100900,0,0,335,0,0,0,0,0,0,0,200,2.6,10,10,12.4,433,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,7.0,93,101000,3,205,330,0,0,0,35,0,56,1,180,1.5,10,10,16.1,1071,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.0,93,101000,173,1395,326,7,0,7,840,0,1293,32,160,1.6,9,9,16.1,1428,9,999999999,16,0.0000,0,88,999.000,0.5,1.0 +2008,2,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,7.9,93,101000,421,1395,326,29,0,29,3212,0,4695,117,190,2.1,9,9,15.7,1723,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,6.9,86,101100,633,1395,335,229,118,175,25800,8539,19866,911,200,2.4,10,10,13.2,1160,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.0,71,101100,792,1395,343,237,55,206,27210,4205,23761,1123,240,5.0,10,10,16.1,1320,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.0,71,101100,887,1395,333,387,142,297,43814,12441,33802,1657,220,3.8,9,9,16.1,1320,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.0,71,101100,911,1395,317,357,93,296,40550,8076,33854,1662,230,1.5,6,6,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,6.0,67,101100,862,1395,338,482,356,262,54895,29756,29985,1453,240,2.5,9,9,16.1,780,9,999999999,13,0.0000,0,88,999.000,2.8,1.0 +2008,2,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,7.0,67,101100,745,1395,344,297,133,226,33508,10652,25635,1214,220,3.6,9,9,16.1,1500,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,6.8,76,101200,566,1395,333,74,0,74,7967,0,11203,291,220,0.0,9,9,11.5,1376,9,999999999,15,0.0000,0,88,999.000,0.8,1.0 +2008,2,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,6.6,84,101200,339,1395,325,63,26,57,7281,805,6564,267,20,0.0,9,9,14.0,1601,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,7.0,82,101200,84,1086,329,27,23,25,2922,0,2781,108,20,0.4,9,9,16.1,1800,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,7.0,87,101200,0,0,313,0,0,0,0,0,0,0,20,3.4,7,7,16.1,1800,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.0,88,101300,0,0,295,0,0,0,0,0,0,0,120,1.5,1,1,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,7.0,93,101400,0,0,321,0,0,0,0,0,0,0,160,1.5,9,9,16.1,1500,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,6.9,93,101500,0,0,308,0,0,0,0,0,0,0,140,1.3,7,7,16.1,1500,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,6.0,94,101500,0,0,280,0,0,0,0,0,0,0,120,0.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,6.0,100,101500,0,0,277,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,5.9,99,101500,0,0,277,0,0,0,0,0,0,0,150,2.0,0,0,15.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,4.9,93,101500,0,0,275,0,0,0,0,0,0,0,150,1.5,0,0,12.7,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,4.0,94,101600,0,0,270,0,0,0,0,0,0,0,170,1.3,0,0,10.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,3.9,99,101600,0,0,267,0,0,0,0,0,0,0,90,0.2,0,0,8.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,3.0,93,101600,0,0,266,0,0,0,0,0,0,0,90,1.3,0,0,8.2,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,3.0,93,101600,0,0,271,0,0,0,0,0,0,0,100,0.2,1,1,10.4,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.2,3.1,93,101600,4,233,300,1,0,1,112,0,179,4,100,2.0,9,9,16.1,4234,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.2,4.2,87,101600,179,1395,318,23,0,23,2514,0,3806,98,140,1.9,10,10,16.1,4500,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,6.0,87,101500,427,1395,320,123,35,112,13712,1930,12555,542,140,4.7,9,9,16.1,4290,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,6.0,82,101400,640,1395,324,289,410,101,34155,24258,11996,528,130,5.8,9,9,16.1,2909,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,6.0,81,101200,799,1395,324,61,0,61,6573,0,8975,238,120,6.4,9,9,16.1,4185,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,6.0,76,101200,893,1395,329,78,0,78,8380,0,11196,312,120,4.2,9,9,16.1,1974,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.0,71,101100,917,1395,333,160,2,158,16749,201,21683,636,150,4.4,9,9,16.1,2236,9,999999999,13,0.0000,0,88,999.000,0.5,1.0 +2008,2,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,6.1,72,101000,868,1395,314,66,0,66,7131,0,9606,262,150,4.4,5,5,15.2,77777,9,999999999,13,0.0000,0,88,999.000,0.5,1.0 +2008,2,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.1,82,101000,750,1395,339,25,0,25,2747,0,3854,96,160,2.3,10,10,9.0,1243,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,7.5,85,100900,571,1395,339,57,0,57,6152,0,8689,222,160,0.3,10,10,15.4,1766,9,999999999,16,0.0000,0,88,999.000,1.0,1.0 +2008,2,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.4,87,100900,344,1395,337,7,0,7,829,0,1257,30,120,2.6,10,10,9.8,1481,9,999999999,16,0.0000,0,88,999.000,2.0,1.0 +2008,2,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.9,87,100900,100,1272,334,3,0,3,318,0,500,12,120,4.8,10,10,5.6,1233,9,999999999,15,0.0000,0,88,999.000,0.5,1.0 +2008,2,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,6.0,87,100700,0,0,329,0,0,0,0,0,0,0,120,7.1,10,10,11.6,1287,9,999999999,13,0.0000,0,88,999.000,0.3,1.0 +2008,2,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,6.0,87,100600,0,0,329,0,0,0,0,0,0,0,130,10.1,10,10,14.7,1486,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,6.0,81,100600,0,0,334,0,0,0,0,0,0,0,130,8.5,10,10,16.1,1533,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,6.1,77,100700,0,0,338,0,0,0,0,0,0,0,150,7.3,10,10,16.1,2595,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.0,82,100700,0,0,330,0,0,0,0,0,0,0,150,7.8,9,9,16.1,1800,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.0,82,100800,0,0,311,0,0,0,0,0,0,0,160,8.3,5,5,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.0,82,100800,0,0,330,0,0,0,0,0,0,0,150,5.1,9,9,16.1,1800,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.1,82,100800,0,0,309,0,0,0,0,0,0,0,150,5.0,4,4,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,8.0,87,100800,0,0,305,0,0,0,0,0,0,0,150,5.0,2,2,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.9,81,100800,0,0,305,0,0,0,0,0,0,0,140,7.8,1,1,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.3,1.0 +2008,2,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,7.1,77,100800,0,0,344,0,0,0,0,0,0,0,140,8.1,10,10,15.3,1486,9,999999999,15,0.0000,0,88,999.000,0.5,1.0 +2008,2,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.9,87,100800,0,0,340,0,0,0,0,0,0,0,140,7.0,10,10,9.8,1376,9,999999999,16,0.0000,0,88,999.000,0.8,1.0 +2008,2,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,7.0,81,100800,5,260,340,0,0,0,0,0,0,0,150,5.9,10,10,10.9,1332,9,999999999,15,0.0000,0,88,999.000,1.6,1.0 +2008,2,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,7.6,83,100900,185,1394,342,3,0,3,378,0,591,14,150,7.4,10,10,5.7,1200,9,999999999,16,0.0000,0,88,999.000,0.5,1.0 +2008,2,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,8.0,87,100900,434,1394,341,40,0,40,4350,0,6303,159,150,8.2,10,10,14.1,1126,9,999999999,16,0.0000,0,88,999.000,0.3,1.0 +2008,2,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.0,83,101000,646,1394,344,143,9,139,15101,883,20017,540,160,8.2,10,10,9.5,971,9,999999999,16,0.0000,0,88,999.000,0.3,1.0 +2008,2,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.0,87,101100,805,1394,347,211,23,198,22118,2352,27230,772,160,8.0,10,10,10.4,840,9,999999999,17,0.0000,0,88,999.000,0.5,1.0 +2008,2,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.0,87,101100,900,1394,347,134,0,134,14228,0,18619,536,160,6.3,10,10,11.9,997,9,999999999,17,0.0000,0,88,999.000,1.0,1.0 +2008,2,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,9.0,82,101200,923,1394,351,217,10,210,22664,1010,28273,845,160,7.0,10,10,16.1,812,9,999999999,17,0.0000,0,88,999.000,0.3,1.0 +2008,2,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,10.0,88,101200,874,1394,352,79,3,77,8556,306,11122,307,160,5.9,10,10,16.1,720,9,999999999,18,0.0000,0,88,999.000,0.2,1.0 +2008,2,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,10.0,88,101300,756,1394,352,68,0,68,7391,0,10062,265,200,5.7,10,10,12.8,866,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,2,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,9.7,84,101400,577,1394,325,51,0,51,5580,0,7862,200,210,7.0,5,5,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,9.4,82,101500,349,1394,331,111,122,81,12492,4708,9084,380,200,5.2,7,7,16.1,1320,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,9.0,82,101600,104,1289,341,17,0,17,1845,0,2796,73,200,3.7,9,9,16.1,1320,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.0,88,101700,0,0,313,0,0,0,0,0,0,0,190,4.2,3,3,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.9,87,101800,0,0,315,0,0,0,0,0,0,0,200,4.8,4,4,15.9,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.0,82,102000,0,0,305,0,0,0,0,0,0,0,170,2.6,1,1,14.5,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,8.0,82,102100,0,0,345,0,0,0,0,0,0,0,170,2.5,10,10,14.5,1500,9,999999999,16,0.0000,0,88,999.000,0.4,1.0 +2008,2,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,8.0,87,102200,0,0,341,0,0,0,0,0,0,0,160,2.1,10,10,14.7,1500,9,999999999,16,0.0000,0,88,999.000,0.4,1.0 +2008,2,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.0,82,102300,0,0,345,0,0,0,0,0,0,0,150,2.1,10,10,16.1,1500,9,999999999,16,0.0000,0,88,999.000,0.4,1.0 +2008,2,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,8.0,83,102400,0,0,328,0,0,0,0,0,0,0,160,2.0,8,8,15.9,1500,9,999999999,16,0.0000,0,88,999.000,0.4,1.0 +2008,2,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,7.9,94,102500,0,0,290,0,0,0,0,0,0,0,170,1.5,0,0,14.1,77777,9,999999999,16,0.0000,0,88,999.000,0.4,1.0 +2008,2,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.8,6.8,100,102500,0,0,295,0,0,0,0,0,0,0,90,1.2,4,4,9.6,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,6.0,100,102400,0,0,289,0,0,0,0,0,0,0,150,0.0,3,3,8.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,6.0,100,102500,0,0,293,0,0,0,0,0,0,0,80,1.0,5,5,5.3,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,6.0,99,102500,0,0,311,0,0,0,0,0,0,0,260,0.4,9,9,6.4,1326,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.2,93,102500,6,289,305,5,32,5,620,0,605,22,260,2.7,7,7,6.8,1380,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,8.1,93,102600,191,1394,292,94,326,49,10350,1785,5449,218,360,0.2,0,0,9.8,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.0,88,102600,440,1394,300,272,598,84,31219,27610,9616,407,360,1.9,0,0,10.8,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,8.5,94,102700,653,1394,329,353,452,142,40660,29597,16375,741,300,4.1,9,9,7.3,186,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.7,92,102700,812,1394,332,424,304,246,48015,24675,28074,1349,330,2.9,9,9,7.8,136,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.0,88,102700,906,1394,330,518,365,281,59011,30451,32174,1575,330,4.1,8,8,11.1,180,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,8.9,76,102700,930,1394,309,561,445,264,64431,35925,30509,1488,310,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,7.9,67,102600,880,1394,322,506,377,268,57653,31269,30704,1494,310,2.9,2,2,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,7.0,63,102600,762,1394,311,439,423,208,50037,32547,23773,1121,330,1.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,6.9,60,102600,583,1394,313,322,412,150,36431,27753,17038,767,340,2.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,7.0,60,102500,355,1394,313,171,329,88,19140,13979,9823,413,350,1.8,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,7.0,60,102500,108,1305,314,29,18,28,3229,0,3084,119,350,1.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,7.0,67,102500,0,0,306,0,0,0,0,0,0,0,300,2.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,7.0,73,102500,0,0,301,0,0,0,0,0,0,0,310,1.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.0,88,102500,0,0,289,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.0,94,102500,0,0,285,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,6.9,99,102600,0,0,282,0,0,0,0,0,0,0,310,0.0,0,0,15.9,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,6.0,94,102600,0,0,280,0,0,0,0,0,0,0,310,0.0,0,0,14.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,5.0,93,102600,0,0,276,0,0,0,0,0,0,0,100,0.0,0,0,2.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.5,4.0,97,102600,0,0,269,0,0,0,0,0,0,0,100,0.0,0,0,2.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,4.0,100,102500,0,0,276,0,0,0,0,0,0,0,100,0.0,2,2,1.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,3.0,93,102500,0,0,307,0,0,0,0,0,0,0,100,0.0,10,10,0.4,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.0,3.0,100,102500,0,0,284,0,0,0,0,0,0,0,100,0.0,7,7,1.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.4,3.0,97,102500,0,0,296,0,0,0,0,0,0,0,100,0.9,9,9,5.7,210,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,4.0,100,102500,8,319,267,2,0,2,253,0,397,10,110,0.0,0,0,3.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.2,4.3,94,102500,197,1393,272,40,0,40,4309,0,6442,170,110,0.0,0,0,9.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.5,7.0,97,102600,447,1393,284,236,403,107,26610,21691,12100,522,110,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,7.1,76,102500,659,1393,299,483,852,79,58235,46902,9603,416,110,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,8.0,71,102500,818,1393,308,594,818,114,71642,50676,13766,624,110,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,8.0,66,102500,913,1393,313,678,844,125,82344,53511,15186,699,110,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,8.1,59,102400,936,1393,321,622,619,206,73006,45621,24315,1164,280,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,8.9,59,102400,886,1393,327,554,523,221,64086,39722,25667,1231,280,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,7.9,52,102300,768,1393,330,469,517,184,54035,37618,21325,997,280,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,8.3,54,102200,588,1393,329,308,345,163,34663,23928,18360,833,280,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,8.7,57,102200,360,1393,328,144,165,102,15941,7695,11284,481,280,1.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,9.9,64,102200,111,1318,326,36,65,31,3969,0,3408,133,280,2.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,9.0,72,102200,0,0,313,0,0,0,0,0,0,0,290,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,8.9,72,102200,0,0,312,0,0,0,0,0,0,0,330,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,8.0,73,102200,0,0,307,0,0,0,0,0,0,0,330,1.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,8.0,82,102200,0,0,299,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.0,88,102200,0,0,294,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.0,93,102200,0,0,291,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,7.9,94,102200,0,0,290,0,0,0,0,0,0,0,330,0.0,0,0,15.2,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,7.0,100,102200,0,0,282,0,0,0,0,0,0,0,330,0.0,0,0,6.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,7.0,100,102200,0,0,282,0,0,0,0,0,0,0,310,0.0,0,0,3.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,6.0,93,102100,0,0,281,0,0,0,0,0,0,0,310,0.0,0,0,7.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,6.0,100,102100,0,0,277,0,0,0,0,0,0,0,310,0.0,0,0,2.8,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,6.0,100,102100,0,0,277,0,0,0,0,0,0,0,310,0.0,0,0,4.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,5.0,100,102100,9,349,272,3,0,3,328,0,512,13,310,0.0,0,0,9.7,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,7.2,99,102200,204,1392,283,77,152,55,8487,1717,6066,244,310,0.2,0,0,10.2,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,9.0,92,102200,453,1392,297,284,654,71,33118,28660,8331,349,310,1.9,0,0,14.7,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.1,76,102200,666,1392,310,441,682,115,51752,41278,13533,604,310,0.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,10.0,67,102200,825,1392,323,539,607,179,62724,42679,20942,984,310,2.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,9.9,63,102100,919,1392,328,607,612,203,71061,44376,23915,1143,10,2.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,9.2,56,102000,942,1392,331,681,779,154,81740,51669,18532,869,310,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,11.0,60,101900,892,1392,338,668,859,117,81156,52153,14259,653,310,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,10.7,59,101800,773,1392,337,563,819,108,67586,48663,13021,586,310,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,8.9,52,101700,593,1392,335,408,736,95,47961,40758,11165,486,300,3.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,7.4,49,101700,365,1392,331,223,573,73,25387,22019,8342,346,280,3.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,7.1,50,101700,115,1332,328,54,222,36,5859,0,3879,153,280,3.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,8.0,60,101600,0,0,320,0,0,0,0,0,0,0,290,2.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,8.0,64,101600,0,0,315,0,0,0,0,0,0,0,310,1.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,8.0,72,101600,0,0,307,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,8.1,77,101600,0,0,303,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,8.9,82,101600,0,0,304,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.1,82,101600,0,0,299,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.9,89,101500,0,0,299,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.9,100,101500,0,0,286,0,0,0,0,0,0,0,310,0.0,0,0,15.9,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,6.9,100,101400,0,0,281,0,0,0,0,0,0,0,310,0.0,0,0,12.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,5.9,99,101400,0,0,277,0,0,0,0,0,0,0,310,1.3,0,0,7.6,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,5.1,94,101400,0,0,276,0,0,0,0,0,0,0,310,0.0,0,0,15.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,5.8,99,101400,0,0,276,0,0,0,0,0,0,0,310,0.0,0,0,11.3,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.3,4.3,93,101400,11,379,272,7,47,7,831,0,793,30,310,0.0,0,0,11.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.2,93,101500,210,1392,287,116,426,51,12824,4392,5711,229,310,0.0,0,0,12.9,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,9.0,86,101500,460,1392,301,306,700,75,35577,31601,8733,367,310,0.0,0,0,13.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,9.3,73,101500,673,1392,313,486,823,88,58271,45924,10617,465,310,0.1,0,0,14.6,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,9.0,62,101500,831,1392,323,627,895,92,76932,52240,11333,507,310,0.8,0,0,15.4,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,8.9,55,101500,925,1392,331,709,919,98,87857,54597,12135,550,310,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,8.6,51,101400,948,1392,335,729,927,97,90639,55144,12145,551,310,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,8.6,49,101400,898,1392,338,685,921,91,85050,53988,11302,508,310,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,9.0,46,101300,779,1392,345,580,884,85,70994,50308,10445,462,310,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,9.3,47,101300,599,1392,345,425,811,76,50811,41830,9096,390,210,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,9.6,50,101200,370,1392,342,237,663,61,27345,22334,7003,287,210,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,9.9,53,101200,119,1345,340,60,298,34,6515,0,3756,147,210,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,9.0,54,101300,0,0,333,0,0,0,0,0,0,0,210,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,9.1,69,101300,0,0,317,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,10.0,82,101200,0,0,310,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,9.3,82,101100,0,0,306,0,0,0,0,0,0,0,150,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,9.4,82,100900,0,0,306,0,0,0,0,0,0,0,140,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,2,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,8.7,82,100800,0,0,302,0,0,0,0,0,0,0,130,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,8.9,83,100700,0,0,303,0,0,0,0,0,0,0,130,5.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,8.9,79,100600,0,0,306,0,0,0,0,0,0,0,130,5.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,8.6,78,100400,0,0,306,0,0,0,0,0,0,0,130,7.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.7,80,100300,0,0,304,0,0,0,0,0,0,0,110,4.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,7.8,75,100100,0,0,303,0,0,0,0,0,0,0,80,3.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,7.7,79,100200,0,0,300,0,0,0,0,0,0,0,80,2.6,0,0,16.1,1981,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,6.8,72,100300,13,426,301,0,0,0,35,0,56,1,120,2.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,7.2,71,100400,220,1391,304,25,3,25,2771,220,4085,104,50,1.6,0,0,16.1,2509,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,7.3,67,100400,471,1391,309,180,114,142,19959,7226,15768,698,70,2.1,0,0,16.1,2941,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,7.8,64,100500,683,1391,314,219,63,188,24848,4695,21434,995,100,2.0,0,0,16.1,2169,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,8.0,39,100500,842,1391,350,424,249,273,47914,21084,31032,1507,120,3.0,0,0,16.1,2331,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,9.1,36,100500,935,1391,366,576,484,251,66550,38125,29153,1417,160,3.0,0,0,16.1,1559,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,7.3,47,100500,958,1391,333,522,352,279,59990,29156,32283,1583,150,6.5,0,0,16.1,1846,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,8.2,49,100500,908,1391,336,440,225,293,49971,19212,33495,1645,130,4.8,0,0,16.1,1998,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,7.7,48,100500,788,1391,333,156,13,148,16424,1332,20826,578,140,6.3,0,0,16.1,2134,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,7.2,47,100500,607,1391,332,240,239,135,27476,15459,15559,697,150,6.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,6.9,47,100600,378,1391,331,217,485,85,24433,21090,9594,403,150,6.4,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,6.9,48,100600,125,1370,329,46,136,34,5026,0,3699,144,150,6.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,8.2,58,100700,0,0,323,0,0,0,0,0,0,0,150,4.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,7.8,63,100800,0,0,316,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,7.8,65,100900,0,0,313,0,0,0,0,0,0,0,120,0.2,0,0,16.1,2743,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,7.9,67,100900,0,0,311,0,0,0,0,0,0,0,120,1.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,8.3,70,101000,0,0,311,0,0,0,0,0,0,0,120,0.0,0,0,16.1,2725,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,8.3,74,101000,0,0,307,0,0,0,0,0,0,0,100,0.4,0,0,16.1,2626,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,8.2,74,101000,0,0,306,0,0,0,0,0,0,0,100,3.0,0,0,16.1,2896,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,7.7,77,101000,0,0,301,0,0,0,0,0,0,0,100,2.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,7.2,79,101000,0,0,297,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.2,89,101100,0,0,290,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,7.3,49,101100,0,0,330,0,0,0,0,0,0,0,280,1.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,8.3,55,101200,0,0,328,0,0,0,0,0,0,0,130,1.0,0,0,16.1,2062,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,8.4,54,101300,16,458,330,0,0,0,58,0,92,2,140,2.0,0,0,16.1,1499,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,9.0,51,101400,227,1390,337,10,0,10,1098,0,1672,41,180,1.0,0,0,16.1,1353,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,9.3,78,101400,477,1390,309,107,17,101,11403,1648,15147,400,140,3.4,0,0,16.1,1640,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,9.0,70,101500,690,1390,315,105,3,103,11172,328,14996,400,150,5.7,0,0,16.1,1350,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,10.1,49,101500,848,1390,347,218,12,211,22889,1208,28762,831,160,3.0,0,0,16.1,1245,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,10.7,53,101600,942,1390,344,229,11,222,24046,1115,29675,901,160,5.0,0,0,16.1,1604,9,999999999,20,0.0000,0,88,999.000,0.3,1.0 +2014,3,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,11.7,55,101600,964,1390,349,242,19,229,25430,1984,30411,938,170,4.0,0,0,14.7,1022,9,999999999,20,0.0000,0,88,999.000,1.3,1.0 +2014,3,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,12.3,56,101600,913,1390,351,160,13,151,17004,1309,20808,607,160,4.0,0,0,4.8,672,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,14.0,99,101700,794,1390,319,122,1,122,13174,101,17317,475,230,3.1,0,0,6.9,994,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,13.1,93,101700,613,1390,318,200,141,138,22832,8669,15816,713,200,4.6,0,0,16.1,2125,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.9,82,101800,383,1390,320,133,94,107,14667,4480,11860,510,220,4.9,0,0,16.1,2048,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.7,81,101800,129,1388,320,26,0,26,2819,0,4216,111,220,4.8,0,0,16.1,2105,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.6,84,101800,0,0,317,0,0,0,0,0,0,0,190,2.5,0,0,16.1,2994,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.6,81,101900,0,0,314,0,0,0,0,0,0,0,200,2.2,0,0,16.1,2644,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.5,84,101900,0,0,311,0,0,0,0,0,0,0,210,2.5,0,0,16.1,3048,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.0,84,102000,0,0,308,0,0,0,0,0,0,0,170,1.3,0,0,16.1,3048,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,10.1,90,102000,0,0,304,0,0,0,0,0,0,0,170,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.4,1.0 +2014,3,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,10.6,94,102100,0,0,304,0,0,0,0,0,0,0,170,1.6,0,0,16.1,1981,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,10.6,96,102100,0,0,302,0,0,0,0,0,0,0,150,2.0,0,0,16.1,1998,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,10.5,94,102100,0,0,304,0,0,0,0,0,0,0,120,1.6,0,0,15.7,2151,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,9.9,100,102000,0,0,296,0,0,0,0,0,0,0,120,2.1,0,0,12.7,2150,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,9.4,99,102000,0,0,294,0,0,0,0,0,0,0,260,1.9,0,0,10.9,1128,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,9.4,97,102000,0,0,296,0,0,0,0,0,0,0,140,0.2,0,0,7.7,1387,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,9.4,100,101900,0,0,294,0,0,0,0,0,0,0,140,1.3,0,0,4.8,3353,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,9.0,100,102000,18,490,292,3,0,3,311,0,482,12,140,0.0,0,0,4.0,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,10.8,100,102000,234,1390,301,36,0,36,3885,0,5741,149,130,0.0,0,0,2.7,91,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,11.1,69,102000,484,1390,328,96,0,96,10242,0,14365,378,120,2.0,0,0,9.0,2098,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,11.2,59,102000,696,1390,340,156,5,153,16500,478,21804,594,160,2.0,0,0,16.1,1864,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,11.6,56,102000,855,1390,346,287,44,260,32578,3567,29638,1439,140,2.0,0,0,16.1,2187,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,11.1,48,101900,948,1390,355,317,44,287,36248,3638,32970,1622,180,2.0,0,0,16.1,2502,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.1,78,101900,970,1390,320,227,9,221,23865,966,29379,909,180,2.3,0,0,16.1,1779,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.1,78,101900,919,1390,320,209,6,205,21973,660,27599,823,170,0.2,0,0,16.1,1522,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.0,77,101900,799,1390,319,188,8,184,19814,784,25410,716,170,1.6,0,0,16.1,2438,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,10.7,77,101800,618,1390,318,117,0,117,12461,0,17069,455,140,2.6,0,0,16.1,2420,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,10.9,77,101800,388,1390,319,67,0,67,7262,0,10404,271,120,2.3,0,0,16.1,2268,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.7,81,101800,133,1390,320,15,0,15,1653,0,2499,64,120,2.1,0,0,16.1,2151,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.8,85,101800,0,14,317,0,0,0,0,0,0,0,140,2.0,0,0,16.1,2286,9,999999999,20,0.0000,0,88,999.000,0.8,1.0 +2014,3,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,12.8,94,101800,0,0,316,0,0,0,0,0,0,0,140,1.6,0,0,15.5,2050,9,999999999,22,0.0000,0,88,999.000,0.8,1.0 +2014,3,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,12.7,97,101800,0,0,313,0,0,0,0,0,0,0,150,2.0,0,0,10.0,274,9,999999999,22,0.0000,0,88,999.000,0.5,1.0 +2014,3,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,12.1,96,101900,0,0,310,0,0,0,0,0,0,0,140,1.6,0,0,13.3,526,9,999999999,22,0.0000,0,88,999.000,0.3,1.0 +2014,3,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,11.6,97,101900,0,0,307,0,0,0,0,0,0,0,130,2.4,0,0,16.1,2473,9,999999999,20,0.0000,0,88,999.000,0.4,1.0 +2014,3,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,10.5,92,101700,0,0,305,0,0,0,0,0,0,0,130,4.8,0,0,16.1,2575,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,10.1,91,101900,0,0,304,0,0,0,0,0,0,0,360,2.0,0,0,16.1,1296,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,10.6,97,101900,0,0,302,0,0,0,0,0,0,0,100,1.3,0,0,16.1,1160,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,10.8,98,101800,0,0,302,0,0,0,0,0,0,0,100,0.0,0,0,16.1,918,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,10.7,94,101900,0,0,305,0,0,0,0,0,0,0,30,0.0,0,0,13.4,519,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,11.1,96,101800,0,0,305,0,0,0,0,0,0,0,30,1.6,0,0,16.1,305,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,11.0,94,101900,0,0,306,0,0,0,0,0,0,0,40,1.5,0,0,16.1,244,9,999999999,20,0.0000,0,88,999.000,0.3,1.0 +2014,3,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.8,97,101900,20,522,308,0,0,0,58,0,93,2,360,0.5,0,0,5.9,244,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,11.8,98,102000,240,1389,308,20,0,20,2192,0,3269,82,360,2.9,0,0,3.5,249,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,12.2,92,102000,491,1389,314,128,35,116,14475,1920,13131,575,340,1.9,0,0,16.1,495,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,12.2,86,102000,703,1389,318,360,287,215,40439,21804,24252,1143,290,0.2,0,0,16.1,541,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,12.2,56,102000,861,1389,350,412,205,285,46483,17041,32343,1583,320,2.0,0,0,16.1,488,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,12.3,61,101900,954,1389,344,439,153,334,49655,13293,37994,1894,300,3.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.9,76,101900,976,1389,331,461,168,343,52181,14571,39081,1955,340,4.4,0,0,16.1,640,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,12.2,75,101800,925,1389,328,437,183,315,49436,15652,35847,1776,320,4.5,0,0,16.1,671,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,12.2,74,101800,805,1389,329,384,203,266,43149,16673,30085,1457,320,4.0,0,0,16.1,701,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,12.1,74,101700,623,1389,329,304,287,176,34166,19954,19815,910,350,4.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.9,72,101700,393,1389,330,155,142,115,17100,7223,12717,550,300,3.8,0,0,16.1,610,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.9,77,101700,137,1389,325,35,13,34,3909,0,3779,148,310,2.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.7,78,101800,0,29,322,0,0,0,0,0,0,0,330,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.7,81,101800,0,0,320,0,0,0,0,0,0,0,360,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.7,84,101800,0,0,317,0,0,0,0,0,0,0,240,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.7,91,101800,0,0,312,0,0,0,0,0,0,0,240,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,11.7,94,101900,0,0,310,0,0,0,0,0,0,0,240,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,11.7,96,101900,0,0,308,0,0,0,0,0,0,0,240,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,11.7,94,101900,0,0,310,0,0,0,0,0,0,0,240,0.0,0,0,16.1,3622,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.7,97,101900,0,0,308,0,0,0,0,0,0,0,240,0.0,0,0,16.1,3192,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,11.7,96,101900,0,0,308,0,0,0,0,0,0,0,100,0.0,0,0,16.1,1945,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,11.8,94,101900,0,0,311,0,0,0,0,0,0,0,100,0.2,0,0,15.3,1658,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,12.1,96,101800,0,0,311,0,0,0,0,0,0,0,100,1.6,0,0,9.8,1737,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,11.8,94,101800,0,0,311,0,0,0,0,0,0,0,130,1.9,0,0,10.9,3317,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,12.2,59,101800,23,554,346,4,0,4,476,0,729,19,150,1.0,0,0,9.0,3048,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,12.3,65,101900,247,1388,339,59,14,57,6617,228,6350,257,280,2.0,0,0,16.1,3012,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,12.8,86,101900,498,1388,322,198,130,152,21933,8234,16850,754,210,2.2,0,0,16.1,2725,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,12.8,80,101900,710,1388,327,354,257,223,39686,19731,25093,1187,150,3.0,0,0,16.1,2591,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,12.9,46,101900,868,1388,370,442,249,287,49880,20578,32520,1594,150,2.0,0,0,16.1,2573,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,13.3,47,101800,961,1388,371,388,105,316,44111,8768,36084,1793,150,2.0,0,0,16.1,2420,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,13.4,70,101700,982,1388,340,462,164,346,52240,14165,39389,1973,170,2.9,0,0,16.1,2286,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,13.8,70,101700,931,1388,342,410,130,322,46220,11071,36579,1818,190,1.6,0,0,16.1,2286,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,13.4,68,101600,810,1388,342,349,134,271,39145,10964,30519,1482,190,2.1,0,0,16.1,2357,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,13.7,70,101600,628,1388,341,199,62,171,22395,4204,19314,887,180,2.2,0,0,16.1,2896,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,13.9,71,101600,398,1388,343,70,0,70,7566,0,10742,280,180,2.9,0,0,16.1,2896,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,14.0,71,101500,141,1388,342,28,0,28,3054,0,4533,119,180,3.4,0,0,16.1,2721,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,14.4,76,101500,0,45,340,0,0,0,0,0,0,0,200,2.1,0,0,16.1,1469,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,14.3,78,101500,0,0,337,0,0,0,0,0,0,0,210,2.0,0,0,16.1,1902,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2014,3,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,13.3,78,101500,0,0,331,0,0,0,0,0,0,0,210,1.3,0,0,16.1,1296,9,999999999,24,0.0000,0,88,999.000,0.8,1.0 +2014,3,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,13.5,82,101500,0,0,329,0,0,0,0,0,0,0,140,0.3,0,0,16.1,1192,9,999999999,24,0.0000,0,88,999.000,2.6,1.0 +2014,3,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,14.9,93,101500,0,0,328,0,0,0,0,0,0,0,140,3.0,0,0,14.5,1202,9,999999999,25,0.0000,0,88,999.000,2.4,1.0 +2014,3,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,13.9,93,101600,0,0,322,0,0,0,0,0,0,0,230,4.3,0,0,5.6,1036,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,14.3,96,101600,0,0,323,0,0,0,0,0,0,0,210,3.6,0,0,9.3,639,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,14.3,93,101700,0,0,325,0,0,0,0,0,0,0,210,4.0,0,0,16.1,1864,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,13.8,93,101700,0,0,322,0,0,0,0,0,0,0,200,3.1,0,0,16.1,2134,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,12.7,93,101800,0,0,316,0,0,0,0,0,0,0,210,3.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,12.1,62,101800,0,0,342,0,0,0,0,0,0,0,200,2.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,11.6,63,101800,0,0,337,0,0,0,0,0,0,0,170,1.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,11.2,96,101800,26,588,306,9,13,9,981,0,955,36,200,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,11.8,96,101900,254,1388,309,98,149,71,10738,3496,7769,320,220,1.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,12.2,86,102000,505,1388,319,312,562,108,35560,30049,12315,537,240,4.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,12.0,76,102100,717,1388,326,454,576,157,52390,38101,18146,835,230,3.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,10.7,46,102000,874,1388,356,635,793,135,76149,50254,16254,752,200,1.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,10.9,44,102000,967,1388,361,715,823,141,86667,52310,17179,802,230,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,9.4,54,102000,988,1388,335,732,825,144,88912,53337,17560,821,260,3.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,9.4,54,101900,937,1388,335,647,691,181,76722,48161,21540,1022,170,2.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,9.5,54,101900,816,1388,335,365,253,216,41811,19264,24863,1184,240,5.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,9.5,57,101900,634,1388,333,314,502,85,37511,27248,10172,442,260,4.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,9.7,57,101900,403,1388,333,244,546,86,27692,24101,9747,412,250,4.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,9.4,58,101900,146,1388,330,68,237,43,7393,0,4704,187,250,4.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,9.4,63,101900,0,63,325,0,0,0,0,0,0,0,240,3.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,9.4,67,102000,0,0,320,0,0,0,0,0,0,0,250,3.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,9.3,72,102100,0,0,315,0,0,0,0,0,0,0,280,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,8.9,75,102100,0,0,309,0,0,0,0,0,0,0,260,2.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,8.9,81,102100,0,0,304,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,8.9,90,102100,0,0,298,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,8.8,95,102100,0,0,294,0,0,0,0,0,0,0,300,0.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.8,86,102100,0,0,295,0,0,0,0,0,0,0,300,3.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,7.9,87,102000,0,0,294,0,0,0,0,0,0,0,330,3.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,8.2,93,102000,0,0,292,0,0,0,0,0,0,0,330,3.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,7.6,91,102000,0,0,290,0,0,0,0,0,0,0,330,3.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,6.0,76,102000,0,0,293,0,0,0,0,0,0,0,340,6.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,5.7,74,102000,29,621,293,9,17,9,1061,0,1024,38,340,6.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,6.8,74,102000,261,1387,299,104,168,73,11482,4715,8040,331,350,4.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,7.2,70,102100,511,1387,305,287,435,126,32398,26520,14335,632,330,5.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,7.3,61,102100,723,1387,314,494,715,121,58369,45076,14330,646,320,5.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,8.1,50,102100,881,1387,333,635,784,137,76293,51067,16544,765,320,5.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,6.6,41,102000,973,1387,339,755,939,97,94452,56696,12113,549,320,5.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,6.0,38,101900,994,1387,340,774,946,96,97130,57293,12094,549,330,5.9,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,5.7,37,101800,942,1387,342,727,932,94,90722,56382,11769,532,320,7.1,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,5.8,32,101800,821,1387,353,619,895,89,76128,53219,10992,490,310,4.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,4.6,29,101800,639,1387,351,460,829,79,55435,46074,9490,409,310,4.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,4.2,31,101800,408,1387,345,268,693,64,31184,28327,7477,308,320,4.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,4.5,35,101800,150,1387,338,78,339,41,8532,0,4525,179,320,5.4,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,5.7,43,101800,0,81,329,0,0,0,0,0,0,0,320,2.7,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,6.8,61,101800,0,0,312,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,7.3,68,101800,0,0,308,0,0,0,0,0,0,0,250,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,7.7,72,101900,0,0,306,0,0,0,0,0,0,0,250,1.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,6.6,71,101900,0,0,301,0,0,0,0,0,0,0,260,2.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,6.2,70,101900,0,0,299,0,0,0,0,0,0,0,230,1.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,6.7,54,101900,0,0,319,0,0,0,0,0,0,0,130,2.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,6.6,54,101900,0,0,318,0,0,0,0,0,0,0,120,2.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.1,93,101900,0,0,282,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,6.1,93,101900,0,0,281,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,6.0,96,102000,0,0,279,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.3,5.7,96,102000,0,0,278,0,0,0,0,0,0,0,130,0.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,6.9,92,102000,32,654,286,16,86,14,1712,0,1503,58,130,1.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,8.4,88,102100,268,1386,297,158,533,55,17799,10840,6221,251,150,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,8.9,76,102200,518,1386,309,357,756,74,42058,36513,8761,371,120,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,9.0,67,102200,730,1386,318,537,859,85,65272,48413,10351,455,120,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,9.4,44,102200,887,1386,351,584,614,191,68395,43939,22477,1067,130,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,9.5,38,102200,979,1386,363,702,764,163,84458,51104,19667,928,160,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,10.1,55,102100,1000,1386,339,640,526,260,74377,40985,30436,1489,180,2.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,11.0,56,102100,948,1386,342,586,472,263,67496,37238,30475,1490,230,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,10.5,54,102000,826,1386,342,521,556,190,60416,39730,22095,1044,180,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,10.0,53,102000,644,1386,341,410,633,116,47857,37940,13570,605,180,1.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,9.4,51,102000,413,1386,340,190,289,104,21276,14516,11695,502,140,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,9.0,50,102000,154,1386,339,77,302,44,8438,0,4785,190,140,2.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,9.5,58,102000,1,100,331,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.1,68,102100,0,0,323,0,0,0,0,0,0,0,130,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.6,73,102100,0,0,321,0,0,0,0,0,0,0,130,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.6,76,102200,0,0,319,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.6,78,102200,0,0,316,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,10.6,83,102200,0,0,312,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,10.7,81,102200,0,0,315,0,0,0,0,0,0,0,90,0.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.1,81,102100,0,0,317,0,0,0,0,0,0,0,90,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,11.2,56,102100,0,0,344,0,0,0,0,0,0,0,90,1.0,0,0,16.1,3353,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,11.7,56,102100,0,0,346,0,0,0,0,0,0,0,210,1.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.8,87,102100,0,0,315,0,0,0,0,0,0,0,260,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,12.2,90,102100,0,0,315,0,0,0,0,0,0,0,330,1.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,12.2,92,102100,35,688,314,3,0,3,337,0,521,13,330,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,12.2,86,102200,275,1386,318,36,0,36,3964,0,5815,149,130,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,12.1,82,102200,525,1386,321,213,193,140,23896,11892,15748,702,130,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.0,68,102200,737,1386,328,253,62,220,28538,4808,24921,1180,150,0.2,0,0,16.1,3353,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,10.5,44,102100,894,1386,358,252,43,225,29188,3222,26131,1258,140,2.0,0,0,16.1,3353,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,10.3,42,102100,986,1386,360,315,60,272,36392,4808,31598,1550,130,2.0,0,0,16.1,3353,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,12.7,46,102000,1006,1386,369,397,79,340,45208,6737,38949,1948,260,1.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,11.8,41,102000,953,1386,372,289,30,268,33229,2364,31031,1520,130,1.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,12.2,42,101900,832,1386,373,262,43,236,29886,3331,27072,1303,280,2.6,0,0,15.7,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,12.2,50,101800,649,1386,359,189,37,172,21376,2562,19493,897,310,2.0,0,0,13.0,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,12.2,57,101800,418,1386,349,83,7,81,8903,695,12272,322,310,2.1,0,0,13.8,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,12.3,64,101800,159,1386,340,39,7,38,4186,538,6056,161,310,2.0,0,0,14.7,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,12.9,72,101800,1,119,335,0,0,0,0,0,0,0,310,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,13.3,81,101800,0,0,329,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,13.3,84,101800,0,0,326,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,13.3,87,101900,0,0,324,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,13.2,88,101900,0,0,322,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.1,77,101800,0,0,325,0,0,0,0,0,0,0,180,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.6,75,101800,0,0,325,0,0,0,0,0,0,0,180,1.3,0,0,16.1,3317,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,10.5,72,101800,0,0,322,0,0,0,0,0,0,0,180,0.4,0,0,16.1,2994,9,999999999,18,0.0000,0,88,999.000,0.5,1.0 +2014,3,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,10.1,71,101800,0,0,320,0,0,0,0,0,0,0,180,3.0,0,0,15.5,2573,9,999999999,18,0.0000,0,88,999.000,0.2,1.0 +2014,3,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.4,85,101800,0,0,315,0,0,0,0,0,0,0,210,3.4,0,0,11.8,1869,9,999999999,20,0.0000,0,88,999.000,1.8,1.0 +2014,3,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,12.0,89,101900,0,0,315,0,0,0,0,0,0,0,240,3.9,0,0,15.3,1362,9,999999999,20,0.0000,0,88,999.000,0.3,1.0 +2014,3,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,10.7,91,102000,0,0,306,0,0,0,0,0,0,0,280,2.3,0,0,10.4,1524,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,11.1,63,102100,39,721,334,9,4,9,1071,0,1059,39,270,1.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,11.2,56,102200,282,1385,343,97,85,80,10686,2630,8830,368,210,1.0,0,0,16.1,975,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,12.1,81,102300,532,1385,322,339,609,106,38973,32856,12165,531,300,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,11.4,68,102300,743,1385,330,547,848,92,66175,47680,11138,494,340,3.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,8.7,50,102300,900,1385,337,689,915,95,85372,54062,11745,530,160,4.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,7.2,43,102300,992,1385,339,775,949,95,97267,56849,11944,542,270,4.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,7.2,42,102200,1012,1385,341,794,954,97,99775,57305,12211,555,60,4.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,6.8,39,102200,959,1385,343,744,930,100,92660,56525,12495,568,340,4.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,3.8,35,102100,837,1385,333,635,898,93,78163,54661,11427,511,330,4.8,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,3.1,34,102100,654,1385,331,474,830,82,57136,47553,9956,432,340,6.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,3.0,35,102100,423,1385,329,279,693,68,32514,30236,7921,329,350,6.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,2.7,34,102100,163,1385,327,84,342,44,9265,0,4856,192,350,6.6,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,2.0,35,102100,1,138,321,0,0,0,0,0,0,0,340,5.8,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,4.0,45,102100,0,0,316,0,0,0,0,0,0,0,320,3.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,4.5,50,102200,0,0,312,0,0,0,0,0,0,0,340,3.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,5.6,58,102200,0,0,308,0,0,0,0,0,0,0,310,3.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,5.7,63,102200,0,0,304,0,0,0,0,0,0,0,310,3.8,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.2,1.0 +2014,3,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,5.8,67,102100,0,0,300,0,0,0,0,0,0,0,320,5.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,3.6,49,102100,0,0,308,0,0,0,0,0,0,0,320,4.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,1.8,46,102100,0,0,302,0,0,0,0,0,0,0,330,4.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,2.0,56,102100,0,0,291,0,0,0,0,0,0,0,320,7.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,0.7,51,102000,0,0,290,0,0,0,0,0,0,0,320,6.5,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,1.0,48,102000,0,0,295,0,0,0,0,0,0,0,320,4.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,-0.1,45,102000,0,0,292,0,0,0,0,0,0,0,330,4.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,-0.5,48,102000,42,755,287,20,110,17,2201,0,1839,71,330,9.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,0.0,48,102000,289,1384,290,183,616,55,20890,16409,6292,253,340,8.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,0.0,43,102000,539,1384,297,391,821,72,46633,43032,8550,361,340,10.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,0.1,37,102000,750,1384,306,577,913,82,70731,54679,10124,444,330,9.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,1.2,32,101900,907,1384,323,717,957,90,89418,59022,11275,506,330,5.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,2.3,30,101800,998,1384,335,799,978,94,100660,60417,11830,535,330,5.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,3.3,29,101700,1018,1384,344,815,980,95,102844,60233,11974,543,330,5.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,3.4,26,101600,964,1384,352,763,959,95,95594,59075,11953,541,340,6.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,3.6,30,101600,842,1384,344,654,931,88,80914,56186,10918,487,330,9.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,2.7,28,101600,659,1384,342,494,877,77,59879,49536,9316,402,360,11.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,1.4,26,101600,427,1384,338,297,759,63,34859,32753,7379,304,360,10.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,0.8,26,101600,167,1384,335,93,407,44,10302,548,4892,194,360,10.1,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,-1.8,23,101600,2,157,328,0,0,0,0,0,0,0,10,7.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,-3.4,24,101700,0,0,312,0,0,0,0,0,0,0,30,4.3,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,-8.1,16,101800,0,0,311,0,0,0,0,0,0,0,40,6.1,0,0,16.1,77777,9,999999999,5,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,-6.6,21,101800,0,0,299,0,0,0,0,0,0,0,20,5.0,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-5.5,26,101900,0,0,294,0,0,0,0,0,0,0,10,4.0,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2014,3,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,-5.0,28,101900,0,0,293,0,0,0,0,0,0,0,30,3.5,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-5.0,26,101900,0,0,298,0,0,0,0,0,0,0,360,6.8,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-5.0,26,101800,0,0,298,0,0,0,0,0,0,0,10,7.3,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,-4.9,26,101800,0,0,297,0,0,0,0,0,0,0,10,7.8,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-3.8,30,101800,0,0,296,0,0,0,0,0,0,0,10,8.1,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,-3.2,34,101900,0,0,292,0,0,0,0,0,0,0,360,7.2,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,-2.8,36,101900,0,0,291,0,0,0,0,0,0,0,10,7.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,-2.5,38,102000,46,789,288,22,121,18,2416,0,1983,77,330,3.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,-0.6,39,102100,296,1383,299,192,650,54,22022,17652,6140,247,330,3.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,-0.4,30,102100,546,1383,318,402,846,69,48156,44116,8227,347,10,6.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,1.0,30,102000,757,1383,327,587,929,79,72277,54955,9702,425,360,8.1,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,0.4,23,101900,913,1383,344,724,964,88,90576,59414,11016,494,60,4.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,-1.2,18,101900,1004,1383,349,800,969,97,100759,61261,12226,554,30,5.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,-2.1,17,101800,1023,1383,347,813,965,100,102503,61485,12583,572,20,8.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,-1.9,17,101700,970,1383,347,765,957,94,96092,60393,11824,534,360,7.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,-2.9,16,101600,847,1383,346,653,921,89,80925,57636,11106,495,350,7.4,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,-0.9,20,101500,664,1383,346,489,850,82,59165,49853,9895,429,330,8.8,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,0.9,23,101500,432,1383,346,291,709,70,33892,32264,8128,338,340,8.8,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,1.6,25,101500,172,1383,343,93,372,47,10220,1331,5163,205,340,8.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,1.2,27,101500,2,177,335,3,18,3,354,0,350,12,340,7.9,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,2.3,33,101600,0,0,328,0,0,0,0,0,0,0,350,5.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,2.8,40,101600,0,0,317,0,0,0,0,0,0,0,350,3.6,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,2.9,45,101600,0,0,310,0,0,0,0,0,0,0,350,3.4,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,3.9,53,101600,0,0,305,0,0,0,0,0,0,0,340,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,3.9,52,101700,0,0,306,0,0,0,0,0,0,0,10,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,3.8,62,101700,0,0,294,0,0,0,0,0,0,0,310,2.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,3.2,66,101600,0,0,287,0,0,0,0,0,0,0,320,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,2.7,44,101600,0,0,310,0,0,0,0,0,0,0,170,1.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,2.2,50,101600,0,0,299,0,0,0,0,0,0,0,310,2.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,2.1,63,101600,0,0,284,0,0,0,0,0,0,0,340,2.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,1.8,61,101600,0,0,284,0,0,0,0,0,0,0,40,1.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,2.3,53,101700,51,824,296,28,136,23,2965,0,2444,96,300,2.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,2.7,45,101700,303,1383,309,189,580,62,21424,17638,7070,288,330,2.0,0,0,14.6,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,1.7,37,101700,553,1383,316,397,790,81,46973,43119,9662,413,340,3.8,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,1.8,32,101700,763,1383,328,583,886,94,70896,54332,11465,509,330,5.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,2.7,28,101600,919,1383,341,723,933,103,89469,58612,12751,578,320,3.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,2.1,25,101600,1010,1383,348,804,954,107,100467,60452,13425,614,310,5.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,1.0,23,101500,1029,1383,346,820,959,107,102840,61014,13441,614,320,4.4,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,-0.1,20,101400,975,1383,350,771,948,102,96288,60304,12797,582,320,3.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,-1.0,18,101400,852,1383,351,659,913,96,81190,57543,11865,532,300,2.9,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,-0.7,19,101300,668,1383,350,472,752,108,55867,47669,12836,569,270,4.9,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,0.3,21,101300,437,1383,349,273,624,76,31649,29839,8847,371,310,3.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,1.0,23,101300,176,1383,347,97,406,45,10715,1444,5016,199,310,1.6,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,4.4,33,101400,3,197,341,3,30,3,408,0,401,14,220,2.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,4.3,38,101400,0,0,330,0,0,0,0,0,0,0,210,2.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,3.8,43,101400,0,0,318,0,0,0,0,0,0,0,180,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,3.0,45,101500,0,0,310,0,0,0,0,0,0,0,190,2.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,4.5,56,101500,0,0,304,0,0,0,0,0,0,0,190,1.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,5.7,67,101600,0,0,299,0,0,0,0,0,0,0,140,0.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,6.6,74,101600,0,0,298,0,0,0,0,0,0,0,140,1.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,5.7,70,101600,0,0,297,0,0,0,0,0,0,0,130,1.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,6.8,75,101600,0,0,298,0,0,0,0,0,0,0,170,2.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.2,78,101700,0,0,298,0,0,0,0,0,0,0,170,3.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,7.3,81,101700,0,0,296,0,0,0,0,0,0,0,180,2.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,7.9,86,101800,0,0,295,0,0,0,0,0,0,0,150,2.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.4,86,101900,55,858,298,15,7,15,1715,0,1686,64,180,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,9.0,86,102000,310,1382,301,91,45,81,10058,1589,8974,374,220,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,9.5,82,102000,560,1382,307,217,113,171,24122,7957,19109,869,130,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,10.1,74,102100,770,1382,317,472,506,190,54286,36668,21984,1033,130,2.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,10.4,41,102100,926,1382,363,691,858,116,84583,52295,14284,656,160,1.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,9.0,38,102100,1016,1382,361,768,873,126,94672,54583,15582,722,240,1.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,9.2,51,102100,1035,1382,339,788,892,120,97734,54981,14974,692,240,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,7.6,39,102000,980,1382,349,744,891,112,92151,55019,13887,637,350,2.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,5.8,32,102000,857,1382,352,634,848,108,77405,52876,13252,601,350,2.7,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,4.5,29,102000,673,1382,351,475,770,100,56545,46347,11894,525,350,3.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,3.9,28,102000,442,1382,349,283,634,81,32632,30464,9314,393,300,3.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,4.4,30,101900,180,1382,349,93,330,50,10184,1942,5466,218,300,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,4.6,34,102000,4,217,340,3,19,3,408,0,402,14,310,1.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,6.3,49,102000,0,0,323,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,7.8,60,102100,0,0,318,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,7.9,66,102200,0,0,312,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.3,77,102200,0,0,304,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.2,77,102200,0,0,304,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,7.8,78,102200,0,0,301,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.7,86,102200,0,0,295,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,7.2,82,102200,0,0,294,0,0,0,0,0,0,0,310,0.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,7.2,80,102300,0,0,296,0,0,0,0,0,0,0,310,2.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,7.1,81,102300,0,0,295,0,0,0,0,0,0,0,340,1.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,6.7,72,102300,0,0,300,0,0,0,0,0,0,0,330,3.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,6.8,73,102400,59,893,300,31,160,25,3367,0,2642,104,350,3.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,7.7,68,102500,317,1381,310,195,581,62,22185,17396,7094,290,360,2.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,6.6,52,102500,567,1381,321,401,780,81,47494,41403,9619,412,350,1.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,6.2,45,102500,777,1381,330,584,875,92,71201,52054,11306,503,290,0.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,7.0,33,102600,932,1381,359,722,922,100,89606,55971,12441,565,270,3.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,5.5,25,102500,1022,1381,370,802,943,104,100518,58181,13089,598,280,1.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,4.5,28,102400,1040,1381,354,816,944,106,102512,58717,13314,609,60,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,4.9,26,102400,986,1381,362,765,926,104,95412,57460,13046,595,360,2.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,3.7,24,102300,862,1381,363,654,890,98,80480,55020,12104,545,360,2.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,3.5,23,102300,678,1381,364,492,824,87,59241,48213,10535,460,360,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,3.8,23,102300,446,1381,364,296,696,71,34534,32036,8348,349,360,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,5.0,26,102300,185,1381,363,99,396,46,11001,1756,5151,205,210,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,5.1,31,102300,4,237,349,4,33,4,493,0,482,17,210,0.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,5.7,38,102300,0,0,339,0,0,0,0,0,0,0,210,2.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,6.8,50,102400,0,0,326,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,7.2,58,102400,0,0,317,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,7.3,65,102400,0,0,311,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,7.8,67,102400,0,0,311,0,0,0,0,0,0,0,100,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,7.8,52,102400,0,0,328,0,0,0,0,0,0,0,90,2.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,7.7,52,102500,0,0,328,0,0,0,0,0,0,0,110,1.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.2,83,102500,0,0,294,0,0,0,0,0,0,0,110,1.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,7.1,83,102500,0,0,294,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.7,86,102500,0,0,289,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,6.8,55,102500,0,0,319,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,7.3,86,102500,64,927,292,34,178,26,3638,0,2763,109,150,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,8.4,68,102600,324,1381,314,199,585,62,22665,17744,7090,290,150,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,8.9,58,102600,573,1381,328,403,778,80,47838,40474,9560,411,150,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,9.0,52,102600,783,1381,336,583,860,95,70873,50332,11587,517,150,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,10.0,38,102500,938,1381,366,714,882,114,87656,53722,14106,648,280,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,9.8,30,102500,1028,1381,384,793,903,121,98192,55421,15019,695,260,1.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,8.4,25,102400,1046,1381,390,809,910,120,100564,56383,14966,691,140,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,9.5,25,102200,991,1381,399,762,904,113,94361,55005,14071,647,210,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,10.3,39,102200,867,1381,366,651,866,107,79505,51865,13144,597,160,2.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,9.4,37,102100,683,1381,366,491,796,97,58559,45802,11602,513,190,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,8.3,34,102000,451,1381,364,296,663,79,34166,30736,9203,389,200,2.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,7.9,34,102000,189,1381,361,100,360,51,11015,2352,5608,225,200,2.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,5.0,32,102000,5,258,348,4,26,4,515,0,504,18,200,3.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,4.9,41,102000,0,0,328,0,0,0,0,0,0,0,200,4.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,3.9,46,102000,0,0,314,0,0,0,0,0,0,0,210,4.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,4.0,50,101900,0,0,309,0,0,0,0,0,0,0,210,4.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,4.5,56,102000,0,0,305,0,0,0,0,0,0,0,200,2.4,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,5.7,63,102000,0,0,303,0,0,0,0,0,0,0,210,4.4,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,6.0,71,102000,0,0,297,0,0,0,0,0,0,0,190,3.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,5.6,69,102000,0,0,297,0,0,0,0,0,0,0,230,3.9,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,5.5,74,101900,0,0,292,0,0,0,0,0,0,0,120,2.7,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,5.1,74,101900,0,0,290,0,0,0,0,0,0,0,190,3.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,6.1,77,101900,0,0,293,0,0,0,0,0,0,0,140,0.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,6.2,80,101800,0,0,291,0,0,0,0,0,0,0,140,2.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,7.3,82,101900,69,962,295,34,131,28,3684,0,2994,119,170,2.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,7.8,76,101900,331,1380,303,194,494,75,21755,17835,8481,352,330,1.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,7.8,49,101900,580,1380,333,395,706,98,46180,39829,11507,502,80,1.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,7.9,51,102000,790,1380,330,579,831,104,70107,50280,12619,567,310,3.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,8.0,50,101900,944,1380,333,724,913,99,90015,54813,12312,559,340,3.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,5.4,39,101800,1033,1380,336,807,945,99,101695,57745,12519,570,320,4.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,3.6,35,101800,1051,1380,331,826,954,99,104407,58975,12600,573,330,8.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,1.4,29,101600,996,1380,331,780,949,95,98236,59076,12012,544,310,8.1,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,-0.6,25,101600,872,1380,329,671,923,88,83500,57089,10973,490,320,7.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,-0.7,25,101500,687,1380,329,509,864,79,62027,50672,9625,418,330,7.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,0.1,27,101500,455,1380,328,311,745,66,36653,34546,7733,321,330,7.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,0.5,29,101500,194,1380,327,109,458,45,12203,3176,5056,200,330,7.5,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,0.1,30,101400,6,278,321,5,48,5,621,0,599,22,340,5.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,0.6,34,101400,0,0,315,0,0,0,0,0,0,0,320,3.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,0.6,38,101400,0,0,308,0,0,0,0,0,0,0,320,4.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,0.5,41,101400,0,0,303,0,0,0,0,0,0,0,300,3.1,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,-0.1,40,101400,0,0,300,0,0,0,0,0,0,0,310,3.4,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,-1.1,37,101400,0,0,299,0,0,0,0,0,0,0,320,5.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,-1.1,38,101400,0,0,298,0,0,0,0,0,0,0,290,2.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,-1.1,40,101300,0,0,294,0,0,0,0,0,0,0,320,3.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,-1.2,43,101300,0,0,290,0,0,0,0,0,0,0,330,6.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,-1.7,42,101300,0,0,288,0,0,0,0,0,0,0,330,5.9,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,-1.7,42,101300,0,0,287,0,0,0,0,0,0,0,340,7.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,-1.7,43,101300,0,0,285,0,0,0,0,0,0,0,340,6.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,-1.6,42,101300,74,997,288,40,211,29,4344,0,3136,124,340,5.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,-1.0,41,101400,338,1379,294,213,612,64,24426,22078,7290,298,340,7.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,-0.5,38,101400,587,1379,302,419,791,83,49937,44915,9865,424,340,5.8,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,0.0,32,101400,796,1379,315,603,882,94,73841,54885,11545,514,330,6.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,0.1,26,101400,950,1379,331,743,936,98,92821,59042,12269,556,200,2.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,0.5,26,101400,1039,1379,334,824,956,103,103751,60561,13023,594,320,3.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,-0.1,25,101300,1056,1379,333,839,958,105,105800,60978,13255,605,330,5.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,-0.5,24,101300,1001,1379,334,788,943,103,98743,60150,12972,591,350,4.9,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,0.6,25,101200,877,1379,338,675,908,97,83388,57045,12061,543,330,3.6,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,0.8,25,101200,692,1379,339,510,843,87,61673,50336,10597,464,360,3.5,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,0.6,25,101200,460,1379,338,310,710,73,36221,34451,8579,359,10,2.8,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,0.4,25,101200,198,1379,336,108,405,50,12009,4337,5597,223,10,2.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,-1.0,26,101200,7,299,325,5,35,5,622,0,604,22,340,3.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,0.2,32,101200,0,0,318,0,0,0,0,0,0,0,320,2.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,1.8,44,101300,0,0,305,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,2.2,46,101300,0,0,304,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,2.3,52,101400,0,0,297,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,3.2,63,101400,0,0,290,0,0,0,0,0,0,0,110,0.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,2.9,65,101400,0,0,286,0,0,0,0,0,0,0,110,1.3,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,3.2,77,101500,0,0,278,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,2.9,83,101500,0,0,272,0,0,0,0,0,0,0,40,0.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,3.3,85,101500,0,0,273,0,0,0,0,0,0,0,40,0.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,3.3,82,101600,0,0,274,0,0,0,0,0,0,0,40,1.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.2,3.5,83,101600,0,0,275,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,5.2,59,101700,79,1031,305,43,223,30,4640,0,3272,130,270,1.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,6.6,53,101800,345,1378,320,218,624,62,24965,20864,7101,290,340,1.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,5.5,52,101900,594,1378,315,423,799,79,50546,43258,9451,406,360,1.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,5.1,44,101900,803,1378,324,605,881,92,74112,52944,11268,502,360,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,5.7,30,101900,956,1378,357,740,922,100,92224,56527,12521,569,190,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,6.2,25,101800,1045,1378,374,818,938,107,102627,57753,13462,616,190,1.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,7.0,26,101700,1062,1378,380,831,936,110,104260,57523,13828,634,170,2.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,5.4,20,101600,1006,1378,388,779,918,109,97130,57224,13639,625,190,1.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,4.0,28,101600,881,1378,352,665,877,104,81794,54902,12873,583,300,0.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,4.4,29,101600,697,1378,351,501,801,97,60116,48115,11614,513,300,2.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,4.7,31,101600,464,1378,348,254,411,116,28637,23876,13110,570,290,2.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,4.2,30,101600,202,1378,346,86,252,49,9549,2353,5455,217,290,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,3.1,32,101600,8,319,336,6,33,6,653,0,633,23,270,1.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,5.1,46,101600,0,0,322,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,5.6,54,101600,0,0,314,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,5.7,61,101600,0,0,306,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,6.1,67,101600,0,0,302,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,6.1,70,101700,0,0,299,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,6.1,76,101700,0,0,293,0,0,0,0,0,0,0,70,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,6.2,76,101700,0,0,294,0,0,0,0,0,0,0,70,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,6.7,89,101600,0,0,287,0,0,0,0,0,0,0,70,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.7,83,101600,0,0,291,0,0,0,0,0,0,0,70,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,6.7,84,101700,0,0,291,0,0,0,0,0,0,0,70,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,6.8,86,101700,0,0,290,0,0,0,0,0,0,0,70,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,7.9,54,101700,85,1066,327,16,0,16,1780,0,2696,71,70,1.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,8.8,55,101700,352,1378,330,123,92,100,13628,4225,11067,471,300,1.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,8.2,50,101700,600,1378,334,314,332,170,35360,23528,19165,875,310,2.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,7.8,42,101700,809,1378,345,504,513,203,58129,38529,23504,1113,310,2.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,7.7,38,101600,962,1378,352,731,879,117,90078,54851,14463,665,310,2.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,7.2,32,101600,1050,1378,362,810,904,120,100811,56613,15045,695,310,2.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,6.9,29,101500,1067,1378,369,825,910,120,102968,57013,15058,695,280,3.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,5.2,25,101400,1011,1378,368,776,901,115,96467,56835,14326,659,300,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,6.4,26,101300,886,1378,374,665,866,108,81506,53694,13263,603,310,2.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,4.4,22,101200,701,1378,374,503,794,99,60243,48046,11873,526,310,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,3.5,23,101200,469,1378,363,307,659,83,35552,33240,9615,407,310,1.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,3.0,25,101200,206,1378,352,108,347,56,11889,4980,6175,249,310,1.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,4.8,33,101200,9,340,343,6,0,6,644,0,992,26,270,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,7.8,49,101200,0,0,333,0,0,0,0,0,0,0,240,2.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,7.8,53,101200,0,0,327,0,0,0,0,0,0,0,220,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,7.7,63,101300,0,0,315,0,0,0,0,0,0,0,220,1.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,6.5,64,101300,0,0,306,0,0,0,0,0,0,0,220,1.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,5.0,64,101300,0,0,299,0,0,0,0,0,0,0,250,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,5.0,43,101300,0,0,325,0,0,0,0,0,0,0,140,1.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,5.1,45,101200,0,0,322,0,0,0,0,0,0,0,100,1.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,5.7,87,101200,0,0,284,0,0,0,0,0,0,0,160,0.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,6.2,89,101200,0,0,284,0,0,0,0,0,0,0,160,1.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,6.7,54,101200,0,0,319,0,0,0,0,0,0,0,120,1.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,6.6,90,101300,0,0,286,0,0,0,0,0,0,0,130,1.0,0,0,15.5,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,6.2,52,101300,103,1257,319,44,167,32,4839,0,3488,137,140,1.0,0,0,11.8,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,6.8,45,101400,359,1377,333,213,510,80,24007,20801,9067,379,180,1.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,7.9,69,101400,607,1377,310,412,694,106,48221,40764,12464,549,180,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,8.4,59,101400,815,1377,323,590,788,124,70749,49784,14868,679,190,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,8.8,32,101400,968,1377,372,695,755,164,83496,50958,19788,934,190,1.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,7.5,27,101300,1056,1377,379,717,617,244,84651,46993,28921,1406,240,2.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,5.1,33,101300,1072,1377,347,817,872,138,101053,56989,17132,798,200,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,1.4,23,101200,1016,1377,349,771,871,128,95262,57527,15882,735,300,2.1,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,3.7,19,101100,891,1377,380,663,846,116,81009,54339,14239,651,270,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.6,4.8,21,101100,705,1377,381,503,780,103,60101,47718,12392,551,260,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,6.7,30,101100,473,1377,363,308,648,85,35578,32382,9889,421,210,3.4,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,7.0,39,101100,211,1377,344,110,363,55,12188,4637,6072,245,210,4.4,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,9.0,52,101100,10,361,336,6,32,6,705,0,681,25,210,3.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,9.9,65,101200,0,0,324,0,0,0,0,0,0,0,220,4.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,8.6,71,101200,0,0,312,0,0,0,0,0,0,0,220,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,6.6,67,101300,0,0,305,0,0,0,0,0,0,0,220,2.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,6.3,70,101300,0,0,300,0,0,0,0,0,0,0,180,2.1,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,7.7,83,101300,0,0,297,0,0,0,0,0,0,0,180,2.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,7.1,83,101400,0,0,294,0,0,0,0,0,0,0,170,2.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,6.8,84,101400,0,0,291,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,7.1,89,101400,0,0,289,0,0,0,0,0,0,0,150,0.0,0,0,15.9,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,6.6,92,101400,0,0,284,0,0,0,0,0,0,0,10,0.2,0,0,14.5,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,6.0,89,101500,0,0,283,0,0,0,0,0,0,0,280,1.0,0,0,13.9,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,5.7,54,101600,0,0,314,0,0,0,0,0,0,0,280,0.0,0,0,10.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,6.9,95,101600,108,1279,284,44,133,34,4812,0,3680,145,340,0.0,0,0,13.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,8.2,80,101700,366,1376,301,211,452,91,23604,19982,10212,432,340,0.2,0,0,14.7,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,7.1,61,101700,614,1376,314,410,646,122,47524,40234,14202,633,340,1.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,6.6,52,101700,822,1376,321,592,766,135,70693,50375,16192,744,350,0.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,6.2,35,101700,974,1376,349,737,858,129,90315,55375,15887,736,290,2.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,6.4,34,101700,1062,1376,353,816,883,134,100922,56941,16675,776,310,2.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,4.1,31,101600,1077,1376,343,830,889,134,103015,58071,16731,777,330,2.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,1.6,24,101600,1021,1376,347,780,878,129,96390,57951,16001,741,300,2.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,1.0,22,101500,895,1376,349,667,837,122,81250,55229,14956,686,300,3.1,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,1.7,23,101500,710,1376,350,504,762,111,59997,48466,13214,590,280,3.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,3.7,28,101500,477,1376,350,308,628,90,35504,33070,10422,445,230,3.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,6.5,36,101500,215,1376,349,111,348,57,12267,5127,6284,254,230,4.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,9.5,50,101600,11,381,341,6,32,6,727,0,700,26,220,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,10.3,65,101600,0,0,327,0,0,0,0,0,0,0,220,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,8.2,64,101600,0,0,316,0,0,0,0,0,0,0,210,2.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,7.1,64,101700,0,0,310,0,0,0,0,0,0,0,200,1.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,6.7,67,101700,0,0,305,0,0,0,0,0,0,0,200,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,6.7,72,101800,0,0,300,0,0,0,0,0,0,0,140,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.6,74,101800,0,0,298,0,0,0,0,0,0,0,140,1.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,6.1,77,101800,0,0,293,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,6.1,49,101800,0,0,322,0,0,0,0,0,0,0,130,1.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,6.1,53,101800,0,0,317,0,0,0,0,0,0,0,130,1.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.2,81,101900,0,0,291,0,0,0,0,0,0,0,180,2.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.7,83,101900,0,0,291,0,0,0,0,0,0,0,170,1.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,6.8,83,102000,114,1304,292,51,185,35,5517,0,3864,152,200,2.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,7.2,81,102000,373,1375,295,227,543,80,25692,22641,9082,380,200,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,7.3,68,102100,620,1375,307,431,728,103,50712,42721,12167,535,330,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,7.8,61,102100,828,1375,318,614,829,115,74218,51643,13932,634,330,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,7.8,37,102000,980,1375,354,755,902,113,93565,55690,14023,644,330,2.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,7.7,32,102000,1067,1375,367,835,926,116,104421,57250,14609,673,260,3.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,7.0,37,101900,1082,1375,348,851,933,117,106624,57925,14679,676,300,2.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,5.6,33,101800,1025,1375,350,800,921,113,99785,57747,14199,653,270,2.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,5.3,30,101800,900,1375,354,688,891,105,84749,55361,12970,589,270,3.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,4.3,28,101700,714,1375,354,524,831,93,63277,49651,11245,496,280,3.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,3.9,27,101700,482,1375,353,325,710,77,38062,35225,8996,380,320,2.4,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,4.5,29,101700,219,1375,352,122,441,52,13590,5973,5767,231,320,1.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,5.3,35,101700,12,402,342,8,53,8,885,0,834,31,250,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,7.4,48,101700,0,0,332,0,0,0,0,0,0,0,220,2.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,9.0,60,101800,0,0,326,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,9.4,73,101800,0,0,314,0,0,0,0,0,0,0,220,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.3,80,101800,0,0,308,0,0,0,0,0,0,0,220,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,8.2,80,101800,0,0,302,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,7.7,81,101800,0,0,298,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.7,90,101800,0,0,287,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,6.6,90,101800,0,0,286,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.2,93,101800,0,0,282,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.6,96,101800,0,0,282,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,6.3,93,101900,0,0,282,0,0,0,0,0,0,0,130,0.0,0,0,15.3,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,8.0,55,101900,119,1326,326,55,222,36,6016,0,3927,154,130,1.0,0,0,10.4,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,9.3,50,102000,379,1375,341,236,576,77,26800,23156,8767,367,150,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,9.0,69,102000,627,1375,316,441,749,99,51991,42840,11744,516,150,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,9.5,59,102000,834,1375,329,623,841,112,75428,51326,13655,621,100,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,9.7,36,102000,986,1375,368,760,897,117,93906,54885,14513,669,100,1.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,7.7,24,101900,1072,1375,389,839,919,122,104627,57322,15259,705,230,1.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,6.9,31,101800,1087,1375,362,852,923,122,106521,57848,15294,706,60,1.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,4.7,26,101700,1030,1375,362,800,910,118,99589,57876,14764,680,280,1.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,3.1,15,101700,904,1375,396,688,878,110,84567,55929,13588,619,240,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,3.5,19,101600,718,1375,378,525,816,98,63134,49792,11863,526,300,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,4.7,25,101500,486,1375,367,326,694,80,37988,34986,9395,398,240,2.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,4.4,28,101500,224,1375,355,123,428,53,13690,6488,5955,239,240,2.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,4.6,31,101500,13,423,348,8,51,8,918,0,864,32,210,2.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,6.1,43,101500,0,0,333,0,0,0,0,0,0,0,230,3.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,6.0,47,101500,0,0,326,0,0,0,0,0,0,0,220,2.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,4.9,48,101500,0,0,316,0,0,0,0,0,0,0,160,0.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,4.2,52,101500,0,0,307,0,0,0,0,0,0,0,160,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,2.7,47,101500,0,0,305,0,0,0,0,0,0,0,210,2.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,2.3,50,101500,0,0,299,0,0,0,0,0,0,0,210,2.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,2.7,60,101500,0,0,290,0,0,0,0,0,0,0,160,2.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,1.6,54,101400,0,0,290,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,1.2,55,101400,0,0,287,0,0,0,0,0,0,0,160,2.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,2.3,43,101400,0,0,310,0,0,0,0,0,0,0,140,2.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,2.9,46,101400,0,0,309,0,0,0,0,0,0,0,150,2.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,4.2,67,101400,124,1344,292,32,12,31,3523,0,3411,132,150,2.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,6.2,69,101400,386,1374,301,153,142,113,16938,7577,12578,542,210,5.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,6.9,67,101500,634,1374,306,279,182,195,31288,13904,21969,1017,230,6.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,8.4,68,101500,840,1374,313,353,122,279,39884,10336,31651,1542,210,4.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,9.5,45,101500,992,1374,350,457,150,349,51981,13307,39950,1999,130,4.0,0,0,16.1,2134,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,10.7,50,101400,1078,1374,349,238,33,212,28438,2325,25473,1227,130,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,11.1,44,101300,1092,1374,361,226,9,219,23739,921,28428,1004,190,1.0,0,0,16.1,1398,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,11.2,44,101200,1035,1374,363,254,14,244,26601,1427,31763,1057,230,2.0,0,0,16.1,931,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,12.1,74,101100,909,1374,328,296,80,244,34153,6089,28225,1370,210,2.3,0,0,16.1,1173,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,12.3,77,101100,723,1374,327,189,29,174,21678,1980,20034,932,200,3.5,0,0,16.1,1963,9,999999999,22,0.0000,0,88,999.000,0.3,1.0 +2014,3,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,12.0,75,101000,490,1374,327,36,0,36,3969,0,5673,142,200,2.8,0,0,16.1,1810,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.1,78,101000,228,1374,325,12,0,12,1402,0,2110,52,200,2.2,0,0,16.1,1676,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.0,75,101000,15,444,322,1,0,1,92,0,145,3,220,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.4,77,101000,0,0,316,0,0,0,0,0,0,0,200,4.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.0,76,101000,0,0,309,0,0,0,0,0,0,0,200,3.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.0,86,101000,0,0,306,0,0,0,0,0,0,0,210,3.4,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.0,86,101000,0,0,306,0,0,0,0,0,0,0,230,5.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.0,86,101000,0,0,306,0,0,0,0,0,0,0,200,3.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.7,85,101000,0,0,305,0,0,0,0,0,0,0,210,3.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,7.9,81,101000,0,0,299,0,0,0,0,0,0,0,190,2.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.4,84,100900,0,0,300,0,0,0,0,0,0,0,210,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.9,86,100900,0,0,300,0,0,0,0,0,0,0,180,1.6,0,0,16.1,3497,9,999999999,17,0.0000,0,88,999.000,1.3,1.0 +2014,3,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.8,86,100900,0,0,300,0,0,0,0,0,0,0,210,2.9,0,0,15.7,2175,9,999999999,17,0.0000,0,88,999.000,2.0,1.0 +2014,3,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.4,90,101000,0,0,295,0,0,0,0,0,0,0,230,4.7,0,0,12.5,1348,9,999999999,17,0.0000,0,88,999.000,2.0,1.0 +2014,3,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,8.9,63,101000,130,1368,322,2,0,2,287,0,451,11,160,1.0,0,0,10.4,1433,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,9.0,64,101000,393,1373,320,61,11,58,6546,1005,8946,231,150,1.0,0,0,16.1,1640,9,999999999,17,0.0000,0,88,999.000,0.8,1.0 +2014,3,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,10.0,92,101000,640,1373,302,138,11,133,14605,1086,19136,515,150,3.0,0,0,15.7,1372,9,999999999,18,0.0000,0,88,999.000,1.0,1.0 +2014,3,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,9.9,89,101100,846,1373,304,304,133,223,35040,10105,25756,1235,150,2.4,0,0,12.9,1315,9,999999999,18,0.0000,0,88,999.000,1.3,1.0 +2014,3,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,9.3,57,101000,997,1373,332,147,2,146,15599,255,19700,615,140,3.0,0,0,12.9,893,9,999999999,17,0.0000,0,88,999.000,0.2,1.0 +2014,3,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,10.0,62,101000,1083,1373,330,210,7,204,22018,766,26623,927,140,2.0,0,0,9.7,1208,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,10.4,87,101000,1097,1373,308,295,19,280,30697,1985,35693,1290,150,5.5,0,0,16.1,763,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,11.0,77,100900,1039,1373,320,503,276,294,58317,22144,34278,1694,150,4.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,10.3,70,100900,913,1373,322,632,713,158,75534,47369,18987,892,160,4.9,0,0,16.1,2134,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,8.8,62,100900,727,1373,322,522,804,97,62893,47011,11709,520,210,7.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,7.5,57,100900,494,1373,321,327,680,83,38116,34056,9649,411,220,6.9,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,7.1,57,100900,232,1373,317,127,412,57,14088,7116,6375,258,220,6.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,6.8,61,101000,16,465,311,9,49,9,1043,0,982,37,230,4.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,7.8,72,101100,0,0,306,0,0,0,0,0,0,0,210,3.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,7.8,75,101200,0,0,303,0,0,0,0,0,0,0,170,2.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,7.8,77,101200,0,0,302,0,0,0,0,0,0,0,200,4.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,7.9,78,101300,0,0,301,0,0,0,0,0,0,0,200,5.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.3,1.0 +2014,3,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.2,82,101400,0,0,300,0,0,0,0,0,0,0,210,4.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,7.9,81,101400,0,0,299,0,0,0,0,0,0,0,190,2.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.3,83,101500,0,0,299,0,0,0,0,0,0,0,160,3.0,0,0,16.1,2286,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,8.4,89,101400,0,0,296,0,0,0,0,0,0,0,160,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,8.9,89,101500,0,0,298,0,0,0,0,0,0,0,150,2.1,0,0,16.1,2232,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,8.8,89,101500,0,0,298,0,0,0,0,0,0,0,170,2.0,0,0,16.1,1829,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,8.4,89,101600,0,19,296,0,0,0,0,0,0,0,150,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.0,87,101700,136,1372,300,25,0,25,2701,0,4062,106,170,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,9.4,88,101700,400,1372,302,91,0,91,9730,0,13854,366,170,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,9.4,55,101800,646,1372,334,276,180,191,30999,13341,21559,999,150,2.0,0,0,16.1,2743,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,9.3,48,101800,852,1372,344,412,198,289,46494,16944,32790,1604,170,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,8.9,44,101900,1003,1372,348,359,73,306,41375,6150,35406,1753,190,2.0,0,0,16.1,1530,9,999999999,17,0.0000,0,88,999.000,0.3,1.0 +2014,3,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,9.0,41,101800,1088,1372,354,544,202,384,62293,18181,44230,2225,220,3.0,0,0,15.3,3409,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,9.3,70,101800,1102,1372,316,397,136,287,46549,10762,33909,1667,220,0.6,0,0,10.4,1612,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,8.4,58,101800,1044,1372,324,512,214,349,58661,18813,40220,2011,220,5.0,0,0,16.1,2286,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,8.8,41,101800,917,1372,353,250,18,238,26054,1815,31742,963,210,2.0,0,0,16.1,2232,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,8.4,51,101700,731,1372,334,149,8,145,15745,828,20500,562,180,1.0,0,0,16.1,1837,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,8.0,62,101800,498,1372,318,115,8,112,12141,787,16569,440,200,2.4,0,0,16.1,1913,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,7.9,61,101800,236,1372,318,35,0,35,3779,0,5614,145,200,3.2,0,0,16.1,1981,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,8.3,65,101800,18,485,316,3,0,3,310,0,482,12,200,0.0,0,0,16.1,1963,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,8.4,68,101800,0,0,314,0,0,0,0,0,0,0,200,0.0,0,0,16.1,1829,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,8.8,72,101900,0,0,312,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,8.4,75,101900,0,0,307,0,0,0,0,0,0,0,220,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.0,78,102000,0,0,307,0,0,0,0,0,0,0,220,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.4,84,102000,0,0,305,0,0,0,0,0,0,0,210,2.0,0,0,16.1,2420,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,9.3,85,102000,0,0,304,0,0,0,0,0,0,0,120,1.3,0,0,16.1,2232,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.0,81,102000,0,0,305,0,0,0,0,0,0,0,120,0.0,0,0,16.1,1829,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.5,84,102000,0,0,305,0,0,0,0,0,0,0,130,0.0,0,0,16.1,1740,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,9.8,88,102000,0,0,304,0,0,0,0,0,0,0,130,0.3,0,0,16.1,1026,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.3,83,102000,0,0,305,0,0,0,0,0,0,0,130,1.5,0,0,16.1,1040,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,9.4,86,102100,0,44,303,0,0,0,0,0,0,0,120,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,9.3,84,102100,142,1372,304,45,55,40,4957,0,4340,171,130,2.5,0,0,16.1,1688,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,9.3,75,102100,407,1372,311,144,174,92,16233,8155,10429,444,130,2.3,0,0,16.1,1202,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,9.5,67,102200,653,1372,321,311,263,186,35057,19175,21049,974,160,3.1,0,0,16.1,2743,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,10.0,67,102200,858,1372,324,526,478,228,60609,36542,26332,1266,200,3.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,10.0,38,102200,1008,1372,367,576,402,281,66806,32161,32709,1610,200,2.0,0,0,16.1,1036,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,10.0,37,102100,1093,1372,369,728,652,209,87440,45827,25199,1211,220,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,9.9,54,102100,1107,1372,338,566,311,315,65935,25337,36891,1825,190,4.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,9.4,52,102000,1048,1372,338,600,332,347,68854,28809,40012,2001,180,3.5,0,0,16.1,1433,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,9.3,52,101900,921,1372,337,495,291,300,56371,24738,34307,1692,190,3.2,0,0,16.1,2080,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,9.5,53,101900,735,1372,337,191,37,171,22058,2612,19844,922,190,4.1,0,0,16.1,1667,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,9.5,53,101800,502,1372,338,112,7,109,11891,695,16222,430,230,4.1,0,0,16.1,1591,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,10.1,56,101800,240,1372,337,72,110,53,8058,1620,5912,238,230,4.2,0,0,16.1,1524,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.4,67,101900,19,506,326,7,8,7,818,0,807,30,240,4.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,9.0,65,101900,0,0,320,0,0,0,0,0,0,0,250,5.2,0,0,16.1,2366,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,9.4,67,101900,0,0,320,0,0,0,0,0,0,0,230,5.6,0,0,16.1,1900,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,9.5,70,101900,0,0,317,0,0,0,0,0,0,0,230,4.5,0,0,16.1,2438,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.0,78,101900,0,0,313,0,0,0,0,0,0,0,200,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,9.9,79,101900,0,0,311,0,0,0,0,0,0,0,190,2.6,0,0,16.1,2438,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.4,75,101900,0,0,312,0,0,0,0,0,0,0,150,2.7,0,0,16.1,2438,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.3,77,101900,0,0,310,0,0,0,0,0,0,0,150,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,8.9,54,101800,0,0,332,0,0,0,0,0,0,0,140,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,8.9,54,101700,0,0,333,0,0,0,0,0,0,0,140,2.0,0,0,16.1,3157,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.0,75,101700,0,0,310,0,0,0,0,0,0,0,160,2.7,0,0,16.1,1651,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.5,78,101800,0,71,310,0,0,0,0,0,0,0,180,3.5,0,0,16.1,1463,9,999999999,17,0.0000,0,88,999.000,0.3,1.0 +2014,3,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.0,83,101700,149,1371,309,8,0,8,896,0,1374,34,140,3.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,2.3,1.0 +2014,3,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.1,84,101700,413,1371,309,24,0,24,2712,0,3963,98,160,3.0,0,0,15.2,2214,9,999999999,18,0.0000,0,88,999.000,3.3,1.0 +2014,3,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,11.3,91,101800,659,1371,310,41,0,41,4512,0,6282,159,150,2.2,0,0,7.3,1599,9,999999999,20,0.0000,0,88,999.000,2.3,1.0 +2014,3,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,11.8,93,101800,864,1371,311,87,0,87,9395,0,12409,345,140,2.7,0,0,8.4,1325,9,999999999,20,0.0000,0,88,999.000,2.0,1.0 +2014,3,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,12.3,75,101800,1014,1371,328,133,1,132,14241,154,17936,565,130,3.0,0,0,10.9,2116,9,999999999,22,0.0000,0,88,999.000,1.8,1.0 +2014,3,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,12.8,71,101700,1098,1371,335,164,3,161,17439,340,21304,747,160,2.0,0,0,8.2,1998,9,999999999,22,0.0000,0,88,999.000,0.8,1.0 +2014,3,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,12.8,71,101700,1111,1371,335,260,12,250,27286,1211,32105,1178,150,2.0,0,0,9.5,1998,9,999999999,22,0.0000,0,88,999.000,0.8,1.0 +2014,3,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,12.9,65,101600,1052,1371,342,173,4,170,18405,391,22617,752,170,1.0,0,0,9.8,811,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,12.2,62,101600,925,1371,343,169,2,167,17924,235,22767,679,160,1.0,0,0,16.1,2240,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,12.2,68,101500,739,1371,336,111,0,111,11905,0,15940,431,120,2.0,0,0,16.1,3021,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,12.2,80,101500,507,1371,323,33,0,33,3684,0,5259,131,190,1.7,0,0,16.1,2792,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,12.1,93,101500,245,1371,313,13,0,13,1458,0,2190,54,190,1.5,0,0,16.1,2573,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2014,3,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,11.6,93,101500,21,527,310,0,0,0,35,0,57,1,160,1.6,0,0,16.1,2491,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2014,3,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.0,92,101500,0,0,307,0,0,0,0,0,0,0,160,2.1,0,0,16.1,2807,9,999999999,20,0.0000,0,88,999.000,0.3,1.0 +2014,3,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,10.6,91,101500,0,0,306,0,0,0,0,0,0,0,200,2.0,0,0,16.1,2134,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,10.5,97,101500,0,0,302,0,0,0,0,0,0,0,180,1.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2014,3,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,9.9,95,101500,0,0,299,0,0,0,0,0,0,0,180,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,1.3,1.0 +2014,3,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,8.7,89,101600,0,0,297,0,0,0,0,0,0,0,200,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,7.1,66,101600,0,0,308,0,0,0,0,0,0,0,130,1.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,6.7,65,101600,0,0,307,0,0,0,0,0,0,0,130,1.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,6.6,97,101600,0,0,282,0,0,0,0,0,0,0,130,0.0,0,0,14.6,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,5.8,98,101700,0,0,277,0,0,0,0,0,0,0,120,0.0,0,0,6.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,5.0,61,101700,0,0,302,0,0,0,0,0,0,0,120,1.0,0,0,5.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,3.9,56,101700,1,99,302,0,0,0,0,0,0,0,130,1.0,0,0,4.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.5,6.8,95,101800,155,1370,283,78,312,42,8534,0,4673,185,70,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,7.9,89,101900,420,1370,294,272,655,71,31510,27923,8277,345,100,1.9,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,8.3,56,101900,665,1370,326,478,806,87,57464,45255,10441,457,140,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,8.1,52,101900,870,1370,331,656,876,100,80738,52672,12312,557,160,2.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,6.8,41,101900,1019,1370,339,783,891,120,97194,56109,14997,693,220,2.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,7.7,42,101900,1103,1370,344,855,897,133,106488,56830,16637,772,170,2.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,7.2,57,101900,1116,1370,318,677,424,331,78770,35783,38792,1923,160,1.8,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,7.1,55,101800,1057,1370,320,660,453,310,76562,37932,36227,1794,180,4.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,6.1,52,101800,929,1370,319,464,236,304,52957,20526,34889,1721,210,4.8,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,5.9,53,101700,743,1370,316,327,158,241,36802,13111,27287,1301,210,6.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,5.8,52,101700,511,1370,317,284,479,106,32638,27340,12192,530,210,5.9,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,5.6,52,101700,249,1370,315,135,382,65,14901,9236,7256,296,210,5.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,5.6,58,101700,23,547,308,11,47,11,1236,0,1155,44,220,5.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,5.5,62,101800,0,0,304,0,0,0,0,0,0,0,210,4.4,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,4.5,62,101800,0,0,298,0,0,0,0,0,0,0,220,3.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,5.1,69,101800,0,0,294,0,0,0,0,0,0,0,210,3.4,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,5.7,78,101800,0,0,290,0,0,0,0,0,0,0,220,2.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.1,86,101800,0,0,286,0,0,0,0,0,0,0,240,2.9,0,0,16.1,2268,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,6.2,86,101800,0,0,286,0,0,0,0,0,0,0,140,1.5,0,0,16.1,2098,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.7,86,101700,0,0,289,0,0,0,0,0,0,0,170,1.3,0,0,16.1,1864,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,6.7,58,101600,0,0,314,0,0,0,0,0,0,0,140,1.0,0,0,16.1,2098,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,6.6,62,101600,0,0,310,0,0,0,0,0,0,0,130,1.0,0,0,16.1,1829,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,6.1,59,101500,0,0,309,0,0,0,0,0,0,0,150,1.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,6.2,62,101500,1,128,307,0,0,0,0,0,0,0,130,1.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,6.7,85,101400,161,1369,290,37,3,36,3928,249,5813,154,160,0.2,0,0,16.1,3317,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,6.7,76,101400,427,1369,296,174,155,125,19260,9082,13950,609,160,2.3,0,0,16.1,3048,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,6.6,71,101300,672,1369,301,250,92,205,28126,7182,23138,1081,170,3.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,6.0,65,101300,876,1369,303,214,19,202,22243,1907,27300,803,160,3.6,0,0,16.1,3048,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,5.5,41,101200,1024,1369,332,443,131,345,50761,11724,39737,1983,160,2.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,4.6,37,101100,1108,1369,334,327,40,295,38461,3259,34885,1713,180,3.0,0,0,16.1,2725,9,999999999,12,0.0000,0,88,999.000,0.3,1.0 +2014,3,31,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,6.3,62,101000,1120,1369,308,245,11,236,25378,1116,30234,1125,160,5.3,0,0,16.1,2484,9,999999999,13,0.0000,0,88,999.000,1.8,1.0 +2014,3,31,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.8,86,101000,1061,1369,295,208,7,203,21761,691,26592,906,240,6.7,0,0,13.2,1636,9,999999999,16,0.0000,0,88,999.000,0.3,1.0 +2014,3,31,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.2,89,101000,933,1369,290,138,1,137,14559,152,18782,558,240,4.1,0,0,14.3,1410,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,7.3,95,100900,747,1369,286,80,0,80,8621,0,11732,313,260,4.0,0,0,8.5,1226,9,999999999,15,0.0000,0,88,999.000,0.3,1.0 +2014,3,31,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.2,93,101000,515,1369,287,137,45,120,15565,2689,13698,602,200,3.3,0,0,12.5,1546,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,7.3,93,101000,253,1369,288,20,0,20,2248,0,3374,85,200,2.7,0,0,16.1,1864,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,7.7,93,101000,24,568,290,0,0,0,35,0,57,1,200,3.1,0,0,16.1,2134,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,6.6,90,101000,0,0,286,0,0,0,0,0,0,0,220,2.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,6.5,88,101100,0,0,287,0,0,0,0,0,0,0,120,1.6,0,0,14.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,6.9,92,101200,0,0,286,0,0,0,0,0,0,0,150,2.5,0,0,13.5,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,7.0,89,101300,0,0,289,0,0,0,0,0,0,0,160,2.2,0,0,12.2,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2014,3,31,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,7.8,89,101300,0,0,293,0,0,0,0,0,0,0,130,2.6,0,0,10.9,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,8.3,87,101300,0,0,297,0,0,0,0,0,0,0,280,0.0,0,0,9.7,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,8.8,92,101200,0,0,296,0,0,0,0,0,0,0,340,0.0,0,0,8.4,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,9.7,93,101200,0,0,300,0,0,0,0,0,0,0,340,0.0,0,0,7.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,10.1,92,101200,0,0,303,0,0,0,0,0,0,0,340,0.0,0,0,5.8,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,10.0,93,101200,0,0,301,0,0,0,0,0,0,0,340,0.0,0,0,4.5,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,10.8,96,101100,2,149,304,0,0,0,0,0,0,0,340,0.0,0,0,9.7,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,12.3,91,101200,166,1368,315,64,203,39,7085,0,4376,172,340,0.0,0,0,10.4,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.9,76,101200,431,1368,331,224,357,112,25061,18333,12533,544,340,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,13.3,64,101100,676,1368,346,476,784,89,57043,41974,10676,470,340,0.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,13.4,57,101100,880,1368,356,650,855,101,79862,48639,12386,562,340,1.6,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,13.8,55,101000,1028,1368,362,780,898,106,97523,51111,13252,608,340,1.9,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,13.3,51,100900,1111,1368,365,761,619,258,90008,45229,30708,1499,310,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,13.3,46,100900,1123,1368,373,740,520,313,86358,40836,36793,1820,310,0.4,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,13.3,49,100800,1064,1368,367,646,397,337,74287,32837,39026,1950,310,2.9,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,13.4,45,100700,936,1368,374,591,514,239,68502,38160,27874,1355,280,1.3,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,13.8,46,100600,750,1368,375,470,542,173,54193,36518,20082,938,280,0.1,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,14.2,50,100600,517,1368,372,278,389,131,31258,22508,14796,657,170,0.8,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,14.3,52,100600,256,1368,370,118,291,64,13046,5546,7062,289,170,1.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,14.0,55,100500,25,583,363,11,42,10,1187,0,1103,42,210,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,14.4,64,100500,0,0,353,0,0,0,0,0,0,0,210,1.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,14.5,75,100600,0,0,341,0,0,0,0,0,0,0,180,1.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,14.7,71,100600,0,0,347,0,0,0,0,0,0,0,160,2.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,12.9,62,100600,0,0,346,0,0,0,0,0,0,0,170,2.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,13.7,72,100600,0,0,340,0,0,0,0,0,0,0,170,2.6,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,12.1,69,100600,0,0,334,0,0,0,0,0,0,0,190,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.1,78,100600,0,0,319,0,0,0,0,0,0,0,200,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.2,81,100600,0,0,317,0,0,0,0,0,0,0,210,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.6,84,100600,0,0,317,0,0,0,0,0,0,0,230,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.2,84,100600,0,0,314,0,0,0,0,0,0,0,150,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,11.6,89,100700,2,180,313,2,0,2,257,0,398,10,180,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,11.1,83,100800,172,1368,315,71,166,50,7765,309,5506,221,210,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,11.2,80,100800,438,1368,318,191,222,120,21290,12224,13419,586,200,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,11.9,71,100900,682,1368,331,329,270,194,37128,19631,22033,1029,340,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,13.0,71,100900,885,1368,337,476,308,277,54110,24767,31647,1551,340,5.8,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,10.2,57,100900,1033,1368,336,608,364,333,69809,30974,38494,1920,330,6.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,7.3,47,100900,1116,1368,333,606,269,386,69678,24247,44683,2240,340,5.8,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,7.9,48,101000,1128,1368,335,526,182,376,60744,16092,43683,2183,340,6.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,8.9,46,101000,1068,1368,345,674,471,307,78404,38647,35855,1774,350,3.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,8.7,45,100900,940,1368,345,598,519,242,69544,40195,28263,1372,310,4.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,6.5,38,100900,754,1368,344,440,422,207,50201,32518,23779,1122,330,3.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,5.0,35,100900,521,1368,340,305,528,104,35131,30237,11983,521,330,3.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,3.0,31,100900,260,1368,337,150,483,58,16810,11325,6542,264,330,4.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,1.3,31,100900,27,604,327,14,73,12,1504,0,1348,52,350,3.4,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,3.1,43,100900,0,0,315,0,0,0,0,0,0,0,270,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,5.7,56,101000,0,0,325,0,0,0,0,0,0,0,260,3.0,3,3,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,5.4,51,101200,0,0,354,0,0,0,0,0,0,0,320,5.8,9,9,16.1,2438,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,-0.1,36,101200,0,0,337,0,0,0,0,0,0,0,320,6.8,8,8,16.1,2438,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-1.2,37,101300,0,0,312,0,0,0,0,0,0,0,320,7.6,3,3,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,-1.8,38,101400,0,0,322,0,0,0,0,0,0,0,330,6.8,8,8,16.1,2438,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,-2.8,37,101400,0,0,288,0,0,0,0,0,0,0,340,7.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,-2.7,39,101500,0,0,286,0,0,0,0,0,0,0,330,7.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,-2.1,43,101500,0,0,284,0,0,0,0,0,0,0,320,7.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,-1.7,46,101600,0,0,282,0,0,0,0,0,0,0,330,6.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,-1.6,47,101600,3,211,281,4,27,4,441,0,433,15,320,7.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,-1.1,47,101700,179,1367,284,98,387,47,10818,2462,5243,208,330,7.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,-1.0,43,101700,444,1367,291,256,486,98,29161,26614,11187,478,330,7.8,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,-0.5,41,101700,688,1367,296,508,831,89,61338,50310,10827,475,330,8.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,0.1,39,101800,891,1367,304,688,906,97,85281,57078,12127,547,340,8.8,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,1.3,38,101800,1038,1367,312,821,952,98,103900,59498,12477,567,320,8.5,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,2.7,38,101700,1121,1367,321,894,967,101,114024,59978,12983,589,330,6.4,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,2.1,34,101700,1132,1367,325,871,871,150,108190,58565,18752,873,330,8.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,1.1,30,101700,1072,1367,326,739,637,239,87862,49597,28624,1386,320,6.5,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,1.0,29,101700,944,1367,328,730,918,96,91311,57396,11994,542,320,4.8,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,0.3,28,101700,757,1367,326,563,861,86,68990,52194,10560,466,340,6.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,-0.3,28,101700,525,1367,324,352,729,72,41878,38137,8601,363,320,5.9,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,-0.5,28,101700,264,1367,321,125,275,72,13800,8544,7962,327,320,5.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,0.1,31,101700,29,624,319,10,21,9,1096,0,1049,39,330,4.9,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,1.3,38,101800,0,0,312,0,0,0,0,0,0,0,320,3.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,2.8,49,101800,0,0,303,0,0,0,0,0,0,0,290,2.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,2.8,50,101800,0,0,303,0,0,0,0,0,0,0,290,2.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,2.5,53,101800,0,0,297,0,0,0,0,0,0,0,240,2.3,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,0.7,44,101800,0,0,298,0,0,0,0,0,0,0,330,3.5,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,1.2,51,101800,0,0,292,0,0,0,0,0,0,0,340,3.1,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,1.7,57,101800,0,0,288,0,0,0,0,0,0,0,330,2.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,1.8,60,101900,0,0,285,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,2.2,68,101900,0,0,280,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,2.3,74,102000,0,0,276,0,0,0,0,0,0,0,130,0.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,3.1,82,102000,4,243,274,4,30,4,462,0,451,16,130,1.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,5.1,73,102100,185,1366,291,97,372,47,10764,1895,5197,207,130,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,5.5,60,102100,451,1366,305,293,663,74,34109,30952,8651,363,130,0.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,5.1,51,102100,694,1366,314,495,794,92,59626,46861,11068,487,130,1.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,5.7,45,102100,896,1366,327,670,867,102,82802,53345,12616,572,320,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,5.8,41,102100,1043,1366,334,744,731,186,89720,51594,22525,1073,320,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,4.4,34,102000,1125,1366,338,873,928,108,110838,57644,13802,629,320,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,7.7,40,101900,1136,1366,347,815,723,214,98461,51638,25932,1240,320,0.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,7.1,38,101800,1076,1366,348,827,915,107,104317,55764,13495,617,320,2.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,6.4,35,101700,948,1366,350,711,878,102,88470,53785,12784,582,320,1.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,4.1,29,101600,761,1366,350,548,814,94,66648,49352,11475,510,270,2.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,2.1,26,101600,529,1366,345,352,704,79,41525,37516,9383,399,310,2.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,0.5,23,101600,268,1366,343,150,481,56,16954,11749,6322,255,310,1.3,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,-0.1,22,101600,31,645,342,14,76,13,1566,0,1380,53,310,0.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,3.5,40,101600,0,0,322,0,0,0,0,0,0,0,160,0.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,5.2,55,101600,0,0,310,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,6.5,60,101600,0,0,311,0,0,0,0,0,0,0,190,1.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,5.1,49,101600,0,0,318,0,0,0,0,0,0,0,190,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,6.2,57,101600,0,0,313,0,0,0,0,0,0,0,150,1.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,6.7,70,101600,0,0,302,0,0,0,0,0,0,0,120,2.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,6.8,74,101500,0,0,299,0,0,0,0,0,0,0,180,1.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,7.7,76,101400,0,0,302,0,0,0,0,0,0,0,150,1.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,6.7,70,101400,0,0,302,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.7,75,101400,0,0,298,0,0,0,0,0,0,0,150,2.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.8,75,101400,6,274,298,4,21,4,515,0,505,18,150,1.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,8.0,67,101400,192,1365,312,96,314,52,10532,2416,5694,228,200,2.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,9.5,69,101400,457,1365,319,277,570,86,31885,27478,9968,424,200,3.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,10.6,66,101400,700,1365,328,477,710,113,56474,42492,13399,601,200,2.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,10.4,57,101400,902,1365,337,661,833,111,81010,50206,13657,625,270,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,9.1,49,101400,1048,1365,340,793,894,107,99621,53713,13480,618,280,1.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,10.6,53,101400,1130,1365,344,751,581,271,88907,44000,32212,1571,290,4.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,10.6,55,101300,1140,1365,341,535,189,377,61761,16368,43775,2186,280,4.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,10.5,56,101300,1079,1365,339,351,40,320,40767,3271,37348,1854,300,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,10.1,55,101200,951,1365,338,256,20,242,26765,2077,32015,997,290,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,10.7,55,101200,765,1365,341,321,141,242,36190,11254,27449,1315,320,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,11.1,56,101200,533,1365,343,257,289,145,28866,18325,16298,730,320,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,11.1,55,101200,272,1365,345,139,387,62,15511,8801,6935,283,320,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,11.0,60,101200,33,666,338,14,55,12,1509,0,1367,52,300,1.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.6,70,101200,0,0,323,0,0,0,0,0,0,0,220,0.4,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,10.5,73,101200,0,0,320,0,0,0,0,0,0,0,220,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,9.3,78,101300,0,0,309,0,0,0,0,0,0,0,230,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,9.0,83,101300,0,0,303,0,0,0,0,0,0,0,240,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,9.3,84,101400,0,0,305,0,0,0,0,0,0,0,230,2.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,8.8,89,101400,0,0,298,0,0,0,0,0,0,0,240,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.2,89,101400,0,0,295,0,0,0,0,0,0,0,270,0.2,0,0,15.7,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.3,90,101400,0,0,290,0,0,0,0,0,0,0,270,1.3,0,0,13.3,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.6,92,101400,0,0,290,0,0,0,0,0,0,0,340,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,6.1,83,101400,0,0,288,0,0,0,0,0,0,0,340,2.1,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,6.4,89,101500,7,306,285,5,34,5,600,0,581,21,300,1.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.0,82,101500,198,1365,299,107,385,52,11856,3362,5704,229,310,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,6.0,58,101500,463,1365,310,313,691,78,36372,33345,9108,385,310,2.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,4.8,48,101500,706,1365,317,520,819,96,62547,49236,11616,514,290,4.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,3.3,38,101500,907,1365,324,697,882,110,85765,56126,13618,621,290,5.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,3.4,37,101500,1053,1365,327,825,916,119,103160,58587,14879,685,290,2.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,4.4,36,101400,1134,1365,335,896,929,124,112803,59103,15619,717,290,2.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,7.8,45,101400,1144,1365,339,901,926,125,113417,57518,15770,725,170,2.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,7.9,44,101300,1083,1365,342,842,908,122,105352,56438,15303,707,170,4.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,8.3,44,101200,955,1365,343,722,855,123,88559,53754,15204,703,210,7.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,8.5,48,101200,768,1365,339,551,762,122,65733,47938,14606,664,230,8.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,8.3,52,101200,536,1365,332,261,271,154,29197,18247,17346,780,230,8.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,8.2,54,101200,276,1365,328,75,16,72,7959,1370,11076,295,230,8.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,7.6,58,101200,35,686,319,7,0,7,761,0,1167,30,240,6.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,6.0,59,101300,0,0,309,0,0,0,0,0,0,0,240,6.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,5.0,58,101300,0,0,318,0,0,0,0,0,0,0,240,6.8,3,3,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,4.7,60,101400,0,0,325,0,0,0,0,0,0,0,230,3.4,7,7,16.1,3658,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,2.7,53,101400,0,0,298,0,0,0,0,0,0,0,150,2.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,2.3,55,101400,0,0,303,0,0,0,0,0,0,0,220,5.2,2,2,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,3.1,60,101400,0,0,298,0,0,0,0,0,0,0,240,6.1,1,1,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,5.1,72,101300,0,0,336,0,0,0,0,0,0,0,230,5.8,10,10,16.1,2760,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,5.6,77,101200,0,0,335,0,0,0,0,0,0,0,240,6.0,10,10,16.1,2878,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,5.5,77,101200,0,0,334,0,0,0,0,0,0,0,220,4.3,10,10,16.1,2760,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,4.1,73,101100,0,0,321,0,0,0,0,0,0,0,220,5.9,9,9,16.1,2896,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,2.3,68,101200,9,338,297,6,0,6,642,0,991,26,260,3.7,5,5,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,3.1,70,101100,205,1364,300,109,314,62,11899,5528,6778,275,230,4.1,5,5,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,1.7,58,101100,469,1364,304,313,661,86,36292,34513,9969,424,270,3.9,5,5,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,1.6,52,101100,711,1364,308,523,814,98,62918,50197,11863,526,320,2.5,4,4,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,0.3,44,101100,912,1364,296,704,894,106,87050,57242,13111,596,320,1.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,-2.1,36,101000,1058,1364,294,837,942,107,105735,60622,13492,616,310,2.9,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,-1.2,36,101000,1138,1364,301,910,957,111,115746,61399,14150,644,310,4.9,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-1.5,36,100900,1148,1364,316,789,599,285,93667,49009,34015,1654,300,3.9,5,5,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,0.1,44,100800,1087,1364,325,440,150,321,51329,12988,37622,1860,240,5.9,8,8,16.1,2134,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,0.8,49,100800,959,1364,302,181,106,107,22577,6776,13355,609,250,3.8,2,2,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,1.2,50,100700,772,1364,293,436,369,227,49657,30174,26005,1236,210,5.3,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,1.3,51,100700,540,1364,293,347,641,93,40560,36568,10931,472,240,6.8,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,0.7,51,100800,280,1364,289,157,476,60,17778,13214,6774,275,240,7.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,1.1,59,100800,37,707,289,15,67,14,1700,0,1501,57,220,4.5,1,1,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,1.0,61,100800,0,0,314,0,0,0,0,0,0,0,20,7.2,9,9,16.1,2215,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,1.8,72,100900,0,0,284,0,0,0,0,0,0,0,80,6.7,2,2,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,2.1,78,100900,0,0,271,0,0,0,0,0,0,0,110,2.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,1.7,77,100900,0,0,271,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,1.7,83,100900,0,0,266,0,0,0,0,0,0,0,130,0.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.2,1.6,89,100900,0,0,262,0,0,0,0,0,0,0,130,1.3,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.8,1.1,89,100800,0,0,260,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.7,1.1,89,100800,0,0,259,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.1,1.0,93,100800,0,0,257,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.6,0.5,92,100800,0,0,270,0,0,0,0,0,0,0,160,0.0,5,5,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.5,0.3,92,100800,10,371,267,7,34,7,760,0,733,27,160,0.0,4,4,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.7,2.2,84,100900,211,1363,268,112,347,59,12356,5923,6464,261,160,0.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,2.3,73,100900,476,1363,277,313,619,97,35921,34038,11134,478,160,2.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,2.8,68,100900,717,1363,300,521,775,114,62102,49489,13607,610,160,1.8,5,5,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,2.9,63,101000,917,1363,323,659,740,161,79030,51980,19394,910,230,0.3,9,9,16.1,751,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,3.0,58,100900,1062,1363,330,531,209,368,60999,19122,42571,2131,230,2.6,9,9,16.1,1463,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,1.8,54,100900,1142,1363,321,491,137,376,57007,12416,43926,2184,240,2.0,8,8,16.1,1524,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,2.1,48,100900,1152,1363,314,404,317,136,50687,20802,17108,788,240,1.5,3,3,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,1.2,42,100900,1090,1363,334,859,914,128,107472,59898,16048,741,330,1.7,8,8,16.1,1494,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,1.4,43,100800,962,1363,315,742,882,120,91611,57573,14835,683,330,3.7,2,2,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,0.3,39,100800,776,1363,305,575,826,106,69671,52673,12832,576,330,4.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,-0.5,37,100800,544,1363,313,376,728,86,44324,40901,10154,436,350,4.6,2,2,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,0.0,40,100800,283,1363,316,167,510,61,18898,14848,6948,282,350,4.5,4,4,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,0.0,41,100800,40,728,299,17,84,15,1910,0,1647,63,340,3.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,0.1,48,100800,0,0,290,0,0,0,0,0,0,0,30,3.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,0.7,58,100900,0,0,282,0,0,0,0,0,0,0,170,0.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,1.2,66,100900,0,0,277,0,0,0,0,0,0,0,170,1.3,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,1.8,70,100900,0,0,277,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,2.1,78,101000,0,0,272,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,1.8,75,101000,0,0,273,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,2.1,82,101000,0,0,269,0,0,0,0,0,0,0,130,0.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,1.7,83,101000,0,0,266,0,0,0,0,0,0,0,130,1.3,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.3,1.7,89,101000,0,0,262,0,0,0,0,0,0,0,20,0.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.1,1.5,89,101100,0,0,261,0,0,0,0,0,0,0,20,1.5,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.2,0.3,87,101200,12,403,257,8,51,8,886,0,838,31,280,1.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.4,2.8,78,101300,217,1362,275,121,429,53,13498,6356,5886,236,280,0.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,2.9,68,101400,482,1362,284,326,694,80,38018,35468,9391,398,280,0.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,3.4,61,101400,723,1362,293,532,817,98,64118,50027,11900,528,180,0.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,4.0,59,101500,922,1362,299,605,582,211,71043,44246,24894,1193,180,1.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,4.5,54,101500,1067,1362,306,722,578,269,84993,46205,31852,1557,180,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,4.9,49,101500,1147,1362,316,804,637,268,95757,49694,32075,1555,180,2.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,3.5,43,101500,1156,1362,317,820,682,241,98560,51593,29148,1399,290,2.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,0.6,32,101500,1094,1362,320,855,908,126,107131,59412,15788,728,290,3.5,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,0.9,32,101500,966,1362,321,737,870,120,90994,56953,14853,684,300,2.8,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,0.7,31,101500,779,1362,322,570,805,109,68834,51724,13269,597,230,4.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,1.1,33,101500,547,1362,321,370,690,93,43374,39580,10908,471,210,5.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,-0.1,32,101500,287,1362,316,164,458,68,18418,14721,7604,311,210,5.8,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,3.4,47,101500,42,748,310,17,68,15,1861,0,1636,63,220,6.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,4.3,57,101600,0,0,302,0,0,0,0,0,0,0,210,4.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,4.1,63,101700,0,0,295,0,0,0,0,0,0,0,200,3.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,5.6,75,101800,0,0,292,0,0,0,0,0,0,0,200,3.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,5.6,78,101900,0,0,290,0,0,0,0,0,0,0,200,3.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,5.5,80,102000,0,0,287,0,0,0,0,0,0,0,160,2.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,4.9,79,102100,0,0,285,0,0,0,0,0,0,0,140,2.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,4.5,77,102100,0,0,284,0,0,0,0,0,0,0,170,2.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,5.0,80,102200,0,0,285,0,0,0,0,0,0,0,170,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,5.0,86,102200,0,0,280,0,0,0,0,0,0,0,170,2.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,4.9,86,102300,0,0,280,0,0,0,0,0,0,0,180,2.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.4,4.5,88,102400,14,434,277,8,25,8,866,0,838,31,140,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.5,5.0,79,102500,224,1361,286,116,301,66,12687,6596,7294,298,160,1.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,5.1,71,102500,488,1361,293,312,572,108,35653,32629,12311,534,180,3.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,5.7,66,102500,728,1361,300,515,727,127,60931,47124,15025,681,220,3.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,6.0,61,102600,927,1361,307,694,830,128,84664,53750,15715,727,160,3.4,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,5.7,56,102600,1071,1361,312,829,901,120,103731,56803,15061,694,220,1.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,6.6,55,102500,1151,1361,318,901,924,120,113909,57429,15205,695,220,2.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,6.0,49,102500,1160,1361,322,908,926,120,114971,57692,15189,693,220,3.7,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,5.4,44,102500,1098,1361,326,851,911,117,107126,57128,14765,678,220,3.9,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,3.9,40,102400,969,1361,324,736,877,112,91331,55604,13932,639,180,2.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,3.5,38,102400,782,1361,325,572,818,102,69457,50869,12428,557,200,5.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,3.6,40,102400,551,1361,322,375,714,86,44212,39422,10202,439,210,4.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,3.6,41,102400,291,1361,320,170,503,63,19215,14794,7089,289,210,4.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,6.1,56,102400,44,769,313,18,83,16,2019,0,1728,66,230,6.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,6.0,64,102400,0,0,304,0,0,0,0,0,0,0,220,4.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,5.6,67,102500,0,0,299,0,0,0,0,0,0,0,210,3.8,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,5.7,72,102500,0,0,295,0,0,0,0,0,0,0,220,5.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,6.2,78,102500,0,0,293,0,0,0,0,0,0,0,210,3.9,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.7,83,102600,0,0,291,0,0,0,0,0,0,0,180,2.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.7,83,102600,0,0,291,0,0,0,0,0,0,0,120,1.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.8,84,102500,0,0,291,0,0,0,0,0,0,0,150,2.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.2,86,102500,0,0,292,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,7.2,87,102500,0,0,291,0,0,0,0,0,0,0,180,1.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.1,92,102500,0,0,287,0,0,0,0,0,0,0,160,1.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,6.8,90,102500,16,466,287,3,0,3,384,0,596,15,160,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,7.3,86,102500,230,1361,292,65,37,59,7195,668,6515,264,200,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,7.8,82,102500,494,1361,298,246,303,137,27590,19026,15363,681,200,2.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,7.7,73,102500,734,1361,305,455,531,169,52641,37513,19633,911,170,2.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,6.7,61,102500,932,1361,311,657,693,182,78061,49256,21752,1033,220,2.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,6.8,55,102500,1076,1361,319,743,622,252,88028,47768,29967,1458,80,1.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,7.2,50,102400,1155,1361,328,806,616,283,95583,48238,33792,1644,80,2.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,7.0,49,102300,1163,1361,328,880,805,192,107623,55600,23599,1113,150,2.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,5.9,43,102200,1101,1361,331,836,840,157,103027,56004,19402,910,210,0.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,7.5,47,102100,972,1361,345,721,800,149,87530,53062,18199,853,210,2.1,2,2,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,7.4,46,102000,786,1361,334,557,726,138,66029,47762,16389,753,150,2.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,7.4,48,102000,555,1361,333,361,599,117,41522,36026,13527,597,220,4.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,8.9,55,101900,295,1361,331,160,360,82,17690,12644,9117,381,220,5.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,8.8,61,101900,46,789,323,17,47,15,1862,0,1692,65,230,4.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,7.5,66,101900,0,0,310,0,0,0,0,0,0,0,230,4.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,5.5,65,101900,0,0,301,0,0,0,0,0,0,0,220,4.4,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,5.0,69,101900,0,0,294,0,0,0,0,0,0,0,230,3.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,5.1,72,101900,0,0,292,0,0,0,0,0,0,0,210,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,5.6,78,101800,0,0,290,0,0,0,0,0,0,0,220,2.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,5.5,83,101800,0,0,285,0,0,0,0,0,0,0,140,1.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,5.0,83,101800,0,0,282,0,0,0,0,0,0,0,140,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,4.9,86,101800,0,0,280,0,0,0,0,0,0,0,140,2.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,4.4,85,101700,0,0,278,0,0,0,0,0,0,0,140,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,4.4,85,101700,0,0,278,0,0,0,0,0,0,0,130,1.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,4.6,85,101800,18,498,279,9,22,9,995,0,963,36,190,0.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,6.2,85,101800,236,1360,287,123,289,73,13396,7498,7946,327,190,2.7,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,6.8,76,101800,499,1360,297,324,580,112,36994,33428,12763,557,210,3.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,7.3,68,101800,739,1360,307,529,729,133,62421,47516,15788,720,220,2.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,7.9,64,101800,937,1360,314,706,816,143,85459,53568,17430,814,220,3.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,8.2,59,101800,1080,1360,322,839,879,141,103828,56331,17532,818,220,3.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,7.7,55,101800,1159,1360,324,874,799,193,106743,55055,23678,1119,220,2.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,6.8,47,101700,1167,1360,330,881,801,194,107783,55536,23800,1122,230,2.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,7.7,48,101700,1104,1360,333,859,877,146,106330,56755,18182,849,230,3.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,6.6,45,101600,976,1360,332,739,832,143,90131,54826,17463,816,230,4.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,6.8,46,101600,789,1360,331,571,755,134,67993,49426,15946,731,240,5.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,6.8,49,101500,558,1360,327,335,504,129,38312,31706,14762,656,230,5.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,7.7,55,101500,299,1360,324,121,168,84,13339,6170,9311,389,230,5.8,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,6.9,62,101600,49,810,311,16,17,16,1790,0,1725,66,220,6.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,4.2,59,101600,0,0,299,0,0,0,0,0,0,0,210,4.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,2.8,59,101600,0,0,292,0,0,0,0,0,0,0,200,3.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,2.9,65,101600,0,0,287,0,0,0,0,0,0,0,200,4.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,3.3,69,101600,0,0,285,0,0,0,0,0,0,0,200,5.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,3.3,71,101600,0,0,283,0,0,0,0,0,0,0,200,4.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,3.2,71,101600,0,0,283,0,0,0,0,0,0,0,200,4.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,2.7,73,101700,0,0,278,0,0,0,0,0,0,0,200,3.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,2.2,71,101700,0,0,278,0,0,0,0,0,0,0,200,3.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,2.3,71,101700,0,0,278,0,0,0,0,0,0,0,230,3.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,2.9,71,101800,0,0,281,0,0,0,0,0,0,0,220,3.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,3.5,74,101900,21,529,287,0,0,0,0,0,0,0,210,2.3,1,1,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,5.1,77,102000,242,1359,323,35,26,31,4163,201,3615,139,210,3.5,9,9,16.1,2575,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,5.7,75,102000,505,1359,328,209,174,145,23425,11469,16275,725,170,3.0,9,9,16.1,1207,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,6.1,71,102100,744,1359,344,159,18,150,16713,1773,21041,581,170,3.1,10,10,16.1,830,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,6.0,67,102100,942,1359,338,464,249,292,53281,21110,33697,1658,160,3.1,9,9,16.1,3353,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,7.6,66,102100,1084,1359,330,574,249,375,65934,22302,43371,2175,150,2.8,5,5,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,5.6,57,102100,1162,1359,340,558,147,432,64142,13826,49989,2504,120,4.1,8,8,16.1,1250,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,2.4,41,102200,1170,1359,332,794,579,296,94277,47017,35351,1716,270,4.2,5,5,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,3.7,44,102200,1108,1359,348,719,489,321,84065,41456,37694,1861,240,5.0,8,8,16.1,2134,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,2.4,39,102200,979,1359,328,656,535,270,76255,44301,31595,1546,220,4.5,2,2,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,3.0,41,102200,792,1359,316,533,541,217,61134,42931,25084,1192,220,4.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,3.9,47,102200,562,1359,323,307,339,168,34442,24480,18851,855,220,4.4,2,2,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,4.0,49,102300,303,1359,327,141,181,101,15385,8169,11049,468,220,4.7,4,4,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,4.4,56,102300,51,831,314,17,23,17,1920,0,1830,70,220,5.1,2,2,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,4.5,62,102400,0,0,298,0,0,0,0,0,0,0,220,4.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,5.0,72,102500,0,0,291,0,0,0,0,0,0,0,220,3.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,5.0,77,102600,0,0,287,0,0,0,0,0,0,0,220,3.4,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,4.9,80,102600,0,0,284,0,0,0,0,0,0,0,210,1.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,4.4,80,102600,0,0,282,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,4.3,85,102700,0,0,278,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.5,3.8,83,102700,0,0,277,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,3.4,89,102700,0,0,270,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,3.8,92,102700,0,0,271,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,3.3,89,102700,0,0,270,0,0,0,0,0,0,0,140,0.0,0,0,15.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.8,3.5,91,102700,23,561,270,9,20,9,1034,0,998,37,140,0.2,0,0,14.7,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,4.9,81,102800,248,1358,283,83,98,66,9237,2427,7280,297,140,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,4.5,73,102800,511,1358,288,247,282,141,27734,18542,15885,706,120,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,4.9,62,102900,749,1358,300,474,561,165,55146,39908,19247,892,120,1.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,4.3,52,102900,946,1358,308,606,526,240,70788,41587,28170,1365,120,1.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,3.7,45,102900,1089,1358,315,714,529,291,83905,43360,34332,1685,190,0.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,1.7,38,102800,1166,1358,315,779,524,329,91649,44468,38907,1904,190,2.6,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,-1.4,29,102800,1174,1358,314,776,508,337,91344,43911,39897,1951,190,2.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,0.8,33,102700,1111,1358,318,719,510,303,84589,42698,35790,1757,230,2.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,-0.8,28,102700,982,1358,321,696,707,185,83446,51987,22262,1058,280,0.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,-0.5,28,102600,796,1358,321,477,461,207,55024,36380,23960,1133,280,2.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,0.8,32,102600,565,1358,320,371,640,105,43224,38714,12251,535,220,2.6,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,0.7,33,102500,306,1358,317,147,283,83,16309,11315,9251,385,220,2.3,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,1.8,38,102500,54,851,316,19,30,18,2130,0,2006,77,230,0.4,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,6.8,61,102500,0,0,312,0,0,0,0,0,0,0,230,3.4,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,7.1,67,102600,0,0,307,0,0,0,0,0,0,0,220,2.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,6.7,70,102600,0,0,302,0,0,0,0,0,0,0,220,1.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.8,75,102500,0,0,298,0,0,0,0,0,0,0,200,1.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,7.2,80,102600,0,0,306,0,0,0,0,0,0,0,200,0.0,2,2,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,7.2,87,102600,0,0,291,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.1,89,102500,0,0,289,0,0,0,0,0,0,0,110,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.7,86,102500,0,0,306,0,0,0,0,0,0,0,110,1.3,5,5,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,6.7,87,102500,0,0,303,0,0,0,0,0,0,0,130,0.2,4,4,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,6.8,90,102500,0,0,293,0,0,0,0,0,0,0,130,2.1,1,1,15.9,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,7.3,86,102500,26,592,321,0,0,0,58,0,93,2,120,2.1,8,8,14.7,2134,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,7.9,82,102500,254,1358,311,17,0,17,1909,0,2871,71,150,2.1,3,3,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,8.4,76,102500,516,1358,324,199,177,131,22443,10976,14885,660,170,2.2,5,5,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,8.9,68,102500,754,1358,332,367,233,238,41486,18774,27001,1290,210,2.7,4,4,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,8.6,56,102400,951,1358,328,553,372,293,63529,31034,33826,1668,140,3.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,6.6,45,102400,1093,1358,350,738,621,239,88047,46673,28591,1384,140,1.3,4,4,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,6.2,41,102400,1170,1358,348,743,452,353,86862,38625,41552,2046,140,0.4,2,2,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,7.3,43,102300,1177,1358,339,739,434,363,86293,37175,42623,2100,350,2.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,8.0,41,102300,1114,1358,347,679,390,359,78603,33783,41828,2084,350,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,9.5,43,102200,985,1358,354,603,441,283,69790,35699,32957,1623,350,0.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,9.9,44,102100,799,1358,354,527,632,155,62050,42372,18364,854,350,3.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,10.3,47,102100,568,1358,351,317,416,143,35924,26674,16256,731,250,2.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,10.3,50,102100,310,1358,346,91,60,77,10110,2037,8607,358,250,2.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,12.8,64,102000,56,871,343,9,0,9,1045,0,1580,41,240,3.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,12.7,73,102000,0,0,340,0,0,0,0,0,0,0,240,3.5,1,1,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,12.2,76,102100,0,0,354,0,0,0,0,0,0,0,250,2.9,7,7,16.1,1676,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.2,84,102100,0,0,320,0,0,0,0,0,0,0,20,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,12.1,90,102000,0,0,315,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,11.6,93,102000,0,0,310,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,10.6,91,102000,0,0,306,0,0,0,0,0,0,0,250,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,10.5,93,102000,0,0,304,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.9,93,102000,0,0,301,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,9.3,92,101900,0,0,299,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,8.9,90,101900,0,0,298,0,0,0,0,0,0,0,250,0.2,0,0,15.7,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,9.0,95,101900,29,623,295,7,0,7,793,0,1211,32,250,1.5,0,0,13.3,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.1,83,101900,260,1357,309,82,51,72,9018,1352,7976,329,310,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,10.6,79,101900,522,1357,315,265,318,143,29765,20135,16137,721,260,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,10.7,66,101900,759,1357,328,520,716,119,61977,43799,14245,647,260,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,11.1,60,101800,955,1357,338,674,743,151,81413,47964,18308,860,280,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,11.1,54,101800,1096,1357,346,713,506,304,83289,40224,35759,1766,280,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,11.2,51,101700,1173,1357,351,780,510,339,91309,41364,39963,1964,270,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,11.8,48,101600,1180,1357,359,764,466,358,89108,38457,42056,2072,290,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,12.5,47,101500,1117,1357,365,710,463,329,82654,37362,38555,1912,290,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,14.4,54,101500,988,1357,367,645,568,232,75654,40565,27301,1328,200,2.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,14.7,55,101400,802,1357,368,559,755,113,67282,43425,13668,622,200,2.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,14.7,57,101400,572,1357,365,371,663,92,43507,33659,10823,472,230,4.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,15.0,60,101400,314,1357,362,174,466,66,19606,12569,7500,309,230,5.0,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,14.9,66,101300,59,892,354,27,106,23,2926,0,2440,96,210,4.4,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,14.3,71,101300,0,0,345,0,0,0,0,0,0,0,190,3.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,13.8,76,101400,0,0,337,0,0,0,0,0,0,0,200,2.7,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,13.3,78,101400,0,0,331,0,0,0,0,0,0,0,190,2.7,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,13.2,83,101400,0,0,326,0,0,0,0,0,0,0,190,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.7,87,101400,0,0,321,0,0,0,0,0,0,0,190,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,12.2,90,101400,0,0,315,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,12.1,92,101300,0,0,313,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.6,90,101300,0,0,312,0,0,0,0,0,0,0,140,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.1,93,101300,0,0,307,0,0,0,0,0,0,0,140,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.1,93,101300,0,0,307,0,0,0,0,0,0,0,140,1.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,11.2,92,101300,32,653,308,13,55,12,1476,0,1339,51,190,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,12.3,88,101400,266,1356,317,142,405,63,15863,8899,7052,288,190,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,13.3,80,101400,527,1356,330,291,431,123,32994,24671,14022,621,170,2.1,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,13.4,75,101400,764,1356,336,439,418,204,50181,30178,23380,1108,180,2.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,13.9,70,101400,960,1356,343,571,390,295,65427,31197,34028,1684,180,3.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,14.0,67,101300,1100,1356,347,730,568,270,86037,41855,31961,1566,200,3.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,14.4,61,101300,1177,1356,357,887,879,124,111814,50534,15733,719,200,4.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,14.4,57,101200,1183,1356,362,891,878,125,112421,50518,15846,723,230,4.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,14.4,58,101100,1120,1356,361,836,867,120,104963,49852,15137,698,190,4.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,14.4,59,101100,991,1356,359,624,489,267,72348,36858,31099,1529,230,5.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,14.2,61,101000,805,1356,355,426,283,258,48096,22323,29287,1420,210,5.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,13.8,64,101000,575,1356,350,251,193,170,28089,12983,19024,869,220,5.1,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,13.2,68,101000,317,1356,341,64,0,64,6916,0,9943,260,220,4.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,12.7,70,101000,62,912,336,10,0,10,1078,0,1632,42,220,5.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.1,72,101100,0,0,344,0,0,0,0,0,0,0,230,5.6,3,3,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.6,76,101200,0,0,364,0,0,0,0,0,0,0,230,5.0,9,9,16.1,3353,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.1,81,101200,0,0,355,0,0,0,0,0,0,0,210,4.4,9,9,16.1,3353,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.1,84,101200,0,0,353,0,0,0,0,0,0,0,170,3.0,9,9,16.1,3353,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.0,86,101200,0,0,328,0,0,0,0,0,0,0,190,2.5,4,4,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.7,85,101200,0,0,325,0,0,0,0,0,0,0,190,1.5,3,3,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,11.1,89,101200,0,0,358,0,0,0,0,0,0,0,190,1.6,10,10,16.1,2994,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,11.0,89,101200,0,0,357,0,0,0,0,0,0,0,190,2.5,10,10,16.1,2608,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.6,87,101200,0,0,356,0,0,0,0,0,0,0,200,2.2,10,10,16.1,2743,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.6,90,101300,0,0,354,0,0,0,0,0,0,0,210,3.1,10,10,16.1,2725,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,10.6,89,101300,35,684,355,8,1,8,904,87,1368,36,220,3.1,10,10,16.1,2537,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.7,87,101300,272,1355,358,78,37,71,8630,990,7841,323,210,3.2,10,10,16.1,2169,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,11.2,83,101300,532,1355,354,194,85,161,21644,5685,18022,815,220,4.2,9,9,16.1,2366,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.6,76,101400,769,1355,364,379,276,222,43079,21043,25399,1211,230,5.3,9,9,16.1,1900,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,11.2,66,101400,964,1355,372,700,777,147,84858,49749,17938,841,220,6.5,9,9,16.1,2402,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.3,69,101400,1104,1355,369,584,363,289,68614,28136,34111,1676,220,5.5,9,9,16.1,1241,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,11.7,68,101400,1180,1355,373,410,47,369,47698,3925,43220,2133,220,5.5,9,9,16.1,746,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,11.7,68,101300,1186,1355,384,265,25,243,31881,1762,29432,1406,240,3.7,10,10,16.1,853,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,11.8,68,101300,1123,1355,384,329,27,306,38526,2145,36095,1778,240,4.6,10,10,16.1,990,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,12.1,65,101300,994,1355,390,468,201,320,53585,16781,36887,1837,230,4.6,10,10,16.1,1031,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,12.1,66,101300,808,1355,389,263,52,231,29972,4014,26544,1275,230,4.6,10,10,16.1,1407,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,12.0,68,101300,578,1355,385,148,18,140,15702,1761,20313,546,240,4.2,10,10,16.1,932,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.2,73,101300,321,1355,381,80,8,79,8625,700,12076,320,200,5.6,10,10,16.1,1344,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,12.1,75,101300,65,933,378,16,17,16,1838,0,1752,67,210,4.5,10,10,16.1,1514,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.7,81,101300,0,0,369,0,0,0,0,0,0,0,210,3.6,10,10,16.1,2608,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.7,84,101400,0,0,356,0,0,0,0,0,0,0,210,3.4,9,9,16.1,2743,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.7,87,101400,0,0,328,0,0,0,0,0,0,0,200,2.2,3,3,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.7,91,101400,0,0,343,0,0,0,0,0,0,0,190,3.0,8,8,16.1,2438,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,11.7,93,101400,0,0,316,0,0,0,0,0,0,0,190,2.1,1,1,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,11.6,93,101400,0,0,348,0,0,0,0,0,0,0,150,2.0,9,9,16.1,1789,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.1,93,101400,0,0,345,0,0,0,0,0,0,0,170,1.3,9,9,16.1,1486,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,11.0,93,101400,0,0,344,0,0,0,0,0,0,0,160,0.2,9,9,16.1,1433,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,10.5,93,101400,0,0,314,0,0,0,0,0,0,0,160,1.3,2,2,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.9,93,101400,0,0,301,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,9.6,95,101400,38,714,298,14,36,13,1568,0,1462,56,160,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,11.2,88,101500,277,1355,311,146,314,82,15989,9998,8978,375,270,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,11.7,80,101500,538,1355,334,345,570,119,39423,32902,13637,602,270,0.0,3,3,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,11.5,74,101500,773,1355,347,544,705,141,64139,45128,16697,769,270,0.4,6,6,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,12.2,72,101500,968,1355,382,715,792,150,86609,50322,18199,855,270,1.6,10,10,16.1,593,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,12.2,69,101500,1108,1355,385,648,390,329,75329,31632,38466,1909,320,2.3,10,10,16.1,715,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,12.2,65,101500,1183,1355,391,621,211,436,71321,18948,50471,2521,330,0.2,10,10,16.1,830,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,12.3,62,101500,1190,1355,384,672,278,428,77417,24655,49624,2471,330,2.0,9,9,16.1,884,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,12.7,57,101400,1126,1355,387,710,457,330,82705,36746,38654,1915,330,1.3,8,8,16.1,884,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,11.5,53,101300,997,1355,368,656,556,246,76757,41739,29003,1415,330,0.2,4,4,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,10.2,48,101300,811,1355,349,473,433,214,54410,32519,24742,1180,330,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,9.7,47,101300,582,1355,359,262,212,171,29394,14919,19268,880,280,1.5,2,2,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,9.7,47,101300,325,1355,366,152,285,84,16948,10887,9378,393,280,1.6,4,4,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,11.7,57,101200,67,953,345,26,43,24,2855,0,2633,103,230,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,11.6,61,101200,0,0,339,0,0,0,0,0,0,0,220,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,10.6,64,101200,0,0,331,0,0,0,0,0,0,0,210,2.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.5,70,101300,0,0,323,0,0,0,0,0,0,0,220,3.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,8.9,67,101300,0,0,327,0,0,0,0,0,0,0,200,2.7,2,2,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,5.0,55,101300,0,0,314,0,0,0,0,0,0,0,210,3.0,1,1,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,5.2,56,101300,0,0,338,0,0,0,0,0,0,0,190,2.7,8,8,16.1,3658,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,6.6,66,101300,0,0,318,0,0,0,0,0,0,0,170,3.7,3,3,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,5.7,63,101300,0,0,351,0,0,0,0,0,0,0,190,4.2,10,10,16.1,3353,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,6.7,69,101300,0,0,349,0,0,0,0,0,0,0,190,4.5,10,10,16.1,3317,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,6.7,69,101300,0,0,340,0,0,0,0,0,0,0,210,4.3,9,9,16.1,3048,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,6.8,70,101300,41,744,340,0,0,0,58,0,94,2,210,5.7,9,9,16.1,2994,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,7.3,72,101400,283,1354,351,19,0,19,2072,0,3104,77,210,5.9,10,10,16.1,2555,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,7.6,70,101400,543,1354,354,151,28,139,17055,1827,15840,707,230,6.7,10,10,16.1,2232,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,6.1,59,101500,778,1354,358,184,22,171,21426,1557,20056,936,210,2.7,10,10,16.1,1811,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,6.0,53,101500,972,1354,366,416,111,336,47489,9934,38614,1924,200,3.1,10,10,16.1,1676,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,5.6,47,101500,1111,1354,372,452,78,387,52046,7120,44921,2249,220,3.1,10,10,16.1,1658,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,5.7,43,101400,1187,1354,370,626,235,420,72466,21571,48928,2427,180,3.3,9,9,16.1,1595,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,6.3,41,101400,1192,1354,379,743,415,377,86718,36104,44348,2178,200,4.9,9,9,16.1,2134,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,8.1,44,101300,1129,1354,384,605,346,317,70889,28251,37327,1838,180,3.3,9,9,16.1,2080,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,10.1,49,101300,1000,1354,390,734,773,163,88783,51156,19788,935,230,4.7,9,9,16.1,1693,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,11.3,55,101300,814,1354,379,401,363,183,46683,25393,21350,1007,220,5.7,8,8,16.1,1829,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,11.7,62,101300,585,1354,359,379,592,123,43585,35243,14184,632,240,5.7,5,5,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,12.1,66,101300,328,1354,348,168,326,89,18629,12661,9915,418,240,6.1,2,2,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.0,70,101200,70,974,327,14,0,14,1522,0,2298,60,230,8.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.5,72,101200,0,0,321,0,0,0,0,0,0,0,250,7.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.1,73,101300,0,0,318,0,0,0,0,0,0,0,230,7.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,10.6,77,101300,0,0,323,0,0,0,0,0,0,0,230,6.8,1,1,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.6,76,101300,0,0,357,0,0,0,0,0,0,0,230,7.0,9,9,16.1,3048,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.7,79,101300,0,0,365,0,0,0,0,0,0,0,200,4.7,10,10,16.1,2941,9,999999999,20,0.0000,0,88,999.000,0.5,1.0 +2011,4,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.2,84,101300,0,0,363,0,0,0,0,0,0,0,210,2.4,10,10,16.1,2005,9,999999999,20,0.0000,0,88,999.000,0.5,1.0 +2011,4,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.8,91,101300,0,0,360,0,0,0,0,0,0,0,200,4.1,10,10,16.1,985,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,11.4,93,101300,0,0,356,0,0,0,0,0,0,0,190,4.4,10,10,11.0,736,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,10.5,93,101400,0,0,341,0,0,0,0,0,0,0,210,2.8,9,9,16.1,1559,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.3,89,101400,0,0,337,0,0,0,0,0,0,0,210,4.5,9,9,16.1,1829,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,8.3,89,101500,44,773,313,17,62,15,1862,0,1646,63,210,4.0,5,5,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.2,85,101600,288,1353,313,161,422,72,17985,12961,7992,330,210,3.7,4,4,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,7.9,77,101600,548,1353,302,364,643,104,42226,36678,12088,528,210,4.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,8.2,72,101700,782,1353,322,471,466,202,54247,34913,23359,1105,130,1.9,3,3,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,7.8,62,101800,976,1353,342,611,478,266,71000,38200,31130,1524,40,0.0,7,7,16.1,792,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,6.6,56,101800,1115,1353,342,867,894,130,108567,56700,16343,755,40,2.6,7,7,16.1,975,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,5.7,45,101800,1190,1353,327,933,906,137,117636,57889,17292,789,340,2.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,6.1,45,101800,1195,1353,349,937,905,138,118125,57700,17408,793,340,0.2,5,5,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,6.1,43,101800,1131,1353,349,810,698,227,97582,51225,27438,1316,290,2.2,4,4,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,6.0,42,101700,1002,1353,345,644,517,261,75348,41180,30702,1501,290,2.7,2,2,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,5.6,40,101700,817,1353,335,570,717,137,68057,47647,16408,756,290,0.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,5.6,40,101700,588,1353,335,401,703,95,47222,40391,11253,491,360,1.7,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,5.6,39,101700,332,1353,336,196,516,70,22250,18544,7917,327,360,3.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,5.7,43,101600,73,994,330,36,153,28,3899,0,3020,119,310,2.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,7.0,56,101600,0,0,319,0,0,0,0,0,0,0,220,1.8,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,9.3,72,101700,0,0,315,0,0,0,0,0,0,0,230,3.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,8.8,72,101700,0,0,312,0,0,0,0,0,0,0,220,2.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,8.2,75,101600,0,0,306,0,0,0,0,0,0,0,220,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.7,80,101600,0,0,299,0,0,0,0,0,0,0,220,1.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,7.1,83,101600,0,0,293,0,0,0,0,0,0,0,240,2.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.7,90,101500,0,0,287,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,6.8,90,101500,0,0,287,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.2,89,101500,0,0,290,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.2,89,101500,0,0,290,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,7.3,89,101500,48,803,296,7,0,7,743,0,1143,29,240,0.0,1,1,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,8.3,87,101600,294,1352,342,66,3,65,7035,280,10129,267,190,0.0,10,10,16.1,4572,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,8.4,76,101600,553,1352,336,251,229,158,28193,15593,17785,803,190,0.0,8,8,16.1,4572,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,9.0,70,101600,787,1352,315,499,568,169,58297,39508,19781,924,190,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,9.2,65,101600,980,1352,321,539,295,325,61633,25410,37374,1860,190,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,7.7,53,101600,1118,1352,326,621,275,394,71468,24781,45604,2285,190,2.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,6.8,47,101500,1193,1352,330,691,328,401,80242,29228,46926,2314,190,2.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,7.8,50,101500,1198,1352,331,600,182,439,69275,16753,51032,2531,190,3.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,7.3,47,101400,1134,1352,333,602,269,376,69677,23682,43846,2184,240,5.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,3.6,37,101400,1005,1352,328,436,141,331,50162,12524,38330,1906,220,4.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,4.6,41,101300,820,1352,344,397,205,273,45001,17637,31121,1511,230,4.7,4,4,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,5.9,48,101300,591,1352,338,239,121,186,26738,9100,20929,961,220,5.8,3,3,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,6.4,52,101300,335,1352,335,128,148,91,14203,6408,10168,429,220,6.4,3,3,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,8.2,67,101300,76,1014,326,26,25,24,2808,0,2663,104,210,4.1,3,3,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,7.1,69,101300,0,0,343,0,0,0,0,0,0,0,190,4.1,9,9,16.1,3622,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,6.2,67,101400,0,0,348,0,0,0,0,0,0,0,210,4.0,10,10,16.1,3353,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,7.1,74,101400,0,0,347,0,0,0,0,0,0,0,200,3.0,10,10,16.1,3353,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,6.8,72,101400,0,0,347,0,0,0,0,0,0,0,160,2.8,10,10,16.1,3317,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,7.1,74,101400,0,0,347,0,0,0,0,0,0,0,130,4.0,10,10,16.1,3048,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.7,75,101400,0,0,334,0,0,0,0,0,0,0,190,3.5,9,9,16.1,3119,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,6.7,80,101300,0,0,329,0,0,0,0,0,0,0,180,2.5,9,9,15.9,3586,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,6.7,80,101300,0,0,339,0,0,0,0,0,0,0,180,2.0,10,10,14.7,3012,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,6.7,80,101300,0,0,339,0,0,0,0,0,0,0,170,1.6,10,10,16.1,2743,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,6.8,81,101200,0,0,339,0,0,0,0,0,0,0,190,2.6,10,10,16.1,2743,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,7.2,82,101300,51,831,340,11,0,11,1167,0,1779,47,180,2.7,10,10,16.1,2725,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,7.1,76,101300,299,1352,345,73,5,72,7744,467,11077,293,190,3.2,10,10,16.1,2591,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,6.5,67,101300,557,1352,350,185,62,159,20758,4304,17968,812,220,3.6,10,10,16.1,2555,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,4.9,54,101300,791,1352,347,315,104,254,35671,8750,28914,1392,240,3.5,9,9,16.1,2268,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,4.3,45,101300,984,1352,356,524,268,329,60080,23814,37924,1885,210,3.2,9,9,16.1,2205,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,4.0,41,101300,1122,1352,354,677,371,369,78477,33091,43022,2141,210,4.0,8,8,16.1,2743,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,4.3,40,101200,1196,1352,346,620,201,442,71549,18870,51403,2548,240,3.2,5,5,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,3.4,37,101200,1201,1352,366,527,111,428,61086,10331,49975,2466,180,3.5,9,9,16.1,1927,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,4.2,39,101200,1137,1352,367,387,38,355,45069,3336,41582,2058,210,3.1,9,9,16.1,1524,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,6.2,43,101100,1008,1352,373,381,65,332,43729,5674,38420,1913,220,3.0,9,9,16.1,1684,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,6.7,45,101100,823,1352,374,331,96,273,37526,8205,31053,1509,220,2.1,9,9,16.1,2833,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,7.0,45,101100,595,1352,374,171,22,161,17926,2163,23136,628,220,1.8,9,9,16.1,2300,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,7.2,47,101100,339,1352,384,79,7,77,8362,614,11817,312,260,1.9,10,10,16.1,1935,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,7.5,51,101100,79,1035,378,14,0,14,1515,0,2303,60,260,4.5,10,10,16.1,2654,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,9.5,61,101100,0,0,378,0,0,0,0,0,0,0,260,4.0,10,10,16.1,2016,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,10.6,71,101200,0,0,373,0,0,0,0,0,0,0,240,3.8,10,10,16.1,2303,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.6,78,101200,0,0,355,0,0,0,0,0,0,0,240,4.9,9,9,16.1,2438,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.6,84,101200,0,0,330,0,0,0,0,0,0,0,240,3.4,5,5,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.6,84,101200,0,0,350,0,0,0,0,0,0,0,250,2.3,9,9,16.1,2197,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.6,84,101200,0,0,350,0,0,0,0,0,0,0,240,3.6,9,9,16.1,1492,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.6,84,101200,0,0,359,0,0,0,0,0,0,0,230,3.5,10,10,16.1,1281,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.6,86,101200,0,0,357,0,0,0,0,0,0,0,220,3.2,10,10,16.1,1524,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.6,84,101200,0,0,359,0,0,0,0,0,0,0,220,4.0,10,10,16.1,1524,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.6,84,101200,0,0,359,0,0,0,0,0,0,0,220,3.7,10,10,16.1,1524,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.7,85,101200,54,860,359,21,49,20,2330,0,2122,82,210,4.7,10,10,15.9,1541,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,11.1,89,101300,304,1351,358,53,43,43,6148,867,5031,200,200,4.6,10,10,14.9,1523,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,11.1,83,101300,562,1351,364,131,27,120,15018,1587,13781,611,200,4.1,10,10,16.1,1665,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,11.1,74,101400,795,1351,363,356,149,268,40056,12348,30322,1471,210,6.2,9,9,16.1,668,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,11.0,67,101500,987,1351,370,563,350,307,64710,28915,35527,1762,220,6.3,9,9,16.1,869,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,10.7,62,101500,1125,1351,361,813,703,228,97639,50019,27484,1322,210,6.7,7,7,16.1,762,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,10.0,56,101400,1199,1351,351,836,603,302,99301,46719,36030,1737,220,4.5,3,3,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,10.1,55,101500,1204,1351,353,930,867,158,116020,55069,19779,908,200,3.8,3,3,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,10.6,54,101500,1139,1351,376,869,839,162,107316,53917,20072,940,190,5.6,8,8,16.1,1189,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,10.5,51,101400,1010,1351,361,750,785,163,90928,51665,19833,938,200,5.2,3,3,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,10.0,49,101500,826,1351,357,585,707,153,69276,46988,18226,849,220,6.3,2,2,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,9.4,50,101500,598,1351,348,393,603,127,45357,37331,14640,654,230,7.0,1,1,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,8.8,49,101500,342,1351,338,195,432,86,21808,17640,9614,404,230,7.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,8.2,55,101600,82,1055,328,37,113,31,4026,0,3297,130,220,7.9,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,7.8,63,101700,0,0,315,0,0,0,0,0,0,0,220,5.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,7.7,69,101700,0,0,308,0,0,0,0,0,0,0,220,4.9,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,7.2,69,101800,0,0,305,0,0,0,0,0,0,0,210,3.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,7.3,72,101900,0,0,303,0,0,0,0,0,0,0,200,4.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,7.8,75,101900,0,0,304,0,0,0,0,0,0,0,180,3.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,7.8,74,101900,0,0,318,0,0,0,0,0,0,0,180,2.7,3,3,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,7.9,73,101900,0,0,353,0,0,0,0,0,0,0,180,3.5,10,10,16.1,2286,9,999999999,16,0.0000,0,88,999.000,0.3,1.0 +2011,4,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.4,78,101800,0,0,351,0,0,0,0,0,0,0,200,6.4,10,10,15.9,2232,9,999999999,17,0.0000,0,88,999.000,0.3,1.0 +2011,4,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,9.5,86,101900,0,0,350,0,0,0,0,0,0,0,190,4.0,10,10,14.1,1829,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,10.0,89,101900,0,0,351,0,0,0,0,0,0,0,150,3.5,10,10,11.8,1775,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,10.0,89,102000,58,888,351,1,0,1,116,0,184,4,130,3.5,10,10,16.1,1318,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.6,85,102000,309,1350,352,19,0,19,2160,0,3212,79,150,5.4,10,10,16.1,891,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,9.3,82,102000,567,1350,353,59,0,59,6439,0,9036,232,120,3.7,10,10,16.1,914,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.0,73,102000,799,1350,360,126,7,121,13361,738,17134,476,150,4.2,10,10,16.1,866,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,8.9,68,102000,991,1350,354,354,54,314,40718,4593,36361,1805,170,4.6,9,9,16.1,828,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,9.5,60,102000,1128,1350,361,637,426,281,75332,32909,33441,1632,150,4.2,8,8,16.1,975,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,10.5,58,102000,1201,1350,354,587,262,354,68869,21531,41803,2038,180,4.7,4,4,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,9.1,49,101900,1206,1350,355,929,840,179,114947,55506,22205,1027,190,5.6,3,3,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,7.1,42,101800,1142,1350,358,880,858,154,109238,56107,19196,893,230,9.2,4,4,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,6.9,41,101800,1013,1350,340,771,854,131,95228,54681,16203,753,230,8.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,7.5,45,101700,828,1350,337,612,816,112,74375,50604,13610,619,230,9.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,8.3,51,101700,601,1350,334,418,729,94,49374,40948,11090,484,230,7.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,8.2,53,101700,346,1350,330,210,538,72,23846,19932,8226,341,230,5.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,7.9,57,101800,97,1228,339,42,167,30,4623,0,3322,130,240,8.3,4,4,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,8.3,68,101800,0,0,313,0,0,0,0,0,0,0,230,4.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,8.2,75,101800,0,0,306,0,0,0,0,0,0,0,230,4.9,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.7,80,101900,0,0,299,0,0,0,0,0,0,0,240,3.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,6.9,81,102000,0,0,294,0,0,0,0,0,0,0,240,2.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,5.0,72,102000,0,0,291,0,0,0,0,0,0,0,240,0.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,4.9,80,102000,0,0,284,0,0,0,0,0,0,0,240,1.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,3.9,80,102100,0,0,279,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,3.9,83,102000,0,0,277,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,3.9,89,102000,0,0,273,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.8,3.8,87,102100,0,0,274,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.5,3.3,75,102200,62,916,280,31,137,25,3330,0,2667,105,340,1.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,3.2,62,102200,314,1349,291,189,532,65,21448,17810,7396,303,320,3.8,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,2.7,50,102200,571,1349,302,332,481,128,38101,31180,14790,658,340,5.3,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,1.6,40,102200,803,1349,310,602,851,95,73859,52811,11721,524,350,7.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,1.0,35,102100,994,1349,316,773,911,101,97173,57495,12790,582,330,5.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,-0.2,29,102100,1131,1349,321,898,949,103,114916,59808,13235,599,330,4.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,-1.8,23,102100,1204,1349,327,963,958,108,123934,60881,13951,621,340,5.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,-2.9,21,102000,1209,1349,327,964,953,110,124022,61016,14204,632,290,5.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,-3.8,19,102000,1144,1349,328,903,941,106,115670,60357,13562,612,300,4.7,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,-3.1,19,101900,1016,1349,331,786,913,99,99376,58332,12601,573,320,5.6,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,-5.1,16,101800,831,1349,330,621,864,89,77047,54501,11106,495,260,4.9,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,-5.0,16,101800,604,1349,329,424,774,78,51057,44753,9392,403,300,3.4,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,-3.7,19,101800,349,1349,329,216,601,61,24995,22713,7032,287,300,2.5,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,6.2,44,101800,100,1242,330,46,232,29,5090,0,3213,125,240,4.8,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,6.7,53,101800,0,0,321,0,0,0,0,0,0,0,240,2.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,6.7,63,101800,0,0,309,0,0,0,0,0,0,0,230,3.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,6.6,69,101900,0,0,302,0,0,0,0,0,0,0,230,3.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,6.2,70,101900,0,0,300,0,0,0,0,0,0,0,210,2.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.7,75,101900,0,0,298,0,0,0,0,0,0,0,220,1.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,6.6,77,101900,0,0,296,0,0,0,0,0,0,0,170,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,5.5,77,101800,0,0,299,0,0,0,0,0,0,0,170,2.1,2,2,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,4.9,74,101800,0,0,289,0,0,0,0,0,0,0,200,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,4.3,77,101800,0,0,284,0,0,0,0,0,0,0,160,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,4.0,77,101900,0,0,282,0,0,0,0,0,0,0,140,1.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.5,5.0,79,101900,65,943,286,32,136,26,3470,0,2769,109,180,0.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,5.1,70,101900,319,1349,293,188,505,69,21263,17428,7776,320,180,2.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,5.6,63,101900,576,1349,303,393,707,91,46381,39904,10819,470,180,1.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,5.7,57,102000,807,1349,310,592,806,109,71808,50389,13325,603,220,0.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,6.0,48,102000,998,1349,323,737,792,151,89853,53005,18526,870,220,1.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,5.1,40,102000,1134,1349,332,755,527,313,88872,43451,36997,1814,220,0.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,5.5,36,101900,1207,1349,341,799,491,359,93890,41824,42490,2063,150,2.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,4.7,32,101900,1211,1349,345,861,629,296,102782,49880,35593,1700,150,2.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,3.0,28,101900,1147,1349,344,890,893,131,112067,57800,16588,761,150,0.4,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,4.5,31,101800,1018,1349,347,773,859,125,95932,55300,15548,719,220,3.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,5.6,34,101800,834,1349,348,609,801,114,74014,50664,13927,634,220,4.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,6.5,38,101800,607,1349,344,415,708,97,49078,40988,11465,502,210,4.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,7.0,41,101800,353,1349,341,161,240,98,17837,11197,10900,463,210,4.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,5.6,43,101800,103,1255,330,29,28,27,3255,0,3023,117,220,6.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,5.5,48,101700,0,0,320,0,0,0,0,0,0,0,220,4.7,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,4.9,51,101800,0,0,312,0,0,0,0,0,0,0,210,5.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,4.4,53,101900,0,0,307,0,0,0,0,0,0,0,220,4.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,4.5,58,101900,0,0,303,0,0,0,0,0,0,0,220,3.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,5.1,62,101900,0,0,301,0,0,0,0,0,0,0,150,0.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,6.0,69,101900,0,0,300,0,0,0,0,0,0,0,150,2.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,5.7,70,101900,0,0,297,0,0,0,0,0,0,0,170,2.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,6.2,72,101900,0,0,311,0,0,0,0,0,0,0,170,2.7,3,3,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.1,77,101900,0,0,328,0,0,0,0,0,0,0,210,3.4,8,8,16.1,2134,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,6.7,80,101900,0,0,304,0,0,0,0,0,0,0,160,1.6,2,2,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,6.7,76,101900,69,970,296,30,70,26,3206,0,2829,111,200,2.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,6.8,71,101900,324,1348,312,179,375,89,19866,15579,9905,417,200,3.6,2,2,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,7.2,61,101900,580,1348,314,383,611,120,44251,37619,13947,619,210,3.9,0,0,15.3,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,7.1,55,101900,811,1348,321,557,662,159,65728,45637,18820,877,220,6.2,0,0,10.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,6.6,49,101900,1001,1348,325,601,404,301,69535,33896,35072,1734,240,6.1,0,0,12.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,6.0,42,101900,1137,1348,332,737,501,314,86648,41172,37189,1824,220,5.2,0,0,11.3,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,5.5,37,101900,1209,1348,339,948,891,148,119134,57835,18712,851,230,5.8,0,0,11.3,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,5.1,35,101800,1213,1348,341,951,895,146,119794,57977,18442,836,210,6.3,0,0,11.3,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,5.8,37,101800,1149,1348,341,892,881,141,111621,56894,17748,819,230,7.4,0,0,11.8,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,7.1,42,101800,1020,1348,340,773,840,137,95224,54275,16936,790,230,8.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,6.9,43,101700,836,1348,337,607,771,129,73122,49899,15576,716,230,7.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,6.7,45,101700,610,1348,332,413,667,112,48303,40441,13098,580,230,6.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,6.6,47,101700,356,1348,328,210,477,84,23663,20365,9531,400,230,6.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,6.0,54,101700,106,1269,315,45,140,34,4915,0,3729,147,230,6.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,5.5,60,101800,0,0,306,0,0,0,0,0,0,0,240,6.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,5.0,62,101800,0,0,300,0,0,0,0,0,0,0,260,3.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,4.8,68,101900,0,0,294,0,0,0,0,0,0,0,230,2.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,3.2,63,102000,0,0,290,0,0,0,0,0,0,0,290,2.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,2.8,62,102100,0,0,289,0,0,0,0,0,0,0,300,2.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,2.2,61,102100,0,0,286,0,0,0,0,0,0,0,330,2.4,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,-2.3,45,102100,0,0,280,0,0,0,0,0,0,0,330,4.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,-2.7,44,102200,0,0,279,0,0,0,0,0,0,0,330,4.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,-2.2,51,102200,0,0,273,0,0,0,0,0,0,0,330,3.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,-2.2,51,102200,0,0,273,0,0,0,0,0,0,0,330,4.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.5,-2.2,50,102300,73,996,275,38,147,30,4049,0,3209,127,330,3.8,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,-2.3,41,102300,329,1347,286,205,545,72,23261,21463,8230,340,330,5.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,-3.4,31,102300,584,1347,296,421,757,93,49829,45367,11061,480,350,8.3,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,-4.2,25,102300,815,1347,304,626,855,109,76286,56082,13278,600,340,8.8,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,-6.8,18,102300,1004,1347,309,796,907,121,99184,60899,15066,694,320,8.9,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,-7.1,17,102300,1140,1347,310,919,930,132,115785,62789,16671,765,320,9.7,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,-6.0,17,102300,1212,1347,318,984,948,132,125174,63247,16835,756,320,9.2,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,-5.7,17,102200,1216,1347,321,987,952,128,125820,63075,16377,732,310,8.8,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,-6.2,15,102200,1151,1347,324,927,945,120,117826,62390,15280,695,300,8.6,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,-6.8,15,102100,1023,1347,321,806,912,114,101063,60432,14305,656,330,7.3,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,-6.8,15,102000,839,1347,323,637,853,106,78193,56123,13042,589,340,7.8,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,-6.6,15,102000,613,1347,322,436,751,94,51837,46205,11219,489,340,8.3,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,-6.0,16,102000,360,1347,322,223,560,74,25513,24418,8475,351,340,8.6,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,-5.0,19,102000,109,1280,318,50,193,34,5451,0,3763,147,330,6.8,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,-5.0,21,102000,0,0,311,0,0,0,0,0,0,0,340,7.7,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,-5.0,22,102000,0,0,309,0,0,0,0,0,0,0,340,7.8,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,-4.9,23,102100,0,0,306,0,0,0,0,0,0,0,340,8.2,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,-4.4,25,102000,0,0,302,0,0,0,0,0,0,0,350,8.1,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,-4.3,27,102100,0,0,300,0,0,0,0,0,0,0,360,7.1,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,-3.4,31,102100,0,0,296,0,0,0,0,0,0,0,330,6.6,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,-3.8,33,102000,0,0,289,0,0,0,0,0,0,0,340,6.4,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,-3.2,36,102000,0,0,288,0,0,0,0,0,0,0,340,7.8,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,-2.9,38,102000,0,0,287,0,0,0,0,0,0,0,340,8.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,-3.2,36,102000,0,0,288,0,0,0,0,0,0,0,340,8.1,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,-2.2,40,102100,77,1022,288,40,161,31,4335,0,3368,133,340,7.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,-2.1,36,102200,333,1347,295,211,548,75,23842,22343,8546,354,340,7.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,-1.9,32,102200,588,1347,304,423,726,106,49552,45111,12418,545,340,7.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,-3.4,24,102100,818,1347,314,622,808,132,74803,55425,15869,727,340,9.9,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,-4.0,20,102100,1007,1347,321,796,883,135,98256,60267,16780,779,340,10.3,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,-4.4,17,102100,1142,1347,328,926,949,121,117461,62497,15387,701,330,10.4,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,-4.5,15,102000,1214,1347,337,985,948,131,125385,62814,16679,747,350,10.6,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,-5.7,14,102000,1218,1347,336,984,938,135,124978,62801,17259,774,340,8.9,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,-6.2,12,101900,1153,1347,340,925,934,125,117197,62112,15892,724,340,6.4,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,-6.7,12,101800,1025,1347,341,806,907,115,101006,60257,14485,665,350,7.5,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,-6.8,12,101800,842,1347,341,638,848,108,78167,55978,13257,600,320,6.2,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,-6.7,12,101800,616,1347,340,437,743,97,51870,46178,11541,504,330,6.2,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,-6.6,12,101800,363,1347,339,225,552,76,25683,24735,8734,363,330,6.1,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,-5.9,14,101800,111,1291,334,51,186,35,5536,0,3876,152,330,5.0,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,-4.3,18,101800,0,0,327,0,0,0,0,0,0,0,320,4.2,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,-1.9,24,101800,0,0,323,0,0,0,0,0,0,0,350,4.4,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,1.8,39,101800,0,0,313,0,0,0,0,0,0,0,290,3.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,3.9,47,101800,0,0,313,0,0,0,0,0,0,0,330,3.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,4,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,4.7,51,101800,0,0,312,0,0,0,0,0,0,0,330,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,6.4,57,101800,0,0,315,0,0,0,0,0,0,0,290,0.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,6.8,61,101700,0,0,312,0,0,0,0,0,0,0,290,2.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,6.5,52,101700,0,0,320,0,0,0,0,0,0,0,340,5.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,7.6,59,101700,0,0,318,0,0,0,0,0,0,0,340,5.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,8.2,60,101600,0,0,321,0,0,0,0,0,0,0,340,4.9,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,7.9,60,101700,94,1216,320,43,232,27,4768,0,2989,116,330,3.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,8.2,55,101700,340,1346,328,211,605,59,24358,19338,6756,276,340,4.8,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,7.2,43,101700,594,1346,339,418,774,76,50184,41284,9202,395,330,6.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,7.2,36,101700,824,1346,352,615,860,89,76003,50737,11025,493,320,6.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,7.0,31,101600,1012,1346,363,782,912,96,98778,54747,12144,552,320,6.4,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,5.4,24,101600,1147,1346,373,902,947,96,116157,57014,12366,555,330,7.8,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,4.1,21,101500,1218,1346,377,965,958,98,125204,58073,12736,559,330,8.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,5.7,22,101400,1222,1346,385,964,950,102,124694,57280,13239,582,320,7.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,6.2,22,101400,1157,1346,389,898,914,112,114384,56137,14325,649,330,8.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,7.0,22,101300,1029,1346,392,782,888,104,98531,54025,13100,599,330,8.4,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,8.0,23,101200,846,1346,396,622,842,93,76837,49900,11561,520,330,5.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,8.9,25,101200,620,1346,396,430,758,81,51600,40919,9710,421,320,6.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,9.1,26,101200,368,1346,394,226,589,65,25999,21371,7469,308,320,5.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,10.6,31,101100,115,1307,389,53,228,33,5788,0,3660,143,330,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,10.6,35,101100,0,0,379,0,0,0,0,0,0,0,290,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,10.7,39,101200,0,0,370,0,0,0,0,0,0,0,310,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,11.7,45,101200,0,0,364,0,0,0,0,0,0,0,300,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,11.7,48,101200,0,0,358,0,0,0,0,0,0,0,310,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,11.6,51,101200,0,0,354,0,0,0,0,0,0,0,320,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,10.5,46,101200,0,0,354,0,0,0,0,0,0,0,320,4.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,10.0,48,101200,0,0,348,0,0,0,0,0,0,0,310,4.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,10.0,53,101200,0,0,341,0,0,0,0,0,0,0,320,4.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,9.9,53,101300,0,0,340,0,0,0,0,0,0,0,330,5.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,9.5,54,101300,0,0,336,0,0,0,0,0,0,0,320,4.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,10.1,54,101300,98,1233,339,43,204,28,4688,0,3067,119,310,2.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,10.7,51,101300,344,1345,348,206,569,60,23673,17966,6934,284,320,4.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,11.2,46,101400,598,1345,360,408,746,77,48949,38236,9199,396,350,5.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,11.6,40,101300,827,1345,373,602,837,87,74343,47107,10833,485,340,6.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,11.1,35,101300,1015,1345,381,763,882,98,96155,51132,12414,566,340,7.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,11.2,32,101300,1149,1345,389,876,893,113,111167,52560,14424,657,340,8.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,11.6,31,101300,1220,1345,396,939,909,114,120102,52937,14672,652,330,6.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,11.1,28,101200,1224,1345,401,940,906,116,120204,53178,14894,662,320,7.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,11.0,27,101200,1159,1345,403,878,878,122,111004,52452,15435,704,350,8.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,10.7,26,101100,1031,1345,405,766,852,113,95736,51005,14222,655,320,7.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,11.0,27,101100,848,1345,404,608,803,102,74534,47164,12554,569,340,6.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,11.4,29,101100,623,1345,402,418,715,87,49883,38454,10440,456,330,6.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,11.8,30,101100,371,1345,401,219,547,68,25130,19715,7845,325,330,6.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,12.3,33,101100,118,1321,395,52,207,34,5707,0,3733,146,330,4.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,13.4,42,101100,0,0,381,0,0,0,0,0,0,0,330,2.9,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,14.0,53,101100,0,0,366,0,0,0,0,0,0,0,280,1.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,14.3,57,101200,0,0,361,0,0,0,0,0,0,0,280,2.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,14.0,59,101200,0,0,357,0,0,0,0,0,0,0,300,2.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,14.3,66,101100,0,0,350,0,0,0,0,0,0,0,270,2.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,13.4,56,101100,0,0,357,0,0,0,0,0,0,0,330,3.6,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,13.9,66,101100,0,0,348,0,0,0,0,0,0,0,340,3.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,13.8,68,101100,0,0,345,0,0,0,0,0,0,0,340,3.6,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,13.3,68,101200,0,0,341,0,0,0,0,0,0,0,340,3.4,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,13.3,72,101200,0,0,337,0,0,0,0,0,0,0,350,2.3,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,13.4,70,101200,101,1250,341,45,211,29,4943,0,3213,125,360,3.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,13.9,64,101300,349,1345,350,211,577,62,24236,17489,7101,292,340,3.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,13.9,55,101300,602,1345,363,415,750,80,49595,37518,9533,413,350,3.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,13.9,48,101300,830,1345,374,610,838,92,74949,46353,11369,512,350,2.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,13.8,41,101300,1018,1345,387,772,888,101,97015,50008,12673,580,330,0.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,13.2,35,101300,1151,1345,395,891,918,105,113604,51952,13396,607,330,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,12.0,30,101200,1222,1345,402,952,929,108,122390,53274,13882,614,330,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.9,10.7,26,101200,1226,1345,406,953,925,110,122432,54006,14187,627,300,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,11.7,27,101100,1161,1345,410,891,901,113,113311,52665,14409,654,260,1.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,11.6,27,101100,1033,1345,410,778,873,107,97583,51124,13463,618,260,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,11.5,26,101000,851,1345,412,618,823,97,76019,47550,11987,542,290,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,11.7,26,101000,626,1345,413,427,738,84,51113,39117,10059,438,10,2.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,12.1,27,101000,375,1345,413,226,577,65,26043,20364,7543,312,10,2.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,12.0,27,101000,121,1334,410,55,236,34,6049,0,3728,146,10,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,14.8,42,101000,0,0,391,0,0,0,0,0,0,0,180,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,17.9,61,101100,0,0,379,0,0,0,0,0,0,0,180,1.5,0,0,16.1,77777,9,999999999,32,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,18.3,69,101100,0,0,371,0,0,0,0,0,0,0,190,1.5,0,0,16.1,77777,9,999999999,32,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,18.0,73,101100,0,0,365,0,0,0,0,0,0,0,210,1.3,0,0,16.1,77777,9,999999999,32,0.0000,0,88,999.000,0.0,1.0 +2017,5,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,16.1,72,101100,0,0,355,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,16.0,82,101100,0,0,344,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,15.6,87,101100,0,0,337,0,0,0,0,0,0,0,120,0.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,15.5,86,101100,0,0,337,0,0,0,0,0,0,0,120,2.0,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,14.3,78,101100,0,0,337,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,14.0,77,101100,0,0,336,0,0,0,0,0,0,0,200,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,14.4,72,101100,105,1265,344,44,169,31,4790,0,3367,132,200,2.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,14.4,69,101200,353,1344,347,205,509,72,23285,17096,8172,340,230,3.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,14.5,59,101200,605,1344,360,405,689,95,47721,36150,11182,491,240,3.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,14.9,54,101200,833,1344,369,595,782,110,72169,44546,13368,610,220,3.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,14.1,44,101100,1020,1344,381,755,837,120,93692,48774,14916,691,210,3.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,15.6,46,101100,1154,1344,389,872,872,123,109786,49258,15543,712,220,4.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,15.5,43,101100,1224,1344,394,931,880,130,117867,49874,16504,740,220,5.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,14.9,40,101100,1228,1344,397,932,874,134,117762,50262,16952,760,220,5.8,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,13.8,36,101000,1163,1344,397,873,851,137,109368,50414,17197,791,220,5.9,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,13.6,39,100900,1035,1344,390,699,598,238,82483,42878,28229,1375,210,3.8,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,14.8,45,100900,853,1344,385,511,429,239,58573,31920,27543,1335,210,5.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,16.1,53,100900,629,1344,380,388,557,127,44820,32084,14751,665,230,5.1,0,0,16.1,77777,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,16.0,55,100900,378,1344,376,202,377,96,22520,15755,10764,460,230,5.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,15.0,58,100900,125,1344,364,48,112,38,5236,0,4118,163,210,6.1,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,14.9,64,100900,0,7,356,0,0,0,0,0,0,0,210,5.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,14.3,68,100900,0,0,347,0,0,0,0,0,0,0,210,5.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,13.6,75,101000,0,0,336,0,0,0,0,0,0,0,210,4.4,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,11.7,77,101000,0,0,324,0,0,0,0,0,0,0,220,6.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.7,87,101100,0,0,315,0,0,0,0,0,0,0,210,3.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.8,91,101100,0,0,313,0,0,0,0,0,0,0,160,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,12.1,93,101100,0,0,313,0,0,0,0,0,0,0,160,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,11.6,93,101100,0,0,310,0,0,0,0,0,0,0,160,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,11.1,96,101100,0,0,305,0,0,0,0,0,0,0,180,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,11.1,95,101100,0,0,306,0,0,0,0,0,0,0,180,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,11.1,92,101100,108,1282,308,47,179,33,5165,0,3610,142,180,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,11.2,85,101100,357,1343,313,214,526,74,24247,19460,8435,351,200,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.8,77,101100,609,1343,324,417,708,97,49236,38890,11432,502,210,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,12.2,67,101100,836,1343,336,612,804,112,74313,47612,13596,620,190,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,12.3,62,101100,1023,1343,342,775,861,120,96332,51294,14917,690,190,3.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,12.7,54,101100,1156,1343,355,895,902,119,113250,52659,15142,691,190,4.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,11.8,46,101000,1226,1343,363,957,915,122,121997,53745,15557,692,200,4.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,12.3,44,100900,1229,1343,370,958,913,122,122118,53344,15589,692,240,5.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,13.4,49,100900,1165,1343,369,899,896,122,113591,52000,15432,704,230,7.6,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,13.9,51,100800,1037,1343,369,784,860,120,97526,50159,14939,692,210,6.8,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,13.8,54,100800,855,1343,364,624,803,113,75902,46788,13813,633,210,7.7,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,13.6,58,100800,631,1343,357,414,649,109,48520,36549,12774,568,230,7.4,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,13.1,59,100800,381,1343,351,201,359,99,22443,16305,11123,476,230,7.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,11.6,64,100800,128,1343,336,49,110,39,5377,0,4254,168,220,7.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,11.0,70,100800,0,23,326,0,0,0,0,0,0,0,220,6.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.6,76,100800,0,0,319,0,0,0,0,0,0,0,220,5.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.3,79,100900,0,0,313,0,0,0,0,0,0,0,210,4.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,8.3,75,100900,0,0,307,0,0,0,0,0,0,0,220,6.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.3,78,100900,0,0,304,0,0,0,0,0,0,0,200,4.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,8.1,80,100800,0,0,301,0,0,0,0,0,0,0,200,2.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,6.6,80,100700,0,0,293,0,0,0,0,0,0,0,160,2.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.1,80,100700,0,0,290,0,0,0,0,0,0,0,160,2.7,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.1,80,100700,0,0,290,0,0,0,0,0,0,0,160,3.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.1,80,100700,0,0,290,0,0,0,0,0,0,0,170,2.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,6.2,80,100700,111,1297,291,43,72,37,4634,0,4002,158,200,2.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,6.9,76,100700,361,1343,298,201,336,111,22134,17238,12245,526,220,2.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,8.4,72,100700,612,1343,310,365,497,138,41953,32243,15965,720,230,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,8.8,69,100700,839,1343,329,562,570,206,65293,42340,24073,1148,230,2.3,3,3,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,8.3,62,100700,1025,1343,333,756,723,204,90505,51678,24524,1178,230,0.2,3,3,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,8.4,58,100700,1158,1343,338,841,688,247,101015,50758,29847,1431,230,2.2,3,3,16.1,1121,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,8.8,63,100700,1228,1343,338,446,127,330,52936,10191,39376,1875,180,2.7,4,4,16.1,1311,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,8.2,53,100700,1231,1343,346,795,614,232,96942,43717,28436,1317,210,2.7,4,4,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,7.7,49,100600,1167,1343,346,888,806,187,109073,54831,23061,1080,210,0.3,3,3,16.1,1389,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,7.2,42,100600,1039,1343,347,759,735,190,91565,51640,23021,1099,210,2.5,1,1,16.1,1524,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,7.5,43,100500,858,1343,341,575,597,193,67318,43570,22720,1079,210,1.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,7.5,44,100500,634,1343,345,422,618,130,48984,39576,15130,680,230,2.4,1,1,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,7.7,44,100500,384,1343,352,223,444,96,24994,21205,10780,459,230,2.7,2,2,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,7.1,45,100500,131,1343,335,55,145,41,6008,0,4478,177,230,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,7.0,48,100500,0,38,329,0,0,0,0,0,0,0,230,0.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,9.0,61,100500,0,0,335,0,0,0,0,0,0,0,230,2.7,2,2,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,9.3,64,100500,0,0,322,0,0,0,0,0,0,0,260,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,9.0,63,100500,0,0,332,0,0,0,0,0,0,0,270,3.0,2,2,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,9.3,69,100400,0,0,318,0,0,0,0,0,0,0,280,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,8.4,64,100400,0,0,317,0,0,0,0,0,0,0,280,3.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,4.3,47,100400,0,0,315,0,0,0,0,0,0,0,340,3.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,3.2,44,100300,0,0,313,0,0,0,0,0,0,0,340,6.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,2.7,44,100300,0,0,311,0,0,0,0,0,0,0,330,6.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,2.3,43,100400,0,0,310,0,0,0,0,0,0,0,340,5.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,3.4,47,100600,114,1309,310,47,137,35,5105,0,3839,150,10,2.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,3.9,44,100700,364,1342,317,206,425,91,23148,19825,10220,432,330,2.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,4.0,41,100700,616,1342,322,402,603,126,46735,38965,14646,654,360,3.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,4.4,41,100800,842,1342,325,595,717,145,71142,48729,17370,805,360,0.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,4.9,40,100900,1028,1342,331,761,798,150,93356,53416,18463,866,140,2.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,9.0,51,100900,1160,1342,337,885,856,145,110677,54148,18184,838,140,3.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,9.5,52,100900,1230,1342,339,948,870,151,119264,54703,19028,855,140,4.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,10.0,49,100900,1233,1342,347,948,863,155,119006,54354,19593,881,150,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,10.0,47,100900,1169,1342,349,887,840,156,110402,53455,19480,901,150,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,10.1,46,100800,1041,1342,352,772,800,151,94602,51451,18595,874,150,2.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,10.1,45,100800,860,1342,354,611,733,141,73229,47288,16990,789,220,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,10.3,45,100800,637,1342,355,420,627,123,48987,38391,14358,644,220,0.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,10.1,45,100800,387,1342,354,223,455,92,25145,20750,10400,442,160,0.4,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,10.6,48,100900,134,1342,351,57,160,41,6176,0,4444,176,160,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,10.6,53,101000,0,53,344,0,0,0,0,0,0,0,160,2.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,10.6,59,101000,0,0,336,0,0,0,0,0,0,0,180,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,10.4,62,101100,0,0,331,0,0,0,0,0,0,0,210,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,8.8,58,101100,0,0,326,0,0,0,0,0,0,0,200,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,7.8,56,101100,0,0,323,0,0,0,0,0,0,0,170,1.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,7.9,61,101100,0,0,318,0,0,0,0,0,0,0,160,1.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,8.5,70,101100,0,0,312,0,0,0,0,0,0,0,180,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.9,80,101200,0,0,310,0,0,0,0,0,0,0,150,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.4,80,101200,0,0,308,0,0,0,0,0,0,0,140,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.4,83,101200,0,0,306,0,0,0,0,0,0,0,170,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,9.4,81,101300,118,1325,307,48,124,37,5190,0,4021,158,170,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,9.4,71,101300,368,1341,316,209,421,94,23413,19059,10526,447,160,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,9.4,61,101300,619,1341,326,407,604,129,47126,37809,14957,671,160,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,9.5,56,101300,845,1341,334,598,710,151,71197,47091,18085,843,200,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,10.5,51,101300,1030,1341,346,760,773,166,92333,50942,20263,959,200,1.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,10.0,43,101200,1162,1341,357,876,806,178,107851,53091,22002,1029,270,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,9.9,40,101100,1232,1341,361,937,819,185,116125,53894,22982,1046,270,2.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,8.8,33,101100,1235,1341,369,943,834,175,117385,54611,21911,992,260,3.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,7.6,29,101000,1170,1341,374,895,854,150,111867,54972,18826,867,280,3.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,6.1,24,100900,1043,1341,380,778,807,150,95597,53507,18553,870,280,3.8,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,7.4,25,100900,862,1341,383,616,736,142,73924,48735,17171,798,350,2.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,9.2,30,100900,640,1341,381,426,636,123,49669,39328,14349,643,220,4.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,11.3,38,100800,391,1341,376,228,476,89,25724,21077,10103,429,220,4.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,12.7,47,100800,137,1341,367,59,188,40,6481,0,4394,174,210,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,11.7,52,100900,0,69,352,0,0,0,0,0,0,0,190,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,11.6,59,100900,0,0,342,0,0,0,0,0,0,0,190,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,10.5,59,100900,0,0,336,0,0,0,0,0,0,0,190,2.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,10.0,61,100900,0,0,330,0,0,0,0,0,0,0,190,1.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,10.0,66,100900,0,0,325,0,0,0,0,0,0,0,140,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,9.9,72,100900,0,0,318,0,0,0,0,0,0,0,130,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.5,75,100900,0,0,313,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.0,83,100900,0,0,309,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,10.1,82,100900,0,0,310,0,0,0,0,0,0,0,70,0.0,0,0,15.9,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,10.6,92,100800,0,0,305,0,0,0,0,0,0,0,70,0.0,0,0,14.7,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,10.7,83,100900,121,1340,313,52,167,37,5702,0,4073,161,70,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.2,73,101000,372,1341,324,221,494,84,24968,20525,9558,403,70,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,11.7,62,101000,622,1341,339,424,675,111,49649,39179,13081,582,70,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,11.6,55,101000,847,1341,347,619,773,130,74460,48085,15738,727,70,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,11.2,47,101000,1032,1341,357,783,832,142,96224,52201,17530,821,270,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,12.0,43,100900,1164,1341,371,901,870,146,112540,53441,18249,842,270,1.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,10.5,36,100900,1234,1341,375,961,877,153,120669,54814,19343,868,270,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,10.0,31,100800,1236,1341,385,961,874,155,120675,54965,19540,876,270,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,10.2,29,100700,1172,1341,391,905,867,147,113139,54266,18424,847,190,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,11.9,32,100600,1045,1341,395,789,829,142,97098,51547,17572,823,190,0.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,12.9,34,100600,864,1341,396,627,768,132,75558,47206,15963,740,190,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,13.6,37,100600,642,1341,393,435,669,115,50943,38533,13462,602,190,2.8,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,14.0,39,100600,394,1341,391,234,497,88,26406,20962,9972,424,200,2.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,14.7,46,100600,141,1341,383,61,188,41,6632,0,4504,179,200,4.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,12.1,45,100600,1,85,366,0,0,0,0,0,0,0,200,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,11.2,49,100700,0,0,354,0,0,0,0,0,0,0,180,3.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,11.6,57,100800,0,0,345,0,0,0,0,0,0,0,200,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,10.5,59,100800,0,0,336,0,0,0,0,0,0,0,200,4.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,9.5,59,100800,0,0,329,0,0,0,0,0,0,0,200,4.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,10.0,71,100900,0,0,320,0,0,0,0,0,0,0,210,4.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.0,84,100900,0,0,308,0,0,0,0,0,0,0,190,4.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.0,86,101000,0,0,306,0,0,0,0,0,0,0,180,4.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,10.0,87,101000,0,0,306,0,0,0,0,0,0,0,210,6.6,0,0,15.9,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,10.0,89,101100,0,14,304,0,0,0,0,0,0,0,210,5.9,0,0,14.7,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,10.0,86,101200,124,1340,307,54,175,38,5875,0,4122,162,210,7.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,10.0,79,101300,375,1340,312,222,495,83,25074,20875,9452,398,210,7.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,10.1,72,101400,625,1340,319,422,668,111,49459,39379,13017,578,210,7.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,10.6,67,101400,850,1340,327,613,762,130,73814,47793,15690,724,210,7.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,10.6,62,101500,1034,1340,332,774,824,139,95446,51656,17141,801,210,7.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,10.6,60,101500,1166,1340,335,894,871,137,112296,53483,17240,791,200,6.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,10.6,54,101500,1235,1340,342,954,880,143,120513,54052,18087,806,210,6.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,10.7,53,101500,1238,1340,345,955,877,145,120544,53954,18345,817,220,7.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,11.1,55,101400,1174,1340,345,897,861,143,112395,53100,18035,828,220,6.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,10.9,54,101400,1047,1340,344,786,831,137,97128,51673,16943,790,220,6.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,10.3,54,101400,867,1340,341,629,777,126,76118,48480,15338,707,220,8.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,10.1,56,101500,645,1340,337,437,687,106,51564,40177,12566,558,220,7.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,10.6,62,101500,397,1340,333,237,522,82,26952,22505,9397,396,220,7.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,10.6,69,101500,144,1340,325,64,204,43,7030,0,4651,185,200,5.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,10.5,78,101500,1,104,315,0,0,0,0,0,0,0,200,5.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.3,80,101600,0,0,308,0,0,0,0,0,0,0,200,6.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.8,80,101700,0,0,305,0,0,0,0,0,0,0,180,4.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.3,83,101700,0,0,300,0,0,0,0,0,0,0,200,4.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.3,83,101800,0,0,300,0,0,0,0,0,0,0,210,5.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.4,84,101800,0,0,299,0,0,0,0,0,0,0,220,4.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.9,89,101800,0,0,299,0,0,0,0,0,0,0,190,3.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.9,86,101900,0,0,300,0,0,0,0,0,0,0,220,4.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.0,87,101900,0,0,300,0,0,0,0,0,0,0,230,6.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,9.4,89,101900,0,30,301,0,0,0,0,0,0,0,210,5.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,9.5,85,102000,128,1339,304,56,179,39,6074,0,4224,167,220,4.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,10.1,80,102000,378,1339,312,225,509,82,25554,21335,9299,391,230,4.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,10.6,74,102000,628,1339,320,426,685,105,50173,39555,12442,551,230,6.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,10.6,67,102000,852,1339,327,608,749,132,73216,47191,15928,736,200,4.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,10.7,62,101900,1036,1339,344,770,810,144,94717,51187,17754,832,220,5.1,2,2,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,11.1,58,101900,1167,1339,340,900,884,129,113455,53349,16363,747,210,5.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,11.2,55,101900,1237,1339,346,962,901,130,122286,53879,16568,733,190,5.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,11.7,55,101900,1239,1339,349,960,889,138,121593,53508,17535,778,210,5.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,11.6,53,101800,1175,1339,350,891,836,158,110851,52437,19686,909,230,5.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,11.2,53,101800,1049,1339,348,708,593,243,83744,43680,28902,1407,230,6.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,11.5,54,101800,869,1339,348,584,627,177,68854,42849,20940,991,210,5.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,11.7,56,101800,647,1339,347,437,682,108,51562,39421,12759,568,220,6.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,11.6,57,101800,400,1339,345,239,524,83,27232,22470,9447,399,220,7.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,10.7,60,101800,147,1339,335,66,216,42,7191,0,4611,183,240,6.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.0,70,101800,1,121,327,0,0,0,0,0,0,0,220,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,10.6,73,101800,0,0,321,0,0,0,0,0,0,0,220,3.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.5,81,101800,0,0,314,0,0,0,0,0,0,0,230,4.4,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.9,83,101900,0,0,308,0,0,0,0,0,0,0,210,2.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,9.3,86,101900,0,0,303,0,0,0,0,0,0,0,220,3.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,8.8,87,101900,0,0,299,0,0,0,0,0,0,0,220,3.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,8.2,92,101900,0,0,293,0,0,0,0,0,0,0,230,1.9,0,0,16.1,2286,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,7.2,87,101900,0,0,291,0,0,0,0,0,0,0,180,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.2,89,101900,0,0,290,0,0,0,0,0,0,0,180,1.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,7.2,89,102000,0,46,290,0,0,0,0,0,0,0,220,0.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,7.3,82,102000,131,1339,295,61,234,38,6697,0,4212,166,220,2.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,8.1,76,102000,381,1339,305,239,586,73,27457,23762,8344,348,230,3.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,6.3,61,102000,630,1339,308,447,758,90,53407,43507,10832,474,260,4.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,3.2,42,102000,854,1339,316,644,848,103,79293,53221,12733,576,310,3.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,2.7,38,102000,1038,1339,321,811,903,111,101980,57210,13996,642,250,3.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,1.9,33,101900,1169,1339,325,930,929,119,118487,59158,15159,685,250,3.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,0.0,27,101900,1238,1339,327,993,943,121,127519,60360,15562,681,260,3.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,0.0,26,101800,1241,1339,331,994,940,123,127490,60307,15845,693,270,3.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,-1.6,23,101800,1177,1339,329,933,921,123,118760,59972,15744,711,340,2.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,-0.7,22,101700,1051,1339,338,817,891,118,102611,58039,14807,681,10,2.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,-1.4,21,101600,871,1339,346,655,839,109,80566,54520,13445,611,10,0.0,2,2,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,-1.4,22,101600,650,1339,338,333,304,186,37844,23511,21172,978,270,0.0,1,1,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,-1.6,23,101600,403,1339,328,219,454,83,25107,22148,9506,400,270,0.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,-0.8,24,101500,150,1339,341,71,263,42,7867,0,4628,182,270,4.9,2,2,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,1.2,33,101600,1,138,322,0,0,0,0,0,0,0,280,3.6,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,2.4,41,101600,0,0,314,0,0,0,0,0,0,0,290,3.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,3.7,51,101600,0,0,306,0,0,0,0,0,0,0,250,3.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,2.3,48,101700,0,0,302,0,0,0,0,0,0,0,280,4.4,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2017,5,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,3.4,57,101700,0,0,297,0,0,0,0,0,0,0,290,2.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,4.0,63,101700,0,0,294,0,0,0,0,0,0,0,280,2.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,5.1,81,101700,0,0,285,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,5.6,87,101800,0,0,283,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,5.6,90,101800,0,0,281,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,5.7,92,101800,0,62,280,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,5.9,82,101800,134,1338,288,65,269,38,7107,0,4165,164,330,0.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,4.2,57,101800,385,1338,301,246,622,67,28428,25489,7775,321,330,2.8,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,2.7,45,101800,633,1338,308,454,784,83,54680,45208,10063,437,360,4.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,1.7,39,101800,856,1338,313,651,869,95,80665,54006,11780,530,320,4.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,1.6,34,101800,1040,1338,322,815,912,106,102926,57698,13466,615,310,5.6,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,1.0,30,101800,1171,1338,326,931,927,120,118571,59411,15341,693,330,4.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,-0.1,27,101700,1240,1338,327,994,940,123,127481,60375,15849,694,300,5.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,-0.7,24,101700,1242,1338,331,995,938,125,127573,60499,16051,702,320,4.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,-1.7,22,101600,1179,1338,331,935,918,126,118810,60028,16051,725,270,2.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,-1.7,21,101500,1053,1338,333,820,892,118,102986,58407,14918,686,270,4.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,-0.2,24,101400,873,1338,336,659,845,108,81117,54443,13292,604,280,3.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,1.7,28,101400,652,1338,337,464,759,94,55595,45780,11294,496,240,4.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,4.6,36,101400,406,1338,336,258,601,76,29700,27019,8732,365,240,4.8,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,6.1,46,101300,154,1338,328,73,266,43,8019,0,4683,185,230,6.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,6.2,53,101300,2,156,318,0,0,0,0,0,0,0,230,5.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,6.8,63,101300,0,0,309,0,0,0,0,0,0,0,220,3.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,7.3,73,101300,0,0,303,0,0,0,0,0,0,0,220,2.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.9,81,101300,0,0,299,0,0,0,0,0,0,0,220,2.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,8.3,86,101300,0,0,297,0,0,0,0,0,0,0,220,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.2,89,101200,0,0,295,0,0,0,0,0,0,0,140,1.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.7,92,101200,0,0,290,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,7.2,90,101100,0,0,289,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.1,95,101100,0,0,285,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,6.7,93,101200,0,77,285,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,6.8,92,101200,137,1337,286,62,208,41,6769,0,4451,176,260,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.1,77,101200,387,1337,298,236,529,83,26833,23574,9438,397,260,1.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,6.5,60,101200,635,1337,311,437,693,108,51576,42020,12785,567,290,2.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,5.0,47,101200,859,1337,319,631,790,124,76611,51220,15127,695,280,3.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,4.9,42,101200,1042,1337,326,795,852,131,98767,55194,16377,760,280,3.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,4.4,37,101200,1172,1337,332,913,886,137,115139,57141,17287,789,280,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,4.2,34,101100,1241,1337,338,976,904,138,124070,57916,17589,776,280,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,2.5,28,101100,1244,1337,358,980,906,137,124619,58568,17558,772,200,1.6,4,4,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,0.4,24,101000,1180,1337,340,922,892,135,116548,58532,17113,777,200,2.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,3.5,29,101000,1054,1337,346,809,867,126,101071,56033,15772,729,200,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,4.3,31,101000,875,1337,346,650,819,114,79640,52247,14039,642,260,5.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,5.0,34,101000,655,1337,343,459,734,99,54693,44090,11895,525,260,6.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,5.0,35,101000,409,1337,340,255,579,78,29348,26519,9030,379,260,6.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,5.1,38,101000,157,1337,334,73,256,43,8077,0,4790,190,260,4.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,5.9,46,101000,2,173,325,0,0,0,0,0,0,0,240,3.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,7.7,59,101000,0,0,319,0,0,0,0,0,0,0,220,3.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,6.8,63,101000,0,0,310,0,0,0,0,0,0,0,220,4.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,7.8,72,101000,0,0,306,0,0,0,0,0,0,0,230,3.9,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,7.9,76,101000,0,0,304,0,0,0,0,0,0,0,210,2.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.3,83,101000,0,0,299,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.4,90,101000,0,0,295,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.8,93,101000,0,0,295,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,8.2,93,101000,0,0,292,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,7.3,93,101000,1,93,288,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,8.3,91,101000,140,1337,294,62,194,42,6810,0,4614,183,320,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,8.3,79,101000,390,1337,303,235,509,87,26662,23070,9846,416,320,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,8.4,71,101000,638,1337,311,436,678,113,51261,41076,13328,594,320,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,8.8,61,101000,860,1337,323,629,775,130,75966,49442,15795,729,320,2.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,7.9,48,101000,1043,1337,335,791,834,140,97712,53654,17385,812,320,3.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,8.1,41,101000,1174,1337,347,909,870,145,113963,55346,18293,839,340,4.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,6.5,35,100900,1242,1337,351,973,893,143,123219,56762,18205,804,280,4.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,5.4,30,100900,1245,1337,354,978,903,137,124322,57317,17515,770,310,4.1,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,8.4,35,100900,1181,1337,362,924,902,126,117077,55515,16059,727,220,4.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,9.4,39,100800,1056,1337,373,812,880,117,101738,53595,14755,680,230,6.4,2,2,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,9.2,39,100800,877,1337,360,653,834,106,80321,50351,13091,596,230,8.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,8.8,40,100800,657,1337,355,462,753,92,55365,42900,11036,485,230,7.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,8.3,40,100800,411,1337,351,259,604,73,29945,26019,8500,356,230,7.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,8.3,46,100900,160,1337,340,79,291,44,8652,0,4851,192,220,5.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,8.2,55,100900,3,190,328,3,11,3,331,0,329,11,210,5.8,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,7.8,60,101000,0,0,318,0,0,0,0,0,0,0,220,6.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,7.9,66,101100,0,0,313,0,0,0,0,0,0,0,210,4.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,8.9,75,101200,0,0,309,0,0,0,0,0,0,0,170,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.8,80,101200,0,0,305,0,0,0,0,0,0,0,170,2.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,8.3,80,101200,0,0,302,0,0,0,0,0,0,0,180,4.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.3,83,101200,0,0,300,0,0,0,0,0,0,0,180,4.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.2,83,101200,0,0,299,0,0,0,0,0,0,0,190,4.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,7.8,83,101200,0,0,297,0,0,0,0,0,0,0,180,4.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,7.7,82,101300,1,108,310,0,0,0,0,0,0,0,170,4.0,3,3,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,7.2,76,101400,143,1336,312,35,9,35,3791,624,5526,147,170,3.6,3,3,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,7.3,74,101500,393,1336,315,132,59,115,14667,3196,12795,553,170,3.8,3,3,16.1,3317,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,7.8,74,101500,640,1336,318,254,106,204,28517,8154,22951,1070,170,5.1,3,3,16.1,3083,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,7.7,66,101500,862,1336,325,411,179,295,46575,15425,33692,1655,190,5.0,3,3,16.1,3353,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,7.3,59,101500,1045,1336,331,547,222,373,62659,20038,43004,2158,200,4.7,3,3,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,7.9,54,101500,1175,1336,340,643,239,432,74171,21943,50225,2493,180,5.6,3,3,16.1,3048,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,9.1,56,101600,1244,1336,345,667,215,467,77227,19815,54439,2622,200,4.5,3,3,16.1,3030,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,10.6,57,101500,1246,1336,354,640,180,472,73982,16478,54985,2647,170,4.2,3,3,16.1,2949,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,10.7,58,101500,1183,1336,353,573,160,431,66144,14393,50104,2483,210,5.2,3,3,16.1,3100,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,11.0,62,101500,1058,1336,352,377,46,340,43498,3906,39500,1970,210,5.8,4,4,16.1,1388,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,10.9,62,101500,879,1336,351,401,167,291,45573,13951,33262,1636,220,6.6,4,4,16.1,2833,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,10.6,62,101500,660,1336,350,262,122,202,29529,9187,22843,1068,220,6.1,4,4,16.1,2300,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,10.7,64,101500,414,1336,348,80,0,80,8606,0,12218,320,220,5.7,4,4,16.1,1811,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.0,70,101400,163,1336,343,24,0,24,2618,0,3919,101,210,5.9,4,4,16.1,1676,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.6,73,101400,3,209,338,1,0,1,91,0,145,4,210,7.1,4,4,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.6,78,101400,0,0,326,0,0,0,0,0,0,0,220,6.3,2,2,16.1,1829,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.5,84,101500,0,0,311,0,0,0,0,0,0,0,230,6.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.0,84,101500,0,0,308,0,0,0,0,0,0,0,230,5.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,10.0,87,101500,0,0,306,0,0,0,0,0,0,0,220,3.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,9.9,90,101500,0,0,303,0,0,0,0,0,0,0,240,3.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,9.4,97,101500,0,0,296,0,0,0,0,0,0,0,170,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,9.3,100,101500,0,0,293,0,0,0,0,0,0,0,170,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,8.3,97,101500,0,0,290,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,8.4,100,101600,1,123,289,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,9.0,95,101600,146,1336,295,66,214,43,7235,0,4704,187,300,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,9.7,83,101600,396,1336,307,244,540,84,27722,23826,9565,404,300,0.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,7.9,62,101700,642,1336,317,449,714,105,53059,42534,12502,554,300,3.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,8.4,57,101700,864,1336,325,641,795,127,77682,50561,15471,713,340,3.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,8.9,53,101700,1046,1336,333,804,843,143,99112,54032,17731,829,300,3.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,8.6,46,101700,1176,1336,343,932,910,131,117732,56289,16556,753,300,3.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,6.0,36,101600,1245,1336,345,1000,941,123,128112,58242,15771,687,300,5.9,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,4.3,30,101600,1247,1336,348,1002,944,121,128682,58906,15573,676,350,7.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,-0.8,19,101500,1184,1336,347,941,921,124,119806,59771,15829,713,300,5.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,-2.1,17,101400,1059,1336,348,828,899,115,104302,58550,14499,665,310,4.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,-1.5,17,101400,881,1336,351,668,857,103,82692,55024,12803,580,350,5.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,-0.8,18,101300,662,1336,352,477,786,88,57581,47232,10600,463,320,4.8,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,-0.6,19,101300,417,1336,351,271,643,70,31552,29671,8202,341,320,4.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,-0.7,20,101300,166,1336,345,85,337,44,9458,748,4843,191,320,4.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,-0.6,24,101300,4,225,334,3,23,3,409,0,402,14,330,3.4,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,3.3,41,101300,0,0,318,0,0,0,0,0,0,0,210,1.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,6.8,57,101400,0,0,317,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,7.3,65,101400,0,0,310,0,0,0,0,0,0,0,210,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,7.8,75,101400,0,0,303,0,0,0,0,0,0,0,210,1.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.9,81,101300,0,0,299,0,0,0,0,0,0,0,250,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,8.3,89,101300,0,0,296,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,8.2,85,101300,0,0,298,0,0,0,0,0,0,0,310,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,7.7,83,101300,0,0,297,0,0,0,0,0,0,0,310,1.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,7.1,81,101400,1,138,295,0,0,0,0,0,0,0,320,1.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,7.8,70,101400,148,1335,308,70,270,40,7730,0,4440,175,300,1.9,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,7.8,59,101500,398,1335,320,251,599,72,28926,25208,8365,349,330,4.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,7.6,49,101500,644,1335,332,455,753,92,54452,43215,11023,484,310,4.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,6.1,37,101500,866,1335,343,650,841,105,80012,51959,12925,587,340,3.8,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,6.0,31,101500,1048,1335,356,814,894,113,102339,55612,14263,655,320,5.8,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,5.4,27,101400,1177,1335,364,933,924,118,118926,57442,15046,678,330,6.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,3.4,21,101300,1246,1335,371,994,938,119,127845,58734,15348,666,360,6.4,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,0.2,16,101300,1249,1335,369,995,937,119,128117,59642,15340,663,320,7.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,1.5,17,101200,1185,1335,374,934,916,120,119154,58476,15394,691,340,4.8,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,0.1,15,101100,1061,1335,375,822,895,111,103828,57404,14115,646,320,6.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,0.3,15,101100,883,1335,376,665,854,100,82491,54114,12462,564,350,6.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,0.8,16,101100,664,1335,376,475,784,85,57520,46500,10344,452,330,5.6,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,0.7,16,101100,420,1335,374,273,652,68,31869,29540,7924,329,330,4.9,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,1.9,19,101000,169,1335,369,88,355,43,9735,527,4765,188,330,3.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,3.7,25,101100,4,242,360,4,27,4,441,0,432,15,330,2.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,6.8,40,101100,0,0,341,0,0,0,0,0,0,0,290,1.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,7.3,48,101100,0,0,332,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,8.4,57,101200,0,0,326,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,9.0,64,101200,0,0,321,0,0,0,0,0,0,0,250,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.0,78,101200,0,0,313,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,10.1,82,101200,0,0,310,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,10.5,93,101200,0,0,304,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.9,92,101200,0,0,301,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,9.6,89,101300,2,152,302,0,0,0,0,0,0,0,320,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,10.9,82,101400,151,1335,315,72,275,41,7905,0,4506,178,320,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,9.3,52,101400,401,1335,337,253,606,71,29223,24968,8255,344,40,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,8.0,39,101400,646,1335,350,457,759,90,54785,43121,10774,472,40,1.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,5.7,30,101400,867,1335,358,650,843,102,80202,51950,12626,572,40,0.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,6.8,29,101400,1049,1335,367,813,895,110,102415,55044,13897,637,40,1.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,7.0,28,101400,1178,1335,373,932,927,113,119073,56521,14524,652,340,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,5.5,23,101300,1247,1335,377,994,940,116,127982,57783,14993,649,340,2.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,5.1,20,101200,1250,1335,389,997,939,117,128284,58000,15163,655,340,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,5.8,20,101200,1187,1335,391,939,924,117,119900,57157,14981,672,340,2.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,3.8,17,101100,1062,1335,391,826,899,111,104305,56468,14016,642,330,1.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,3.1,16,101100,885,1335,393,667,854,101,82682,53400,12545,569,330,3.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,3.1,16,101100,667,1335,391,476,778,88,57492,45909,10649,467,340,2.8,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,3.4,17,101000,423,1335,389,273,638,71,31758,28971,8250,344,340,2.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,4.3,19,101000,172,1335,386,88,342,44,9744,647,4880,193,20,2.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,7.4,29,101000,5,260,371,4,25,4,462,0,452,16,220,3.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,9.1,39,101100,0,0,359,0,0,0,0,0,0,0,230,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,10.6,48,101200,0,0,351,0,0,0,0,0,0,0,220,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,10.5,53,101200,0,0,343,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,10.0,59,101200,0,0,333,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,10.1,62,101200,0,0,330,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.6,76,101200,0,0,319,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.6,78,101200,0,0,316,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.6,78,101200,0,0,316,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,10.7,83,101200,2,166,313,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.0,72,101300,153,1334,324,72,282,40,7984,0,4430,175,140,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,10.5,57,101300,403,1334,338,252,604,70,29130,24269,8073,336,140,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,9.9,46,101400,648,1334,350,453,751,88,54312,41696,10605,465,150,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,9.5,39,101400,869,1334,360,643,831,102,79216,49551,12571,571,180,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,10.0,35,101400,1050,1334,375,802,877,112,100746,52582,14064,646,280,1.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,9.9,30,101300,1179,1334,386,916,901,119,116509,54037,15161,684,280,1.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,8.8,25,101300,1248,1334,395,977,916,120,125282,55152,15465,671,280,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,7.7,22,101200,1251,1334,399,979,915,120,125618,55670,15513,671,310,1.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,7.1,20,101100,1188,1334,404,920,898,121,117230,55304,15443,694,310,2.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,6.1,18,101100,1064,1334,405,810,874,113,102058,54294,14318,657,310,2.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,6.3,18,101000,887,1334,405,655,830,104,80945,51062,12858,585,310,2.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,7.7,21,101000,669,1334,404,468,754,90,56331,43322,10872,478,200,2.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,9.0,23,101000,425,1334,403,268,619,71,31173,26678,8275,346,200,3.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,10.4,27,100900,175,1334,398,87,339,43,9692,0,4786,190,220,4.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,13.2,39,100900,5,277,386,4,29,4,461,0,448,16,220,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,11.9,43,101000,0,0,369,0,0,0,0,0,0,0,220,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,9.5,42,101000,0,0,355,0,0,0,0,0,0,0,200,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,9.9,49,101100,0,0,346,0,0,0,0,0,0,0,220,1.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,9.5,50,101100,0,0,342,0,0,0,0,0,0,0,120,1.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,10.1,60,101100,0,0,332,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.1,73,101100,0,0,324,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,11.1,75,101100,0,0,322,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.2,76,101100,0,0,322,0,0,0,0,0,0,0,120,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,11.8,80,101100,2,180,321,2,17,2,298,0,294,10,120,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,12.7,75,101200,156,1333,331,78,318,41,8561,0,4482,177,120,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,12.2,56,101200,405,1333,350,259,631,67,30010,24362,7813,325,330,0.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,12.0,49,101200,650,1333,359,463,778,84,55679,41601,10119,442,330,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,10.6,36,101300,870,1333,376,655,856,96,81001,49872,11946,541,330,2.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,10.7,32,101200,1051,1333,386,815,896,108,102559,53018,13685,628,330,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,11.2,30,101200,1180,1333,396,927,907,124,117482,54083,15784,714,270,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,11.6,28,101200,1249,1333,404,989,922,125,126349,54426,16072,699,270,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,10.5,25,101100,1252,1333,408,993,926,124,127033,55114,15891,688,270,3.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.5,9.9,22,101100,1189,1333,414,937,919,118,119480,54954,15089,677,270,3.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.0,9.0,20,101100,1065,1333,415,826,892,113,103919,54069,14249,654,260,3.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.2,9.0,20,101000,888,1333,416,668,846,104,82407,50965,12926,589,260,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,8.8,21,101000,671,1333,413,479,767,93,57458,43992,11184,493,290,2.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.3,8.3,20,101000,428,1333,410,275,623,75,31890,27966,8762,368,290,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,8.4,21,101000,178,1333,406,91,304,50,9956,1523,5529,221,290,1.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,9.6,30,101000,6,294,385,4,0,4,491,0,755,20,240,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,11.4,39,101100,0,0,374,0,0,0,0,0,0,0,220,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,14.0,53,101100,0,0,365,0,0,0,0,0,0,0,210,1.9,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,14.3,62,101200,0,0,355,0,0,0,0,0,0,0,230,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,13.3,64,101200,0,0,347,0,0,0,0,0,0,0,230,1.3,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,13.2,70,101200,0,0,339,0,0,0,0,0,0,0,230,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,12.1,66,101200,0,0,337,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,11.7,70,101100,0,0,330,0,0,0,0,0,0,0,220,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,11.7,71,101200,0,0,329,0,0,0,0,0,0,0,220,1.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,11.8,78,101200,3,193,323,2,11,2,298,0,295,10,220,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,12.3,77,101200,158,1333,327,75,271,43,8275,0,4772,190,190,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,12.9,67,101300,407,1333,341,252,580,75,28952,23427,8641,363,190,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,13.3,59,101300,651,1333,352,453,733,95,53958,39929,11296,499,190,1.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,13.4,48,101300,872,1333,370,643,818,108,78741,47346,13256,606,190,1.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,14.2,42,101300,1052,1333,386,803,869,117,100310,50047,14651,677,190,1.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,12.7,32,101300,1181,1333,400,918,899,122,116502,52489,15519,701,280,1.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,11.6,27,101300,1250,1333,408,978,909,126,124886,53657,16145,702,280,0.4,0,0,15.7,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.0,10.3,22,101200,1253,1333,417,979,905,128,124954,54351,16436,713,280,3.4,0,0,13.3,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.2,8.4,19,101200,1190,1333,415,920,887,128,116731,54659,16291,735,300,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.6,9.7,20,101100,1067,1333,425,809,857,123,101161,52515,15433,713,300,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.1,10.6,21,101100,890,1333,423,653,807,114,80014,48851,13977,641,230,2.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.3,10.8,23,101000,673,1333,419,467,725,101,55672,41737,12028,534,210,2.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.9,9.8,22,101000,431,1333,416,268,582,80,30881,26429,9237,390,210,3.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.5,8.4,21,101000,181,1333,406,88,298,48,9754,1257,5317,212,220,4.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,9.5,28,101000,7,311,391,4,21,4,515,0,504,18,230,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,11.0,35,101100,0,0,381,0,0,0,0,0,0,0,220,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,14.5,53,101100,0,0,369,0,0,0,0,0,0,0,220,3.4,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,15.4,66,101100,0,0,357,0,0,0,0,0,0,0,200,1.3,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2017,5,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,13.8,66,101100,0,0,347,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,13.2,70,101100,0,0,339,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,12.8,73,101100,0,0,334,0,0,0,0,0,0,0,170,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.7,75,101100,0,0,331,0,0,0,0,0,0,0,170,1.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.1,78,101100,0,0,325,0,0,0,0,0,0,0,200,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,11.7,77,101200,3,206,323,2,9,2,276,0,273,9,200,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,11.8,74,101200,160,1332,327,74,249,44,8141,0,4879,194,200,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,12.3,67,101200,409,1332,337,249,551,80,28515,23381,9205,389,160,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,12.8,57,101300,653,1332,352,449,707,102,53177,39728,12136,539,260,1.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,12.9,46,101200,873,1332,370,638,796,117,77767,47298,14281,656,250,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,14.0,42,101200,1053,1332,385,798,847,128,99041,49957,15970,743,250,1.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,14.5,37,101200,1182,1332,400,911,872,138,114481,51051,17376,793,230,2.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,15.5,35,101100,1251,1332,413,972,886,141,122890,50874,17909,785,230,2.0,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.5,13.9,29,101100,1254,1332,419,976,889,139,123601,52066,17724,773,240,1.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.7,10.5,22,101000,1191,1332,421,922,887,129,116803,53669,16444,742,240,2.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.6,14.0,26,101000,1068,1332,431,811,856,124,101080,50072,15567,722,230,2.8,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.2,13.4,26,100900,892,1332,428,654,804,116,79924,47305,14195,653,230,4.6,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,13.2,27,100900,675,1332,419,467,718,103,55520,40447,12275,547,220,4.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,12.2,28,100900,433,1332,410,268,569,83,30747,25488,9549,405,220,5.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,15.4,45,100900,184,1332,389,89,282,50,9745,325,5507,221,210,4.6,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,13.8,51,100900,7,328,367,4,18,4,514,0,504,18,220,4.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,12.7,58,100900,0,0,351,0,0,0,0,0,0,0,210,3.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,12.1,64,100900,0,0,340,0,0,0,0,0,0,0,220,3.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,11.7,68,101000,0,0,332,0,0,0,0,0,0,0,190,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.7,71,101000,0,0,330,0,0,0,0,0,0,0,180,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.6,72,100900,0,0,327,0,0,0,0,0,0,0,180,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.1,75,100800,0,0,322,0,0,0,0,0,0,0,190,3.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.0,78,100800,0,0,319,0,0,0,0,0,0,0,160,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.7,82,100800,0,0,314,0,0,0,0,0,0,0,190,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,11.1,86,100800,3,219,312,3,0,3,310,0,481,12,190,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.1,83,100800,162,1332,315,78,248,48,8490,0,5202,208,190,4.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,11.2,83,100800,411,1332,316,256,566,82,29303,24757,9387,397,200,4.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,12.2,79,100800,654,1332,324,447,695,106,52904,39815,12578,560,160,3.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.1,72,100800,874,1332,330,556,533,206,64859,38166,24141,1157,190,4.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,11.8,70,100800,1054,1332,331,636,377,338,73459,31377,39272,1959,200,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,12.7,56,100700,1183,1332,354,772,464,360,90296,37734,42368,2069,180,3.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,12.3,48,100700,1251,1332,363,918,693,267,110954,49513,32458,1485,160,3.8,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,12.8,47,100600,1255,1332,368,821,438,408,95973,36718,48066,2264,200,4.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,12.9,49,100500,1192,1332,365,720,347,409,83471,29752,47731,2345,190,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,13.8,53,100500,1069,1332,365,594,275,373,68138,23455,43062,2164,190,4.3,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,13.3,52,100400,894,1332,362,626,680,169,74348,44739,20206,956,210,6.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,12.7,53,100400,678,1332,358,476,709,116,56185,41745,13679,615,220,6.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,12.1,55,100400,436,1332,350,276,568,90,31529,26706,10345,442,220,6.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,11.6,62,100300,187,1332,339,93,266,56,10184,2157,6139,248,210,6.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.1,69,100300,8,346,328,5,0,5,546,0,836,22,210,6.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.0,78,100400,0,0,319,0,0,0,0,0,0,0,200,3.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.5,81,100400,0,0,314,0,0,0,0,0,0,0,200,5.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.1,82,100400,0,0,311,0,0,0,0,0,0,0,200,5.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.5,86,100400,0,0,309,0,0,0,0,0,0,0,190,5.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.1,84,100400,0,0,309,0,0,0,0,0,0,0,220,6.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,11.0,89,100400,0,0,316,0,0,0,0,0,0,0,240,10.0,1,1,16.1,338,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.6,87,100400,0,0,320,0,0,0,0,0,0,0,210,7.7,2,2,16.1,373,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.6,87,100500,0,0,323,0,0,0,0,0,0,0,210,7.6,3,3,16.1,435,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,10.6,89,100500,4,231,323,2,2,2,298,0,297,10,220,7.2,4,4,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.6,86,100600,164,1331,310,74,164,54,8003,614,5829,235,220,7.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,10.6,80,100600,412,1331,334,245,433,111,27401,22677,12471,540,230,6.1,5,5,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,10.5,71,100700,656,1331,341,420,533,158,48225,35930,18167,833,210,5.8,5,5,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,10.6,65,100700,875,1331,348,489,328,274,55907,26711,31443,1539,220,5.2,5,5,16.1,799,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,10.6,65,100700,1055,1331,348,506,187,357,58187,16127,41377,2071,240,5.7,5,5,16.1,879,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,10.6,60,100700,1184,1331,355,605,182,443,69706,16496,51447,2549,200,5.6,5,5,16.1,982,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,10.6,54,100700,1252,1331,363,795,409,411,93071,35027,48371,2280,200,4.7,5,5,16.1,1036,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,10.7,51,100700,1255,1331,365,955,796,204,117858,53079,25341,1131,220,5.2,4,4,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,11.0,51,100700,1194,1331,350,933,878,146,117179,54252,18400,837,220,5.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,10.5,51,100600,1071,1331,346,822,848,140,101856,53045,17390,811,220,6.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,10.0,50,100600,895,1331,345,665,796,129,80801,50050,15772,730,210,6.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,9.7,51,100600,680,1331,342,476,710,114,56346,42968,13521,607,220,7.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,9.5,52,100600,438,1331,340,275,558,92,31466,27430,10517,450,220,7.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,10.0,59,100700,189,1331,332,93,269,55,10203,2393,6039,244,210,5.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,9.9,65,100700,9,362,325,5,15,5,601,0,590,21,220,6.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,9.0,68,100700,0,0,317,0,0,0,0,0,0,0,230,8.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.4,75,100800,0,0,312,0,0,0,0,0,0,0,220,6.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.4,78,100900,0,0,310,0,0,0,0,0,0,0,210,4.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,9.4,80,100900,0,0,308,0,0,0,0,0,0,0,190,4.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.3,80,101000,0,0,308,0,0,0,0,0,0,0,190,3.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.9,80,101000,0,0,305,0,0,0,0,0,0,0,220,5.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.9,80,101000,0,0,305,0,0,0,0,0,0,0,210,4.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.9,80,101100,0,0,305,0,0,0,0,0,0,0,220,4.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,9.0,80,101100,4,243,306,2,3,2,298,0,297,10,220,4.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,9.4,79,101200,166,1331,309,73,160,53,7966,737,5814,234,220,4.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,9.4,71,101300,414,1331,316,241,418,112,26980,22228,12511,541,220,5.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,9.4,65,101300,657,1331,323,434,569,153,49945,38252,17654,807,220,6.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,9.4,65,101400,876,1331,323,540,465,234,62490,35744,27179,1313,190,6.6,0,0,16.1,884,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,9.4,65,101400,1056,1331,323,468,133,363,53875,11645,41986,2103,190,4.1,0,0,16.1,945,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,10.0,58,101400,1184,1331,333,595,172,442,68603,15624,51337,2541,190,5.2,0,0,16.1,960,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,10.1,57,101400,1253,1331,336,617,155,471,71444,14183,54916,2612,190,6.2,0,0,16.1,980,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,10.1,56,101500,1256,1331,337,620,157,471,71794,14356,54996,2607,190,5.9,0,0,16.1,1026,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,10.0,55,101400,1195,1331,338,663,323,373,77582,27141,43949,2138,180,5.6,0,0,16.1,1071,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,10.0,54,101400,1072,1331,339,806,804,159,99015,52124,19591,922,180,5.3,0,0,16.1,1117,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,10.0,54,101400,897,1331,339,652,749,147,78459,48735,17761,830,180,5.1,0,0,16.1,1158,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,10.0,53,101400,682,1331,340,466,657,130,54624,41406,15248,691,180,5.1,0,0,16.1,1158,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,10.0,52,101400,441,1331,341,269,508,101,30547,26128,11535,497,210,5.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,10.0,53,101400,192,1331,341,92,245,57,10079,2553,6239,252,210,5.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,10.0,52,101400,10,379,341,5,16,5,602,0,589,21,210,5.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,9.0,57,101400,0,0,329,0,0,0,0,0,0,0,210,5.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,9.3,65,101500,0,0,321,0,0,0,0,0,0,0,210,5.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,9.1,71,101600,0,0,314,0,0,0,0,0,0,0,210,5.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,9.0,77,101600,0,0,309,0,0,0,0,0,0,0,210,5.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.8,80,101500,0,0,305,0,0,0,0,0,0,0,180,5.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.3,85,101600,0,0,298,0,0,0,0,0,0,0,180,5.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.1,89,101600,0,0,295,0,0,0,0,0,0,0,180,5.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.0,93,101700,0,0,291,0,0,0,0,0,0,0,180,5.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.0,93,101700,4,254,291,3,12,3,386,0,382,13,180,5.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,7.9,93,101700,168,1330,291,80,261,47,8808,465,5209,208,190,5.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,8.5,90,101700,415,1330,296,257,565,81,29545,25700,9337,394,230,5.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,9.2,83,101800,658,1330,304,458,722,101,54540,42176,12064,535,180,5.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,9.9,75,101800,877,1330,315,648,809,115,79249,49453,14116,647,200,4.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,10.6,68,101800,1057,1330,326,806,854,128,100396,52380,15995,742,210,6.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,11.2,62,101800,1185,1330,336,917,867,145,115101,53407,18219,831,190,6.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,11.2,62,101700,1253,1330,336,978,879,149,123474,53998,18949,828,210,5.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,11.2,60,101700,1257,1330,338,979,876,152,123525,53913,19210,837,250,5.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,11.2,59,101600,1196,1330,340,921,855,153,115310,53256,19221,876,220,5.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,11.2,57,101600,1073,1330,342,811,826,145,100277,51734,18029,843,220,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,11.1,56,101600,899,1330,343,657,774,134,79648,48599,16317,758,220,4.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,11.1,56,101600,684,1330,343,471,690,117,55669,41547,13858,624,230,4.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,11.1,56,101600,443,1330,343,274,543,93,31252,26473,10653,456,230,5.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,11.1,56,101600,195,1330,343,94,267,55,10303,2407,6034,244,220,5.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,11.1,56,101600,11,395,344,5,18,5,623,0,608,22,180,4.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,10.0,60,101600,0,0,331,0,0,0,0,0,0,0,210,6.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,10.3,69,101600,0,0,323,0,0,0,0,0,0,0,210,5.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.2,76,101600,0,0,316,0,0,0,0,0,0,0,210,4.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,10.1,82,101600,0,0,310,0,0,0,0,0,0,0,210,3.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.9,86,101600,0,0,306,0,0,0,0,0,0,0,210,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,9.3,91,101700,0,0,299,0,0,0,0,0,0,0,210,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,9.1,95,101700,0,0,296,0,0,0,0,0,0,0,210,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,9.0,100,101700,0,0,292,0,0,0,0,0,0,0,210,0.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,9.2,99,101700,5,264,294,3,8,3,386,0,383,13,210,0.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,11.0,94,101700,170,1330,306,78,230,49,8576,341,5391,216,210,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.1,93,101800,417,1330,307,253,527,88,28845,24229,10059,428,210,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,11.2,89,101800,659,1330,311,451,688,111,53292,40459,13100,585,220,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,12.0,64,101700,878,1330,338,640,779,126,77632,47670,15330,708,190,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,12.2,58,101800,1057,1330,347,797,829,138,98606,50871,17190,803,190,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,12.2,54,101600,1186,1330,352,909,850,152,113671,52338,19049,872,190,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,12.2,54,101600,1254,1330,352,970,864,155,122128,52959,19644,860,200,3.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,12.1,53,101500,1258,1330,353,973,866,155,122589,53002,19556,853,200,2.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,12.1,52,101500,1196,1330,355,917,853,150,114943,52358,18856,858,200,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,12.1,51,101400,1075,1330,356,808,822,143,99911,50862,17813,833,210,3.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,12.0,50,101400,900,1330,358,653,768,133,79164,47626,16178,752,190,4.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,12.0,50,101400,686,1330,357,468,678,118,55182,40584,13988,630,190,4.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,11.9,50,101300,445,1330,356,271,524,95,30851,25650,10910,469,190,5.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,11.9,51,101300,197,1330,356,93,247,56,10178,2403,6191,251,210,5.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,11.9,51,101200,11,410,356,5,15,5,624,0,610,22,190,4.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,10.8,55,101200,0,0,342,0,0,0,0,0,0,0,200,5.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,11.1,64,101200,0,0,333,0,0,0,0,0,0,0,200,4.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.9,69,101200,0,0,326,0,0,0,0,0,0,0,200,4.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,10.7,75,101200,0,0,320,0,0,0,0,0,0,0,200,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,10.5,79,101200,0,0,315,0,0,0,0,0,0,0,170,3.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.9,83,101200,0,0,308,0,0,0,0,0,0,0,170,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,9.8,88,101200,0,0,304,0,0,0,0,0,0,0,170,3.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,9.6,93,101200,0,0,299,0,0,0,0,0,0,0,170,2.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.8,92,101300,5,274,301,3,0,3,331,0,513,13,170,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,11.6,88,101300,171,1329,314,77,197,51,8363,544,5616,226,170,2.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,11.6,87,101300,418,1329,314,248,488,95,28106,23202,10782,461,180,4.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,101300,660,1329,317,445,654,120,52172,39333,14107,634,180,4.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,11.8,84,101400,878,1329,318,633,753,136,76402,47143,16447,764,180,5.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,12.2,76,101300,1058,1329,327,792,813,145,97642,50507,17998,843,200,4.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,12.6,52,101300,1186,1329,358,907,846,152,113329,51864,19029,870,210,3.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,12.9,48,101200,1254,1329,366,947,782,209,116561,51321,25874,1157,220,4.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,13.5,47,101100,1258,1329,373,874,572,333,103929,43686,39788,1833,230,3.7,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,14.0,47,101000,1197,1329,376,805,541,318,95246,41099,37804,1817,230,4.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,14.4,46,101000,1076,1329,380,703,504,296,82199,38394,34765,1716,200,3.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,15.0,50,100900,902,1329,377,524,381,265,60082,29122,30590,1500,220,3.5,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,15.1,53,100900,687,1329,373,359,329,189,40732,22748,21548,1009,170,2.8,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,15.5,53,100900,448,1329,376,255,450,104,28805,21759,11737,509,170,2.5,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,14.2,54,100900,200,1329,365,94,243,58,10315,2258,6341,258,220,5.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,12.8,60,101000,12,425,348,6,16,6,655,0,640,23,210,6.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,12.7,71,101000,0,0,335,0,0,0,0,0,0,0,200,4.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.1,78,101100,0,0,325,0,0,0,0,0,0,0,190,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.7,81,101100,0,0,320,0,0,0,0,0,0,0,180,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.7,84,101100,0,0,317,0,0,0,0,0,0,0,170,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.7,87,101000,0,0,315,0,0,0,0,0,0,0,160,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,11.7,94,101100,0,0,310,0,0,0,0,0,0,0,200,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,11.6,97,101100,0,0,307,0,0,0,0,0,0,0,190,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,11.1,96,101100,0,0,305,0,0,0,0,0,0,0,190,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,11.1,96,101100,5,283,318,4,12,4,440,0,434,15,180,3.1,3,3,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,11.7,96,101200,173,1329,322,83,261,49,9109,432,5413,217,180,3.2,3,3,16.1,277,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,11.7,88,101200,419,1329,330,262,568,83,30037,25250,9556,405,190,3.2,4,4,16.1,305,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.8,77,101200,661,1329,341,464,726,103,55068,41456,12221,543,170,4.0,4,4,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,12.2,68,101200,879,1329,335,653,812,116,79710,48528,14220,653,190,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,12.3,60,101200,1058,1329,345,807,844,135,100047,51439,16797,783,210,4.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,12.8,57,101200,1187,1329,353,908,827,170,112577,51999,21132,974,200,4.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,12.8,52,101100,1255,1329,359,836,506,358,98806,40097,42559,1977,210,3.2,0,0,15.0,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,12.3,48,101100,1259,1329,362,827,450,401,96959,37482,47330,2207,170,5.0,0,0,14.7,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,12.7,50,101000,1198,1329,362,872,689,251,105172,48610,30467,1437,220,4.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,12.1,51,101000,1077,1329,356,572,257,364,65934,21881,42228,2114,220,5.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,11.6,51,101000,903,1329,353,344,105,272,39454,8400,31422,1541,210,5.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,11.1,52,101000,689,1329,349,341,239,217,38380,18361,24538,1159,200,5.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,10.5,51,100900,450,1329,346,194,165,138,21470,10047,15341,678,200,5.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,9.5,53,100900,202,1329,337,69,72,58,7593,947,6405,259,200,4.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,9.9,60,101000,13,441,330,4,0,4,493,0,758,20,190,3.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,9.5,63,101000,0,0,325,0,0,0,0,0,0,0,190,4.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.1,68,101000,0,0,323,0,0,0,0,0,0,0,190,3.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.6,73,101000,0,0,321,0,0,0,0,0,0,0,170,4.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,10.6,75,101100,0,0,319,0,0,0,0,0,0,0,170,3.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.7,76,101000,0,0,319,0,0,0,0,0,0,0,180,3.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.8,84,101100,0,0,318,0,0,0,0,0,0,0,140,3.4,0,0,16.1,3317,9,999999999,20,0.0000,0,88,999.000,0.5,1.0 +2017,5,31,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,12.3,88,101100,0,0,324,0,0,0,0,0,0,0,170,2.1,1,1,16.1,3030,9,999999999,22,0.0000,0,88,999.000,0.5,1.0 +2017,5,31,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,12.8,97,101100,0,0,320,0,0,0,0,0,0,0,140,2.2,1,1,16.1,2949,9,999999999,22,0.0000,0,88,999.000,0.3,1.0 +2017,5,31,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,12.9,97,101200,6,291,325,3,0,3,366,0,562,14,160,2.5,2,2,16.1,3353,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,13.3,96,101200,174,1329,328,73,170,51,7989,308,5583,225,110,1.7,2,2,16.1,3353,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,13.3,93,101300,420,1329,333,233,411,103,26170,19984,11600,500,120,3.0,3,3,16.1,3353,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,13.3,88,101300,662,1329,337,421,580,133,49017,35483,15485,703,160,2.1,3,3,16.1,3093,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,13.2,78,101300,880,1329,348,466,309,262,53439,24073,30177,1475,160,1.9,4,4,16.1,1128,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,12.9,67,101300,1059,1329,358,558,237,369,64023,20306,42647,2142,160,0.2,4,4,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,13.4,63,101300,1187,1329,349,859,735,202,105063,48169,24847,1160,160,1.6,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,13.9,59,101300,1255,1329,357,955,855,147,120604,50633,18598,809,260,2.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,14.0,53,101200,1260,1329,365,961,862,144,121585,50699,18274,791,260,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,14.3,49,101200,1199,1329,374,907,849,141,114082,49983,17839,808,260,2.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,13.1,44,101100,1078,1329,375,804,833,129,100287,49578,16096,746,260,2.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,12.2,40,101100,905,1329,378,656,795,115,80508,47346,14121,650,260,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,11.7,39,101100,691,1329,376,475,722,100,56908,41214,11963,533,210,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,11.8,40,101000,452,1329,374,281,590,80,32514,26912,9327,396,210,4.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,12.9,50,101000,205,1329,364,102,323,52,11250,2540,5756,231,240,7.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,13.3,60,101100,14,455,351,7,30,7,782,0,749,28,220,6.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,12.9,68,101100,0,0,340,0,0,0,0,0,0,0,220,4.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,12.5,72,101100,0,0,333,0,0,0,0,0,0,0,200,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,12.0,73,101100,0,0,329,0,0,0,0,0,0,0,200,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2017,5,31,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,11.6,72,101100,0,0,328,0,0,0,0,0,0,0,150,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.2,69,101100,0,0,328,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,11.8,80,101100,0,0,321,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.8,79,101000,0,0,317,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,10.4,79,101000,0,0,314,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.1,78,101000,6,298,313,4,30,4,515,0,500,18,310,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,11.1,66,101000,175,1328,331,90,355,44,10014,0,4845,192,310,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,11.0,53,101100,421,1328,347,274,651,68,31950,26665,7936,331,310,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,9.5,39,101100,662,1328,361,479,800,80,58065,43735,9700,423,330,0.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,6.1,25,101100,880,1328,374,670,871,92,83420,52430,11540,520,330,4.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,6.3,24,101000,1059,1328,381,829,913,101,105268,55440,12902,587,290,3.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,7.2,22,101000,1187,1328,394,945,936,108,121373,56430,13907,619,300,2.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,3.2,15,100900,1256,1328,398,1007,948,111,130454,58629,14386,611,330,3.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.5,5.8,17,100900,1260,1328,408,1011,949,111,130862,57661,14437,611,300,3.7,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.9,3.5,14,100800,1200,1328,407,933,860,156,117085,57093,19655,891,310,4.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.2,4.7,16,100700,1079,1328,405,742,585,267,87943,46091,31815,1550,310,4.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.4,3.3,14,100700,906,1328,409,514,353,273,59210,29659,31612,1545,330,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.8,3.4,13,100600,693,1328,411,418,481,167,48281,34831,19375,894,300,2.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.4,4.1,14,100600,454,1328,410,242,424,97,27724,22895,11189,480,300,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,6.3,19,100600,207,1328,403,89,212,56,9802,2990,6169,249,280,1.9,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,11.6,33,100600,15,468,391,6,21,6,732,0,707,26,220,0.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,11.2,35,100600,0,0,381,0,0,0,0,0,0,0,220,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,11.6,44,100600,0,0,365,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,11.2,49,100600,0,0,354,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,11.6,57,100600,0,0,345,0,0,0,0,0,0,0,140,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,10.5,57,100500,0,0,338,0,0,0,0,0,0,0,140,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,9.5,57,100500,0,0,332,0,0,0,0,0,0,0,190,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,10.0,63,100500,0,0,327,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.1,70,100500,0,0,321,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,10.7,77,100500,6,305,318,4,23,4,494,0,482,17,150,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,11.1,68,100500,176,1328,328,87,323,45,9670,0,4947,196,150,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,11.2,58,100600,422,1328,341,267,615,72,30954,25731,8327,349,290,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,11.6,48,100500,663,1328,358,467,756,90,56097,41627,10788,475,290,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,10.8,39,100500,880,1328,371,656,836,102,80981,49224,12625,574,290,1.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,8.8,28,100500,1059,1328,384,817,885,111,102919,53521,14001,642,290,3.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,8.4,25,100400,1187,1328,392,934,918,113,119587,55249,14541,649,290,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,8.8,23,100400,1256,1328,400,997,928,119,128202,55702,15332,655,290,2.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,8.2,21,100300,1261,1328,405,1001,925,123,128486,56095,15826,674,250,3.8,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.4,7.2,19,100300,1201,1328,409,944,908,123,120348,55979,15798,705,270,1.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.5,7.0,18,100200,1080,1328,410,834,876,121,104775,54644,15234,701,270,3.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.8,7.5,19,100200,908,1328,412,678,824,114,83406,51322,14109,647,320,2.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.3,8.1,20,100200,695,1328,410,490,738,104,58615,44220,12441,555,220,3.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,9.9,24,100100,456,1328,406,289,590,87,33369,28725,10024,428,220,4.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,9.0,26,100100,209,1328,392,105,312,56,11633,4180,6223,251,240,5.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,9.3,32,100200,16,482,375,7,27,7,838,0,804,30,230,5.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,8.9,39,100200,0,0,358,0,0,0,0,0,0,0,220,4.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,8.9,42,100300,0,0,352,0,0,0,0,0,0,0,230,5.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,8.8,46,100300,0,0,344,0,0,0,0,0,0,0,220,4.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,8.3,49,100300,0,0,336,0,0,0,0,0,0,0,160,1.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,8.4,54,100300,0,0,330,0,0,0,0,0,0,0,180,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,9.5,65,100300,0,0,322,0,0,0,0,0,0,0,180,2.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.0,70,100400,0,0,321,0,0,0,0,0,0,0,200,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.0,75,100400,0,0,315,0,0,0,0,0,0,0,200,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,10.0,77,100400,7,312,314,4,9,4,441,0,436,15,150,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,10.0,71,100500,177,1327,320,82,231,51,8970,1080,5618,225,150,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,10.1,62,100500,423,1327,330,259,533,89,29516,25188,10175,433,150,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,10.7,54,100600,663,1327,343,460,711,105,54636,41435,12529,558,150,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,11.0,46,100600,881,1327,358,650,802,118,79386,48813,14474,666,220,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,9.9,34,100600,1060,1327,375,811,857,126,101140,52752,15817,732,220,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,9.7,30,100600,1188,1327,384,928,891,130,117476,54431,16561,747,220,0.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,11.7,34,100600,1256,1327,389,990,906,133,126178,53924,17000,732,220,4.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,11.6,33,100500,1261,1327,389,995,908,132,126873,54003,16886,723,200,4.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,11.2,31,100500,1201,1327,392,941,899,127,119463,53710,16181,724,220,5.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,11.7,33,100500,1081,1327,391,831,873,120,104274,52027,15159,699,220,6.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,11.8,36,100500,909,1327,384,677,827,111,83348,49036,13679,628,200,6.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,11.7,39,100500,696,1327,376,491,753,96,59010,42594,11614,516,210,6.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,11.6,41,100500,458,1327,371,292,620,78,33928,28246,9082,385,210,5.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,11.0,45,100500,212,1327,359,108,362,51,12066,3519,5662,227,210,4.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,10.5,52,100600,17,496,345,8,41,7,891,0,836,31,200,3.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,10.0,59,100600,0,0,332,0,0,0,0,0,0,0,220,3.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,9.9,65,100700,0,0,325,0,0,0,0,0,0,0,200,2.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,9.4,65,100700,0,0,322,0,0,0,0,0,0,0,170,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,9.4,67,100700,0,0,320,0,0,0,0,0,0,0,160,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,9.4,67,100700,0,0,320,0,0,0,0,0,0,0,170,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,9.3,72,100700,0,0,315,0,0,0,0,0,0,0,170,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,9.0,71,100800,0,0,314,0,0,0,0,0,0,0,160,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.3,74,100800,0,0,312,0,0,0,0,0,0,0,150,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,9.0,75,100800,7,318,310,4,20,4,495,0,483,17,190,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,9.5,72,100900,178,1327,316,86,293,47,9516,747,5191,207,190,3.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,10.0,66,101000,423,1327,325,262,578,78,30260,25685,9021,380,200,3.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,10.1,56,101000,664,1327,337,460,727,97,55018,41604,11587,513,220,3.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,10.7,52,101000,881,1327,346,648,809,111,79476,48617,13652,625,230,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,11.0,49,101000,1060,1327,353,806,860,119,100953,51691,14989,692,200,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,10.1,43,101000,1188,1327,358,923,896,121,117485,53700,15449,693,200,4.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,10.6,40,101000,1257,1327,366,985,909,124,126239,54053,15966,683,200,5.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,10.7,39,101000,1261,1327,369,989,908,126,126682,54044,16195,690,220,6.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,11.7,39,100900,1202,1327,375,934,888,129,118408,52943,16446,737,210,6.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,11.7,40,100900,1082,1327,375,827,864,123,103647,51705,15433,712,190,5.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,11.6,40,100900,910,1327,372,676,822,112,83214,49019,13844,636,210,5.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,11.4,43,100900,698,1327,366,493,755,96,59286,42861,11608,516,190,5.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,11.0,45,100900,460,1327,359,295,625,79,34331,28917,9192,390,190,5.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,10.6,50,100900,214,1327,348,111,367,52,12366,4054,5805,233,210,4.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,10.5,59,100900,18,509,336,8,42,8,944,0,884,33,190,4.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,9.9,63,101000,0,0,327,0,0,0,0,0,0,0,200,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,9.3,67,101000,0,0,320,0,0,0,0,0,0,0,180,3.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,8.8,67,101100,0,0,317,0,0,0,0,0,0,0,190,4.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,8.4,68,101100,0,0,314,0,0,0,0,0,0,0,170,3.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,8.9,73,101100,0,0,312,0,0,0,0,0,0,0,170,3.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.0,81,101100,0,0,305,0,0,0,0,0,0,0,180,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.4,83,101200,0,0,306,0,0,0,0,0,0,0,180,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.4,84,101200,0,0,305,0,0,0,0,0,0,0,190,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,9.4,85,101300,7,324,304,4,20,4,516,0,504,18,190,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,9.5,79,101300,179,1327,309,87,292,47,9567,869,5239,209,190,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,10.0,74,101300,424,1327,317,263,581,78,30385,25807,9006,380,210,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,10.1,64,101400,664,1327,327,462,736,93,55327,41689,11218,495,190,2.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,10.7,60,101400,881,1327,335,650,822,104,80128,48700,12899,588,190,3.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,11.1,54,101300,1060,1327,346,810,874,112,101887,51734,14087,647,230,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,11.2,49,101300,1188,1327,354,926,906,115,118307,53170,14723,659,240,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,11.7,45,101200,1257,1327,365,989,921,117,127227,53454,15058,642,210,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,11.8,40,101100,1262,1327,374,994,922,117,127877,53472,15160,643,250,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,12.3,37,101100,1203,1327,385,940,909,117,120114,52706,14950,665,240,2.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,12.8,37,101000,1083,1327,387,832,882,112,104937,51117,14145,649,230,4.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,12.8,38,101000,911,1327,386,679,837,104,83993,48322,12870,588,220,4.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,12.5,40,100900,700,1327,380,494,762,92,59544,42208,11155,495,210,5.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,12.2,41,100900,462,1327,375,295,627,77,34381,28328,9013,382,210,5.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,12.1,47,100900,216,1327,363,111,366,52,12373,3743,5769,232,200,4.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,11.0,54,101000,18,522,346,8,41,8,945,0,883,33,210,4.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,10.6,62,101000,0,0,333,0,0,0,0,0,0,0,200,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.5,67,101000,0,0,326,0,0,0,0,0,0,0,180,2.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.0,70,101100,0,0,321,0,0,0,0,0,0,0,180,4.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.0,73,101100,0,0,318,0,0,0,0,0,0,0,180,3.4,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.0,75,101100,0,0,315,0,0,0,0,0,0,0,170,2.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.9,80,101100,0,0,310,0,0,0,0,0,0,0,170,3.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.4,80,101100,0,0,308,0,0,0,0,0,0,0,200,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.4,84,101100,0,0,305,0,0,0,0,0,0,0,180,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,9.4,85,101100,7,329,304,4,21,4,516,0,503,18,190,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,9.5,79,101100,179,1326,309,87,294,48,9623,936,5255,210,180,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,10.1,74,101200,424,1326,317,263,576,79,30332,25748,9121,385,200,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,10.7,67,101200,664,1326,328,460,727,96,55021,41288,11558,511,240,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,11.2,62,101200,881,1326,336,647,809,109,79458,48233,13480,617,220,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,11.8,52,101100,1060,1326,353,805,863,116,101051,51074,14554,670,250,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,12.3,47,101100,1188,1326,364,923,902,114,117823,52245,14671,656,170,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,12.9,43,101000,1257,1326,375,986,918,116,126791,52467,15008,639,270,2.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,13.4,40,101000,1262,1326,387,990,913,121,126999,52221,15554,661,220,2.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,14.0,37,100900,1203,1326,397,932,883,132,117957,51322,16708,750,220,2.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,14.3,34,100800,1084,1326,407,827,860,124,103399,49928,15571,720,200,3.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,14.4,33,100700,913,1326,410,676,816,114,82965,47172,14050,647,200,3.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,14.2,34,100700,701,1326,405,492,740,101,58892,41121,12102,541,210,3.4,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,14.3,36,100700,464,1326,402,294,605,83,34039,27300,9624,411,210,3.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,13.7,42,100700,218,1326,383,111,344,55,12313,3761,6079,246,220,3.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,12.1,47,100700,19,534,363,9,37,8,976,0,919,34,210,3.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,11.6,54,100800,0,0,349,0,0,0,0,0,0,0,220,5.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,11.1,63,100800,0,0,334,0,0,0,0,0,0,0,200,3.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.1,68,100900,0,0,329,0,0,0,0,0,0,0,180,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.1,73,100800,0,0,324,0,0,0,0,0,0,0,180,1.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.0,75,100900,0,0,322,0,0,0,0,0,0,0,190,0.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.6,78,100800,0,0,316,0,0,0,0,0,0,0,190,2.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.6,78,100900,0,0,316,0,0,0,0,0,0,0,190,0.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.6,81,100900,0,0,314,0,0,0,0,0,0,0,190,2.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,10.6,80,100900,7,333,315,4,17,4,516,0,505,18,210,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,10.7,77,100900,180,1326,317,86,272,50,9497,1039,5465,219,210,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.1,70,101000,425,1326,327,263,566,82,30202,25374,9407,398,210,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,11.2,55,101000,664,1326,345,463,735,95,55419,41365,11425,505,210,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,12.3,47,100900,881,1326,364,652,820,107,80115,47998,13210,604,300,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.2,13.5,43,100900,1060,1326,380,811,874,113,101872,50389,14241,656,300,1.6,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,15.1,38,100800,1188,1326,402,931,913,113,118814,50748,14433,646,300,2.7,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.1,16.0,34,100800,1257,1326,420,994,925,117,127526,50603,15045,642,310,3.7,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.9,15.6,30,100700,1263,1326,429,1000,925,119,128237,51058,15270,648,310,4.5,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.9,15.7,27,100600,1204,1326,440,947,913,118,120595,50613,15109,673,340,3.4,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.5,15.9,27,100500,1085,1326,444,841,890,112,105812,49388,14186,652,340,2.3,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.0,14.0,22,100400,914,1326,450,689,850,103,85253,48211,12773,584,340,3.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.3,13.2,20,100400,703,1326,450,505,782,91,60965,42752,10971,486,340,3.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.4,12.3,19,100400,466,1326,450,306,658,75,35708,29435,8735,369,340,4.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.4,13.8,23,100400,220,1326,440,119,408,51,13247,3842,5722,230,290,2.9,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,16.9,36,100400,20,545,420,10,52,9,1077,0,992,37,220,1.6,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,14.8,39,100400,0,0,398,0,0,0,0,0,0,0,210,2.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,13.3,40,100400,0,0,384,0,0,0,0,0,0,0,220,1.3,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,13.2,47,100400,0,0,371,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,12.8,50,100400,0,0,363,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,12.9,52,100400,0,0,361,0,0,0,0,0,0,0,190,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,13.2,65,100400,0,0,345,0,0,0,0,0,0,0,190,1.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,12.3,60,100400,0,0,345,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,12.9,71,100400,0,0,336,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,13.4,72,100400,8,336,338,5,34,5,568,0,547,20,190,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,14.4,64,100400,180,1325,354,91,360,42,10153,0,4729,187,310,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,14.5,51,100500,425,1325,372,270,641,65,31562,24331,7603,317,310,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,14.9,43,100500,664,1325,390,469,781,78,56867,39535,9471,414,310,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,14.0,34,100500,881,1325,406,657,858,87,81965,46938,10871,490,310,0.4,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.6,14.9,31,100500,1060,1325,421,816,906,92,103935,49207,11768,534,310,3.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.4,14.3,27,100400,1188,1325,430,933,935,95,120542,50960,12307,544,340,3.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.4,13.4,23,100400,1257,1325,440,996,948,97,129754,52172,12615,530,320,4.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.5,14.0,22,100300,1263,1325,447,1001,949,97,130379,51800,12732,532,320,4.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.6,14.3,21,100300,1204,1325,454,947,932,100,122175,51215,12999,572,340,3.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.7,13.8,21,100200,1086,1325,454,840,908,96,107078,50408,12256,556,300,3.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,42.2,13.6,19,100200,915,1325,462,688,868,89,86115,47996,11178,506,310,3.1,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,41.7,13.6,19,100200,704,1325,459,505,803,78,61647,42101,9574,420,310,2.8,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.8,14.2,21,100100,467,1325,455,306,679,67,36015,28160,7873,331,310,3.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.6,15.8,34,100200,222,1325,417,119,428,48,13352,2685,5344,214,220,5.6,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,13.2,42,100200,21,557,380,10,57,9,1082,0,986,37,210,4.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,12.1,49,100300,0,0,361,0,0,0,0,0,0,0,210,5.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,11.7,53,100300,0,0,350,0,0,0,0,0,0,0,220,6.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,11.6,57,100400,0,0,345,0,0,0,0,0,0,0,190,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,11.1,58,100400,0,0,340,0,0,0,0,0,0,0,190,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,11.1,57,100400,0,0,342,0,0,0,0,0,0,0,200,2.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,11.1,61,100500,0,0,337,0,0,0,0,0,0,0,190,5.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,11.1,63,100500,0,0,334,0,0,0,0,0,0,0,180,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.1,68,100500,0,0,329,0,0,0,0,0,0,0,180,4.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,11.1,70,100600,8,339,327,4,14,4,494,0,486,17,180,4.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.1,69,100600,181,1325,328,83,243,50,9140,978,5519,221,190,4.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,11.2,63,100700,425,1325,335,254,525,85,29047,24038,9794,416,200,5.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,11.7,64,100800,664,1325,336,447,686,104,53153,39363,12338,549,200,6.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,11.7,56,100700,881,1325,347,631,773,117,77030,46545,14341,659,210,6.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,11.8,50,100700,1060,1325,357,788,830,124,98338,49857,15524,719,220,4.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,12.2,48,100800,1188,1325,363,905,873,122,115001,51227,15552,698,210,5.8,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,12.2,45,100800,1257,1325,368,941,787,195,116632,50930,24246,1069,220,6.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,12.1,43,100700,1263,1325,370,946,781,201,117010,51015,24972,1095,220,6.8,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,11.8,42,100700,1205,1325,370,916,850,144,115377,51730,18179,819,220,7.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,12.1,45,100700,1087,1325,366,799,768,169,97789,49438,20794,982,190,6.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,11.8,48,100700,916,1325,359,649,714,156,78035,46307,18807,885,210,8.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,11.4,51,100700,705,1325,352,452,574,146,52652,37252,17112,786,220,9.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,11.1,54,100700,469,1325,346,257,411,112,29140,22477,12704,554,220,10.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,11.0,59,100700,224,1325,339,84,126,63,9277,2258,6965,284,220,7.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,10.6,62,100700,22,569,333,5,0,5,581,0,890,23,210,6.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.6,68,100800,0,0,326,0,0,0,0,0,0,0,210,7.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.6,70,100900,0,0,323,0,0,0,0,0,0,0,210,5.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,10.7,73,100900,0,0,322,0,0,0,0,0,0,0,210,5.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,11.1,75,100900,0,0,322,0,0,0,0,0,0,0,200,5.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.0,75,100900,0,0,338,0,0,0,0,0,0,0,180,4.5,4,4,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.6,78,100800,0,0,316,0,0,0,0,0,0,0,220,4.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.6,78,100800,0,0,316,0,0,0,0,0,0,0,190,5.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.6,78,100800,0,0,316,0,0,0,0,0,0,0,230,7.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,10.6,77,100800,8,341,317,4,10,4,463,0,456,16,220,6.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,10.6,74,100900,181,1325,320,73,168,50,8043,762,5547,222,220,6.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,10.7,68,101000,425,1325,327,208,303,111,23363,16055,12511,542,230,5.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,11.6,72,101100,664,1325,334,372,392,175,42370,27301,20075,930,210,5.1,1,1,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.0,68,101100,881,1325,368,416,166,306,47159,14089,34874,1723,210,6.8,9,9,16.1,570,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,10.5,60,101200,1059,1325,375,536,199,377,61542,17516,43577,2189,220,7.2,9,9,16.1,763,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,10.5,55,101200,1188,1325,374,425,106,331,50242,8433,39289,1895,220,7.1,8,8,16.1,975,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,10.1,47,101200,1257,1325,370,902,702,236,110292,48971,28981,1293,220,6.1,5,5,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,10.6,49,101200,1263,1325,379,893,685,239,109138,47779,29425,1305,240,5.6,7,7,16.1,1097,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,10.9,56,101200,1205,1325,343,560,130,442,64813,11638,51496,2516,220,5.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,10.0,49,101300,1087,1325,357,620,321,357,71817,27414,41545,2071,240,6.5,2,2,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,10.0,49,101300,917,1325,346,365,147,263,42132,11647,30550,1494,230,4.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,10.0,49,101200,707,1325,347,451,591,136,52957,37911,15990,730,250,4.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,10.0,48,101200,471,1325,349,291,567,89,33567,28375,10334,443,250,4.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,10.0,51,101200,226,1325,343,114,327,58,12599,5333,6455,261,230,4.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,10.0,53,101200,23,579,340,9,36,9,1054,0,988,37,230,3.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,10.0,59,101200,0,0,332,0,0,0,0,0,0,0,220,2.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.0,65,101300,0,0,325,0,0,0,0,0,0,0,220,1.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.0,68,101300,0,0,323,0,0,0,0,0,0,0,210,1.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.0,70,101200,0,0,321,0,0,0,0,0,0,0,230,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,10.0,76,101200,0,0,315,0,0,0,0,0,0,0,230,1.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.0,83,101200,0,0,309,0,0,0,0,0,0,0,230,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.0,83,101200,0,0,309,0,0,0,0,0,0,0,230,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.0,83,101200,0,0,309,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.1,83,101200,8,343,309,4,0,4,417,0,643,17,210,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,10.6,80,101300,181,1324,315,71,145,51,7782,728,5620,226,210,1.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,10.7,71,101300,425,1324,323,236,432,97,26735,21296,11058,474,180,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,11.1,62,101300,664,1324,336,422,572,135,49096,36117,15758,715,240,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,11.1,53,101400,881,1324,348,645,805,109,79183,48052,13488,617,240,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,11.1,49,101400,1059,1324,354,803,859,116,100768,51255,14592,672,230,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,11.1,44,101400,1188,1324,361,922,905,111,118154,52796,14206,633,230,3.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,11.1,42,101300,1257,1324,367,985,917,115,126978,53418,14824,629,210,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,11.0,39,101300,1264,1324,372,964,819,182,120213,52708,22823,992,210,3.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,10.5,35,101200,1206,1324,377,840,545,344,99177,43897,40911,1960,230,3.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,10.1,32,101100,1088,1324,381,751,585,271,88875,44601,32245,1574,230,4.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,10.1,32,101100,918,1324,381,529,346,289,60651,28514,33320,1642,230,2.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,10.3,34,101100,708,1324,379,330,184,231,37115,14613,26162,1244,210,3.4,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,9.8,33,101000,472,1324,378,170,89,139,19003,5548,15516,688,210,4.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,8.6,32,101000,227,1324,373,71,49,62,7804,959,6892,281,190,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,11.2,43,101000,23,589,365,6,0,6,636,0,971,25,200,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,11.7,52,101000,0,0,352,0,0,0,0,0,0,0,210,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,11.6,57,101000,0,0,345,0,0,0,0,0,0,0,200,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,10.5,57,101100,0,0,338,0,0,0,0,0,0,0,180,2.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,9.9,59,101100,0,0,332,0,0,0,0,0,0,0,200,2.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,9.0,61,101100,0,0,324,0,0,0,0,0,0,0,160,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,9.3,67,101000,0,0,320,0,0,0,0,0,0,0,150,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,9.0,67,101000,0,0,317,0,0,0,0,0,0,0,150,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,9.3,69,101100,0,0,317,0,0,0,0,0,0,0,170,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,9.0,72,101100,8,344,312,5,21,5,569,0,556,20,190,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,10.0,76,101200,181,1324,314,91,303,50,10050,1441,5517,221,210,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,10.1,69,101200,425,1324,322,273,603,80,31437,27089,9194,388,210,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,11.2,62,101200,664,1324,336,477,763,95,57066,42857,11351,502,210,0.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,12.2,54,101300,880,1324,353,667,842,107,81986,49403,13242,605,300,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,12.2,46,101300,1059,1324,365,829,892,116,104008,52563,14578,672,300,3.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,11.9,42,101200,1188,1324,372,948,924,119,120708,54144,15201,681,270,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,9.4,31,101200,1257,1324,379,1013,939,121,130094,56200,15621,664,230,1.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,9.1,28,101200,1264,1324,386,1020,946,117,131498,56430,15175,639,230,4.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,7.3,25,101100,1206,1324,384,971,946,109,125043,56991,14113,621,210,4.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,7.8,25,101100,1089,1324,387,865,925,104,110030,55675,13313,606,220,4.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,7.5,25,101100,919,1324,386,713,888,96,89005,53278,12087,549,220,5.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,7.5,26,101000,709,1324,382,526,819,87,63985,47321,10660,470,230,6.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,7.1,27,101000,473,1324,377,323,693,75,37878,33518,8823,373,230,6.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,6.8,29,101000,229,1324,367,129,436,54,14464,7243,6068,244,220,6.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,7.2,36,101000,24,598,352,11,57,10,1244,0,1133,43,220,6.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,7.2,41,101100,0,0,342,0,0,0,0,0,0,0,220,5.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,7.2,47,101100,0,0,332,0,0,0,0,0,0,0,210,4.4,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,7.3,53,101200,0,0,325,0,0,0,0,0,0,0,220,2.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,7.7,58,101300,0,0,320,0,0,0,0,0,0,0,200,2.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,7.2,60,101300,0,0,315,0,0,0,0,0,0,0,170,2.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,7.2,65,101300,0,0,310,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,7.2,72,101300,0,0,303,0,0,0,0,0,0,0,190,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,7.2,75,101400,0,0,301,0,0,0,0,0,0,0,190,1.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,7.1,78,101500,8,345,297,5,22,5,570,0,555,20,260,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,6.8,68,101500,181,1324,305,91,311,49,10084,1807,5415,216,260,1.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,7.2,56,101600,424,1324,319,274,611,78,31630,28127,9015,379,260,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,7.2,49,101600,664,1324,330,479,775,90,57585,44738,10916,480,300,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,7.2,40,101700,880,1324,344,672,859,101,83178,52255,12587,572,300,2.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,7.3,37,101700,1059,1324,352,837,912,107,105785,55543,13603,622,300,3.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,7.7,34,101700,1187,1324,361,957,946,109,122941,56871,14062,625,340,3.8,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,6.8,28,101700,1257,1324,370,1023,961,111,132435,57927,14414,608,290,5.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,3.6,21,101600,1264,1324,374,1032,963,113,133647,59499,14692,615,340,5.4,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,1.7,17,101600,1207,1324,377,980,948,116,125823,59820,14937,659,350,3.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,1.7,16,101500,1089,1324,379,873,929,109,110941,58671,13893,633,320,2.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,1.7,16,101500,920,1324,379,719,889,101,89666,55944,12601,572,320,1.6,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,1.7,16,101400,711,1324,379,530,821,89,64474,49613,10852,479,290,2.1,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,1.7,17,101400,475,1324,379,324,695,75,38130,35197,8870,374,290,2.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,1.8,17,101400,230,1324,376,130,447,52,14598,8024,5887,236,290,3.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,2.7,20,101400,25,607,369,11,62,10,1269,0,1143,43,280,2.3,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,6.9,35,101400,0,0,352,0,0,0,0,0,0,0,240,3.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,8.4,43,101400,0,0,346,0,0,0,0,0,0,0,260,3.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,8.9,53,101400,0,0,334,0,0,0,0,0,0,0,250,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,9.0,58,101300,0,0,328,0,0,0,0,0,0,0,280,1.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,9.3,65,101300,0,0,322,0,0,0,0,0,0,0,320,0.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,8.1,50,101200,0,0,333,0,0,0,0,0,0,0,320,4.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,6.4,46,101200,0,0,330,0,0,0,0,0,0,0,320,4.8,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,3.8,37,101200,0,0,329,0,0,0,0,0,0,0,330,6.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,2.8,33,101200,8,343,330,5,32,5,603,0,582,21,330,5.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,2.7,33,101200,181,1324,331,94,353,46,10460,2026,5130,203,330,5.8,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,2.3,29,101200,424,1324,338,277,630,75,32127,29776,8723,365,330,7.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,3.4,29,101200,663,1324,345,478,763,95,57314,45958,11471,506,330,9.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,3.8,26,101200,879,1324,355,669,848,106,82629,53335,13141,598,350,5.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,3.2,23,101200,1058,1324,360,832,899,114,104911,56921,14397,660,330,5.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,2.9,21,101200,1187,1324,367,951,927,119,121493,58561,15326,685,340,4.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,3.2,20,101100,1257,1324,373,957,748,246,116987,55359,30224,1347,290,5.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,2.7,18,101100,1264,1324,378,950,725,257,115907,54464,31574,1400,310,4.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,1.9,16,101000,1207,1324,380,973,941,114,125059,59205,14734,649,340,4.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,-0.5,13,100900,1090,1324,384,866,921,108,110199,58689,13782,627,340,4.4,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,-1.2,12,100800,921,1324,381,714,885,99,89321,56204,12368,561,250,2.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,-0.3,14,100800,712,1324,379,385,343,201,44050,27054,23062,1081,300,2.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,-0.3,14,100800,476,1324,379,247,382,109,28183,22708,12523,543,300,2.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,2.3,17,100800,232,1324,381,133,480,49,15050,7954,5568,222,270,3.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,6.8,28,100800,25,615,370,12,72,11,1321,0,1170,44,230,2.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,7.1,35,100800,0,0,355,0,0,0,0,0,0,0,210,2.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,6.0,36,100800,0,0,345,0,0,0,0,0,0,0,220,3.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,5.7,40,100800,0,0,335,0,0,0,0,0,0,0,220,3.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,6.7,47,100800,0,0,329,0,0,0,0,0,0,0,210,2.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,6.6,50,100800,0,0,324,0,0,0,0,0,0,0,140,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,6.2,50,100800,0,0,321,0,0,0,0,0,0,0,140,2.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,7.2,57,100800,0,0,318,0,0,0,0,0,0,0,170,1.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,7.2,58,100800,0,0,318,0,0,0,0,0,0,0,170,3.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,7.3,60,100900,8,343,315,5,31,5,602,0,581,21,180,2.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,7.8,61,100900,180,1323,317,94,355,46,10443,1193,5092,202,190,2.8,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,7.9,55,101000,424,1323,325,277,646,71,32292,28243,8229,344,200,4.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,8.4,50,101000,663,1323,336,481,792,85,58131,44467,10280,450,200,4.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,9.0,45,101100,879,1323,346,673,868,96,83492,51417,11974,542,230,4.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,9.3,39,101100,1058,1323,360,835,914,105,105645,54408,13290,607,190,3.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,8.8,33,101100,1187,1323,370,953,939,111,122168,56050,14223,633,190,3.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,8.2,29,101100,1257,1323,378,1018,952,114,131434,56957,14728,623,210,4.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,7.3,25,101000,1264,1323,384,1024,952,114,132344,57441,14834,622,240,4.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,3.5,18,101000,1207,1323,385,971,940,113,124906,58531,14633,644,210,5.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,5.4,21,100900,1091,1323,387,864,915,110,109582,56571,13964,637,230,4.8,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,7.6,25,100900,922,1323,386,709,870,103,88195,52899,12872,587,210,6.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,9.6,31,100900,713,1323,382,522,795,93,63104,45838,11328,503,200,4.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,10.6,35,100900,477,1323,378,319,667,79,37283,31677,9200,391,200,3.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,10.4,40,101000,233,1323,366,128,419,55,14341,6541,6123,247,190,5.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,8.9,45,101000,26,623,346,11,56,10,1268,0,1148,43,190,4.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,8.9,52,101100,0,0,336,0,0,0,0,0,0,0,200,3.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,8.8,58,101100,0,0,326,0,0,0,0,0,0,0,190,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,8.3,58,101200,0,0,324,0,0,0,0,0,0,0,170,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,8.4,61,101200,0,0,321,0,0,0,0,0,0,0,160,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,8.9,65,101300,0,0,319,0,0,0,0,0,0,0,150,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,8.9,72,101300,0,0,312,0,0,0,0,0,0,0,170,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,8.8,72,101300,0,0,312,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,8.3,72,101300,0,0,309,0,0,0,0,0,0,0,130,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,8.4,72,101400,8,342,310,5,24,5,549,0,533,19,130,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,8.9,69,101400,180,1323,315,89,317,46,9877,918,5119,204,170,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,9.0,64,101500,423,1323,321,267,608,73,31020,26595,8502,356,160,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,9.5,57,101500,662,1323,333,468,761,87,56352,42553,10529,462,150,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,10.1,47,101500,878,1323,351,657,842,99,81376,49569,12239,555,220,1.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,10.2,39,101500,1057,1323,367,819,894,105,103559,52766,13305,608,250,3.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,7.3,28,101500,1186,1323,374,939,928,106,120791,55773,13749,610,250,3.4,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.6,8.2,26,101500,1257,1323,386,1006,947,106,130535,56054,13847,583,200,2.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,7.9,24,101500,1264,1323,393,1014,947,108,131455,56348,14113,589,200,2.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,8.2,23,101400,1208,1323,397,959,924,115,122921,55731,14847,655,260,2.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,8.1,23,101400,1091,1323,398,854,901,111,108128,54645,14091,644,260,4.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,9.3,25,101400,923,1323,399,702,860,102,87283,51385,12730,581,200,4.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,10.0,27,101400,714,1323,396,518,794,90,62830,45115,10927,484,200,4.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,9.9,28,101300,479,1323,392,318,672,75,37325,31696,8825,374,200,5.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,8.8,29,101300,234,1323,381,129,432,52,14447,6741,5882,236,220,5.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,8.2,33,101400,27,630,366,12,60,11,1301,0,1169,44,220,5.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,7.8,39,101400,0,0,351,0,0,0,0,0,0,0,220,3.8,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,7.9,43,101500,0,0,343,0,0,0,0,0,0,0,220,1.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,8.4,50,101500,0,0,336,0,0,0,0,0,0,0,170,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,8.9,56,101500,0,0,329,0,0,0,0,0,0,0,170,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,8.9,59,101500,0,0,326,0,0,0,0,0,0,0,160,1.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,8.9,65,101500,0,0,319,0,0,0,0,0,0,0,190,2.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,8.9,70,101500,0,0,314,0,0,0,0,0,0,0,200,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,8.9,72,101500,0,0,312,0,0,0,0,0,0,0,160,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,8.9,71,101500,8,339,313,5,33,5,570,0,548,20,160,1.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,8.9,66,101500,180,1323,318,93,363,43,10312,437,4844,192,180,3.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,8.9,59,101600,423,1323,326,273,647,67,31920,27209,7810,325,180,3.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,9.0,52,101600,661,1323,336,474,786,81,57403,43334,9836,429,190,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,9.3,44,101600,878,1323,350,662,857,93,82264,50263,11640,526,170,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,8.9,38,101600,1057,1323,360,821,900,102,104056,53550,13011,593,170,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,8.8,32,101500,1186,1323,373,937,924,108,120309,54948,13922,619,190,2.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,7.9,28,101500,1257,1323,379,1000,934,113,129243,55963,14616,617,200,4.8,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.6,8.9,28,101400,1264,1323,387,1007,936,112,130162,55488,14592,611,220,6.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,9.0,26,101400,1208,1323,394,956,930,107,123216,54984,13890,610,230,8.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,10.1,30,101400,1092,1323,389,851,906,103,108225,53235,13202,601,220,8.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,10.3,32,101300,923,1323,385,701,867,96,87526,50612,12014,546,230,9.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,10.3,34,101300,715,1323,379,519,805,84,63274,44886,10265,453,230,9.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,10.0,35,101300,480,1323,374,320,691,70,37803,31738,8258,348,230,9.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,10.1,40,101300,236,1323,364,131,461,49,14816,6323,5583,223,210,7.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,10.5,49,101300,27,637,350,12,69,11,1352,0,1199,45,220,6.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,10.1,57,101300,0,0,335,0,0,0,0,0,0,0,200,5.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,10.6,66,101300,0,0,328,0,0,0,0,0,0,0,220,7.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.6,70,101400,0,0,323,0,0,0,0,0,0,0,200,4.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,10.6,72,101400,0,0,322,0,0,0,0,0,0,0,190,3.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,10.6,73,101400,0,0,321,0,0,0,0,0,0,0,190,3.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.6,81,101300,0,0,314,0,0,0,0,0,0,0,190,2.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.5,81,101300,0,0,314,0,0,0,0,0,0,0,200,3.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.9,80,101300,0,0,310,0,0,0,0,0,0,0,200,3.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,9.4,83,101400,8,337,306,5,35,5,601,0,579,21,180,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,9.4,76,101400,179,1323,311,92,367,43,10286,155,4775,189,190,3.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,9.5,68,101400,422,1323,319,272,650,65,31857,26793,7610,316,190,4.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,10.0,62,101400,661,1323,330,471,785,79,57140,42556,9600,418,180,2.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,9.9,52,101400,877,1323,341,657,852,92,81750,49574,11500,519,210,1.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,9.3,46,101400,1056,1323,346,787,799,149,96994,51363,18430,863,210,3.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,8.2,39,101400,1186,1323,353,905,827,163,112824,53822,20453,936,210,3.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,7.7,35,101300,1257,1323,358,1002,939,109,129740,56098,14227,600,140,2.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,6.6,30,101200,1264,1323,364,1013,940,114,130898,56995,14851,622,210,3.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,5.8,28,101200,1208,1323,363,959,908,130,122077,57044,16589,737,210,5.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,7.1,29,101200,1092,1323,369,833,820,156,102970,53973,19319,904,220,5.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,7.1,31,101100,924,1323,363,706,858,107,87664,52751,13278,607,220,7.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,7.3,35,101100,716,1323,356,523,799,91,63483,46719,11062,490,210,6.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,7.9,39,101100,481,1323,351,325,699,71,38333,33133,8399,354,210,6.8,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,8.8,45,101100,237,1323,346,135,486,48,15245,6764,5425,216,220,7.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,8.4,50,101100,28,643,335,13,79,11,1407,0,1227,46,210,6.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,8.8,58,101200,0,0,326,0,0,0,0,0,0,0,220,4.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,8.4,61,101200,0,0,321,0,0,0,0,0,0,0,220,5.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,8.8,70,101300,0,0,314,0,0,0,0,0,0,0,200,2.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,8.3,70,101300,0,0,311,0,0,0,0,0,0,0,200,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,8.2,72,101300,0,0,308,0,0,0,0,0,0,0,200,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,7.7,77,101400,0,0,301,0,0,0,0,0,0,0,200,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,7.1,76,101400,0,0,299,0,0,0,0,0,0,0,200,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.7,75,101400,0,0,298,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,6.8,80,101500,7,334,294,5,33,5,570,0,550,20,270,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,7.2,73,101500,178,1322,302,93,362,44,10325,811,4909,194,270,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,7.1,60,101600,421,1322,314,275,649,68,32063,28087,7953,331,270,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,6.0,47,101600,660,1322,325,477,796,80,57927,44962,9764,425,270,2.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,5.5,38,101600,876,1322,337,667,869,91,83219,52429,11426,515,300,3.7,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,4.3,30,101600,1055,1322,348,827,907,103,104915,56033,13151,599,350,4.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,3.2,26,101600,1185,1322,352,941,919,117,120410,57804,15068,673,350,3.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,2.8,24,101600,1256,1322,354,1005,928,124,129226,58533,15959,677,310,3.9,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,2.5,23,101500,1264,1322,356,1013,931,123,130422,58728,15918,669,320,2.4,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,0.2,18,101500,1208,1322,359,965,931,114,124133,59021,14728,647,320,4.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,-2.4,14,101400,1093,1322,358,859,908,109,109367,58431,13899,632,330,5.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,-0.6,17,101400,925,1322,361,709,872,99,88678,55277,12380,561,320,4.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,1.8,20,101400,716,1322,364,524,805,88,63874,48506,10743,474,310,3.8,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,3.2,22,101400,482,1322,364,322,682,74,37997,34266,8733,368,310,3.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,6.2,30,101300,238,1322,362,132,443,52,14824,7710,5888,236,240,4.1,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,6.8,35,101300,28,648,351,12,63,11,1356,0,1210,46,230,4.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,7.3,43,101400,0,0,339,0,0,0,0,0,0,0,220,4.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,7.9,51,101400,0,0,330,0,0,0,0,0,0,0,230,4.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,8.3,58,101400,0,0,324,0,0,0,0,0,0,0,220,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,8.4,62,101300,0,0,319,0,0,0,0,0,0,0,230,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,8.9,66,101300,0,0,319,0,0,0,0,0,0,0,220,1.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,8.8,77,101300,0,0,307,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.3,77,101300,0,0,304,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,8.3,78,101300,0,0,304,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.4,84,101300,7,330,299,4,26,4,517,0,501,18,310,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,9.0,71,101400,178,1322,314,88,326,44,9784,450,4941,196,310,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,9.4,63,101400,420,1322,324,267,612,73,30985,26471,8444,354,310,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,9.2,52,101400,659,1322,337,468,762,88,56299,42859,10659,468,310,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,7.7,39,101300,875,1322,349,658,837,103,81184,50926,12807,582,320,3.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,7.1,36,101300,1055,1322,353,820,887,112,103277,54587,14215,652,280,3.4,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,6.1,28,101300,1185,1322,366,941,925,113,120653,56655,14515,647,280,2.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,6.0,27,101300,1256,1322,368,1008,939,115,130086,57363,14951,632,280,2.7,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,5.5,25,101200,1264,1322,369,1016,942,115,131358,57702,14967,626,280,0.4,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,4.3,21,101200,1209,1322,377,964,926,118,123641,57716,15171,669,230,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,4.0,20,101200,1093,1322,377,861,909,109,109355,56667,13888,633,230,2.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,5.0,22,101100,925,1322,379,711,876,98,88857,53696,12254,556,230,3.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,5.9,24,101100,717,1322,379,527,816,84,64413,47486,10349,456,230,5.4,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,6.6,26,101100,483,1322,376,326,701,70,38547,33673,8349,351,230,7.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,5.7,27,101100,238,1322,366,134,467,50,15185,7872,5680,227,210,5.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,6.8,33,101100,29,653,356,13,70,11,1409,0,1243,47,220,5.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,7.8,43,101200,0,0,342,0,0,0,0,0,0,0,210,4.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,7.8,49,101200,0,0,333,0,0,0,0,0,0,0,220,3.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,7.9,53,101200,0,0,328,0,0,0,0,0,0,0,220,2.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,8.3,60,101200,0,0,321,0,0,0,0,0,0,0,140,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,8.3,62,101200,0,0,319,0,0,0,0,0,0,0,170,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,8.3,65,101200,0,0,316,0,0,0,0,0,0,0,210,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,8.4,70,101200,0,0,311,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.8,80,101200,0,0,305,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,8.4,76,101200,7,325,306,5,28,5,548,0,531,19,300,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,9.3,69,101300,177,1322,317,89,341,44,9922,234,4878,193,300,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,8.9,53,101300,419,1322,334,269,639,67,31430,26729,7798,324,300,0.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,8.8,43,101300,658,1322,349,472,797,76,57500,43292,9261,402,300,4.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,7.8,35,101300,875,1322,358,664,874,85,83096,51115,10728,481,350,3.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,7.7,31,101300,1054,1322,368,826,921,92,105563,54408,11818,535,300,4.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,7.2,27,101300,1184,1322,376,948,952,95,122861,56218,12409,547,340,3.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,6.9,24,101300,1256,1322,383,1016,966,99,132632,57142,12904,540,320,4.4,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,3.8,19,101200,1264,1322,383,1027,970,99,134226,58671,12991,538,350,3.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,-1.2,12,101200,1209,1322,384,978,962,99,127196,59992,12905,561,350,3.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,-5.0,9,101100,1093,1322,380,875,945,94,112619,59829,12084,543,360,3.2,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,-4.5,9,101100,926,1322,381,725,911,86,91651,57264,10957,492,320,3.6,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.7,-2.1,11,101000,718,1322,382,539,848,78,66377,50854,9670,423,290,3.9,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,-3.1,10,101000,483,1322,381,336,740,66,40069,37210,7844,328,290,4.3,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,-0.7,14,101000,239,1322,377,141,517,48,16057,9358,5432,216,250,5.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,7.2,29,101000,29,657,371,14,84,12,1512,0,1313,50,240,5.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,7.3,34,101000,0,0,357,0,0,0,0,0,0,0,220,3.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,7.9,43,101100,0,0,343,0,0,0,0,0,0,0,230,2.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,8.4,50,101100,0,0,335,0,0,0,0,0,0,0,210,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,9.3,60,101100,0,0,327,0,0,0,0,0,0,0,210,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,9.0,62,101100,0,0,324,0,0,0,0,0,0,0,90,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,9.4,72,101000,0,0,316,0,0,0,0,0,0,0,250,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,9.4,70,101000,0,0,317,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.4,78,101000,0,0,310,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,9.5,79,101000,7,320,310,5,42,5,569,0,545,20,250,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.7,71,101100,176,1322,324,93,399,40,10377,0,4472,176,300,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,10.8,56,101100,418,1322,341,274,674,61,32172,26320,7148,296,300,0.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,8.1,37,101100,657,1322,356,473,806,73,57806,43658,8919,386,300,2.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,6.8,29,101100,874,1322,367,661,876,82,83045,51287,10346,463,330,2.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,7.3,27,101100,1053,1322,376,821,920,87,105251,54083,11237,507,330,3.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,7.7,25,101100,1183,1322,385,939,949,89,122284,55245,11599,509,310,3.8,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,6.4,20,101000,1255,1322,395,1003,961,91,131727,56375,11937,497,290,4.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,3.6,15,101000,1264,1322,399,1010,957,95,132387,57580,12511,516,300,3.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,1.9,13,100900,1209,1322,400,956,932,104,123771,57657,13472,588,310,0.3,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.3,3.6,15,100900,1094,1322,404,852,911,98,109104,55879,12568,568,310,2.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,4.8,16,100800,926,1322,403,702,874,90,88399,52811,11311,510,200,3.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,6.1,19,100800,718,1322,399,521,813,79,63966,46544,9745,427,230,4.8,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,6.0,20,100700,484,1322,395,323,701,66,38342,33222,7885,330,230,5.7,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,5.9,22,100700,240,1322,383,134,476,48,15229,7584,5438,217,220,5.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,7.9,30,100700,29,661,372,13,74,11,1411,0,1231,47,220,4.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,8.9,38,100700,0,0,359,0,0,0,0,0,0,0,220,4.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,9.0,43,100800,0,0,350,0,0,0,0,0,0,0,220,3.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,10.0,50,100800,0,0,345,0,0,0,0,0,0,0,230,3.4,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,10.1,57,100800,0,0,336,0,0,0,0,0,0,0,150,1.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,10.7,62,100700,0,0,333,0,0,0,0,0,0,0,170,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.1,70,100700,0,0,327,0,0,0,0,0,0,0,180,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.1,73,100700,0,0,324,0,0,0,0,0,0,0,180,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,11.2,75,100700,0,0,322,0,0,0,0,0,0,0,180,3.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,11.8,78,100700,7,314,323,2,0,2,202,0,315,8,160,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,12.2,77,100700,175,1322,326,36,0,36,3953,0,5845,154,170,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,12.3,72,100800,417,1322,331,118,30,108,13212,1539,12190,528,190,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,12.8,69,100800,656,1322,337,169,34,152,19471,2226,17590,806,190,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,12.7,63,100800,873,1322,344,166,5,163,17696,562,22255,656,190,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,12.3,65,100900,1052,1322,339,191,7,185,20175,720,24247,856,190,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,12.7,63,100900,1183,1322,344,215,8,208,22697,825,26326,1222,170,1.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,12.3,50,100900,1255,1322,359,577,155,430,67369,13352,50503,2357,200,4.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,13.4,54,100800,1264,1322,360,711,248,473,82327,22025,55235,2569,220,9.1,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,14.0,49,100800,1209,1322,379,725,341,413,84281,28831,48332,2344,220,7.3,1,1,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,14.4,56,100800,1094,1322,409,489,139,375,56356,11631,43420,2175,260,8.1,9,9,16.1,3622,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,14.6,59,100800,927,1322,416,323,61,280,37136,4787,32376,1597,240,7.7,10,10,16.1,3326,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,14.4,61,100800,719,1322,411,138,3,136,14786,355,19290,528,220,7.4,10,10,16.1,3097,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,14.3,63,100800,485,1322,408,22,0,22,2509,0,3597,88,220,6.8,10,10,16.1,2842,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,13.9,64,100800,241,1322,405,33,0,33,3625,0,5318,136,220,4.1,10,10,16.1,2473,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,13.9,64,100800,30,664,404,3,0,3,371,0,570,14,230,7.2,10,10,16.1,2725,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,13.9,71,100800,0,0,375,0,0,0,0,0,0,0,200,3.5,8,8,16.1,2591,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,13.9,78,100800,0,0,335,0,0,0,0,0,0,0,190,2.8,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,13.9,78,100800,0,0,355,0,0,0,0,0,0,0,220,4.1,5,5,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,13.8,81,100800,0,0,365,0,0,0,0,0,0,0,200,4.1,8,8,16.1,2134,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,13.2,80,100800,0,0,346,0,0,0,0,0,0,0,200,4.0,4,4,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.8,81,100800,0,0,326,0,0,0,0,0,0,0,190,3.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.7,81,100700,0,0,326,0,0,0,0,0,0,0,190,3.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,12.2,80,100800,0,0,337,0,0,0,0,0,0,0,180,2.0,3,3,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,12.2,80,100800,6,308,363,0,0,0,35,0,56,1,190,1.8,9,9,16.1,2141,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,12.2,80,100900,174,1322,363,5,0,5,628,0,963,23,210,4.1,9,9,16.1,3317,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,12.3,80,100900,416,1322,374,72,15,67,8376,613,7830,326,200,4.1,10,10,16.1,3012,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,12.7,80,101000,655,1322,377,249,107,196,28037,7743,22184,1037,210,4.0,10,10,16.1,2743,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,12.2,72,101000,872,1322,382,177,6,173,18733,643,23510,695,200,3.5,10,10,16.1,2725,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,12.3,69,101100,1052,1322,386,221,16,208,23319,1695,27061,961,210,3.1,10,10,16.1,2573,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,12.9,62,101100,1182,1322,399,452,81,380,52736,6712,44588,2179,220,3.0,10,10,16.1,1968,9,999999999,22,0.0000,0,88,999.000,0.3,1.0 +2013,6,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,13.0,67,101100,1254,1322,394,224,10,215,23602,1034,26679,1607,190,3.1,10,10,16.1,1074,9,999999999,22,0.0000,0,88,999.000,0.5,1.0 +2013,6,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,14.5,79,101100,1264,1322,390,196,8,189,20855,831,23632,1471,220,3.0,10,10,15.5,1971,9,999999999,25,0.0000,0,88,999.000,0.5,1.0 +2013,6,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,15.1,84,101100,1209,1322,389,191,6,185,20380,676,23512,1174,210,2.6,10,10,11.8,2870,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,15.2,82,101100,1094,1322,391,296,31,270,34944,2242,32102,1570,230,2.3,10,10,16.1,825,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,15.7,86,101100,927,1322,391,85,0,85,9345,0,12019,354,210,0.0,10,10,10.2,1349,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,15.9,87,101100,719,1322,391,63,0,63,6999,0,9404,247,260,0.0,10,10,14.5,629,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,16.0,88,101100,485,1322,390,25,0,25,2851,0,4058,99,260,0.0,10,10,4.7,540,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,16.1,92,101100,241,1322,388,8,0,8,920,0,1380,33,260,3.1,10,10,4.9,348,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,15.7,91,101100,30,667,386,1,0,1,117,0,182,4,250,0.0,10,10,14.7,1122,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,15.7,89,101100,0,0,388,0,0,0,0,0,0,0,250,0.0,10,10,16.1,633,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,15.0,87,101200,0,0,384,0,0,0,0,0,0,0,170,0.0,10,10,16.1,972,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,15.9,93,101200,0,0,385,0,0,0,0,0,0,0,170,0.0,10,10,16.1,741,9,999999999,27,0.0000,0,88,999.000,1.5,1.0 +2013,6,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,15.0,87,101200,0,0,384,0,0,0,0,0,0,0,170,0.4,10,10,16.1,1321,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,14.5,86,101200,0,0,372,0,0,0,0,0,0,0,80,1.3,9,9,16.1,1764,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,15.0,87,101100,0,0,385,0,0,0,0,0,0,0,80,0.0,10,10,16.1,1258,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,15.0,87,101100,0,0,384,0,0,0,0,0,0,0,140,0.0,10,10,15.2,1114,9,999999999,27,0.0000,0,88,999.000,0.8,1.0 +2013,6,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,15.3,91,101100,0,0,383,0,0,0,0,0,0,0,140,0.0,10,10,6.8,1114,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,15.8,92,101200,6,301,385,4,28,4,461,0,446,16,140,1.1,10,10,4.1,876,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,16.1,89,101200,172,1321,390,70,237,39,7811,0,4381,173,110,1.6,10,10,9.0,952,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,16.1,88,101200,415,1321,392,160,340,53,18877,11110,6284,258,160,2.4,10,10,16.1,980,9,999999999,29,0.0000,0,88,999.000,0.3,1.0 +2013,6,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,17.0,88,101300,654,1321,398,45,0,45,5002,0,6830,174,150,2.6,10,10,5.4,914,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,16.6,80,101300,871,1321,403,516,603,119,62677,34121,14515,670,150,2.8,10,10,16.1,914,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,16.2,74,101300,1051,1321,407,336,213,166,40858,13046,20316,964,150,4.3,10,10,15.2,914,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,16.7,78,101400,1182,1321,406,126,2,124,13712,241,16286,729,150,2.0,10,10,9.0,924,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,16.9,77,101400,1254,1321,409,136,2,134,14746,241,17218,1003,190,1.8,10,10,15.8,952,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,18.1,84,101400,1263,1321,410,150,6,144,16300,664,18420,1125,240,2.4,10,10,16.1,1139,9,999999999,32,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,17.2,70,101400,1209,1321,407,576,166,424,66615,13749,49350,2404,210,3.7,9,9,16.1,1676,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,17.2,66,101400,1094,1321,390,736,646,201,88765,40911,24316,1165,230,4.1,5,5,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,17.2,64,101300,928,1321,408,661,772,119,80947,43118,14646,679,250,5.0,8,8,16.1,792,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,17.0,63,101300,720,1321,392,489,713,100,58593,37930,12074,542,250,4.3,5,5,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,16.7,63,101300,486,1321,369,302,604,80,35128,26271,9301,398,270,6.8,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,16.6,67,101300,242,1321,375,124,392,53,13904,4421,5906,239,240,3.5,2,2,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,16.1,71,101300,30,669,356,12,58,10,1302,0,1157,44,200,2.8,0,0,16.1,77777,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,16.0,75,101300,0,0,350,0,0,0,0,0,0,0,220,3.9,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,15.6,76,101300,0,0,347,0,0,0,0,0,0,0,210,2.7,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,15.6,82,101400,0,0,342,0,0,0,0,0,0,0,220,3.5,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,1.7,1.0 +2013,6,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,15.6,87,101400,0,0,343,0,0,0,0,0,0,0,210,2.6,1,1,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,15.6,87,101400,0,0,364,0,0,0,0,0,0,0,220,2.3,7,7,16.1,2591,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,15.9,88,101400,0,0,344,0,0,0,0,0,0,0,210,1.0,1,1,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,15.6,90,101400,0,0,334,0,0,0,0,0,0,0,200,0.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,15.5,90,101400,0,0,334,0,0,0,0,0,0,0,200,1.3,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,15.1,90,101500,6,294,332,4,34,4,493,0,476,17,210,0.3,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,15.7,87,101500,171,1321,338,84,357,38,9407,0,4275,168,210,2.6,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,16.1,82,101600,413,1321,344,257,634,59,30137,21655,6924,287,200,2.6,0,0,16.1,77777,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,16.2,73,101600,653,1321,354,451,771,70,54935,36995,8582,372,240,2.7,0,0,16.1,77777,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,16.7,67,101600,870,1321,363,635,843,80,79410,43397,10048,451,200,3.6,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,16.6,57,101600,1050,1321,377,792,889,86,101153,46386,11032,500,210,3.5,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,16.0,48,101600,1181,1321,387,909,918,89,117891,48212,11557,510,240,3.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,15.6,44,101600,1254,1321,392,975,932,91,127387,49126,11902,498,250,3.8,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,15.5,43,101500,1263,1321,394,985,933,93,128627,49423,12219,507,260,5.6,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,14.9,41,101500,1209,1321,394,937,917,98,121173,49678,12661,553,230,5.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,14.3,37,101400,1095,1321,399,837,899,93,107146,49197,11913,539,230,4.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,14.2,36,101400,928,1321,400,693,867,84,87271,47039,10623,479,230,4.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,14.2,36,101400,720,1321,400,516,814,72,63567,41766,8944,391,200,4.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,14.3,37,101300,486,1321,398,322,714,60,38458,29272,7148,299,200,4.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,13.4,36,101300,242,1321,394,136,511,43,15549,4858,4880,193,220,3.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,14.5,42,101300,30,669,389,13,87,11,1480,0,1264,48,230,3.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,15.5,53,101400,0,0,375,0,0,0,0,0,0,0,220,2.5,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,15.0,59,101400,0,0,364,0,0,0,0,0,0,0,210,2.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,14.9,66,101500,0,0,354,0,0,0,0,0,0,0,220,2.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,14.4,68,101500,0,0,348,0,0,0,0,0,0,0,210,2.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,14.4,73,101500,0,0,343,0,0,0,0,0,0,0,210,2.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,14.4,79,101600,0,0,338,0,0,0,0,0,0,0,180,2.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,14.4,81,101600,0,0,335,0,0,0,0,0,0,0,170,1.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,14.4,84,101600,0,0,332,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,14.5,86,101600,5,287,331,4,47,4,514,0,492,18,190,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,15.0,83,101600,170,1321,337,89,415,36,9964,0,4006,157,190,0.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,15.1,75,101600,412,1321,345,266,683,53,31428,22752,6280,258,190,2.0,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,15.6,67,101700,651,1321,357,461,808,63,56654,38157,7752,333,280,1.3,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,15.6,56,101700,868,1321,371,647,875,72,81616,44970,9078,404,290,0.3,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,15.3,45,101700,1049,1321,389,805,917,77,103694,48043,9954,447,290,2.6,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,13.3,36,101700,1180,1321,395,922,943,79,120657,50780,10433,456,300,2.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,13.3,32,101600,1253,1321,404,988,956,81,130292,51375,10756,447,300,1.6,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,13.1,29,101600,1263,1321,412,998,954,85,131230,51721,11276,464,260,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.5,11.6,25,101500,1209,1321,416,948,932,96,123062,52611,12471,543,260,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,10.4,22,101500,1095,1321,417,847,912,92,108706,52284,11792,532,260,3.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.6,8.7,19,101400,928,1321,418,700,876,85,88344,50786,10771,485,310,3.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.9,7.3,17,101400,720,1321,417,521,817,75,64199,45863,9305,407,340,3.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.0,6.1,16,101400,486,1321,416,324,710,63,38702,33233,7558,316,340,3.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.3,6.3,17,101400,242,1321,413,136,494,46,15522,7491,5224,207,290,2.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,8.6,23,101400,30,670,402,13,80,11,1464,0,1265,48,260,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,14.3,43,101400,0,0,385,0,0,0,0,0,0,0,240,2.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,13.9,48,101400,0,0,374,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,13.9,54,101500,0,0,363,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,14.0,60,101400,0,0,356,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,14.4,66,101400,0,0,351,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,14.4,70,101400,0,0,346,0,0,0,0,0,0,0,150,1.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,14.4,70,101400,0,0,346,0,0,0,0,0,0,0,220,1.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,14.4,71,101400,0,0,345,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,14.5,73,101400,5,278,344,4,30,4,461,0,447,16,270,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,15.1,69,101400,168,1321,351,84,346,40,9291,0,4419,174,290,0.0,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,16.2,61,101400,411,1321,369,258,631,62,30120,21945,7288,303,290,0.2,0,0,16.1,77777,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,17.1,53,101400,650,1321,386,454,772,75,55017,36901,9045,394,290,1.7,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,16.6,44,101400,867,1321,400,640,845,85,79614,44112,10640,479,310,3.0,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,16.0,37,101300,1048,1321,411,797,885,94,101054,47490,12017,547,290,2.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,15.5,32,101300,1179,1321,422,911,904,104,116837,49222,13416,599,290,2.7,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.8,14.3,26,101300,1253,1321,432,977,917,107,126211,50712,13918,590,320,3.4,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.9,13.2,23,101200,1263,1321,437,987,921,106,127821,51591,13826,578,320,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.0,12.9,21,101100,1209,1321,443,941,921,99,121815,51415,12802,559,250,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.4,13.2,21,101100,1095,1321,445,840,900,94,107408,50159,12117,548,250,3.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.3,13.0,21,101000,928,1321,444,694,862,88,87118,47979,11130,504,220,3.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.8,13.1,22,101000,721,1321,442,516,799,80,63120,42621,9799,432,200,3.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.2,14.0,24,101000,486,1321,440,321,692,67,38032,29650,7902,333,200,3.4,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.4,14.9,26,100900,242,1321,436,135,478,48,15282,5086,5402,216,190,2.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.1,13.9,30,100900,30,670,417,13,77,12,1459,0,1268,48,200,2.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,13.9,34,101000,0,0,404,0,0,0,0,0,0,0,210,3.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,13.9,41,101000,0,0,388,0,0,0,0,0,0,0,210,2.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,13.9,48,101000,0,0,374,0,0,0,0,0,0,0,170,1.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,13.8,52,101000,0,0,366,0,0,0,0,0,0,0,170,1.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,13.4,53,101000,0,0,362,0,0,0,0,0,0,0,140,1.3,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,14.3,65,101000,0,0,352,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,13.4,59,101000,0,0,354,0,0,0,0,0,0,0,160,0.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,13.8,67,101000,0,0,346,0,0,0,0,0,0,0,160,1.3,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,13.4,63,101000,5,269,349,4,36,4,461,0,446,16,160,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,13.9,58,101100,167,1321,357,86,379,39,9612,0,4314,170,160,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,13.9,49,101100,409,1321,372,265,662,60,31010,23807,7046,291,310,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,14.0,41,101100,648,1321,388,463,794,74,56253,39935,8955,389,310,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,14.5,35,101100,866,1321,406,651,867,83,81288,46593,10394,467,310,1.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.2,15.1,32,101100,1047,1321,419,812,913,88,103552,49090,11269,511,310,3.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.2,15.7,30,101000,1179,1321,431,932,947,87,120992,49821,11320,499,300,3.7,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.4,16.0,28,101000,1252,1321,438,999,960,89,130645,50121,11680,489,310,4.5,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.0,14.8,24,100900,1262,1321,445,1008,958,93,131676,51254,12148,504,310,3.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.1,13.1,20,100800,1209,1321,449,957,935,102,123515,52295,13164,576,320,4.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.7,11.6,18,100800,1095,1321,450,856,916,97,109380,52324,12382,561,330,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,41.4,9.9,15,100700,928,1321,452,709,883,89,89172,50998,11177,505,280,3.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,41.4,9.7,15,100600,721,1321,452,529,828,77,65008,45646,9497,416,280,3.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,41.6,9.2,15,100600,486,1321,452,330,722,65,39282,32881,7691,322,280,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.1,11.6,18,100600,242,1321,447,139,505,46,15768,6341,5288,211,240,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.7,14.7,29,100600,30,669,427,13,82,12,1479,0,1275,49,210,4.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,12.8,30,100600,0,0,407,0,0,0,0,0,0,0,210,3.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,12.9,36,100700,0,0,392,0,0,0,0,0,0,0,220,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,13.3,41,100700,0,0,382,0,0,0,0,0,0,0,230,3.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,13.3,46,100700,0,0,373,0,0,0,0,0,0,0,230,2.6,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,13.3,50,100700,0,0,365,0,0,0,0,0,0,0,170,2.3,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,13.3,54,100700,0,0,360,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,13.4,56,100700,0,0,357,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,13.9,68,100700,0,0,345,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,13.9,68,100700,5,260,346,3,22,3,407,0,398,14,170,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,13.9,64,100700,165,1321,350,80,307,42,8877,0,4654,184,170,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,14.0,57,100800,408,1321,360,253,595,70,29278,22870,8093,338,170,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,14.5,49,100800,647,1321,375,449,742,86,53893,38621,10363,455,240,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,15.0,43,100800,865,1321,390,637,822,99,78473,45570,12227,556,240,0.0,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,14.9,35,100800,1046,1321,407,798,872,108,100308,48885,13631,626,240,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.3,14.4,29,100700,1178,1321,424,917,902,114,116957,50729,14527,652,240,2.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.5,14.0,25,100700,1251,1321,436,984,914,118,126242,51653,15245,651,240,2.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.5,11.1,18,100600,1262,1321,443,991,906,125,127022,53620,16133,682,240,1.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.5,11.4,18,100600,1208,1321,449,937,874,138,118510,52889,17465,780,240,4.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.1,13.5,21,100600,1095,1321,450,827,816,151,102180,50059,18721,876,210,4.1,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.3,11.9,19,100500,928,1321,449,672,733,157,80934,47530,18985,895,220,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.9,11.2,18,100500,721,1321,445,488,622,149,57012,40700,17472,805,240,4.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.1,11.8,20,100500,486,1321,442,298,498,115,33872,27722,13092,574,240,4.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.7,13.0,24,100400,242,1321,430,122,302,66,13406,6239,7336,301,220,4.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,14.3,33,100400,30,667,410,11,42,10,1250,0,1147,43,220,4.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,13.9,41,100500,0,0,387,0,0,0,0,0,0,0,210,3.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,13.8,50,100600,0,0,370,0,0,0,0,0,0,0,210,2.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,12.9,54,100700,0,0,358,0,0,0,0,0,0,0,220,2.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2013,6,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,13.2,63,100800,0,0,347,0,0,0,0,0,0,0,180,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,13.3,66,100900,0,0,344,0,0,0,0,0,0,0,240,1.9,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,13.3,74,100900,0,0,335,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,13.3,79,100900,0,0,330,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,13.3,86,101000,0,0,325,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,13.4,92,101000,4,257,321,4,36,4,439,0,426,15,300,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,14.1,83,101100,164,1321,332,84,375,38,9395,0,4218,166,300,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,15.7,77,101100,407,1321,346,262,658,59,30627,22436,6960,288,300,0.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,16.5,66,101100,646,1321,363,461,790,74,55798,38086,8989,391,300,1.9,0,0,16.1,77777,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,14.8,51,101000,864,1321,375,650,867,83,81120,46419,10434,469,290,0.4,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,13.4,42,101000,1045,1321,381,812,914,89,103579,50434,11373,515,290,2.7,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,13.6,39,101000,1177,1321,390,932,945,90,120907,51638,11709,517,300,0.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,11.2,30,101000,1251,1321,395,999,957,92,130669,53799,12130,509,300,4.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,12.0,30,100900,1262,1321,403,1008,953,97,131412,53419,12734,529,280,4.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,10.5,25,100900,1208,1321,408,955,926,108,122979,54019,13959,613,290,4.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,9.7,23,100800,1095,1321,411,853,906,102,108685,53355,13081,594,290,4.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,8.4,20,100700,928,1321,413,706,870,94,88386,51575,11862,538,330,3.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,8.4,20,100700,721,1321,413,524,808,83,64067,45877,10201,449,290,3.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.3,9.4,22,100700,486,1321,412,326,697,70,38579,32494,8240,347,290,3.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.5,10.0,24,100700,242,1321,408,136,476,49,15423,7065,5591,224,280,1.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,14.6,38,100600,30,667,397,13,75,12,1457,0,1273,48,210,3.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,15.8,49,100600,0,0,384,0,0,0,0,0,0,0,210,3.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,13.4,49,100700,0,0,368,0,0,0,0,0,0,0,230,3.6,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,13.9,58,100700,0,0,358,0,0,0,0,0,0,0,230,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,13.9,64,100600,0,0,350,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,13.4,72,100600,0,0,338,0,0,0,0,0,0,0,210,0.8,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,13.3,70,100600,0,0,339,0,0,0,0,0,0,0,180,1.4,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,12.8,71,100600,0,0,336,0,0,0,0,0,0,0,180,0.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,13.2,75,100600,0,0,334,0,0,0,0,0,0,0,180,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,12.9,75,100600,4,246,332,3,25,3,407,0,398,14,180,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,13.9,75,100700,163,1321,338,82,337,40,9059,0,4485,177,180,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,13.9,66,100700,405,1321,348,259,633,65,30075,23376,7545,314,350,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,13.9,51,100700,645,1321,368,456,766,82,54922,39728,9936,434,350,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,14.0,45,100700,863,1321,380,645,844,94,79795,46907,11658,528,350,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,14.4,38,100700,1044,1321,397,803,883,106,101144,49637,13343,612,350,0.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.9,14.3,33,100700,1176,1321,411,917,892,123,116215,51019,15597,704,350,2.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,13.9,30,100700,1250,1321,416,983,908,124,125757,51860,15913,682,270,3.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.0,14.0,28,100600,1261,1321,422,994,914,121,127459,51820,15559,658,310,2.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,14.3,29,100600,1208,1321,423,947,909,116,121075,51228,14827,656,260,3.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.7,12.8,25,100500,1094,1321,424,844,883,112,106626,51112,14202,650,270,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.0,10.4,21,100500,928,1321,422,696,841,105,86384,49961,13060,597,270,3.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.1,9.2,20,100500,721,1321,421,514,771,93,62315,44703,11344,504,270,3.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.1,9.7,20,100400,486,1321,422,317,654,77,37252,31446,9006,382,270,3.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.6,12.1,24,100400,242,1321,423,130,425,53,14647,6371,5930,239,290,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.7,15.3,37,100400,30,664,406,12,62,11,1353,0,1202,46,220,0.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,17.7,54,100400,0,0,389,0,0,0,0,0,0,0,220,1.5,0,0,16.1,77777,9,999999999,32,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,17.1,59,100400,0,0,377,0,0,0,0,0,0,0,210,1.5,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,16.1,64,100500,0,0,363,0,0,0,0,0,0,0,210,1.3,0,0,16.1,77777,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2011,7,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,16.1,69,100500,0,0,357,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,16.1,76,100500,0,0,350,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.6,79,100500,0,0,344,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,15.5,80,100500,0,0,342,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,15.1,76,100500,0,0,344,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,15.8,78,100600,4,236,346,3,20,3,352,0,345,12,330,0.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,17.3,72,100600,161,1321,362,79,314,41,8690,0,4499,178,330,2.3,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,17.6,60,100700,403,1321,379,254,613,67,29372,20932,7759,324,330,4.2,0,0,16.1,77777,9,999999999,32,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,15.9,48,100700,643,1321,388,453,759,83,54351,38148,9989,437,340,4.9,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,14.4,38,100700,861,1321,396,642,842,93,79463,46451,11557,523,330,7.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,14.5,36,100700,1043,1321,403,805,896,97,101923,49510,12349,563,340,5.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,15.5,35,100700,1176,1321,413,928,938,93,119851,50077,12080,536,310,5.1,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.6,14.9,31,100700,1250,1321,421,995,952,95,129641,51074,12358,521,340,5.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.2,14.4,27,100600,1261,1321,429,1004,950,97,130724,51533,12707,530,340,5.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.3,14.1,25,100600,1208,1321,435,952,928,104,122653,51422,13468,591,350,5.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.3,12.1,21,100500,1094,1321,438,851,908,99,108575,51760,12632,573,320,4.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.4,11.0,19,100500,928,1321,436,705,874,91,88442,50105,11397,516,300,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.0,11.1,20,100400,721,1321,434,525,817,79,64326,44609,9756,429,300,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.7,11.2,20,100400,486,1321,433,327,710,66,38835,31748,7851,330,300,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.9,12.3,23,100400,241,1321,430,137,494,47,15549,6034,5342,213,270,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,16.6,35,100400,30,661,420,13,79,12,1454,0,1262,48,220,3.1,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,15.5,41,100500,0,0,399,0,0,0,0,0,0,0,220,3.1,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,14.5,45,100500,0,0,383,0,0,0,0,0,0,0,230,2.9,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,15.6,55,100600,0,0,373,0,0,0,0,0,0,0,210,1.3,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,16.0,65,100600,0,0,362,0,0,0,0,0,0,0,230,2.3,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,14.9,63,100600,0,0,357,0,0,0,0,0,0,0,160,2.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,13.9,60,100600,0,0,355,0,0,0,0,0,0,0,230,1.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,14.0,67,100600,0,0,347,0,0,0,0,0,0,0,230,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,14.4,76,100700,0,0,340,0,0,0,0,0,0,0,230,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,14.4,78,100700,3,226,338,3,23,3,385,0,378,13,230,1.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,14.4,72,100800,159,1321,345,81,337,40,8929,0,4467,177,230,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,14.5,62,100800,401,1321,356,258,639,64,30004,22988,7451,309,230,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,15.0,53,100900,642,1321,372,458,779,80,55196,39325,9685,423,230,0.0,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,15.0,46,100900,860,1321,383,649,857,91,80388,46616,11310,511,230,0.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,15.1,40,100800,1042,1321,398,812,904,99,102611,49635,12520,572,260,1.5,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,16.2,38,100800,1175,1321,411,933,933,103,119535,50117,13261,593,260,1.6,0,0,16.1,77777,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,16.6,35,100800,1249,1321,420,1000,946,106,129111,50296,13719,584,260,2.3,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,15.9,32,100800,1260,1321,425,1011,946,108,130463,51043,14044,591,260,0.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.2,14.3,27,100700,1207,1321,429,961,930,111,123201,52026,14332,633,260,2.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.3,13.7,25,100700,1094,1321,434,860,908,108,108878,51518,13665,624,260,3.3,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.7,12.7,23,100600,928,1321,435,711,871,99,88549,49838,12396,565,310,4.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.5,12.2,22,100600,720,1321,433,530,809,88,64354,44745,10761,477,270,2.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.1,12.2,23,100600,486,1321,431,329,697,73,38734,31819,8635,366,270,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.2,12.3,24,100600,241,1321,426,137,469,52,15424,6712,5838,235,220,2.8,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.7,12.9,32,100700,29,657,403,13,71,11,1426,0,1255,48,220,4.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,13.8,43,100700,0,0,383,0,0,0,0,0,0,0,220,3.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,13.3,46,100800,0,0,373,0,0,0,0,0,0,0,220,2.9,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,13.3,52,100800,0,0,363,0,0,0,0,0,0,0,230,1.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,13.3,54,100800,0,0,360,0,0,0,0,0,0,0,210,1.3,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,13.2,59,100800,0,0,352,0,0,0,0,0,0,0,200,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,12.8,61,100800,0,0,347,0,0,0,0,0,0,0,200,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,12.8,64,100800,0,0,344,0,0,0,0,0,0,0,140,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,12.8,66,100800,0,0,341,0,0,0,0,0,0,0,220,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,12.9,70,100900,3,215,337,3,14,3,331,0,327,11,220,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,13.4,64,101000,157,1321,347,76,282,42,8342,0,4672,185,220,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,14.0,54,101000,400,1321,364,248,577,73,28472,22390,8446,354,220,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,14.5,45,101000,640,1321,383,442,718,94,52592,38327,11251,497,320,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,15.1,39,101000,859,1321,400,628,797,110,76684,45269,13458,616,320,1.6,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,15.7,38,101000,1041,1321,407,788,850,118,98226,48020,14778,684,320,2.7,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.5,16.2,36,101000,1174,1321,417,908,893,115,115484,49002,14700,662,300,3.0,0,0,16.1,77777,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,16.6,33,100900,1248,1321,426,973,904,119,124553,49154,15326,658,290,2.6,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.2,15.2,29,100900,1260,1321,430,982,901,123,125747,50369,15771,669,290,2.5,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.3,12.1,22,100900,1207,1321,432,932,884,125,118662,52009,15959,709,230,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.3,11.3,20,100800,1094,1321,436,831,859,119,104580,51264,15075,693,220,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.6,10.4,18,100800,928,1321,437,685,816,112,84622,49163,13833,635,220,3.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.3,10.3,19,100800,720,1321,435,506,744,100,60922,43427,12091,540,250,4.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.0,8.6,17,100800,485,1321,431,311,619,84,36280,31142,9790,418,250,5.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.8,10.9,22,100800,240,1321,422,127,384,57,14190,6811,6423,260,250,4.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,13.1,30,100800,29,653,409,12,52,11,1301,0,1178,45,220,3.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,14.9,43,100800,0,0,389,0,0,0,0,0,0,0,210,3.4,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,14.4,49,100800,0,0,374,0,0,0,0,0,0,0,230,2.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,14.2,55,100900,0,0,364,0,0,0,0,0,0,0,230,7.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,12.8,52,100900,0,0,359,0,0,0,0,0,0,0,220,3.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,12.7,55,100900,0,0,354,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,11.6,53,100900,0,0,351,0,0,0,0,0,0,0,150,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,10.9,51,100900,0,0,350,0,0,0,0,0,0,0,160,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,9.5,48,100900,0,0,345,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,10.2,53,100900,3,204,341,2,6,2,276,0,274,9,190,1.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,11.8,58,101000,155,1321,344,69,205,45,7565,0,4956,197,150,1.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,12.3,51,101100,398,1321,358,233,482,88,26429,21270,10013,425,230,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,13.6,47,101100,638,1321,374,422,635,116,49458,36714,13606,610,230,1.9,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,15.7,47,101100,857,1321,387,606,724,136,72713,43210,16363,761,230,0.4,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,16.7,43,101100,1040,1321,403,766,794,141,94223,46163,17437,818,230,3.5,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,16.5,39,101100,1173,1321,411,896,876,118,113645,48080,15005,678,220,3.1,0,0,16.1,77777,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.5,14.7,32,101000,1248,1321,415,962,891,121,123172,50073,15513,666,230,3.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,11.9,25,101000,1259,1321,420,971,886,126,124278,52028,16206,688,270,3.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.1,9.8,20,100900,1207,1321,422,919,854,139,116201,52654,17672,791,250,4.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.2,7.8,18,100900,1093,1321,420,821,830,134,102631,52441,16785,777,230,3.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.5,6.0,15,100800,927,1321,419,677,790,123,83285,50505,15142,699,220,4.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.8,6.1,16,100800,720,1321,415,502,726,107,60285,44691,12841,576,240,5.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,8.3,20,100800,485,1321,412,309,607,87,35978,31022,10090,432,240,5.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,11.8,29,100800,240,1321,402,126,378,58,14079,6529,6468,262,230,5.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,12.2,37,100800,29,648,385,12,51,11,1300,0,1181,45,200,4.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,12.1,44,100800,0,0,369,0,0,0,0,0,0,0,220,4.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,11.5,47,100900,0,0,358,0,0,0,0,0,0,0,200,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,9.9,43,100900,0,0,356,0,0,0,0,0,0,0,200,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,8.8,41,100900,0,0,352,0,0,0,0,0,0,0,160,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,7.9,41,100900,0,0,348,0,0,0,0,0,0,0,160,2.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,9.0,50,100900,0,0,339,0,0,0,0,0,0,0,200,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,9.3,53,101000,0,0,336,0,0,0,0,0,0,0,180,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,8.8,50,101000,0,0,337,0,0,0,0,0,0,0,200,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,7.9,46,101000,2,192,338,2,6,2,276,0,275,9,200,2.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,9.0,50,101100,153,1321,338,70,227,44,7715,0,4852,193,190,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,9.3,46,101100,396,1321,347,239,523,82,27259,23130,9401,396,170,3.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,9.0,40,101100,636,1321,357,434,677,108,51190,40196,12743,566,180,3.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,9.3,34,101200,856,1321,371,623,771,123,75586,48264,15004,690,200,4.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,8.8,28,101200,1038,1321,384,787,837,130,97877,52411,16172,751,220,3.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,8.4,25,101100,1172,1321,393,914,893,122,116261,54566,15562,701,210,5.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.9,8.9,23,101100,1247,1321,404,982,907,126,125755,55011,16202,697,210,4.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,9.0,22,101000,1259,1321,409,994,911,126,127452,55134,16239,689,200,4.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,9.3,22,101000,1206,1321,410,950,911,118,121587,54672,15183,672,240,5.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.4,8.5,20,100900,1093,1321,411,849,888,114,107345,53967,14447,661,210,5.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.2,9.6,22,100800,927,1321,412,701,847,107,86958,50969,13350,611,230,4.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.5,10.9,25,100800,719,1321,410,519,774,97,62609,44564,11791,526,210,4.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,11.8,28,100800,484,1321,406,321,655,81,37444,31196,9444,403,210,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,12.9,33,100800,239,1321,401,131,418,56,14663,6462,6255,253,200,4.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,13.9,42,100800,28,642,384,12,58,11,1349,0,1217,46,210,4.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,13.8,50,100800,0,0,368,0,0,0,0,0,0,0,190,3.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,13.2,53,100900,0,0,360,0,0,0,0,0,0,0,190,2.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,12.8,56,100900,0,0,354,0,0,0,0,0,0,0,200,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,12.8,61,100900,0,0,347,0,0,0,0,0,0,0,170,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,12.7,61,100800,0,0,346,0,0,0,0,0,0,0,190,2.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,12.2,64,100800,0,0,340,0,0,0,0,0,0,0,190,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,12.2,66,100800,0,0,338,0,0,0,0,0,0,0,190,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,12.3,71,100800,0,0,333,0,0,0,0,0,0,0,210,1.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,12.9,81,100800,2,181,327,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,13.3,77,100900,151,1321,333,71,256,42,7807,0,4611,183,210,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,13.4,69,100900,394,1321,341,248,583,75,28476,22870,8580,360,210,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,14.0,62,100900,635,1321,353,449,740,94,53438,39660,11180,493,210,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,14.5,53,100900,854,1321,369,641,827,106,78437,46994,13056,596,320,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,14.8,45,100900,1037,1321,384,807,885,112,100994,50144,14120,651,320,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,13.4,34,100800,1171,1321,401,934,934,106,119620,52628,13579,608,320,1.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,14.3,34,100800,1246,1321,408,1003,950,107,129530,52559,13911,594,320,1.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,13.1,28,100700,1258,1321,415,1015,951,109,131178,53607,14159,597,320,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,11.2,24,100600,1206,1321,419,966,935,113,123910,54540,14505,640,320,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.6,7.7,18,100600,1092,1321,416,864,914,108,109713,55346,13721,625,320,1.9,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.9,7.4,17,100500,926,1321,418,714,877,99,89158,52954,12387,563,260,0.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.6,8.8,20,100500,719,1321,418,531,814,88,64598,46639,10719,474,260,1.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.3,10.4,22,100500,483,1321,419,328,698,73,38649,32569,8603,364,260,2.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,13.7,32,100500,238,1321,410,135,464,52,15188,5966,5833,235,210,4.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,16.6,47,100500,28,636,393,13,69,11,1397,0,1242,47,210,3.2,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,15.9,56,100500,0,0,373,0,0,0,0,0,0,0,210,3.9,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,14.3,61,100500,0,0,356,0,0,0,0,0,0,0,220,2.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,13.8,64,100600,0,0,350,0,0,0,0,0,0,0,210,2.3,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,13.2,68,100600,0,0,341,0,0,0,0,0,0,0,190,0.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,12.6,70,100600,0,0,335,0,0,0,0,0,0,0,190,2.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.0,70,100600,0,0,327,0,0,0,0,0,0,0,180,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.6,70,100600,0,0,323,0,0,0,0,0,0,0,170,2.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.7,73,100600,0,0,321,0,0,0,0,0,0,0,190,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,11.1,80,100700,2,169,317,0,0,0,0,0,0,0,190,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,11.2,78,100700,149,1321,320,73,292,40,8054,0,4447,176,190,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,11.8,75,100800,392,1321,326,253,627,67,29276,23901,7813,325,210,4.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,12.2,68,100800,633,1321,335,456,779,82,54768,41183,9930,433,180,4.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,12.3,58,100800,853,1321,348,650,863,93,80428,48957,11541,521,220,4.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,12.8,51,100800,1036,1321,360,816,911,102,102964,51974,12864,588,220,4.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,12.9,49,100900,1170,1321,364,937,934,111,119721,53397,14169,636,200,3.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,13.4,45,100800,1245,1321,375,1007,948,114,129551,53663,14679,629,210,4.6,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,14.0,43,100800,1257,1321,384,1019,950,115,131101,53357,14830,628,220,4.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,14.3,41,100700,1205,1321,390,970,940,113,124173,52747,14541,644,220,4.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,13.9,39,100700,1092,1321,391,866,916,109,109538,51974,13848,634,230,5.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,14.1,40,100600,926,1321,391,716,878,101,88975,49471,12539,573,230,4.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,14.2,42,100600,718,1321,387,532,818,88,64594,43921,10698,475,200,4.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,14.5,44,100600,483,1321,384,329,700,74,38631,30711,8656,367,200,4.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,14.7,49,100600,237,1321,377,135,462,53,15153,5658,5904,238,200,3.8,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,12.6,52,100600,27,629,358,12,67,11,1369,0,1221,46,200,4.8,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,11.0,55,100600,0,0,344,0,0,0,0,0,0,0,200,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,10.5,61,100700,0,0,333,0,0,0,0,0,0,0,190,2.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,10.1,63,100700,0,0,328,0,0,0,0,0,0,0,190,2.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.6,70,100700,0,0,323,0,0,0,0,0,0,0,160,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,10.6,76,100700,0,0,318,0,0,0,0,0,0,0,160,2.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,10.6,83,100700,0,0,312,0,0,0,0,0,0,0,160,2.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.6,81,100700,0,0,314,0,0,0,0,0,0,0,190,2.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.6,84,100700,0,0,312,0,0,0,0,0,0,0,190,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.5,83,100800,2,157,311,0,0,0,0,0,0,0,190,2.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,10.1,80,100800,147,1321,312,72,290,40,7943,0,4420,174,200,3.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,10.7,74,100900,390,1321,320,251,623,68,29054,24156,7863,327,220,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,11.8,69,100900,631,1321,332,455,778,83,54610,41394,9996,436,190,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,12.1,60,100900,851,1321,344,648,862,93,80170,49021,11582,523,210,3.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,11.7,52,100900,1034,1321,352,814,912,100,102891,52553,12655,578,220,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,11.8,46,100900,1169,1321,363,937,945,101,120470,53881,13024,581,240,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,12.3,42,100900,1244,1321,375,1005,957,104,130200,54107,13527,577,220,4.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,12.7,38,100800,1257,1321,385,1014,953,108,131154,53867,14019,591,240,4.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,12.2,36,100800,1204,1321,388,961,928,115,122970,53727,14823,656,210,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,12.2,34,100700,1091,1321,392,857,902,111,108278,52542,14128,647,190,2.8,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,12.8,35,100700,925,1321,393,706,860,104,87603,49627,12901,590,190,4.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,13.1,37,100700,717,1321,389,523,795,91,63288,43757,11054,491,200,4.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,13.8,40,100600,482,1321,388,321,674,76,37621,30229,8886,377,200,4.7,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,13.2,44,100600,236,1321,376,131,435,53,14625,5867,5962,240,210,5.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,12.1,49,100700,26,621,361,12,62,11,1317,0,1184,45,210,6.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,11.6,55,100700,0,0,347,0,0,0,0,0,0,0,200,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,11.1,59,100800,0,0,339,0,0,0,0,0,0,0,190,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,11.2,64,100800,0,0,334,0,0,0,0,0,0,0,190,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.6,70,100800,0,0,329,0,0,0,0,0,0,0,170,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.2,73,100900,0,0,324,0,0,0,0,0,0,0,180,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.6,80,100900,0,0,320,0,0,0,0,0,0,0,160,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.2,79,100900,0,0,319,0,0,0,0,0,0,0,180,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.6,86,100900,0,0,315,0,0,0,0,0,0,0,180,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.1,84,101000,1,144,314,0,0,0,0,0,0,0,180,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,11.1,84,101100,144,1321,339,70,299,37,7722,0,4129,162,200,4.3,7,7,16.1,305,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,11.1,80,101100,387,1321,334,246,631,61,28678,23031,7164,295,200,5.2,4,4,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.2,74,101200,629,1321,334,446,778,76,53966,40678,9223,399,190,6.0,2,2,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,11.7,66,101200,849,1321,334,637,857,86,79238,48179,10773,484,200,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,11.8,59,101200,1033,1321,344,799,902,94,101463,51359,11978,545,200,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,12.2,54,101200,1167,1321,353,919,928,99,118276,52477,12784,570,210,4.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,12.2,49,101200,1243,1321,360,986,939,103,127842,53027,13338,569,210,3.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,12.2,47,101200,1256,1321,363,995,936,106,128929,53046,13726,579,180,4.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,12.3,43,101100,1204,1321,371,944,915,111,121133,52515,14265,630,180,4.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,12.7,44,101100,1091,1321,373,842,889,108,106608,51125,13675,625,210,4.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,12.6,46,101100,924,1321,368,693,848,100,86217,48642,12482,570,210,5.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,12.2,48,101000,716,1321,362,513,782,89,62221,43242,10803,479,200,5.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,12.1,50,101000,481,1321,358,315,664,74,37005,30254,8672,367,200,5.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,11.0,52,101000,235,1321,349,127,429,51,14312,5975,5768,232,190,4.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,10.1,56,101100,26,613,337,11,61,10,1267,0,1139,43,200,3.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,10.7,66,101100,0,0,328,0,0,0,0,0,0,0,200,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.1,75,101100,0,0,322,0,0,0,0,0,0,0,210,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.1,78,101100,0,0,319,0,0,0,0,0,0,0,190,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.0,83,101100,0,0,315,0,0,0,0,0,0,0,180,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.7,82,101100,0,0,314,0,0,0,0,0,0,0,170,1.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.1,87,101100,0,0,312,0,0,0,0,0,0,0,190,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.1,87,101100,0,0,328,0,0,0,0,0,0,0,190,3.2,4,4,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.1,87,101100,0,0,360,0,0,0,0,0,0,0,200,4.3,10,10,16.1,304,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.1,87,101200,1,132,360,0,0,0,0,0,0,0,210,4.8,10,10,16.1,266,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,11.2,87,101200,142,1321,351,65,222,41,7085,0,4480,177,200,2.7,9,9,16.1,220,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,11.8,86,101200,385,1321,342,210,412,90,23672,18172,10179,432,200,4.0,7,7,16.1,274,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,11.7,74,101200,627,1321,326,437,728,91,52025,39782,10922,479,210,5.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,11.7,64,101200,848,1321,336,627,818,102,76999,47740,12604,573,220,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,11.7,56,101200,1032,1321,347,790,875,107,99390,51155,13514,620,230,4.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,11.8,51,101200,1166,1321,355,914,918,103,117302,52571,13273,594,230,4.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,12.8,48,101100,1242,1321,366,981,932,105,126934,52437,13611,582,190,3.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,12.8,44,101100,1255,1321,374,990,929,107,128049,52396,13876,586,190,3.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,12.9,44,101100,1203,1321,374,938,912,108,120533,51741,13956,616,190,4.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,13.3,44,101000,1090,1321,377,835,885,104,105914,50213,13274,605,210,5.1,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,13.6,44,101000,924,1321,379,685,842,96,85399,47329,12038,548,220,5.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,13.6,46,101000,715,1321,375,505,776,85,61403,41600,10333,457,220,6.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,13.8,49,101000,480,1321,371,308,655,70,36262,28501,8306,351,220,6.7,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,13.3,56,101000,233,1321,357,123,419,49,13874,4721,5572,223,220,6.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,13.3,67,101000,25,604,343,11,59,10,1212,0,1092,41,210,4.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,13.3,75,101000,0,0,334,0,0,0,0,0,0,0,200,3.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,13.3,78,101100,0,0,331,0,0,0,0,0,0,0,180,2.7,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,13.4,81,101100,0,0,336,0,0,0,0,0,0,0,190,3.0,1,1,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,13.9,84,101100,0,0,370,0,0,0,0,0,0,0,170,4.1,9,9,16.1,396,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,13.8,84,101100,0,0,380,0,0,0,0,0,0,0,160,3.9,10,10,16.1,388,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,13.3,84,101000,0,0,377,0,0,0,0,0,0,0,150,2.5,10,10,16.1,326,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,13.1,83,101000,0,0,376,0,0,0,0,0,0,0,200,5.0,10,10,16.1,274,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,12.8,83,101000,0,0,374,0,0,0,0,0,0,0,190,4.3,10,10,16.1,274,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,12.8,83,101100,1,118,374,0,0,0,0,0,0,0,220,5.8,10,10,16.1,286,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,12.7,82,101100,140,1321,374,64,273,36,7117,0,3934,154,200,6.1,10,10,16.1,335,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.3,78,101100,383,1321,376,132,152,88,14893,6550,9950,422,210,5.7,10,10,16.1,342,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,12.8,80,101200,625,1321,377,194,32,179,21889,2228,20279,937,200,5.5,10,10,16.1,396,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,12.8,75,101200,846,1321,383,297,51,264,33839,4025,30307,1479,190,4.3,10,10,16.1,399,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,13.0,73,101200,1030,1321,387,434,97,359,49765,8262,41373,2077,200,3.6,10,10,16.1,549,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,13.3,64,101200,1165,1321,380,718,424,344,84119,33728,40589,1983,180,4.7,8,8,16.1,610,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,13.3,56,101200,1242,1321,368,968,915,109,124874,51464,14078,604,190,5.8,2,2,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,13.3,51,101100,1254,1321,364,981,914,113,126376,51745,14641,622,220,6.6,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,13.0,49,101100,1202,1321,366,934,896,119,119193,51702,15232,677,200,6.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,11.2,42,101100,1089,1321,366,836,877,114,105579,51867,14403,660,220,5.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,11.5,44,101000,923,1321,365,694,845,103,86108,49487,12861,588,220,6.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,12.0,48,101000,714,1321,361,517,796,87,62826,43838,10568,468,200,5.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,12.2,51,101000,478,1321,358,320,686,72,37613,30793,8452,357,200,4.8,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,12.1,58,101000,232,1321,347,129,453,50,14538,5499,5629,226,210,6.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,11.7,64,101000,24,594,337,11,66,10,1263,0,1133,43,210,5.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,11.6,71,101100,0,0,329,0,0,0,0,0,0,0,200,4.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.0,73,101100,0,0,323,0,0,0,0,0,0,0,200,7.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.0,78,101100,0,0,319,0,0,0,0,0,0,0,190,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.6,78,101100,0,0,316,0,0,0,0,0,0,0,180,4.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.6,81,101100,0,0,314,0,0,0,0,0,0,0,190,4.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.6,84,101100,0,0,312,0,0,0,0,0,0,0,180,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.6,84,101100,0,0,311,0,0,0,0,0,0,0,180,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.6,87,101100,0,0,309,0,0,0,0,0,0,0,180,2.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.7,87,101100,1,106,328,0,0,0,0,0,0,0,170,2.5,5,5,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,11.1,88,101200,138,1321,329,65,254,39,7149,0,4270,168,170,2.3,5,5,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,11.2,80,101200,380,1321,334,239,585,71,27474,22564,8151,340,200,3.6,4,4,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,11.7,74,101200,623,1321,326,439,742,89,52391,40260,10698,469,210,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,11.8,65,101200,844,1321,336,632,833,100,77712,48316,12350,560,220,3.2,0,0,15.7,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,12.8,64,101200,1029,1321,343,798,889,106,100321,51170,13339,612,290,3.6,0,0,13.3,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,12.8,56,101200,1164,1321,353,922,925,107,117883,52678,13768,618,260,3.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,12.7,51,101100,1241,1321,361,991,940,109,127820,53273,14056,604,200,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,11.7,43,101100,1253,1321,367,1002,941,109,129428,53986,14198,602,200,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,11.6,41,101000,1201,1321,372,952,926,110,122230,53590,14207,628,210,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,11.2,41,101000,1088,1321,369,850,904,106,107847,52706,13442,613,210,3.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,11.5,42,101000,922,1321,369,700,861,100,87133,50009,12435,567,210,3.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,12.0,45,100900,713,1321,367,515,786,91,62352,43786,11029,489,210,3.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,12.1,47,100900,477,1321,364,315,664,76,36895,30420,8881,377,210,4.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,11.8,51,100900,230,1321,355,126,420,53,14056,5601,5902,237,210,6.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,12.1,59,101000,23,584,345,11,57,10,1209,0,1101,42,210,5.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,11.0,65,101000,0,0,331,0,0,0,0,0,0,0,200,4.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.7,71,101000,0,0,324,0,0,0,0,0,0,0,200,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.0,78,101000,0,0,319,0,0,0,0,0,0,0,190,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.6,78,101000,0,0,316,0,0,0,0,0,0,0,190,2.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.6,84,101000,0,0,311,0,0,0,0,0,0,0,150,2.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.6,87,101000,0,0,309,0,0,0,0,0,0,0,190,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.6,87,101000,0,0,309,0,0,0,0,0,0,0,190,2.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.6,87,101000,0,0,309,0,0,0,0,0,0,0,180,2.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.6,86,101000,1,93,310,0,0,0,0,0,0,0,190,2.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,10.7,84,101000,135,1322,312,60,204,40,6604,0,4343,172,200,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,11.1,79,101100,378,1322,318,228,518,80,25891,21252,9084,382,200,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,11.2,69,101100,621,1322,329,424,686,102,50038,38917,12045,532,230,4.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,11.8,63,101100,842,1322,339,614,781,116,74635,47009,14186,650,200,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,12.2,58,101100,1027,1322,347,780,847,121,97077,50564,15131,701,220,4.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,12.2,52,101000,1163,1322,355,908,907,109,115946,52277,14028,631,240,3.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,12.2,46,101000,1240,1322,365,977,920,114,125660,52966,14711,635,240,5.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,12.1,44,100900,1252,1322,368,986,912,122,126362,53087,15662,670,210,4.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,11.6,40,100900,1201,1322,373,931,873,138,117538,52767,17462,785,200,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,10.9,37,100800,1088,1322,374,829,847,132,103508,51916,16579,768,180,4.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,10.9,38,100800,921,1322,373,681,803,122,83530,49136,14983,693,230,4.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,11.0,40,100800,712,1322,369,501,731,107,59905,43070,12831,576,220,5.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,12.2,46,100800,476,1322,366,303,602,87,35114,29093,10091,432,220,5.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,12.0,55,100800,228,1322,350,118,354,57,13139,5360,6366,258,210,7.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,10.7,58,100800,23,573,338,10,42,9,1085,0,1008,38,210,7.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,11.7,73,100800,0,0,327,0,0,0,0,0,0,0,200,5.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.6,81,100900,0,0,320,0,0,0,0,0,0,0,210,5.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.1,81,100900,0,0,316,0,0,0,0,0,0,0,210,5.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.8,85,101000,0,0,339,0,0,0,0,0,0,0,190,2.7,6,6,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,101000,0,0,366,0,0,0,0,0,0,0,190,3.7,10,10,16.1,388,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,100900,0,0,366,0,0,0,0,0,0,0,180,4.0,10,10,16.1,335,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.7,84,100900,0,0,366,0,0,0,0,0,0,0,210,3.7,10,10,16.1,335,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.6,86,100900,0,0,364,0,0,0,0,0,0,0,210,4.4,10,10,16.1,335,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.1,83,101000,0,80,363,0,0,0,0,0,0,0,200,3.3,10,10,16.1,335,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,11.2,83,101000,133,1322,364,47,136,33,5196,0,3697,144,210,5.2,10,10,16.1,335,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,11.7,83,101000,376,1322,367,158,174,109,17490,8531,12071,520,190,5.6,10,10,16.1,342,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.8,77,101100,619,1322,364,410,635,112,47970,37023,13210,588,220,4.5,9,9,16.1,409,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,11.9,68,101100,841,1322,356,620,811,104,75919,47400,12767,580,170,3.9,6,6,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,12.2,60,101100,1026,1322,345,782,861,114,97801,50738,14344,661,190,4.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,12.3,53,101100,1161,1322,355,901,883,125,113974,52152,15833,719,220,3.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,12.9,51,101100,1238,1322,362,969,899,127,123649,52362,16224,706,200,3.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,13.3,46,101000,1252,1322,372,980,901,127,125127,52113,16290,700,240,4.6,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,13.2,45,101000,1200,1322,375,931,887,126,118252,51668,16074,719,230,4.8,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,12.3,41,101000,1087,1322,376,828,861,121,104011,50937,15209,701,240,6.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,12.7,42,100900,920,1322,376,680,816,112,83802,47973,13825,636,190,5.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,13.1,45,100900,711,1322,374,498,743,99,59881,41728,11900,532,210,5.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,13.4,47,100900,474,1322,371,302,617,81,35127,28377,9452,403,210,5.6,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,13.9,53,100900,227,1322,365,118,374,54,13105,4378,5982,241,230,5.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,13.9,60,100900,22,561,354,10,47,9,1082,0,998,38,210,4.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,13.9,71,100900,0,0,342,0,0,0,0,0,0,0,210,5.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,13.8,78,101000,0,0,335,0,0,0,0,0,0,0,210,5.4,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,13.3,81,101000,0,0,329,0,0,0,0,0,0,0,210,3.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,13.3,83,101000,0,0,327,0,0,0,0,0,0,0,200,4.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,13.2,83,101000,0,0,326,0,0,0,0,0,0,0,180,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.2,83,101000,0,0,321,0,0,0,0,0,0,0,190,2.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.1,83,101000,0,0,321,0,0,0,0,0,0,0,180,2.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.8,81,101100,0,0,320,0,0,0,0,0,0,0,190,2.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.1,83,101100,0,67,331,0,0,0,0,0,0,0,200,3.8,2,2,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,12.2,80,101100,130,1322,374,50,180,33,5560,0,3610,141,200,3.3,10,10,16.1,475,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.1,77,101200,373,1322,376,178,283,98,19852,12888,10973,469,200,4.0,10,10,16.1,453,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.8,73,101200,617,1322,360,407,652,103,47964,36849,12163,538,220,6.3,8,8,16.1,488,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,11.8,68,101300,839,1322,360,615,826,91,76060,46885,11308,509,220,4.1,7,7,16.1,549,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,12.1,60,101200,1024,1322,344,779,878,99,98382,50277,12491,570,200,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,11.8,54,101200,1160,1322,350,902,914,100,115936,52045,12856,575,200,4.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,12.1,49,101200,1237,1322,360,972,928,103,125841,52569,13393,575,250,4.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,11.7,46,101200,1251,1322,362,984,926,107,127231,53003,13931,592,200,3.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,11.6,43,101100,1199,1322,367,934,904,115,119522,52698,14751,655,210,5.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,10.8,39,101100,1086,1322,371,834,883,109,105603,52056,13815,631,220,6.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,9.5,36,101000,919,1322,369,688,846,100,85638,50227,12453,567,220,5.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,8.6,35,101000,709,1322,365,507,784,87,61708,44736,10556,466,210,5.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,8.2,35,101000,472,1322,362,310,670,70,36498,31255,8293,349,210,5.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,7.9,37,101000,225,1322,356,122,437,48,13785,5489,5434,217,230,5.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,8.9,45,101000,21,549,346,10,63,9,1136,0,1029,39,210,3.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,8.9,51,101000,0,0,336,0,0,0,0,0,0,0,200,4.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,9.0,57,101100,0,0,329,0,0,0,0,0,0,0,220,4.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,9.4,63,101100,0,0,325,0,0,0,0,0,0,0,200,3.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,9.3,65,101100,0,0,322,0,0,0,0,0,0,0,210,3.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,8.9,67,101100,0,0,317,0,0,0,0,0,0,0,210,3.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,8.9,72,101100,0,0,312,0,0,0,0,0,0,0,170,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,9.0,72,101100,0,0,312,0,0,0,0,0,0,0,170,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.4,75,101100,0,0,312,0,0,0,0,0,0,0,160,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,9.5,77,101100,0,54,311,0,0,0,0,0,0,0,160,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,10.0,74,101200,128,1322,317,60,279,34,6669,0,3708,145,200,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,10.1,66,101200,371,1322,325,228,607,58,26580,21013,6806,279,200,2.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,10.7,58,101200,614,1322,338,424,754,74,51264,39063,8949,386,200,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,11.1,54,101200,837,1322,346,611,832,85,75990,46866,10551,472,200,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,11.2,46,101200,1023,1322,359,771,876,93,97831,50221,11897,541,200,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,11.9,43,101200,1159,1322,369,890,899,102,114177,51330,13133,589,240,2.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,13.3,42,101200,1236,1322,380,957,913,104,123789,50964,13444,579,220,3.9,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,13.3,41,101200,1249,1322,383,966,907,109,124667,50969,14070,600,230,2.6,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,13.3,39,101100,1198,1322,386,913,877,119,116413,50426,15221,679,230,6.4,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,13.4,39,101100,1084,1322,388,813,850,116,102262,49167,14594,671,220,4.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,13.8,41,101100,917,1322,386,667,810,105,82529,46274,13033,597,230,4.8,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,13.9,44,101100,708,1322,382,491,748,90,59334,40545,10963,487,230,6.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,14.0,46,101100,471,1322,378,298,634,72,34900,27426,8482,358,230,7.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,14.3,50,101100,223,1322,372,116,403,48,12994,3233,5404,216,220,6.8,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,13.4,53,101100,20,536,362,9,55,9,1050,0,959,36,220,4.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,13.9,65,101200,0,0,349,0,0,0,0,0,0,0,200,3.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,13.9,71,101200,0,0,342,0,0,0,0,0,0,0,230,4.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,13.9,76,101300,0,0,337,0,0,0,0,0,0,0,220,3.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,13.9,81,101300,0,0,332,0,0,0,0,0,0,0,220,2.4,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,13.9,84,101300,0,0,330,0,0,0,0,0,0,0,210,1.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,13.9,90,101300,0,0,325,0,0,0,0,0,0,0,210,2.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,13.9,93,101400,0,0,322,0,0,0,0,0,0,0,160,1.9,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,13.8,93,101400,0,0,322,0,0,0,0,0,0,0,170,0.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,13.4,93,101400,0,41,320,0,0,0,0,0,0,0,170,1.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,13.9,89,101400,125,1322,336,59,270,34,6527,0,3727,146,180,1.3,2,2,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,13.9,82,101500,368,1322,331,231,612,60,26691,19826,7011,289,180,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,13.9,71,101500,612,1322,342,432,770,75,51980,38311,9070,392,160,1.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,14.0,63,101500,835,1322,352,624,852,86,77352,46408,10696,480,160,1.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,14.4,55,101500,1021,1322,366,789,903,92,100004,49517,11716,533,260,2.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,14.4,49,101500,1157,1322,375,915,939,92,118015,51035,11957,533,290,2.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,14.3,43,101400,1235,1322,385,986,956,94,128368,51755,12240,524,300,3.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,13.8,38,101400,1248,1322,392,1000,955,98,129951,52395,12762,541,300,4.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,12.7,35,101300,1197,1322,393,951,931,108,122014,53003,13940,618,280,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,11.9,33,101300,1083,1322,393,851,914,102,108090,52584,13043,594,290,3.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,10.8,29,101200,916,1322,395,703,879,94,87778,50831,11755,533,290,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,9.1,26,101200,706,1322,395,519,816,83,63276,45819,10103,444,320,2.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,8.6,25,101200,469,1322,394,317,701,68,37384,32083,8080,339,320,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,6.6,22,101100,220,1322,390,124,458,47,13930,5543,5357,213,340,2.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,6.7,26,101100,19,522,377,10,64,9,1103,0,1004,38,280,1.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,11.3,47,101100,0,0,358,0,0,0,0,0,0,0,230,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,13.2,56,101200,0,0,357,0,0,0,0,0,0,0,230,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,14.9,71,101200,0,0,348,0,0,0,0,0,0,0,40,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,13.9,73,101200,0,0,340,0,0,0,0,0,0,0,260,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,13.8,76,101200,0,0,336,0,0,0,0,0,0,0,260,1.3,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,13.3,81,101100,0,0,329,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,13.4,87,101200,0,0,324,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,13.8,93,101200,0,0,322,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,13.4,88,101200,0,28,323,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,14.4,82,101200,123,1322,334,58,250,35,6335,0,3811,150,260,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,14.5,69,101200,366,1322,347,229,594,65,26290,19567,7444,308,280,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,14.9,60,101300,610,1322,361,430,756,81,51421,37839,9763,425,280,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,14.4,49,101300,833,1322,375,623,842,93,76748,46349,11472,518,280,1.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,14.3,43,101200,1019,1322,386,789,893,101,99356,49939,12742,583,280,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,13.2,35,101200,1156,1322,395,913,926,104,116908,52228,13377,602,280,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,12.1,30,101200,1234,1322,403,983,940,106,127013,53535,13742,593,280,1.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,11.0,26,101100,1247,1322,409,995,939,109,128534,54332,14119,603,280,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,9.7,23,101000,1196,1322,410,944,919,114,120948,54590,14615,649,280,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,7.5,20,101000,1082,1322,408,842,896,109,106662,54487,13861,633,320,2.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.4,6.8,18,100900,915,1322,409,692,856,100,86182,52063,12522,570,320,2.4,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.4,7.4,19,100900,705,1322,410,509,791,87,61854,45692,10631,469,320,1.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.3,9.2,22,100900,467,1322,412,308,667,73,36151,30935,8561,361,230,0.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,11.9,28,100900,218,1322,408,118,414,50,13177,4067,5572,223,230,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,13.2,35,100800,18,508,396,9,52,9,1025,0,949,36,230,4.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,12.8,40,100900,0,0,381,0,0,0,0,0,0,0,230,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,12.7,46,100900,0,0,370,0,0,0,0,0,0,0,220,2.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,12.1,50,100900,0,0,359,0,0,0,0,0,0,0,220,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,11.7,52,100900,0,0,352,0,0,0,0,0,0,0,230,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,11.8,58,100900,0,0,344,0,0,0,0,0,0,0,190,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,12.1,69,100900,0,0,334,0,0,0,0,0,0,0,190,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,11.2,61,100900,0,0,337,0,0,0,0,0,0,0,180,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,11.7,68,100900,0,0,332,0,0,0,0,0,0,0,180,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,11.8,71,100900,0,15,330,0,0,0,0,0,0,0,200,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,12.3,72,100900,120,1323,332,55,238,34,6075,0,3716,145,200,1.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,12.9,67,101000,363,1323,341,224,584,64,25815,19747,7409,306,200,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,13.4,60,101000,608,1323,352,425,752,80,50947,38270,9605,417,200,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,13.8,50,101000,831,1323,369,618,838,92,76221,46412,11361,512,330,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,13.2,39,101000,1018,1323,386,784,890,99,98811,50330,12538,573,330,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,12.8,34,100900,1155,1323,395,908,922,102,116319,52166,13173,592,330,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,12.7,30,100900,1233,1323,406,979,937,106,126437,52943,13689,592,330,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,12.1,27,100800,1246,1323,414,991,937,108,128039,53485,14031,600,330,2.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.5,11.4,25,100700,1194,1323,416,942,920,112,120703,53525,14389,640,280,1.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.0,9.2,21,100700,1081,1323,415,839,896,107,106341,53527,13647,623,280,3.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.3,9.2,20,100600,913,1323,417,689,854,100,85747,50820,12419,565,220,4.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.0,9.9,22,100600,703,1323,416,506,786,88,61343,44392,10682,472,240,4.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,9.2,21,100600,465,1323,414,305,662,72,35747,30516,8486,357,240,4.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,11.4,28,100600,216,1323,404,116,410,49,12958,3866,5503,220,220,5.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,13.9,40,100600,17,493,390,9,52,8,972,0,901,34,200,2.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,13.9,49,100600,0,0,371,0,0,0,0,0,0,0,220,3.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,13.9,56,100600,0,0,360,0,0,0,0,0,0,0,230,3.4,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,13.9,62,100600,0,0,353,0,0,0,0,0,0,0,190,1.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,13.9,65,100600,0,0,348,0,0,0,0,0,0,0,150,1.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,13.8,66,100600,0,0,347,0,0,0,0,0,0,0,150,1.6,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,12.7,68,100700,0,0,338,0,0,0,0,0,0,0,200,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,12.2,70,100700,0,0,333,0,0,0,0,0,0,0,180,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.2,73,100700,0,0,330,0,0,0,0,0,0,0,180,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.3,78,100700,0,4,326,0,0,0,0,0,0,0,200,2.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,12.9,80,100700,118,1323,327,52,215,33,5741,0,3660,143,210,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,13.4,74,100800,360,1323,336,216,544,68,24747,18740,7826,325,190,2.1,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,14.4,69,100800,605,1323,347,414,714,87,49180,36700,10408,455,200,1.9,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,14.5,58,100800,829,1323,361,606,808,100,74221,45188,12260,556,200,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,15.7,55,100800,1016,1323,374,773,867,107,96759,48071,13434,618,230,2.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,16.0,46,100800,1153,1323,390,900,911,106,114799,49509,13624,615,230,2.5,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,14.9,38,100700,1231,1323,400,972,927,110,125031,51117,14152,615,230,1.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,14.3,34,100700,1245,1323,408,985,924,115,126450,51808,14844,640,300,1.9,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.8,13.6,30,100600,1193,1323,415,933,895,126,118351,51892,16022,720,250,0.4,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,15.3,34,100600,1079,1323,414,831,872,120,104071,49497,15045,695,250,3.7,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.5,13.6,30,100600,912,1323,413,682,827,112,83863,48074,13793,634,210,4.1,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,12.7,29,100600,701,1323,409,498,752,99,59705,42439,11927,532,230,4.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,12.5,30,100500,462,1323,406,297,619,81,34488,28498,9435,402,230,4.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,14.5,39,100500,213,1323,396,110,355,53,12221,3148,5915,239,230,5.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,14.9,50,100600,16,478,377,8,37,8,887,0,839,31,220,4.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,14.3,58,100600,0,0,361,0,0,0,0,0,0,0,220,5.4,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,13.8,62,100700,0,0,352,0,0,0,0,0,0,0,210,3.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,13.3,66,100700,0,0,344,0,0,0,0,0,0,0,190,2.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,13.3,70,100800,0,0,339,0,0,0,0,0,0,0,180,2.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,12.8,71,100800,0,0,335,0,0,0,0,0,0,0,260,3.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.7,78,100800,0,0,328,0,0,0,0,0,0,0,180,2.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,12.2,80,100800,0,0,323,0,0,0,0,0,0,0,210,3.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,12.2,81,100800,0,0,323,0,0,0,0,0,0,0,190,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.2,83,100900,0,0,321,0,0,0,0,0,0,0,180,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,12.3,83,101000,115,1315,322,50,177,35,5445,0,3777,148,210,3.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,12.9,77,101000,358,1323,330,212,506,75,24015,18554,8536,357,210,4.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,13.3,71,101100,603,1323,338,409,685,97,48210,36977,11457,504,220,3.1,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,13.4,62,101100,827,1323,349,601,785,111,73062,45729,13512,617,230,3.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,14.4,58,101100,1014,1323,361,768,845,120,95350,48979,14906,691,230,3.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,14.5,51,101100,1152,1323,372,893,884,123,112732,50653,15592,711,210,4.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,15.1,46,101000,1230,1323,386,964,902,125,122757,50923,16018,704,200,3.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,15.5,44,101000,1244,1323,392,978,908,125,124744,50788,15983,694,220,4.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,14.3,37,101000,1192,1323,399,933,901,121,118577,51380,15494,695,220,5.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,13.2,34,101000,1078,1323,399,832,879,116,104563,51045,14618,673,220,5.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,12.9,34,100900,910,1323,398,683,839,106,84363,48636,13192,604,210,5.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,12.8,35,100900,699,1323,393,500,769,94,60249,42689,11342,504,200,5.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,13.4,38,100900,460,1323,390,300,641,77,34905,28416,9012,382,200,4.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,13.8,45,101000,210,1323,378,111,376,52,12357,3052,5736,231,200,4.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,13.3,52,101000,15,463,362,8,41,8,887,0,837,31,220,4.9,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,13.3,62,101100,0,0,349,0,0,0,0,0,0,0,210,3.1,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,13.2,73,101100,0,0,336,0,0,0,0,0,0,0,190,2.8,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.8,76,101200,0,0,331,0,0,0,0,0,0,0,190,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,12.8,78,101200,0,0,329,0,0,0,0,0,0,0,180,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.7,78,101200,0,0,328,0,0,0,0,0,0,0,200,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.8,79,101200,0,0,322,0,0,0,0,0,0,0,200,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.2,83,101300,0,0,321,0,0,0,0,0,0,0,170,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.1,83,101300,0,0,320,0,0,0,0,0,0,0,180,3.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,11.7,83,101400,0,0,318,0,0,0,0,0,0,0,180,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,11.6,79,101400,113,1304,321,49,194,33,5405,0,3612,141,200,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,11.1,68,101500,355,1323,328,212,531,69,24195,19079,7952,330,210,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,11.1,60,101500,601,1323,338,410,706,90,48709,38252,10700,467,210,4.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,11.1,54,101500,825,1323,346,603,802,103,73766,47172,12624,572,200,4.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,11.1,47,101600,1013,1323,357,771,867,108,96690,51184,13589,624,210,5.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,10.9,40,101500,1150,1323,367,902,920,102,115657,53193,13085,588,210,4.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,9.0,32,101500,1229,1323,375,973,934,106,125821,54992,13711,594,220,5.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,6.3,25,101500,1242,1323,377,987,933,110,127514,56538,14326,615,200,4.7,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,7.7,26,101400,1190,1323,384,938,915,115,120083,55528,14790,659,220,5.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,6.8,23,101400,1076,1323,386,838,895,110,106023,54868,13968,639,220,5.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,3.9,19,101300,908,1323,383,689,857,101,85746,53303,12631,574,230,5.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,3.0,18,101300,697,1323,379,506,791,89,61399,47334,10845,478,220,4.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,3.0,19,101300,458,1323,377,304,670,73,35718,32582,8550,359,220,3.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,9.7,33,101300,208,1323,376,113,412,49,12636,3634,5433,217,210,4.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,12.2,48,101300,14,446,363,8,50,7,886,0,829,31,230,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,12.2,59,101400,0,0,345,0,0,0,0,0,0,0,210,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,12.2,66,101400,0,0,337,0,0,0,0,0,0,0,200,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.1,72,101400,0,0,330,0,0,0,0,0,0,0,210,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.7,76,101400,0,0,325,0,0,0,0,0,0,0,210,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.6,81,101400,0,0,320,0,0,0,0,0,0,0,190,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.1,83,101400,0,0,315,0,0,0,0,0,0,0,190,4.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.2,84,101400,0,0,314,0,0,0,0,0,0,0,210,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.8,91,101400,0,0,318,0,0,0,0,0,0,0,180,3.3,1,1,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.7,90,101400,0,0,361,0,0,0,0,0,0,0,190,3.7,10,10,16.1,236,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,11.8,90,101400,110,1293,361,37,155,25,4188,0,2754,105,200,4.4,10,10,16.1,183,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,12.2,88,101500,352,1324,356,161,246,96,17905,10649,10681,455,220,3.2,9,9,16.1,183,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,12.3,74,101500,598,1324,330,430,795,70,51905,39439,8512,365,180,3.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,12.8,64,101500,823,1324,343,626,878,80,77933,47870,10001,446,200,3.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,12.8,55,101500,1011,1324,356,795,927,87,101123,51496,11104,503,200,3.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,12.7,49,101400,1149,1324,364,920,954,92,118748,53103,11918,533,200,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,11.7,40,101400,1227,1324,373,992,969,93,129206,54362,12201,526,260,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,11.6,36,101300,1241,1324,382,1004,969,96,130734,54550,12539,535,260,1.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,10.7,31,101200,1189,1324,388,953,948,101,122914,54712,13128,581,260,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,11.3,31,101100,1075,1324,395,849,923,99,107958,53223,12642,575,210,2.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,11.5,31,101100,906,1324,396,696,880,93,86758,50440,11685,530,210,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,12.2,33,101000,695,1324,394,508,809,84,61709,43851,10213,450,220,4.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,12.0,33,101000,455,1324,392,304,682,70,35648,29430,8179,344,220,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,14.0,42,101000,205,1324,385,112,420,47,12503,1963,5275,211,210,3.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,14.3,51,101000,13,429,371,8,51,7,863,0,810,30,200,2.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,13.3,58,101000,0,0,354,0,0,0,0,0,0,0,190,2.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,13.2,63,101000,0,0,347,0,0,0,0,0,0,0,200,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,12.8,66,101000,0,0,341,0,0,0,0,0,0,0,180,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,12.8,68,101000,0,0,339,0,0,0,0,0,0,0,160,2.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,12.7,70,101000,0,0,336,0,0,0,0,0,0,0,170,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.1,72,101000,0,0,330,0,0,0,0,0,0,0,180,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.7,76,100900,0,0,325,0,0,0,0,0,0,0,180,1.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,11.6,77,100900,0,0,323,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,11.2,75,100900,0,0,322,0,0,0,0,0,0,0,190,0.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,11.8,78,101000,108,1280,323,50,227,32,5461,0,3451,135,190,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,12.3,74,101000,349,1324,330,216,581,63,24823,18861,7235,298,190,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,12.9,67,101000,596,1324,340,419,756,79,50150,38352,9462,409,130,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,13.4,62,101000,821,1324,349,614,845,90,75694,46832,11153,501,130,1.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,13.9,56,101000,1009,1324,361,782,899,97,98572,50164,12252,559,170,1.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,13.8,46,101000,1147,1324,376,907,935,97,116548,51725,12480,560,120,0.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,13.2,40,100900,1226,1324,384,978,949,99,126685,52726,12873,558,120,1.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,12.7,34,100900,1240,1324,394,989,946,103,127977,53184,13411,577,120,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,12.0,32,100800,1187,1324,396,938,921,112,119992,53311,14425,644,120,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,10.5,27,100700,1073,1324,400,836,898,108,105678,53084,13712,627,190,2.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.6,8.4,22,100700,904,1324,401,686,857,100,85161,51462,12509,569,210,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,7.6,21,100700,693,1324,400,500,785,89,60518,45367,10815,477,210,2.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,6.9,20,100600,452,1324,399,297,657,73,34788,30693,8564,360,230,2.8,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,12.9,36,100600,202,1324,392,107,388,48,11938,2159,5387,215,230,4.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,13.4,44,100700,12,411,377,7,42,7,780,0,739,27,220,2.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,13.9,56,100700,0,0,360,0,0,0,0,0,0,0,210,2.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,13.9,62,100700,0,0,353,0,0,0,0,0,0,0,220,3.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,13.8,66,100800,0,0,347,0,0,0,0,0,0,0,190,1.9,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,13.3,70,100800,0,0,340,0,0,0,0,0,0,0,170,0.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,13.2,70,100800,0,0,339,0,0,0,0,0,0,0,170,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,12.8,73,100800,0,0,334,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.7,78,100800,0,0,328,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.2,78,100800,0,0,325,0,0,0,0,0,0,0,210,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,12.3,81,100800,0,0,323,0,0,0,0,0,0,0,210,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,12.9,83,100900,105,1269,325,46,187,31,5046,0,3433,134,210,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,13.3,79,101000,346,1324,331,208,528,70,23619,17740,7931,329,210,1.3,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,13.4,66,101000,593,1324,344,407,705,92,48139,37138,10860,475,210,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,13.9,55,101000,819,1324,363,602,799,108,73154,45910,13127,598,330,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,14.0,46,101000,1007,1324,377,769,855,118,95518,49766,14768,684,330,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,14.2,40,101000,1146,1324,391,895,891,124,112866,51372,15641,715,330,1.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,12.7,32,100900,1224,1324,401,967,910,126,123179,53171,16145,712,330,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,11.5,26,100900,1238,1324,410,981,915,126,125275,54111,16146,704,330,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.4,9.6,22,100800,1186,1324,413,935,908,122,119022,54797,15587,700,330,1.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.5,6.2,17,100800,1071,1324,408,832,885,116,104805,55087,14660,673,280,0.4,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.9,4.8,15,100800,902,1324,409,681,843,107,84283,52705,13236,604,280,3.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.0,4.6,15,100700,690,1324,409,496,772,94,59851,46185,11332,501,290,2.8,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.9,6.4,17,100700,450,1324,411,294,641,76,34233,30484,8875,374,290,2.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,9.0,22,100700,199,1324,406,105,372,49,11636,2910,5453,218,240,2.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,9.7,29,100700,11,393,387,6,39,6,729,0,694,26,230,4.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,12.3,43,100800,0,0,371,0,0,0,0,0,0,0,220,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,13.3,56,100800,0,0,357,0,0,0,0,0,0,0,220,2.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,13.2,65,100900,0,0,344,0,0,0,0,0,0,0,210,1.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,12.8,68,100900,0,0,339,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,12.8,73,100900,0,0,334,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.8,76,100900,0,0,331,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.8,78,100900,0,0,328,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,12.8,82,100900,0,0,325,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,12.8,90,101000,0,0,319,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,12.9,82,101000,103,1258,325,44,179,30,4833,0,3325,130,210,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,13.4,74,101000,344,1324,336,203,515,69,23055,17081,7910,328,210,0.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,14.0,65,101100,591,1324,350,402,693,92,47389,36274,10940,479,210,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,14.5,56,101100,817,1324,364,596,793,107,72436,45115,13048,594,210,2.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,14.7,45,101000,1006,1324,384,765,854,117,94999,49014,14539,673,210,1.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,12.9,34,101000,1144,1324,398,892,892,122,112707,52124,15418,704,210,2.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,13.2,31,101000,1223,1324,407,966,913,123,123160,52740,15696,692,210,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.4,12.3,26,101000,1237,1324,416,979,918,122,125217,53475,15631,682,210,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.5,12.5,27,100900,1184,1324,417,930,905,120,118234,52808,15359,691,210,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.0,10.7,23,100800,1070,1324,417,824,883,111,103924,52422,14099,647,210,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.4,9.9,21,100800,900,1324,418,671,840,100,83278,49753,12476,568,210,4.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.0,10.2,22,100800,688,1324,417,486,769,86,58830,42949,10496,462,230,4.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,9.8,22,100800,447,1324,414,285,637,70,33370,28129,8238,345,230,4.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,13.0,32,100800,196,1324,402,100,367,46,11103,1037,5089,203,210,3.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,14.2,46,100800,10,374,379,6,38,6,674,0,643,24,220,2.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,12.7,50,100800,0,0,361,0,0,0,0,0,0,0,210,3.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,12.1,57,100900,0,0,348,0,0,0,0,0,0,0,210,4.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,11.7,61,100900,0,0,340,0,0,0,0,0,0,0,200,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,11.7,61,101000,0,0,340,0,0,0,0,0,0,0,160,3.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,11.7,66,101000,0,0,334,0,0,0,0,0,0,0,180,1.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.6,72,101000,0,0,327,0,0,0,0,0,0,0,190,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.1,73,101000,0,0,324,0,0,0,0,0,0,0,190,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,11.2,75,101000,0,0,322,0,0,0,0,0,0,0,200,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,11.7,78,101000,0,0,323,0,0,0,0,0,0,0,200,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,11.8,78,101100,101,1247,323,38,116,29,4184,0,3232,126,200,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,12.3,74,101100,341,1325,330,185,399,83,20745,15178,9287,390,160,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,12.9,67,101100,588,1325,341,375,581,116,43419,33556,13547,603,190,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,13.4,60,101100,815,1325,351,562,691,137,67016,42758,16354,757,210,2.1,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,14.0,53,101100,1004,1325,366,729,776,141,89335,47165,17346,813,200,2.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,14.3,47,101100,1142,1325,377,865,866,118,109406,49379,14939,681,200,2.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,14.0,41,101100,1221,1325,388,934,881,122,119058,50289,15618,690,190,2.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,14.4,37,101000,1235,1325,400,944,879,125,120341,50048,15979,700,190,1.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,14.5,34,100900,1183,1325,407,895,859,128,113144,49484,16292,738,210,1.8,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,15.5,37,100800,1068,1325,408,795,834,123,99163,47565,15408,714,210,4.1,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,15.6,38,100800,898,1325,406,648,788,114,79279,44723,13981,644,200,4.1,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,15.3,40,100800,685,1325,399,467,708,101,55665,38553,12062,539,200,4.4,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,15.5,44,100800,444,1325,392,272,565,83,31249,24256,9524,406,200,4.7,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,14.2,47,100800,192,1325,377,93,293,50,10237,1174,5565,224,200,5.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,12.7,51,100900,9,356,361,5,24,5,600,0,583,21,190,5.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,12.2,59,100900,0,0,345,0,0,0,0,0,0,0,210,4.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,12.2,66,100900,0,0,338,0,0,0,0,0,0,0,190,2.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,12.2,70,101000,0,0,333,0,0,0,0,0,0,0,200,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,12.1,72,101000,0,0,330,0,0,0,0,0,0,0,200,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.8,71,101000,0,0,330,0,0,0,0,0,0,0,170,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.2,78,101000,0,0,325,0,0,0,0,0,0,0,220,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,12.2,81,101000,0,0,323,0,0,0,0,0,0,0,220,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.2,83,101100,0,0,321,0,0,0,0,0,0,0,200,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.3,84,101100,0,0,335,0,0,0,0,0,0,0,200,3.7,3,3,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,12.8,86,101200,98,1236,336,39,131,29,4234,0,3180,124,190,4.7,3,3,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,12.9,80,101200,338,1325,344,188,439,76,21209,15510,8635,361,200,5.6,4,4,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,13.4,74,101200,586,1325,336,381,632,102,44603,34416,11953,526,220,5.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,13.9,64,101200,813,1325,350,571,742,116,68968,43526,14075,644,200,4.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,14.0,56,101200,1002,1325,362,736,811,123,91110,47650,15276,709,210,3.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,14.4,53,101200,1141,1325,368,862,860,122,108723,49286,15412,705,220,4.4,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,14.4,48,101200,1220,1325,376,931,876,125,118447,50010,16010,710,230,6.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,14.5,46,101100,1233,1325,382,945,879,126,120277,50123,16130,708,250,3.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,15.0,44,101000,1181,1325,389,900,874,121,114131,49348,15368,693,260,2.7,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,15.0,40,101000,1066,1325,396,799,851,115,100185,48162,14427,665,200,3.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,15.3,42,100900,896,1325,395,652,809,105,80251,45259,12993,595,200,4.1,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,15.3,44,100900,682,1325,391,472,737,92,56605,39048,11071,491,210,4.1,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,15.5,47,100900,441,1325,387,275,604,74,31886,24565,8651,365,210,4.5,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,14.3,49,100900,189,1325,374,94,332,47,10396,380,5169,206,230,6.8,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,13.8,56,100900,8,336,360,5,30,5,599,0,579,21,220,4.1,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,13.2,62,100900,0,0,348,0,0,0,0,0,0,0,210,4.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,12.8,68,101000,0,0,339,0,0,0,0,0,0,0,200,3.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,12.7,73,101000,0,0,333,0,0,0,0,0,0,0,190,3.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.2,73,101000,0,0,330,0,0,0,0,0,0,0,200,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.2,75,101000,0,0,328,0,0,0,0,0,0,0,180,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,12.2,81,101000,0,0,323,0,0,0,0,0,0,0,200,1.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.2,84,101000,0,0,320,0,0,0,0,0,0,0,200,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.2,87,101100,0,0,318,0,0,0,0,0,0,0,190,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.2,87,101100,0,0,318,0,0,0,0,0,0,0,170,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,12.0,88,101200,96,1225,342,40,158,28,4346,0,3105,121,200,3.2,7,7,16.1,244,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,12.9,82,101200,335,1325,336,193,492,69,21914,15993,7835,324,200,3.5,2,2,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,13.4,72,101200,583,1325,338,390,683,90,46082,35541,10631,464,190,2.8,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,13.9,64,101200,810,1325,350,584,788,102,71127,44654,12508,567,220,4.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,14.0,57,101200,1000,1325,360,752,852,109,93856,48734,13673,629,220,4.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,14.4,53,101200,1139,1325,368,878,893,111,111517,50248,14141,643,210,4.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,14.5,50,101200,1218,1325,374,947,903,117,121014,50848,15055,665,230,4.9,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,15.6,50,101200,1232,1325,381,956,894,125,121679,50041,15945,701,180,3.7,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,15.5,47,101100,1179,1325,386,904,867,133,113818,49581,16753,762,220,4.1,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,14.8,42,101100,1064,1325,391,800,836,129,99417,48761,16116,749,220,4.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,13.7,38,101000,893,1325,391,651,790,119,79500,46602,14543,671,230,5.1,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,13.0,38,101000,680,1325,388,470,718,102,56059,40536,12203,544,220,4.8,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,13.0,40,101000,438,1325,384,274,588,80,31589,25799,9240,392,220,4.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,14.3,49,101000,185,1325,374,92,291,52,10104,997,5670,228,200,3.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,13.8,58,101000,7,316,357,5,0,5,529,0,804,21,210,4.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,12.9,64,101100,0,0,343,0,0,0,0,0,0,0,210,4.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,12.0,68,101100,0,0,334,0,0,0,0,0,0,0,200,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,11.2,69,101100,0,0,329,0,0,0,0,0,0,0,210,4.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2011,7,31,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,10.8,71,101100,0,0,324,0,0,0,0,0,0,0,180,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,10.5,69,101100,0,0,325,0,0,0,0,0,0,0,150,2.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,11.0,80,101100,0,0,317,0,0,0,0,0,0,0,170,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,10.6,82,101100,0,0,313,0,0,0,0,0,0,0,170,2.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,9.3,74,101000,0,0,313,0,0,0,0,0,0,0,160,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,9.2,73,101000,0,0,313,0,0,0,0,0,0,0,170,1.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,11.0,81,101100,92,1202,316,42,226,27,4649,0,2948,114,190,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,11.0,71,101100,330,1326,325,204,592,57,23483,17231,6535,266,230,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,11.0,63,101200,579,1326,334,406,765,72,48762,38311,8658,371,260,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,11.1,56,101200,806,1326,343,601,854,82,74558,47626,10143,451,230,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,12.0,52,101200,996,1326,355,768,905,88,97448,50929,11215,508,280,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,12.0,44,101200,1136,1326,368,893,933,94,114854,52592,12126,545,250,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,11.9,38,101100,1215,1326,379,965,947,98,125065,53407,12683,554,250,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,11.1,31,101000,1228,1326,392,978,948,99,126817,54047,12878,558,200,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,11.9,29,101000,1176,1326,403,929,935,100,119605,53165,12919,576,200,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,11.0,28,100900,1060,1326,402,825,913,95,105030,52495,12120,550,200,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,11.0,27,100900,889,1326,403,674,878,85,84351,49707,10719,482,200,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,11.0,28,100800,674,1326,402,489,820,72,59866,43208,8848,384,170,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,11.0,28,100800,432,1326,401,286,698,59,33806,27556,7006,290,170,3.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,11.1,32,100800,179,1326,390,97,426,40,10874,0,4451,175,190,4.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,12.0,38,100800,6,280,380,5,48,5,567,0,545,20,200,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,12.0,48,100900,0,0,361,0,0,0,0,0,0,0,190,1.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,12.1,54,100900,0,0,352,0,0,0,0,0,0,0,190,3.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,13.0,61,100900,0,0,348,0,0,0,0,0,0,0,190,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,13.0,68,100900,0,0,340,0,0,0,0,0,0,0,170,2.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,13.0,69,100900,0,0,339,0,0,0,0,0,0,0,170,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,13.0,73,100900,0,0,335,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,13.0,77,100900,0,0,331,0,0,0,0,0,0,0,180,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,13.0,78,100900,0,0,330,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,13.0,82,100900,0,0,326,0,0,0,0,0,0,0,160,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,13.1,82,101000,89,1184,327,40,214,25,4358,0,2799,108,160,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,14.0,77,101000,327,1326,337,198,571,57,22705,15318,6589,269,160,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,14.0,67,101000,576,1326,347,398,744,75,47615,36094,8984,386,160,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,14.0,56,101000,804,1326,362,593,835,87,73052,45443,10759,482,290,1.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,13.9,46,101000,994,1326,377,761,888,95,95811,49416,12002,547,290,0.4,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,12.9,37,101000,1134,1326,390,886,922,98,113555,51802,12646,570,290,3.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,11.9,31,100900,1213,1326,399,959,936,103,123729,53246,13314,584,270,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,10.8,26,100900,1227,1326,407,971,938,104,125573,54063,13445,585,270,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,9.2,22,100800,1173,1326,410,925,932,100,119203,54588,12947,577,230,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.1,11.0,25,100800,1057,1326,413,822,911,95,104581,52426,12160,552,210,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.4,11.2,24,100700,886,1326,415,672,875,87,83961,49645,10907,491,200,4.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,10.4,24,100700,671,1326,411,487,814,75,59401,43522,9158,398,210,5.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,9.6,24,100700,428,1326,404,285,696,60,33566,28029,7088,293,210,6.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,6.6,22,100700,175,1326,388,95,426,39,10687,0,4404,173,220,6.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,4.2,24,100700,5,259,365,4,47,4,516,0,497,18,220,6.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,6.0,34,100700,0,0,350,0,0,0,0,0,0,0,210,3.9,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,6.1,38,100800,0,0,341,0,0,0,0,0,0,0,190,2.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,7.1,44,100800,0,0,337,0,0,0,0,0,0,0,190,2.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,8.1,50,100800,0,0,334,0,0,0,0,0,0,0,160,3.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,9.0,56,100900,0,0,330,0,0,0,0,0,0,0,190,3.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,9.0,64,100900,0,0,321,0,0,0,0,0,0,0,180,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,9.0,67,100900,0,0,317,0,0,0,0,0,0,0,160,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,9.0,68,100900,0,0,317,0,0,0,0,0,0,0,170,2.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,9.1,72,100900,0,0,313,0,0,0,0,0,0,0,180,3.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,10.0,76,101000,75,1011,315,40,226,28,4337,0,2978,117,180,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,10.1,68,101000,324,1327,323,203,607,55,23391,17187,6343,257,190,3.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,11.0,67,101100,574,1327,329,409,783,70,49166,38807,8439,360,190,4.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,11.0,58,101100,802,1327,339,608,873,80,75456,48556,9989,444,200,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,11.0,49,101100,992,1327,353,779,925,87,98872,52571,11117,503,220,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,11.0,43,101000,1132,1327,363,906,954,91,116720,54214,11825,530,220,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,10.8,36,101000,1211,1327,376,979,968,95,127113,55077,12334,539,230,3.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,8.8,30,100900,1225,1327,379,991,968,97,128804,56370,12666,549,200,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,6.6,23,100900,1171,1327,387,940,950,101,121159,57000,13053,582,190,2.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,4.1,17,100800,1055,1327,392,834,925,99,106168,56795,12589,572,210,3.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,5.3,19,100800,883,1327,392,680,882,92,84752,53382,11540,520,220,4.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,7.2,23,100800,668,1327,388,490,810,82,59414,45612,9915,433,230,4.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,9.2,28,100800,425,1327,388,283,677,66,33054,28316,7750,322,230,4.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,11.0,36,100800,171,1327,379,92,383,43,10184,0,4725,187,220,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,11.0,45,100800,4,238,360,4,33,4,461,0,449,16,200,3.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,11.0,51,100800,0,0,350,0,0,0,0,0,0,0,200,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,11.0,60,100900,0,0,337,0,0,0,0,0,0,0,170,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,11.0,64,100900,0,0,332,0,0,0,0,0,0,0,170,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.0,68,100900,0,0,328,0,0,0,0,0,0,0,190,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,10.9,73,100900,0,0,323,0,0,0,0,0,0,0,180,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,10.1,77,100900,0,0,314,0,0,0,0,0,0,0,170,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.0,83,101000,0,0,315,0,0,0,0,0,0,0,170,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,11.0,88,101000,0,0,311,0,0,0,0,0,0,0,180,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,11.0,88,101000,0,0,311,0,0,0,0,0,0,0,200,3.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,11.0,87,101100,72,993,311,37,187,27,4026,0,2948,116,190,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,11.1,82,101100,321,1327,316,197,556,62,22411,16653,7129,292,190,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,12.0,75,101200,571,1327,327,401,740,82,47550,37905,9801,424,240,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,12.1,62,101200,800,1327,341,599,838,95,73390,47653,11614,522,220,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,13.0,52,101200,990,1327,361,771,897,101,96626,51188,12706,581,210,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,13.0,44,101100,1130,1327,374,899,934,103,114650,52907,13232,599,210,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.2,13.0,42,101100,1209,1327,380,971,948,107,124825,53592,13768,608,230,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,12.9,36,101100,1223,1327,391,983,950,108,126506,53758,13897,609,220,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,11.5,29,101000,1169,1327,402,934,940,106,119651,54271,13647,612,240,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,8.0,23,100900,1053,1327,398,828,915,102,104908,54904,12946,590,210,3.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,5.5,19,100900,880,1327,396,673,872,95,83750,52973,11835,535,210,4.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,4.6,18,100900,665,1327,393,483,797,84,58532,46079,10210,446,210,4.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,2.1,15,100900,421,1327,389,277,659,68,32360,29783,7974,331,210,4.4,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,3.9,19,100900,167,1327,385,88,357,43,9773,336,4805,190,210,3.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,11.1,38,100900,3,216,374,3,26,3,407,0,399,14,210,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,11.9,50,101000,0,0,356,0,0,0,0,0,0,0,190,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,11.0,54,101000,0,0,345,0,0,0,0,0,0,0,190,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,10.9,64,101000,0,0,332,0,0,0,0,0,0,0,200,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,10.0,64,101100,0,0,327,0,0,0,0,0,0,0,200,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,10.0,69,101100,0,0,322,0,0,0,0,0,0,0,200,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,9.9,77,101100,0,0,313,0,0,0,0,0,0,0,200,2.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,9.0,77,101100,0,0,309,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,9.0,77,101100,0,0,309,0,0,0,0,0,0,0,180,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,9.0,77,101200,0,0,309,0,0,0,0,0,0,0,160,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,9.1,77,101200,69,974,309,33,143,26,3587,0,2793,110,170,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.1,75,101200,318,1327,316,183,485,67,20716,15421,7587,312,210,2.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,11.1,67,101300,568,1327,330,358,592,105,41714,33273,12248,539,160,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,12.0,59,101300,797,1327,345,548,684,137,65246,43137,16410,758,230,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,12.0,49,101300,988,1327,359,731,814,125,90253,49248,15446,717,230,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,11.9,44,101300,1128,1327,368,852,842,136,106568,51156,17096,789,210,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.2,11.0,36,101200,1207,1327,377,900,773,196,110740,51296,24286,1119,270,3.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,10.8,32,101200,1221,1327,387,832,538,338,98501,42738,40236,1914,220,3.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,8.9,25,101100,1167,1327,394,761,495,325,89723,39966,38586,1876,220,3.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,7.9,24,101100,1050,1327,392,756,720,186,91603,49847,22680,1080,220,4.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,6.9,22,101000,878,1327,391,616,709,147,74073,47451,17784,830,190,3.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,7.0,24,101000,662,1327,386,388,447,165,44503,31567,19005,874,180,2.8,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,7.4,26,101000,417,1327,381,236,434,99,26649,22227,11270,483,180,2.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,10.2,36,101000,163,1327,373,71,170,50,7753,289,5491,220,200,3.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,12.0,51,101000,3,194,357,2,0,2,224,0,349,9,200,3.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,12.0,57,101100,0,0,347,0,0,0,0,0,0,0,190,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,11.9,63,101100,0,0,339,0,0,0,0,0,0,0,200,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,11.0,60,101100,0,0,337,0,0,0,0,0,0,0,200,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,11.1,64,101200,0,0,333,0,0,0,0,0,0,0,180,2.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,11.9,68,101200,0,0,334,0,0,0,0,0,0,0,150,1.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,11.0,64,101100,0,0,332,0,0,0,0,0,0,0,190,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.0,68,101200,0,0,328,0,0,0,0,0,0,0,200,2.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.0,72,101200,0,0,324,0,0,0,0,0,0,0,150,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.0,72,101200,0,0,338,0,0,0,0,0,0,0,190,2.1,3,3,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,11.1,72,101300,67,955,341,24,39,22,2640,0,2434,95,200,1.9,4,4,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,12.0,72,101300,315,1328,330,168,404,72,18885,13029,8160,338,200,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,11.9,62,101300,566,1328,341,364,633,94,42666,33843,11078,483,200,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,11.1,46,101300,795,1328,358,553,738,111,66857,44194,13493,613,310,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,11.9,41,101300,986,1328,374,717,804,120,88764,48273,14950,692,310,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,10.6,32,101300,1126,1328,387,842,849,122,106207,51079,15437,707,310,1.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,8.1,24,101200,1205,1328,394,913,867,125,116226,53202,16002,714,310,2.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,8.9,23,101100,1219,1328,405,926,875,123,118249,53034,15753,697,300,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.1,8.0,20,101100,1165,1328,409,882,873,116,112354,53060,14779,667,300,3.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.8,8.1,19,101000,1047,1328,413,781,851,109,98339,51720,13813,633,210,2.8,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,7.9,20,101000,875,1328,408,515,435,229,59821,33519,26690,1287,220,4.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,8.4,23,101000,658,1328,400,368,409,165,42126,28573,18993,874,220,4.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,8.2,23,100900,413,1328,396,144,292,54,17124,11120,6362,260,220,4.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,10.1,32,100900,159,1328,382,77,299,41,8524,0,4586,181,200,2.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,10.8,42,101000,2,172,364,2,17,2,298,0,295,10,200,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,9.0,44,101000,0,0,349,0,0,0,0,0,0,0,190,2.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,9.0,47,101000,0,0,344,0,0,0,0,0,0,0,190,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,9.1,53,101000,0,0,335,0,0,0,0,0,0,0,160,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,10.0,56,101000,0,0,336,0,0,0,0,0,0,0,160,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,9.9,56,101000,0,0,335,0,0,0,0,0,0,0,160,1.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,9.1,60,101000,0,0,326,0,0,0,0,0,0,0,190,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.0,68,101000,0,0,323,0,0,0,0,0,0,0,190,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,10.1,69,101000,0,0,322,0,0,0,0,0,0,0,180,2.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.0,77,101000,0,0,319,0,0,0,0,0,0,0,190,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,11.0,77,101100,64,937,320,30,138,24,3288,0,2576,101,180,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,11.0,71,101100,311,1328,325,176,479,64,19975,14123,7272,298,200,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,11.1,63,101100,563,1328,335,370,668,87,43658,35036,10286,446,180,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,12.0,56,101100,792,1328,349,561,768,103,68180,44634,12578,568,200,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,12.0,50,101100,984,1328,358,726,829,112,90308,48957,13999,645,220,3.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,12.0,46,101100,1124,1328,364,851,870,115,107706,50924,14566,665,190,3.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.2,11.9,39,101000,1203,1328,378,921,886,118,117551,51794,15164,676,230,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,10.8,32,101000,1216,1328,387,933,888,119,119238,52571,15326,679,220,4.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,9.0,25,100900,1162,1328,394,886,876,119,112571,53107,15225,690,220,5.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,8.9,24,100800,1045,1328,398,783,851,114,98300,51779,14306,658,210,5.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,9.3,26,100800,871,1328,396,634,809,103,78156,48538,12779,581,220,6.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,9.7,29,100800,655,1328,389,453,745,86,54546,41322,10399,455,220,5.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,10.8,33,100800,409,1328,384,256,612,67,29703,24474,7849,327,220,5.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,9.1,35,100800,155,1328,367,74,299,40,8233,0,4385,173,200,5.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,10.1,45,100800,2,150,353,0,0,0,0,0,0,0,210,4.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,11.0,57,100900,0,0,341,0,0,0,0,0,0,0,210,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,11.0,64,100900,0,0,332,0,0,0,0,0,0,0,190,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.0,68,101000,0,0,328,0,0,0,0,0,0,0,200,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.0,73,101000,0,0,323,0,0,0,0,0,0,0,210,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.0,78,101000,0,0,319,0,0,0,0,0,0,0,200,3.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,11.0,82,101000,0,0,315,0,0,0,0,0,0,0,190,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.0,83,101000,0,0,315,0,0,0,0,0,0,0,190,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,11.0,88,101000,0,0,311,0,0,0,0,0,0,0,190,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,11.0,88,101000,0,0,311,0,0,0,0,0,0,0,190,4.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,11.0,87,101100,62,918,311,31,168,23,3369,0,2537,99,180,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.0,80,101100,308,1329,317,183,534,59,20844,14601,6756,275,200,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.1,68,101200,560,1329,329,383,721,79,45540,36670,9456,407,190,4.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,12.0,66,101200,790,1329,336,581,821,93,71099,46495,11408,512,200,4.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,12.0,56,101200,982,1329,349,751,880,101,94103,50869,12741,583,210,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,11.9,49,101200,1122,1329,358,879,916,106,111923,52880,13525,615,200,4.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,11.0,44,101200,1201,1329,362,953,933,109,122286,54289,14081,625,210,5.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,10.9,39,101100,1214,1329,371,966,936,111,124036,54539,14245,628,220,5.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,9.8,34,101100,1160,1329,375,917,923,111,117014,54781,14188,640,210,6.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,7.9,28,101000,1042,1329,377,811,900,106,102358,54435,13365,611,210,4.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,7.3,27,101000,868,1329,377,658,863,94,81691,51657,11744,530,200,5.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,7.6,29,100900,651,1329,374,471,800,79,57078,44280,9643,419,210,5.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,8.1,31,100900,405,1329,370,266,668,62,31081,26612,7317,302,210,5.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,9.2,40,100900,151,1329,357,77,337,39,8548,0,4348,171,220,5.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,11.0,54,100900,1,128,345,0,0,0,0,0,0,0,220,5.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,11.0,64,101000,0,0,332,0,0,0,0,0,0,0,190,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,10.6,68,101000,0,0,326,0,0,0,0,0,0,0,190,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,10.3,73,101100,0,0,320,0,0,0,0,0,0,0,170,3.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,10.1,77,101100,0,0,314,0,0,0,0,0,0,0,170,3.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.0,83,101200,0,0,315,0,0,0,0,0,0,0,160,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,11.0,88,101200,0,0,311,0,0,0,0,0,0,0,160,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,11.0,88,101200,0,0,311,0,0,0,0,0,0,0,190,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,11.0,88,101200,0,0,310,0,0,0,0,0,0,0,170,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,11.0,94,101200,0,0,306,0,0,0,0,0,0,0,150,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.0,92,101300,59,899,307,31,180,23,3363,0,2507,98,170,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,11.1,82,101400,305,1329,316,185,561,56,21138,14472,6426,261,190,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,12.0,76,101400,557,1329,326,388,749,73,46274,36675,8792,376,190,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,12.0,66,101400,788,1329,336,584,843,85,71987,46763,10471,466,200,4.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,12.0,56,101400,979,1329,349,754,897,93,94974,50990,11759,535,190,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,11.9,48,101400,1120,1329,359,879,926,99,112448,52827,12671,573,200,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,11.0,39,101400,1199,1329,372,951,941,101,122643,54092,13127,580,200,3.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.2,11.0,36,101400,1212,1329,377,962,942,103,124170,54224,13356,587,190,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,10.9,33,101300,1157,1329,386,912,927,105,116736,53866,13513,608,190,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,10.2,31,101300,1039,1329,386,806,902,101,101849,52936,12790,584,190,2.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,11.1,32,101200,865,1329,390,651,861,91,80815,49292,11345,511,210,3.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,12.0,34,101200,647,1329,389,464,796,76,56174,41489,9263,402,190,3.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,12.1,35,101200,401,1329,387,260,659,61,30311,24182,7140,295,190,4.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,12.9,41,101200,146,1329,381,74,328,38,8175,0,4218,166,190,3.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,11.9,47,101200,1,105,361,0,0,0,0,0,0,0,190,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,11.0,50,101200,0,0,351,0,0,0,0,0,0,0,210,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,11.0,57,101300,0,0,342,0,0,0,0,0,0,0,200,3.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,11.0,60,101300,0,0,337,0,0,0,0,0,0,0,180,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,11.0,64,101300,0,0,333,0,0,0,0,0,0,0,160,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,11.0,64,101300,0,0,332,0,0,0,0,0,0,0,130,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,11.0,73,101300,0,0,323,0,0,0,0,0,0,0,180,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,11.0,82,101400,0,0,315,0,0,0,0,0,0,0,130,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.0,78,101400,0,0,319,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,11.0,82,101400,0,0,315,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.1,81,101400,57,880,317,31,195,23,3330,0,2438,96,80,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,12.0,72,101500,302,1329,330,187,593,52,21451,13856,6018,243,80,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,12.0,62,101500,555,1329,341,392,775,68,46983,37041,8214,349,80,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,11.9,48,101500,785,1329,359,591,866,80,73099,47416,9874,438,80,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,10.6,37,101500,977,1329,373,761,915,88,96227,52355,11212,507,340,1.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,8.0,27,101400,1118,1329,383,886,938,97,113546,55522,12519,565,340,3.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,8.2,26,101400,1197,1329,388,958,954,99,123873,56184,12906,570,360,3.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,9.8,27,101300,1210,1329,396,970,956,100,125415,55463,13017,572,320,3.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,8.0,21,101300,1155,1329,403,919,944,99,118256,55920,12818,575,290,3.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,7.5,21,101200,1036,1329,403,812,921,94,103224,54779,12003,545,280,2.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,5.4,17,101100,861,1329,405,656,881,85,81994,52438,10684,478,280,3.1,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,4.0,15,101100,643,1329,403,467,814,73,56876,45301,8933,385,310,2.8,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,4.0,15,101000,396,1329,402,260,677,58,30520,26916,6864,281,310,2.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,4.5,17,101000,142,1329,395,73,337,37,8067,0,4102,161,330,2.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,8.5,30,101000,0,82,377,0,0,0,0,0,0,0,220,0.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,12.0,40,101000,0,0,375,0,0,0,0,0,0,0,220,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,11.9,47,101000,0,0,361,0,0,0,0,0,0,0,220,1.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,11.0,50,101000,0,0,351,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,11.1,57,101000,0,0,341,0,0,0,0,0,0,0,140,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,12.0,68,101000,0,0,334,0,0,0,0,0,0,0,140,1.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,12.0,73,101000,0,0,329,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,12.0,78,101000,0,0,324,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,11.9,87,101000,0,0,316,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.1,78,101000,0,0,320,0,0,0,0,0,0,0,130,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,12.0,80,101100,55,862,323,26,143,21,2859,0,2232,87,130,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,12.0,62,101100,299,1330,340,173,510,59,19691,12959,6710,273,170,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,12.1,53,101100,552,1330,354,374,711,79,44315,35394,9403,404,170,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,13.0,49,101100,783,1330,366,571,812,93,69743,45447,11450,513,170,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,12.9,41,101100,975,1330,381,740,868,104,92338,49871,12980,595,260,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,12.0,31,101000,1116,1330,398,864,894,115,109271,52380,14540,665,260,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,11.9,29,101000,1195,1330,404,937,912,118,119486,53326,15060,675,260,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.2,10.8,24,100900,1207,1330,413,949,910,122,120851,54180,15637,698,260,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.0,9.2,20,100800,1152,1330,421,893,877,133,112351,54323,16809,770,260,2.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.0,10.8,22,100800,1033,1330,423,785,846,128,97431,51943,15969,742,260,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.2,9.5,20,100700,858,1330,422,631,796,117,76778,49108,14348,658,210,3.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.4,9.0,20,100700,639,1330,417,444,721,98,52777,41498,11629,513,200,3.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.6,9.4,21,100700,392,1330,413,240,553,77,27488,23390,8877,372,200,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,12.0,30,100600,137,1330,401,63,225,40,6904,0,4385,173,210,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,11.9,36,100700,0,60,385,0,0,0,0,0,0,0,210,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,11.0,40,100700,0,0,370,0,0,0,0,0,0,0,210,3.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,11.0,44,100700,0,0,361,0,0,0,0,0,0,0,220,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,11.0,47,100700,0,0,355,0,0,0,0,0,0,0,200,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,11.1,54,100800,0,0,346,0,0,0,0,0,0,0,140,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,11.9,60,100800,0,0,343,0,0,0,0,0,0,0,150,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,11.0,60,100800,0,0,337,0,0,0,0,0,0,0,200,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,11.0,64,100800,0,0,332,0,0,0,0,0,0,0,190,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.1,69,100800,0,0,328,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.0,77,100800,0,0,325,0,0,0,0,0,0,0,190,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.0,77,100900,52,843,325,23,64,21,2506,0,2241,88,210,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,12.1,72,100900,295,1330,330,163,413,71,18178,12187,7950,329,220,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,13.0,67,100900,549,1330,342,359,627,100,41706,33496,11695,512,220,3.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,13.1,56,100900,780,1330,356,554,744,118,66470,44262,14210,648,220,1.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,14.0,49,100900,973,1330,372,722,808,132,88476,48412,16185,755,270,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,13.9,41,100900,1113,1330,387,845,834,147,104764,50529,18336,855,270,2.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,13.0,33,100800,1193,1330,400,919,857,151,114938,52170,19001,868,250,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.2,12.8,29,100700,1205,1330,410,934,869,148,117248,52631,18594,843,250,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,11.0,23,100700,1149,1330,418,890,874,135,111767,53403,17023,782,260,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.0,10.8,22,100600,1030,1330,423,784,846,130,97177,52083,16131,750,260,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.3,10.1,20,100500,854,1330,424,628,792,120,76301,48863,14630,672,260,2.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.0,10.1,21,100500,635,1330,422,438,696,106,51661,40594,12533,556,210,3.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.8,11.1,22,100500,387,1330,422,234,519,83,26586,22116,9468,400,210,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.6,12.1,27,100500,133,1330,412,59,194,40,6451,0,4360,173,210,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,13.0,34,100500,0,38,397,0,0,0,0,0,0,0,200,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,13.0,40,100500,0,0,383,0,0,0,0,0,0,0,200,3.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,13.0,46,100600,0,0,371,0,0,0,0,0,0,0,210,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,13.0,53,100600,0,0,359,0,0,0,0,0,0,0,190,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,13.0,54,100600,0,0,358,0,0,0,0,0,0,0,160,2.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,13.0,57,100600,0,0,353,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,13.0,61,100600,0,0,349,0,0,0,0,0,0,0,200,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,13.0,64,100600,0,0,344,0,0,0,0,0,0,0,200,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,13.0,69,100700,0,0,339,0,0,0,0,0,0,0,200,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,13.0,73,100700,0,0,335,0,0,0,0,0,0,0,200,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,13.1,75,100700,50,824,333,21,65,18,2253,0,1994,77,170,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,14.0,64,100800,292,1331,351,155,364,75,17187,10654,8341,347,170,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,14.0,56,100800,546,1331,362,349,584,110,40244,31844,12663,558,170,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,14.0,46,100800,777,1331,377,544,709,130,64670,42888,15493,712,170,1.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,14.0,39,100800,970,1331,392,711,777,145,86468,47777,17683,831,220,1.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,13.9,33,100800,1111,1331,407,833,803,162,102434,49913,20062,943,270,1.9,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.1,12.9,28,100700,1190,1331,415,906,830,164,112569,51595,20420,939,270,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.2,12.0,25,100600,1202,1331,420,917,835,163,114267,52305,20443,935,290,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.1,12.0,22,100600,1146,1331,431,866,816,164,107119,51628,20339,949,290,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.0,12.1,21,100500,1026,1331,436,760,786,154,92875,49861,18876,889,180,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.0,12.4,22,100400,851,1331,436,606,728,141,72531,45837,16895,786,180,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.4,13.0,23,100500,631,1331,434,418,627,121,48651,36989,14111,633,190,3.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.9,13.1,24,100500,382,1331,431,218,441,92,24511,19106,10329,440,190,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.5,14.0,28,100500,128,1331,425,52,144,38,5655,0,4157,164,200,3.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,13.9,34,100500,0,17,403,0,0,0,0,0,0,0,200,4.4,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,13.0,38,100600,0,0,388,0,0,0,0,0,0,0,200,2.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,13.0,43,100600,0,0,377,0,0,0,0,0,0,0,210,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,13.0,48,100600,0,0,368,0,0,0,0,0,0,0,230,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,13.0,53,100700,0,0,359,0,0,0,0,0,0,0,190,1.8,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,12.9,54,100700,0,0,358,0,0,0,0,0,0,0,190,2.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,12.0,57,100700,0,0,348,0,0,0,0,0,0,0,190,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,12.0,60,100700,0,0,343,0,0,0,0,0,0,0,180,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,12.0,64,100700,0,0,338,0,0,0,0,0,0,0,180,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,12.0,68,100800,0,0,334,0,0,0,0,0,0,0,160,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,12.0,68,100800,48,805,334,19,53,17,2046,0,1842,71,200,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,12.1,64,100900,289,1331,340,150,335,77,16576,10417,8548,356,200,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,13.0,59,100900,543,1331,351,343,566,112,39448,31530,12927,570,200,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,13.0,48,100900,775,1331,367,536,692,133,63581,42713,15864,729,200,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,13.0,36,100900,968,1331,391,704,768,145,85573,47901,17759,834,280,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,13.0,30,100900,1109,1331,410,830,817,150,102698,50275,18619,870,280,1.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.4,13.0,28,100800,1188,1331,417,901,839,153,112536,51268,19185,879,280,3.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.1,12.9,24,100800,1200,1331,432,912,842,154,114029,51465,19287,880,300,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.0,12.2,21,100700,1143,1331,436,860,821,155,106709,51141,19269,896,230,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.1,13.3,23,100700,1023,1331,438,755,794,145,92540,48892,17798,835,230,4.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.5,9.9,18,100700,847,1331,435,602,741,131,72536,46889,15788,729,210,3.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.9,7.4,16,100700,626,1331,429,416,648,111,48908,39334,13132,583,200,3.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.6,7.4,17,100700,378,1331,421,219,479,84,24877,21120,9497,400,200,3.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,10.0,24,100700,124,1329,408,53,173,37,5778,0,4037,159,200,3.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,10.1,32,100700,0,0,383,0,0,0,0,0,0,0,210,5.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,11.0,40,100800,0,0,370,0,0,0,0,0,0,0,200,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,11.0,45,100800,0,0,360,0,0,0,0,0,0,0,230,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,11.0,50,100900,0,0,351,0,0,0,0,0,0,0,200,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,11.0,53,100900,0,0,347,0,0,0,0,0,0,0,150,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,11.0,54,100900,0,0,346,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,11.0,60,100900,0,0,338,0,0,0,0,0,0,0,140,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,11.1,60,100900,0,0,338,0,0,0,0,0,0,0,150,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,12.0,64,100800,0,0,338,0,0,0,0,0,0,0,150,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,12.0,68,100900,0,0,334,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,12.0,68,100900,46,786,334,16,55,14,1763,0,1559,59,170,1.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,12.1,67,100900,286,1332,336,152,377,71,16890,10678,7923,327,190,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,13.0,60,100900,540,1332,350,345,594,104,39866,32011,12052,528,190,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,13.0,52,100900,772,1332,361,537,712,125,64055,43048,14907,682,190,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,13.0,41,100900,965,1332,382,704,783,136,85951,47999,16726,782,190,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,13.0,31,100900,1106,1332,405,830,830,140,103142,50298,17491,814,260,0.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.2,12.9,28,100800,1185,1332,430,900,850,144,112874,51274,18080,826,260,2.5,2,2,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.1,12.1,24,100700,1197,1332,425,911,857,141,114660,51883,17796,808,240,1.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.0,12.9,24,100700,1140,1332,431,865,857,131,108565,50949,16474,758,210,3.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.1,11.6,22,100600,1020,1332,430,758,826,126,93906,50091,15619,725,210,3.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.6,10.8,20,100500,843,1332,432,603,771,115,73284,46777,14081,644,160,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.4,10.1,19,100500,622,1332,430,417,677,101,49226,38686,11919,526,190,3.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.6,11.0,21,100500,373,1332,426,218,495,79,24710,19974,9009,378,190,3.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.6,10.9,25,100500,119,1308,410,51,172,36,5587,0,3918,154,200,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,10.1,28,100500,0,0,393,0,0,0,0,0,0,0,200,3.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,11.0,36,100600,0,0,379,0,0,0,0,0,0,0,200,2.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,11.0,42,100700,0,0,365,0,0,0,0,0,0,0,210,4.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,11.0,47,100700,0,0,356,0,0,0,0,0,0,0,180,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,11.0,50,100700,0,0,352,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,11.1,51,100700,0,0,351,0,0,0,0,0,0,0,180,0.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,12.0,60,100700,0,0,343,0,0,0,0,0,0,0,180,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,12.0,60,100800,0,0,343,0,0,0,0,0,0,0,190,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,12.0,64,100700,0,0,339,0,0,0,0,0,0,0,190,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,12.0,64,100800,0,0,338,0,0,0,0,0,0,0,180,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,12.0,68,100800,44,767,334,15,38,14,1632,0,1499,57,200,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,12.1,64,100800,282,1332,339,143,296,80,15760,9401,8881,371,200,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,13.0,63,100900,537,1332,346,331,514,124,37738,29840,14194,630,210,2.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,13.1,52,100900,770,1332,361,521,643,150,61246,41266,17701,821,200,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,14.0,46,100900,963,1332,377,691,734,160,83237,46528,19378,917,210,2.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,13.9,40,100800,1104,1332,390,825,819,146,102090,49597,18203,850,200,2.8,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,13.0,37,100800,1183,1332,390,895,839,151,111810,51114,18881,867,200,4.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,12.9,33,100700,1194,1332,399,904,839,152,112997,51230,19140,875,200,4.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,12.2,30,100600,1137,1332,403,851,816,154,105503,50851,19229,895,220,5.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,14.0,34,100500,1016,1332,404,745,789,144,91266,48118,17689,830,190,4.8,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,14.1,38,100500,839,1332,395,593,737,129,71272,44385,15567,719,190,6.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,14.0,43,100500,618,1332,384,408,647,109,47797,36128,12763,567,190,6.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,13.9,46,100500,368,1332,378,212,477,81,23987,18301,9157,385,190,6.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,13.0,51,100500,115,1293,363,49,166,35,5379,0,3825,151,200,4.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,13.0,58,100600,0,0,352,0,0,0,0,0,0,0,220,5.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,13.0,69,100700,0,0,339,0,0,0,0,0,0,0,200,4.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,13.0,73,100700,0,0,335,0,0,0,0,0,0,0,200,4.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,13.0,77,100700,0,0,331,0,0,0,0,0,0,0,180,2.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,13.0,77,100800,0,0,331,0,0,0,0,0,0,0,190,4.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,13.0,78,100800,0,0,330,0,0,0,0,0,0,0,190,4.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,13.0,83,100800,0,0,326,0,0,0,0,0,0,0,200,4.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,13.0,88,100800,0,0,322,0,0,0,0,0,0,0,190,4.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.9,87,100800,0,0,321,0,0,0,0,0,0,0,200,5.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.0,83,100800,0,0,320,0,0,0,0,0,0,0,200,4.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,12.0,87,100900,42,748,317,15,48,14,1650,0,1490,57,210,4.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.1,77,100900,279,1333,325,145,341,74,16076,9797,8192,339,220,5.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,13.0,75,101000,534,1333,332,333,549,113,38196,30541,12987,572,210,6.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,13.0,64,101000,767,1333,345,524,675,135,61982,41905,16086,740,230,6.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,13.0,60,101000,960,1333,350,692,761,144,84065,47315,17523,822,230,5.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,13.1,53,101000,1101,1333,360,819,822,140,101758,49790,17512,815,210,4.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,13.9,49,100900,1180,1333,372,891,847,141,111698,50253,17704,810,220,4.8,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,13.0,40,100900,1191,1333,384,902,855,138,113526,51020,17468,794,230,6.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,13.0,40,100800,1134,1333,384,853,847,132,106905,50459,16620,766,220,6.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,12.9,39,100800,1013,1333,383,746,816,126,92254,48845,15624,726,200,5.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,13.0,39,100700,835,1333,385,592,759,116,71666,45024,14113,646,220,7.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,13.1,41,100800,613,1333,381,405,659,102,47605,36378,12032,532,230,6.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,13.9,46,100800,363,1333,378,209,484,78,23666,17879,8811,369,230,5.9,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,13.0,51,100800,111,1275,362,47,168,33,5148,0,3635,143,220,7.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,13.0,61,100800,0,0,348,0,0,0,0,0,0,0,220,6.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,13.0,69,100900,0,0,339,0,0,0,0,0,0,0,220,6.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,12.9,73,100900,0,0,335,0,0,0,0,0,0,0,220,4.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,12.0,72,100900,0,0,329,0,0,0,0,0,0,0,180,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,12.1,73,101000,0,0,329,0,0,0,0,0,0,0,170,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,13.0,83,101000,0,0,326,0,0,0,0,0,0,0,180,3.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.9,88,101000,0,0,321,0,0,0,0,0,0,0,190,5.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,12.0,88,101000,0,0,316,0,0,0,0,0,0,0,190,4.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,12.0,88,101000,0,0,316,0,0,0,0,0,0,0,210,3.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,12.0,88,101100,0,0,316,0,0,0,0,0,0,0,200,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,12.0,87,101100,40,729,317,16,65,14,1729,0,1522,58,200,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.1,77,101200,276,1333,325,152,428,64,17035,10370,7144,292,190,3.8,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,13.0,76,101200,531,1333,331,348,652,88,40705,32800,10350,447,210,5.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,13.0,68,101200,764,1333,340,542,768,102,65548,43892,12417,559,200,4.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,13.0,64,101200,958,1333,345,711,835,111,88014,48703,13790,635,200,4.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,13.0,60,101200,1099,1333,350,837,878,113,105559,50812,14310,656,190,4.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,13.0,56,101200,1178,1333,355,908,897,116,115515,51707,14798,668,210,5.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,13.0,50,101200,1189,1333,364,918,894,121,116584,51920,15426,696,220,7.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,13.0,50,101100,1131,1333,364,867,874,125,108952,51477,15836,728,230,7.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,13.0,48,101100,1009,1333,368,762,856,114,94875,50087,14289,660,220,7.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,13.0,49,101000,831,1333,366,609,816,101,74501,46642,12336,559,200,5.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,13.0,52,101000,608,1333,361,421,737,85,50161,38297,10114,440,200,5.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,13.0,54,101000,357,1333,358,219,575,65,25125,19111,7491,310,200,5.8,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,13.0,58,101000,107,1258,352,50,228,32,5430,0,3445,135,220,6.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,13.0,69,101000,0,0,339,0,0,0,0,0,0,0,180,4.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,12.9,73,101100,0,0,335,0,0,0,0,0,0,0,200,4.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,12.0,73,101100,0,0,329,0,0,0,0,0,0,0,160,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.0,77,101100,0,0,325,0,0,0,0,0,0,0,170,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.0,77,101200,0,0,325,0,0,0,0,0,0,0,170,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,12.0,78,101200,0,0,324,0,0,0,0,0,0,0,160,3.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.0,83,101200,0,0,320,0,0,0,0,0,0,0,170,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,12.0,88,101200,0,0,316,0,0,0,0,0,0,0,180,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,12.0,88,101200,0,0,316,0,0,0,0,0,0,0,170,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,12.0,88,101200,0,0,316,0,0,0,0,0,0,0,150,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,12.1,88,101300,38,710,317,13,40,12,1417,0,1295,49,120,2.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,13.0,87,101300,272,1334,322,113,215,70,12580,5495,7732,319,180,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,13.0,81,101400,528,1334,327,228,177,158,25443,11554,17699,800,170,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,13.0,70,101400,762,1334,337,507,648,137,59870,40392,16265,748,180,3.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,12.9,56,101400,955,1334,354,705,839,104,87716,48371,13032,597,210,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,12.1,50,101400,1096,1334,358,836,898,98,106569,51114,12484,567,220,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,13.0,49,101300,1175,1334,366,827,625,276,98552,45797,33121,1594,220,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,13.1,42,101300,1186,1334,379,780,517,321,92071,39955,38077,1846,220,4.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,13.8,44,101200,1128,1334,379,859,884,112,108813,50344,14205,649,190,4.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,12.0,39,101200,1005,1334,378,705,680,193,84429,46356,23197,1112,210,4.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,12.3,39,101100,826,1334,380,589,769,112,71411,45581,13661,623,240,5.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,12.6,41,101100,604,1334,378,407,704,89,48319,37228,10550,460,210,4.8,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,13.0,45,101100,352,1334,372,208,528,68,23677,17818,7823,324,210,4.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,13.0,51,101100,103,1239,362,45,184,31,4901,0,3362,132,200,4.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,13.0,61,101100,0,0,348,0,0,0,0,0,0,0,180,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,13.0,69,101100,0,0,339,0,0,0,0,0,0,0,200,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,13.0,73,101100,0,0,335,0,0,0,0,0,0,0,190,2.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,12.9,77,101200,0,0,330,0,0,0,0,0,0,0,190,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,12.0,73,101200,0,0,329,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.0,77,101200,0,0,325,0,0,0,0,0,0,0,140,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,12.0,78,101100,0,0,324,0,0,0,0,0,0,0,140,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.9,82,101100,0,0,320,0,0,0,0,0,0,0,150,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.0,77,101100,0,0,319,0,0,0,0,0,0,0,130,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.1,78,101100,0,0,320,0,0,0,0,0,0,0,110,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,12.1,82,101200,36,691,321,14,68,13,1590,0,1395,53,120,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,13.0,76,101200,269,1335,331,146,443,57,16438,8748,6387,259,140,2.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,13.1,67,101200,525,1335,342,340,664,78,40026,31746,9249,396,170,2.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,13.9,59,101200,759,1335,356,531,775,91,64698,42398,11094,495,170,2.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,12.9,49,101200,953,1335,365,697,841,97,87146,47739,12177,555,230,0.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,12.0,39,101100,1094,1335,378,822,887,96,104954,50351,12261,556,230,3.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,12.1,37,101100,1172,1335,383,890,900,100,114426,51063,12847,575,180,2.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,13.1,37,101000,1183,1335,390,898,901,100,115542,50449,12888,575,180,1.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,14.2,36,100900,1124,1335,401,847,890,98,108268,49121,12504,566,230,4.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,16.1,41,100800,1001,1335,403,740,863,92,93213,46151,11685,532,170,2.3,0,0,16.1,77777,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,16.9,43,100800,822,1335,404,586,815,84,72372,42029,10415,467,220,4.2,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,17.0,46,100800,599,1335,398,401,735,72,48191,33665,8621,371,220,5.3,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,17.0,49,100800,347,1335,393,204,571,56,23545,14711,6467,265,220,6.1,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,16.9,55,100800,98,1216,381,43,221,27,4737,0,2961,115,220,4.9,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,16.0,61,100800,0,0,367,0,0,0,0,0,0,0,210,3.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,16.0,65,100800,0,0,362,0,0,0,0,0,0,0,210,3.9,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,16.0,69,100900,0,0,357,0,0,0,0,0,0,0,190,2.5,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,16.0,73,100900,0,0,353,0,0,0,0,0,0,0,180,2.1,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,16.0,74,100900,0,0,352,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,16.0,78,100800,0,0,347,0,0,0,0,0,0,0,160,2.1,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,16.0,83,100800,0,0,343,0,0,0,0,0,0,0,160,2.1,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,16.0,83,100800,0,0,343,0,0,0,0,0,0,0,160,2.1,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,16.0,83,100800,0,0,343,0,0,0,0,0,0,0,160,2.1,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,16.0,88,100800,0,0,338,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,16.0,87,100900,34,672,339,15,84,13,1634,0,1406,54,120,2.1,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,16.1,77,100900,266,1335,349,150,505,49,16992,6891,5611,226,150,2.0,0,0,16.1,77777,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,17.0,72,100900,522,1335,359,345,710,68,41008,29845,8062,342,200,1.6,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,17.0,64,100900,756,1335,369,539,809,81,65997,40833,9936,441,200,2.0,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,16.9,57,100900,950,1335,379,705,863,91,88241,45436,11391,518,210,1.3,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,16.0,48,100900,1091,1335,388,827,891,99,105012,48121,12630,576,210,0.4,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,16.1,45,100800,1169,1335,393,897,905,105,114541,48897,13407,604,210,3.5,0,0,16.1,77777,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,16.9,45,100800,1179,1335,399,906,906,106,115721,48340,13544,609,210,2.7,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,15.9,40,100700,1121,1335,403,855,896,103,108679,48707,13173,600,210,3.4,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,15.1,38,100700,997,1335,402,748,869,99,93814,47887,12409,568,180,1.9,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,15.7,40,100600,818,1335,403,592,822,89,72826,43846,11007,495,180,4.6,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,16.0,42,100600,594,1335,400,405,742,75,48476,35090,9024,389,200,4.6,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,15.9,43,100600,341,1335,396,205,574,58,23561,15509,6723,276,200,4.8,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,14.9,46,100600,94,1190,384,42,216,27,4588,0,2943,115,210,5.9,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,14.0,51,100600,0,0,369,0,0,0,0,0,0,0,210,3.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,14.0,58,100700,0,0,359,0,0,0,0,0,0,0,210,3.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,14.0,64,100700,0,0,350,0,0,0,0,0,0,0,200,3.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,14.0,65,100800,0,0,349,0,0,0,0,0,0,0,200,3.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,13.9,72,100800,0,0,341,0,0,0,0,0,0,0,170,2.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,13.0,69,100800,0,0,339,0,0,0,0,0,0,0,160,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,13.0,73,100800,0,0,335,0,0,0,0,0,0,0,160,1.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,13.0,77,100800,0,0,331,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,13.0,77,100800,0,0,331,0,0,0,0,0,0,0,200,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,13.0,78,100800,0,0,330,0,0,0,0,0,0,0,200,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,13.1,82,100800,32,653,327,14,73,13,1560,0,1373,53,200,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,14.0,81,100900,262,1336,333,147,469,55,16537,8098,6191,251,200,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,14.0,71,100900,519,1336,343,345,689,77,40583,32059,9092,388,200,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,14.1,59,100900,753,1336,357,540,798,90,65742,43443,11024,492,200,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,14.9,52,100900,947,1336,373,710,862,98,88424,47717,12261,560,320,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,14.0,41,100900,1088,1336,387,836,902,101,106075,50407,12820,585,320,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,14.0,35,100800,1166,1336,401,907,920,103,116061,51302,13287,598,320,1.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,14.0,33,100800,1176,1336,406,917,925,103,117550,51431,13210,593,320,1.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,13.9,32,100700,1117,1336,411,865,917,98,110422,50951,12606,572,320,1.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,13.0,30,100700,993,1336,410,756,890,94,95209,50058,11891,541,230,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,13.2,29,100600,813,1336,415,598,839,87,73691,46219,10793,483,230,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,13.6,29,100600,589,1336,416,406,748,77,48563,36936,9176,396,170,2.4,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.6,14.0,31,100600,336,1336,414,203,571,60,23287,16217,6849,281,170,2.8,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,14.0,36,100600,78,1016,398,40,204,28,4279,0,3009,119,220,4.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,14.0,44,100600,0,0,382,0,0,0,0,0,0,0,210,3.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,13.9,57,100700,0,0,359,0,0,0,0,0,0,0,210,3.4,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,13.0,61,100800,0,0,348,0,0,0,0,0,0,0,190,1.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,13.0,69,100800,0,0,339,0,0,0,0,0,0,0,210,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,12.9,73,100800,0,0,335,0,0,0,0,0,0,0,200,2.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,12.0,73,100900,0,0,329,0,0,0,0,0,0,0,190,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.1,78,100900,0,0,325,0,0,0,0,0,0,0,170,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,13.0,82,100900,0,0,326,0,0,0,0,0,0,0,150,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,13.0,83,100900,0,0,326,0,0,0,0,0,0,0,170,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,13.0,88,101000,0,0,322,0,0,0,0,0,0,0,170,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,13.0,87,101000,30,634,322,13,62,12,1454,0,1304,50,200,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,13.1,82,101100,259,1336,327,142,431,59,15880,8191,6563,267,200,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,14.0,76,101100,516,1336,338,339,665,82,39656,31572,9619,413,190,2.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,14.0,64,101100,750,1336,351,535,782,96,64770,43293,11679,523,210,3.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,14.0,56,101100,945,1336,362,705,850,104,87450,48277,12967,594,180,2.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,14.1,47,101100,1085,1336,377,833,894,107,105181,50431,13511,619,180,2.9,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,15.0,42,101000,1163,1336,392,904,912,110,115054,50721,14073,637,240,1.7,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,14.9,37,100900,1173,1336,402,915,915,112,116420,51035,14278,646,240,3.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,14.0,33,100800,1114,1336,406,862,900,112,108940,51219,14184,649,240,2.8,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,13.9,32,100800,989,1336,411,752,871,107,93682,49703,13382,615,240,4.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,13.4,30,100800,808,1336,412,593,818,99,72398,46231,12090,546,220,5.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,13.0,31,100800,583,1336,406,402,725,85,47604,37216,10106,439,220,4.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,13.0,32,100700,330,1336,402,198,542,65,22565,16367,7370,303,220,4.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,13.1,39,100800,73,986,386,37,174,28,3997,0,2984,118,210,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,14.0,52,100800,0,0,368,0,0,0,0,0,0,0,190,3.4,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,14.0,61,100900,0,0,355,0,0,0,0,0,0,0,200,2.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,14.0,65,100900,0,0,349,0,0,0,0,0,0,0,200,2.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,14.0,73,100900,0,0,340,0,0,0,0,0,0,0,190,1.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,13.9,77,100900,0,0,336,0,0,0,0,0,0,0,160,1.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,13.0,77,101000,0,0,331,0,0,0,0,0,0,0,200,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,13.0,77,101000,0,0,331,0,0,0,0,0,0,0,140,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,13.0,78,101000,0,0,330,0,0,0,0,0,0,0,140,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,13.0,83,101000,0,0,326,0,0,0,0,0,0,0,170,2.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,13.0,88,101000,0,0,322,0,0,0,0,0,0,0,160,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,13.0,87,101000,28,615,322,13,66,12,1450,0,1301,50,200,2.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,13.0,81,101100,256,1337,327,144,449,58,16092,8275,6514,265,200,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,13.1,71,101100,513,1337,337,344,682,83,40285,32876,9708,416,200,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,14.0,64,101100,747,1337,351,543,795,98,65556,44269,11914,534,200,0.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,14.1,55,101100,942,1337,363,714,861,107,88315,49185,13340,612,190,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,15.0,44,101000,1083,1337,388,842,906,109,106125,50648,13732,630,190,1.5,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,14.9,37,100900,1160,1337,403,912,922,112,115850,51493,14244,646,290,1.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,13.9,31,100900,1170,1337,411,920,924,112,117109,52311,14286,646,290,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.2,12.9,28,100800,1110,1337,416,867,915,108,109860,52409,13674,624,230,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.9,12.0,24,100700,985,1337,424,755,886,102,94489,51356,12859,588,230,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.6,11.4,23,100700,804,1337,422,595,834,93,72908,47693,11490,516,220,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.4,11.4,25,100600,578,1337,415,402,743,80,47806,38142,9587,414,210,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.8,11.2,25,100600,324,1337,412,196,557,61,22418,16518,7009,287,210,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.5,13.0,32,100600,69,955,402,35,179,26,3806,0,2825,112,220,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,13.0,40,100600,0,0,383,0,0,0,0,0,0,0,200,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,13.0,46,100700,0,0,371,0,0,0,0,0,0,0,200,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,13.0,54,100700,0,0,358,0,0,0,0,0,0,0,190,3.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,13.0,57,100700,0,0,353,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,12.9,60,100700,0,0,349,0,0,0,0,0,0,0,150,1.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,12.0,57,100700,0,0,347,0,0,0,0,0,0,0,160,0.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,12.0,64,100700,0,0,338,0,0,0,0,0,0,0,160,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,11.9,68,100700,0,0,333,0,0,0,0,0,0,0,170,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,11.1,68,100700,0,0,328,0,0,0,0,0,0,0,160,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,12.0,73,100800,0,0,329,0,0,0,0,0,0,0,160,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.1,77,100800,27,597,325,13,61,12,1396,0,1265,48,160,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,13.0,75,100900,252,1337,332,141,437,58,15705,7893,6542,266,190,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,13.0,63,100900,510,1337,346,341,679,82,39903,32626,9645,413,150,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,13.0,52,100900,744,1337,361,541,798,97,65420,44851,11773,527,170,2.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,12.9,44,100900,939,1337,374,713,868,103,88461,49952,12840,587,150,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,12.6,38,100900,1080,1337,385,841,918,100,106774,52239,12731,580,150,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,12.8,34,100800,1157,1337,395,910,932,103,116340,52819,13229,597,210,3.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.5,13.4,33,100700,1166,1337,402,915,927,106,116836,52356,13587,613,210,4.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,14.0,32,100700,1106,1337,412,857,908,107,108565,51182,13543,619,210,4.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,13.8,30,100600,981,1337,416,743,878,100,93001,49455,12530,573,210,5.4,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,12.3,28,100600,799,1337,409,584,833,87,71928,46306,10699,478,230,7.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,10.3,27,100600,573,1337,397,394,752,72,47251,37713,8648,370,220,6.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,8.6,27,100600,319,1337,387,192,576,55,22135,16345,6365,258,220,4.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,6.1,26,100500,64,924,372,34,197,25,3712,0,2700,106,220,6.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,6.9,34,100500,0,0,356,0,0,0,0,0,0,0,200,3.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,6.1,34,100600,0,0,350,0,0,0,0,0,0,0,210,4.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,7.2,41,100600,0,0,342,0,0,0,0,0,0,0,210,4.4,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,9.1,53,100600,0,0,335,0,0,0,0,0,0,0,180,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,10.0,56,100600,0,0,336,0,0,0,0,0,0,0,110,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,10.1,57,100600,0,0,336,0,0,0,0,0,0,0,160,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.0,68,100600,0,0,328,0,0,0,0,0,0,0,190,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,11.0,73,100600,0,0,323,0,0,0,0,0,0,0,190,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.0,83,100700,0,0,315,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,11.0,88,100700,0,0,311,0,0,0,0,0,0,0,330,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,11.0,84,100800,25,578,313,13,77,12,1415,0,1262,48,330,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,10.9,62,100900,249,1338,335,144,497,52,16227,7910,5828,234,350,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,9.9,48,100900,507,1338,347,346,729,70,41006,34366,8318,351,350,0.4,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,8.9,38,100900,742,1338,360,546,838,82,66986,47304,10070,444,330,3.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,8.0,32,100900,936,1338,368,717,896,90,90029,52814,11341,512,330,3.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,8.1,28,100800,1077,1338,378,841,923,98,107059,54849,12473,566,330,1.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,8.8,28,100800,1154,1338,385,911,939,101,116877,55389,12955,583,330,1.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,7.0,21,100700,1163,1338,397,919,942,101,118127,56345,12968,582,330,2.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,6.6,19,100700,1102,1338,401,865,930,99,110469,55949,12679,575,330,3.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,3.8,16,100600,976,1338,397,753,904,94,95008,55309,11838,536,330,1.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,2.3,14,100500,794,1338,400,593,857,85,73348,51625,10499,466,330,0.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.6,2.6,14,100500,567,1338,399,399,772,72,47986,41348,8653,368,330,0.8,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,3.1,15,100500,313,1338,401,194,593,55,22289,17845,6372,258,330,1.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,4.8,18,100500,60,893,394,33,197,24,3528,0,2581,101,210,0.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,11.0,39,100600,0,0,371,0,0,0,0,0,0,0,210,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,10.9,39,100600,0,0,370,0,0,0,0,0,0,0,220,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,10.1,43,100700,0,0,358,0,0,0,0,0,0,0,220,1.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,11.0,53,100700,0,0,346,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,11.0,57,100700,0,0,341,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,11.0,64,100800,0,0,332,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,11.0,68,100800,0,0,328,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.1,69,100800,0,0,328,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.9,77,100800,0,0,324,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.1,78,100800,0,0,320,0,0,0,0,0,0,0,310,0.0,0,0,15.7,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,12.0,80,100900,23,559,322,12,73,11,1360,0,1223,47,310,0.0,0,0,13.2,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,12.0,66,100900,245,1339,336,141,485,52,15868,7289,5908,238,310,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,11.9,51,101000,504,1339,355,343,719,72,40443,33253,8568,363,310,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,11.0,38,101000,739,1339,373,542,826,86,66100,46124,10536,466,310,0.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,10.9,32,101000,933,1339,388,712,886,95,88975,51287,11894,540,310,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,10.1,26,100900,1074,1339,401,839,923,99,106617,53930,12612,574,240,1.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.2,10.8,25,100900,1151,1339,408,909,940,101,116423,54356,12981,585,240,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,9.0,20,100800,1159,1339,416,917,941,102,117639,55524,13146,592,240,1.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.2,8.6,19,100700,1098,1339,421,862,926,103,109678,55174,13144,598,340,3.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.0,6.2,14,100600,972,1339,427,750,901,96,94357,54512,12088,549,340,4.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.4,6.2,14,100600,789,1339,430,590,857,85,72779,50287,10503,466,340,3.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.0,6.9,15,100600,562,1339,428,396,777,70,47600,39819,8456,360,350,2.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.8,6.7,15,100500,307,1339,427,190,598,53,21854,16138,6102,246,350,1.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.5,11.9,24,100500,56,861,422,31,201,22,3304,0,2410,95,220,0.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.5,11.1,29,100500,0,0,399,0,0,0,0,0,0,0,220,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,12.1,38,100600,0,0,380,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,12.9,51,100600,0,0,362,0,0,0,0,0,0,0,190,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,12.0,53,100600,0,0,353,0,0,0,0,0,0,0,190,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,12.0,53,100600,0,0,352,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,11.9,56,100700,0,0,348,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,11.1,51,100700,0,0,351,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,12.0,60,100700,0,0,343,0,0,0,0,0,0,0,20,0.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,11.9,59,100700,0,0,344,0,0,0,0,0,0,0,20,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,11.2,54,100700,0,0,346,0,0,0,0,0,0,0,350,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,13.1,67,100800,22,540,342,12,81,11,1336,0,1195,46,350,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,13.6,57,100800,242,1339,357,142,514,49,16017,6132,5582,224,320,0.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.2,10.8,36,100800,500,1339,377,347,745,69,41109,34230,8137,343,320,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,9.0,28,100800,735,1339,386,550,854,81,67407,47977,9970,439,320,3.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,8.9,24,100800,930,1339,400,722,910,90,90596,53255,11361,513,330,4.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.2,8.2,20,100700,1071,1339,410,847,935,100,107648,55738,12695,578,340,4.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.1,10.0,21,100700,1148,1339,422,918,952,102,117498,55651,13075,590,320,4.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.1,9.8,19,100600,1156,1339,428,925,953,103,118466,55864,13230,596,320,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.0,8.1,16,100500,1094,1339,430,867,934,104,110167,56048,13258,604,350,2.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.1,9.0,17,100500,967,1339,432,753,906,98,94333,53787,12330,561,350,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.2,8.3,16,100400,784,1339,437,589,857,88,72422,49762,10836,482,320,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.0,8.4,16,100400,556,1339,436,393,771,73,46995,39217,8785,375,320,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.9,8.1,16,100400,301,1339,435,186,580,56,21229,15361,6374,258,320,2.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.2,9.5,19,100300,52,829,428,28,169,21,3005,0,2306,90,10,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,13.1,34,100400,0,0,399,0,0,0,0,0,0,0,210,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,14.0,39,100400,0,0,393,0,0,0,0,0,0,0,210,1.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,13.6,46,100400,0,0,375,0,0,0,0,0,0,0,200,1.6,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,11.0,38,100400,0,0,374,0,0,0,0,0,0,0,220,1.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,11.1,45,100400,0,0,361,0,0,0,0,0,0,0,160,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,12.1,52,100500,0,0,356,0,0,0,0,0,0,0,160,2.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,13.0,64,100400,0,0,344,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,13.0,68,100400,0,0,340,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,12.9,67,100400,0,0,340,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,12.0,61,100500,0,0,342,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,12.0,66,100500,20,521,336,5,0,5,583,0,889,23,160,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,12.0,52,100600,238,1340,355,65,21,62,7216,378,6830,278,160,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,12.2,44,100600,497,1340,369,266,387,123,30078,22166,13907,613,190,2.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,13.9,43,100600,732,1340,382,445,497,174,51287,33479,20105,939,180,1.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,12.6,32,100600,927,1340,401,690,834,113,84890,49189,13965,642,200,2.8,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.2,10.0,23,100500,1068,1340,412,816,879,116,102373,53000,14562,670,270,4.4,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.2,10.0,20,100500,1144,1340,423,883,894,120,111669,53869,15228,696,220,2.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.0,9.9,18,100400,1152,1340,433,889,893,122,112466,53981,15424,704,220,2.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.2,8.8,17,100400,1090,1340,432,833,876,121,104618,53801,15251,703,200,1.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.9,6.9,14,100300,963,1340,439,722,845,115,89432,52758,14302,658,210,3.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.1,6.5,13,100200,779,1340,439,486,509,191,56288,37665,22171,1044,210,4.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.0,7.1,14,100200,551,1340,434,347,620,92,40693,34242,10828,469,220,4.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.5,8.2,16,100200,295,1340,433,154,388,69,17289,11929,7750,319,220,4.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.4,10.1,23,100100,48,797,413,24,126,20,2632,0,2152,84,220,3.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,11.0,32,100200,0,0,389,0,0,0,0,0,0,0,220,5.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,10.8,39,100200,0,0,370,0,0,0,0,0,0,0,220,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,9.0,39,100200,0,0,358,0,0,0,0,0,0,0,220,3.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,9.0,41,100300,0,0,354,0,0,0,0,0,0,0,180,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,9.0,44,100300,0,0,349,0,0,0,0,0,0,0,140,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,9.0,46,100300,0,0,345,0,0,0,0,0,0,0,140,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,9.0,46,100200,0,0,345,0,0,0,0,0,0,0,160,2.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,9.0,47,100200,0,0,344,0,0,0,0,0,0,0,160,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,9.0,52,100200,0,0,335,0,0,0,0,0,0,0,160,3.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,9.2,53,100200,0,0,335,0,0,0,0,0,0,0,190,5.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,11.1,64,100300,19,502,333,11,65,10,1179,0,1081,41,190,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,12.0,64,100300,235,1341,339,133,462,53,14924,6195,5899,237,210,3.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,12.1,64,100400,494,1341,340,335,702,76,39252,32614,8939,380,210,4.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,13.1,60,100400,729,1341,350,534,813,91,64639,44813,11100,494,200,3.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,14.0,56,100400,924,1341,362,704,874,102,87235,49446,12640,577,200,2.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,14.0,47,100300,1064,1341,376,831,913,106,104625,51620,13401,615,200,2.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,13.9,41,100300,1141,1341,387,900,930,109,114317,52549,13869,631,200,2.3,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,13.0,33,100200,1148,1341,400,908,934,108,115514,53303,13815,627,190,3.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,12.9,31,100100,1086,1341,404,852,923,104,107843,52726,13244,605,210,4.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,12.0,30,100100,958,1341,403,737,892,100,92001,51507,12526,572,200,4.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,11.9,30,100000,773,1341,400,574,837,91,70067,47115,11170,499,210,6.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,12.0,33,100000,545,1341,394,379,740,78,44846,36443,9272,397,200,5.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,11.9,35,100000,288,1341,386,174,535,59,19668,12757,6666,271,200,5.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,11.0,38,99900,44,765,374,19,91,16,2098,0,1775,69,220,6.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,10.9,45,99900,0,0,359,0,0,0,0,0,0,0,210,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,9.9,49,100000,0,0,345,0,0,0,0,0,0,0,200,3.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,9.0,50,100100,0,0,339,0,0,0,0,0,0,0,190,2.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,9.0,56,100100,0,0,331,0,0,0,0,0,0,0,180,3.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,9.0,56,100100,0,0,330,0,0,0,0,0,0,0,170,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,9.0,60,100200,0,0,325,0,0,0,0,0,0,0,170,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,8.9,67,100200,0,0,317,0,0,0,0,0,0,0,170,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,7.9,67,100300,0,0,311,0,0,0,0,0,0,0,180,2.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,7.0,67,100300,0,0,307,0,0,0,0,0,0,0,190,1.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,7.0,67,100400,0,0,306,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,7.1,70,100400,18,484,304,9,29,9,1024,0,983,37,160,1.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,8.0,58,100500,231,1341,322,123,312,69,13453,7246,7588,311,240,2.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,7.9,48,100600,491,1341,335,320,577,109,36514,32558,12481,544,290,3.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,7.0,40,100700,726,1341,343,519,717,131,61320,46614,15557,708,320,5.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,6.9,35,100700,921,1341,352,694,805,141,84111,53034,17209,802,340,4.8,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,5.9,31,100700,1061,1341,356,826,874,135,102609,56435,16845,783,340,6.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,4.9,26,100700,1137,1341,364,896,892,139,112198,57867,17524,809,350,7.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,3.6,22,100700,1144,1341,367,902,888,144,112776,58399,18069,834,350,5.8,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,1.0,17,100600,1082,1341,369,841,855,152,103969,58158,18835,880,330,5.8,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,0.8,16,100600,953,1341,372,730,838,135,89451,56371,16607,771,340,3.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,-0.6,15,100500,768,1341,370,570,793,116,68615,52057,14039,635,360,2.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,-0.4,16,100500,539,1341,366,375,698,94,43865,40546,11072,479,340,3.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,0.0,16,100500,282,1341,367,169,489,66,19000,15418,7483,306,340,3.4,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,0.8,19,100500,41,732,361,18,80,16,1963,0,1702,65,320,2.3,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,7.1,35,100600,0,0,355,0,0,0,0,0,0,0,260,3.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,8.5,45,100600,0,0,344,0,0,0,0,0,0,0,230,0.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,8.2,50,100700,0,0,334,0,0,0,0,0,0,0,230,3.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,8.7,54,100700,0,0,331,0,0,0,0,0,0,0,250,1.6,0,0,16.0,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2008,8,31,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,8.8,57,100800,0,0,328,0,0,0,0,0,0,0,270,2.2,0,0,16.0,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,9.4,59,100800,0,0,328,0,0,0,0,0,0,0,160,1.5,0,0,16.0,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,10.0,66,100800,0,0,324,0,0,0,0,0,0,0,150,1.3,0,0,16.0,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,10.5,75,100900,0,0,319,0,0,0,0,0,0,0,180,0.2,0,0,15.9,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,11.1,76,100900,0,0,321,0,0,0,0,0,0,0,180,1.3,0,0,15.9,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,100900,0,0,317,0,0,0,0,0,0,0,180,0.0,0,0,15.9,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,11.8,83,101000,17,475,318,9,47,8,992,0,929,35,180,0.0,0,0,14.5,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,12.2,76,101000,230,1342,327,123,394,55,13658,5456,6182,250,200,0.0,0,0,14.7,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,12.2,63,101000,489,1342,341,321,655,83,37379,31191,9636,412,200,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,12.3,50,101100,725,1342,359,522,784,98,62784,44448,11878,530,200,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,12.7,42,101100,920,1342,376,695,856,108,85658,49926,13356,612,200,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,12.1,34,101000,1060,1342,391,822,899,112,103205,52736,14108,649,200,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,11.0,27,101000,1136,1342,403,892,919,114,113000,54353,14528,663,200,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.5,9.9,24,100900,1143,1342,408,898,918,116,113782,55074,14781,674,280,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,9.0,20,100800,1080,1342,416,839,896,118,105339,54757,14912,687,280,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.5,9.2,20,100800,951,1342,418,724,863,112,89556,52608,13943,641,280,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.8,8.9,21,100800,766,1342,414,559,799,103,67605,47800,12490,561,280,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.8,9.0,22,100800,536,1342,409,351,634,98,40828,34833,11420,496,220,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,9.9,25,100800,279,1342,404,137,333,67,15258,9113,7545,310,220,3.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,9.5,26,100800,39,717,396,16,64,14,1749,0,1549,59,240,4.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,10.7,34,100800,0,0,380,0,0,0,0,0,0,0,220,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,11.8,48,100800,0,0,360,0,0,0,0,0,0,0,230,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,12.2,58,100900,0,0,347,0,0,0,0,0,0,0,210,2.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,12.2,66,100900,0,0,338,0,0,0,0,0,0,0,210,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,12.1,70,100900,0,0,333,0,0,0,0,0,0,0,190,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.6,72,100900,0,0,327,0,0,0,0,0,0,0,190,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,10.5,72,100900,0,0,322,0,0,0,0,0,0,0,190,2.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.0,70,100900,0,0,321,0,0,0,0,0,0,0,180,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,9.9,75,100900,0,0,315,0,0,0,0,0,0,0,190,3.0,0,0,15.9,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.4,78,100900,0,0,310,0,0,0,0,0,0,0,200,2.6,0,0,14.3,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,9.4,79,101000,16,456,309,9,40,8,970,0,920,35,200,2.6,0,0,13.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,9.4,76,101000,226,1343,312,120,396,53,13371,5528,5958,240,210,2.7,0,0,14.7,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,9.4,65,101100,486,1343,322,232,286,129,26100,17197,14522,641,210,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,9.5,56,101100,722,1343,333,395,341,212,44832,26115,24136,1140,200,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,10.1,56,101100,916,1343,337,561,448,256,64829,35166,29689,1448,200,2.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,11.1,51,101000,1057,1343,350,795,823,147,97763,51973,18192,853,200,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,11.6,40,101000,1132,1343,374,820,686,242,98179,49202,29121,1405,210,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,10.5,32,100900,1139,1343,383,879,871,140,109781,54089,17600,815,220,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,9.3,27,100800,1075,1343,393,838,913,107,105917,54559,13542,619,240,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,8.6,25,100800,946,1343,394,723,882,101,90073,52901,12655,577,240,3.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,6.2,20,100700,760,1343,395,558,822,93,68111,49033,11346,505,230,4.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,4.8,19,100700,530,1343,390,362,714,80,42758,37755,9482,405,240,4.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,3.4,18,100700,273,1343,383,158,490,59,17884,12797,6662,270,240,4.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.2,4.9,24,100700,36,684,369,16,77,14,1746,0,1528,59,220,4.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,8.5,41,100700,0,0,351,0,0,0,0,0,0,0,220,3.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,10.1,54,100800,0,0,340,0,0,0,0,0,0,0,220,4.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,11.0,63,100800,0,0,333,0,0,0,0,0,0,0,220,3.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.5,67,100800,0,0,326,0,0,0,0,0,0,0,220,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,9.9,69,100900,0,0,320,0,0,0,0,0,0,0,180,1.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,9.4,70,100900,0,0,317,0,0,0,0,0,0,0,200,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.4,75,100900,0,0,312,0,0,0,0,0,0,0,170,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.4,78,100900,0,0,310,0,0,0,0,0,0,0,160,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.3,80,100900,0,0,308,0,0,0,0,0,0,0,190,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,8.9,83,100900,0,0,303,0,0,0,0,0,0,0,190,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,9.0,83,100900,15,438,303,8,42,8,938,0,889,33,200,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,9.4,81,101000,223,1343,307,119,382,56,13219,5627,6225,251,220,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,9.5,68,101000,482,1343,319,316,643,85,36657,31839,9871,421,220,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,10.0,62,101000,718,1343,330,514,773,101,61790,45252,12156,543,220,2.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,10.1,52,101000,913,1343,343,687,850,110,84690,51200,13550,620,190,4.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,10.5,46,101000,1053,1343,355,817,905,108,102826,53612,13598,624,210,3.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,9.4,39,101000,1129,1343,360,887,923,111,112496,55232,14151,645,220,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,9.3,35,100900,1135,1343,368,893,924,112,113263,55411,14303,652,240,3.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,8.7,30,100800,1071,1343,378,834,905,113,104950,54996,14287,656,230,3.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,7.1,25,100800,941,1343,383,719,873,107,89200,53666,13311,609,250,4.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,7.1,25,100700,755,1343,382,554,815,96,67285,48615,11719,523,210,4.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,7.6,28,100700,524,1343,377,357,707,81,42053,36501,9579,410,200,4.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,8.4,31,100700,266,1343,372,153,478,59,17250,10936,6605,268,200,4.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,9.4,40,100700,32,651,359,15,73,13,1613,0,1427,55,210,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,9.5,50,100800,0,0,341,0,0,0,0,0,0,0,200,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,10.5,65,100900,0,0,328,0,0,0,0,0,0,0,200,3.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.0,68,100900,0,0,323,0,0,0,0,0,0,0,210,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,9.9,72,100900,0,0,318,0,0,0,0,0,0,0,210,2.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,9.4,72,100900,0,0,315,0,0,0,0,0,0,0,200,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.4,75,101000,0,0,312,0,0,0,0,0,0,0,170,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.4,80,101000,0,0,308,0,0,0,0,0,0,0,190,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.4,84,101000,0,0,305,0,0,0,0,0,0,0,160,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,9.4,86,101000,0,0,303,0,0,0,0,0,0,0,160,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.4,89,101100,0,0,301,0,0,0,0,0,0,0,170,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,9.4,89,101100,13,419,301,8,50,8,916,0,863,32,180,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,9.5,82,101200,219,1344,307,120,419,52,13344,4961,5759,231,210,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,10.1,74,101300,479,1344,317,317,679,75,37114,31655,8792,372,210,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,10.7,64,101300,715,1344,330,516,800,90,62441,45076,10937,484,230,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,11.0,55,101300,910,1344,344,687,868,99,85172,50646,12287,558,230,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,10.5,43,101200,1050,1344,359,813,913,100,102810,53344,12700,579,270,2.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,9.9,34,101200,1125,1344,375,881,927,104,112157,54608,13330,606,270,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,8.8,28,101100,1131,1344,384,886,928,105,112889,55274,13452,611,270,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,8.3,23,101100,1066,1344,397,828,915,103,104880,54789,13044,595,270,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,8.4,23,101000,936,1344,400,714,884,98,89037,52786,12244,556,270,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,8.4,22,101000,749,1344,404,550,827,89,67093,47842,10871,482,270,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,8.8,23,101000,518,1344,403,353,721,75,41766,35642,8922,379,290,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,8.7,23,101000,260,1344,401,151,496,55,16992,10009,6206,250,290,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,11.6,34,101000,29,618,387,14,77,13,1553,0,1377,53,210,1.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,10.8,40,101000,0,0,369,0,0,0,0,0,0,0,220,3.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,12.1,54,101100,0,0,352,0,0,0,0,0,0,0,220,3.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,11.7,60,101200,0,0,342,0,0,0,0,0,0,0,210,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,11.6,65,101200,0,0,334,0,0,0,0,0,0,0,210,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.1,68,101200,0,0,329,0,0,0,0,0,0,0,200,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.0,72,101300,0,0,324,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.6,76,101300,0,0,319,0,0,0,0,0,0,0,150,1.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,10.6,80,101300,0,0,315,0,0,0,0,0,0,0,210,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.6,78,101400,0,0,316,0,0,0,0,0,0,0,210,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.6,81,101400,0,0,314,0,0,0,0,0,0,0,210,0.0,0,0,15.7,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,10.7,86,101500,12,401,310,8,51,7,863,0,813,30,210,0.0,0,0,13.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,11.2,79,101500,215,1345,319,117,424,49,13051,3783,5490,220,210,0.0,0,0,14.7,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,11.8,66,101600,476,1345,335,314,680,73,36738,30550,8592,363,210,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,12.2,52,101600,712,1345,356,511,797,89,61813,43922,10772,476,310,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,12.1,40,101600,907,1345,377,679,862,98,84218,49581,12181,554,310,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,11.1,33,101500,1046,1345,387,803,903,101,101420,52509,12792,584,310,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,11.1,29,101500,1121,1345,398,870,917,105,110556,53407,13424,611,310,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,11.0,26,101400,1126,1345,408,870,903,113,110099,53413,14409,659,310,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,10.5,22,101300,1062,1345,418,801,846,133,99346,52403,16518,768,320,0.4,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.1,9.7,20,101300,931,1345,422,684,801,129,83462,50362,15811,733,320,3.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.4,8.3,18,101200,743,1345,422,521,728,118,62126,45429,14160,641,310,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.8,7.8,18,101200,512,1345,418,328,600,100,37924,33099,11575,502,310,2.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.3,8.1,19,101200,253,1345,415,133,353,67,14768,8780,7425,304,230,2.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,10.7,26,101200,26,584,403,11,41,11,1261,0,1176,45,230,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,11.2,33,101200,0,0,386,0,0,0,0,0,0,0,230,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,11.6,42,101300,0,0,368,0,0,0,0,0,0,0,190,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,11.0,47,101300,0,0,356,0,0,0,0,0,0,0,210,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,10.5,51,101300,0,0,346,0,0,0,0,0,0,0,220,2.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,9.5,53,101300,0,0,337,0,0,0,0,0,0,0,220,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,10.0,59,101300,0,0,332,0,0,0,0,0,0,0,190,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,10.0,66,101300,0,0,325,0,0,0,0,0,0,0,190,1.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.0,73,101300,0,0,318,0,0,0,0,0,0,0,160,1.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.0,75,101300,0,0,315,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.0,78,101300,0,0,313,0,0,0,0,0,0,0,200,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,10.1,83,101400,11,382,310,7,33,7,758,0,729,27,200,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,10.7,77,101400,212,1345,318,110,353,55,12179,4075,6053,244,200,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,11.2,66,101500,472,1345,331,305,620,87,35179,30066,10087,431,200,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,11.7,56,101500,708,1345,347,503,753,107,60006,43884,12780,573,170,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,11.7,47,101500,903,1345,360,676,833,117,82689,50137,14362,661,170,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,11.6,40,101400,1043,1345,374,808,895,115,101006,53120,14373,663,170,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,11.1,33,101300,1117,1345,387,878,915,118,110633,54516,14888,683,170,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,10.6,27,101200,1122,1345,401,885,921,117,111745,55056,14787,678,210,2.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,7.2,20,101100,1057,1345,404,829,914,111,104301,56159,14031,644,210,2.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.5,7.4,19,101000,926,1345,410,713,884,104,88405,53979,12983,592,270,2.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.2,7.2,18,101000,738,1345,414,547,826,94,66324,48814,11421,508,270,2.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,7.7,19,100900,506,1345,412,347,714,79,40789,35827,9290,395,270,2.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,7.0,19,100900,247,1345,407,142,470,56,15937,9222,6301,254,220,2.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,9.6,28,100900,23,551,390,12,66,11,1339,0,1218,47,220,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,11.2,39,100900,0,0,373,0,0,0,0,0,0,0,210,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,12.2,49,100900,0,0,361,0,0,0,0,0,0,0,220,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,12.1,55,100900,0,0,350,0,0,0,0,0,0,0,220,1.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,11.6,61,100900,0,0,340,0,0,0,0,0,0,0,160,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,11.1,63,100900,0,0,334,0,0,0,0,0,0,0,160,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.1,68,100900,0,0,329,0,0,0,0,0,0,0,170,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.1,73,100800,0,0,324,0,0,0,0,0,0,0,140,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.0,75,100800,0,0,322,0,0,0,0,0,0,0,210,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.6,78,100800,0,0,316,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.6,84,100800,0,0,311,0,0,0,0,0,0,0,210,0.0,0,0,15.9,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,10.7,85,100800,10,364,311,6,34,6,726,0,699,26,210,0.0,0,0,14.7,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.7,76,100900,208,1346,325,109,355,54,12046,3606,6014,243,220,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,11.8,60,100900,469,1346,342,303,621,87,34942,29685,10029,429,220,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,12.2,52,100900,705,1346,356,501,751,108,59641,43588,12851,576,220,1.5,0,0,15.9,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,12.1,41,100900,900,1346,374,672,830,118,82123,49806,14421,664,220,1.6,0,0,14.5,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,11.0,34,100800,1039,1346,384,803,893,114,100390,53305,14306,659,220,2.0,0,0,14.3,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,10.7,28,100700,1113,1346,397,870,909,118,109564,54423,14914,685,220,1.6,0,0,12.9,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,11.1,27,100600,1118,1346,404,873,903,123,109640,54253,15480,713,220,2.5,0,0,13.3,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,11.0,25,100500,1052,1346,412,808,868,130,100228,53263,16179,752,210,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.4,9.9,22,100400,920,1346,413,691,832,122,84560,51548,15019,693,210,1.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.4,9.7,22,100400,732,1346,413,526,764,110,62866,46063,13212,594,210,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.2,10.1,24,100300,499,1346,407,328,637,92,38001,32829,10654,459,230,3.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,10.7,27,100300,240,1346,400,128,378,61,14228,7142,6777,276,230,4.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,11.3,35,100300,20,517,383,10,44,9,1099,0,1029,39,210,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,12.8,49,100300,0,0,364,0,0,0,0,0,0,0,220,3.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,12.7,58,100400,0,0,351,0,0,0,0,0,0,0,200,2.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,12.1,64,100400,0,0,340,0,0,0,0,0,0,0,220,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,11.1,65,100500,0,0,332,0,0,0,0,0,0,0,180,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.0,70,100500,0,0,327,0,0,0,0,0,0,0,180,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,10.7,71,100500,0,0,323,0,0,0,0,0,0,0,170,3.1,0,0,15.9,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.0,81,100500,0,0,316,0,0,0,0,0,0,0,210,3.2,0,0,14.3,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.6,81,100500,0,0,314,0,0,0,0,0,0,0,210,3.7,0,0,13.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.6,84,100600,0,0,312,0,0,0,0,0,0,0,210,4.3,0,0,14.5,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.6,84,100600,0,0,311,0,0,0,0,0,0,0,220,5.9,0,0,14.3,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.6,86,100700,9,345,310,5,11,5,548,0,540,19,220,7.7,0,0,13.3,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,10.7,81,100800,205,1347,315,96,209,64,10404,3228,6977,285,220,7.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,11.1,77,100800,465,1347,320,280,469,118,31467,26139,13284,581,220,7.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,11.1,68,100900,702,1347,328,472,627,145,54869,40688,16946,776,210,5.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,11.1,60,100900,896,1347,338,638,713,163,75980,47450,19497,918,230,6.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,11.1,56,100900,1035,1347,343,758,757,176,91707,50425,21408,1018,230,7.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,11.1,54,100900,1109,1347,346,825,783,180,100618,51739,22062,1045,230,7.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,11.0,53,100800,1114,1347,347,832,798,172,101875,52101,21173,999,230,6.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,10.6,51,100800,1047,1347,347,782,814,149,95921,51883,18333,861,240,9.4,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,10.5,51,100800,915,1347,346,665,775,139,80495,49332,16850,785,240,9.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,10.4,53,100800,726,1347,343,487,645,139,57125,41581,16411,751,220,7.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,10.3,56,100800,493,1347,338,281,444,119,31862,25491,13513,593,220,7.4,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,10.6,62,100800,234,1347,333,105,245,63,11572,4586,6912,282,220,6.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,10.5,68,100800,18,484,326,8,30,8,942,0,900,34,210,4.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.0,73,100800,0,0,318,0,0,0,0,0,0,0,230,7.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.0,78,100900,0,0,313,0,0,0,0,0,0,0,220,7.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.0,81,100900,0,0,310,0,0,0,0,0,0,0,220,5.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.1,84,100900,0,0,315,0,0,0,0,0,0,0,210,5.6,1,1,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.6,86,101000,0,0,348,0,0,0,0,0,0,0,210,4.7,9,9,16.1,335,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.6,84,101000,0,0,359,0,0,0,0,0,0,0,200,4.9,10,10,16.1,335,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.6,84,101000,0,0,350,0,0,0,0,0,0,0,190,3.1,9,9,16.1,335,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.6,87,101000,0,0,325,0,0,0,0,0,0,0,190,3.2,4,4,14.7,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.6,87,101100,0,0,309,0,0,0,0,0,0,0,200,3.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.6,90,101100,0,0,307,0,0,0,0,0,0,0,200,2.7,0,0,15.9,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,10.6,89,101200,8,327,307,5,12,5,547,0,539,19,210,3.2,0,0,14.7,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,10.6,83,101200,201,1347,318,96,221,63,10422,3192,6864,280,230,4.2,1,1,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,10.6,77,101200,462,1347,356,281,489,114,31722,26871,12883,562,220,5.0,9,9,16.1,349,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.1,73,101300,698,1347,363,438,537,159,50503,36128,18466,851,210,4.1,9,9,16.1,457,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,11.1,64,101300,893,1347,345,608,641,183,71711,44321,21705,1031,230,2.3,2,2,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,11.2,57,101300,1032,1347,343,774,834,135,95386,51715,16756,782,250,3.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,11.7,56,101300,1105,1347,347,840,858,136,104515,52509,17047,792,210,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,11.8,50,101200,1109,1347,357,845,866,132,105387,52536,16566,768,240,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,12.2,50,101200,1042,1347,359,789,865,120,98185,51481,14969,693,260,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,12.1,50,101100,910,1347,358,672,833,110,82658,49165,13547,621,260,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,11.7,46,101100,720,1347,363,510,776,96,61493,43937,11559,514,220,3.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,11.4,44,101100,487,1347,364,318,670,76,37217,31080,8918,378,200,3.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,11.2,46,101100,227,1347,360,123,424,51,13709,5056,5758,231,200,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,12.2,58,101100,15,451,347,9,55,8,989,0,922,35,200,4.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,12.1,68,101200,0,0,335,0,0,0,0,0,0,0,200,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,11.7,73,101200,0,0,327,0,0,0,0,0,0,0,200,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.7,81,101300,0,0,320,0,0,0,0,0,0,0,190,3.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.7,84,101300,0,0,317,0,0,0,0,0,0,0,200,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.6,87,101300,0,0,315,0,0,0,0,0,0,0,200,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.1,87,101300,0,0,312,0,0,0,0,0,0,0,180,2.5,0,0,15.9,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.1,93,101300,0,0,307,0,0,0,0,0,0,0,170,1.6,0,0,14.3,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,11.0,93,101400,0,0,307,0,0,0,0,0,0,0,190,1.9,0,0,12.7,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,10.5,93,101400,0,0,304,0,0,0,0,0,0,0,130,0.2,0,0,11.5,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,10.0,93,101400,0,0,301,0,0,0,0,0,0,0,130,1.3,0,0,12.5,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,10.1,93,101400,7,309,302,5,31,5,599,0,581,21,130,0.0,0,0,10.4,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,10.7,89,101400,197,1348,308,101,347,51,11202,2408,5609,225,130,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,11.2,77,101400,458,1348,321,292,618,82,33765,28731,9540,405,130,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,11.7,69,101500,695,1348,331,487,744,103,58023,42835,12367,552,310,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,11.8,60,101400,889,1348,342,653,810,119,79581,48967,14594,672,310,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,12.3,51,101400,1028,1348,358,774,843,132,95503,51312,16309,760,310,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,12.8,45,101300,1101,1348,372,840,862,135,104410,52064,16893,786,310,1.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,12.7,41,101300,1105,1348,378,842,859,138,104595,52165,17214,801,210,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,12.1,37,101200,1037,1348,384,778,826,142,95516,51318,17559,823,210,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,11.2,33,101100,904,1348,388,661,789,132,80126,49274,16079,746,290,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,11.6,34,101100,714,1348,388,497,718,117,58892,43075,13895,627,290,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,12.2,36,101100,480,1348,386,303,582,96,34730,29187,10998,474,180,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,12.3,38,101100,220,1348,383,111,320,59,12213,4406,6479,263,180,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,13.3,44,101100,13,417,376,7,31,7,780,0,748,28,200,2.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,13.2,51,101100,0,0,364,0,0,0,0,0,0,0,210,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,12.8,57,101200,0,0,352,0,0,0,0,0,0,0,190,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,12.8,62,101200,0,0,346,0,0,0,0,0,0,0,200,2.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,12.8,71,101200,0,0,336,0,0,0,0,0,0,0,180,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,12.7,75,101300,0,0,331,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,12.2,74,101300,0,0,329,0,0,0,0,0,0,0,130,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,12.1,87,101300,0,0,317,0,0,0,0,0,0,0,140,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.7,87,101300,0,0,315,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.6,90,101400,0,0,312,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,11.2,91,101400,0,0,310,0,0,0,0,0,0,0,30,0.0,0,0,15.5,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,11.8,96,101400,6,291,309,4,22,4,493,0,481,17,30,0.0,0,0,11.6,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.8,87,101500,194,1349,321,95,298,52,10427,1709,5742,231,30,0.3,0,0,14.3,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,12.7,65,101500,454,1349,341,282,575,89,32376,26955,10210,437,30,2.5,0,0,13.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,12.2,50,101500,691,1349,358,477,717,110,56562,41782,13084,586,30,1.6,0,0,14.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,12.3,43,101500,885,1349,372,642,787,126,77859,47987,15309,707,340,2.7,0,0,11.8,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,12.8,39,101500,1024,1349,383,760,810,145,92965,50253,17799,835,340,3.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.6,12.7,35,101400,1097,1349,391,826,836,146,102087,51531,18138,849,310,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,12.1,31,101400,1100,1349,399,830,841,144,102759,52010,17923,837,340,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.9,11.7,28,101300,1032,1349,407,770,822,141,94561,51192,17361,813,340,1.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.8,11.8,26,101200,898,1349,412,653,786,129,79183,48548,15746,729,260,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.8,11.6,26,101100,708,1349,412,489,710,116,57888,42498,13778,621,260,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,11.9,29,101100,474,1349,406,294,562,97,33644,28286,11087,478,260,0.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,12.0,30,101100,213,1349,403,104,293,58,11474,3707,6405,260,210,0.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,13.9,40,101100,11,383,390,6,24,6,674,0,653,24,210,2.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,13.8,48,101100,0,0,372,0,0,0,0,0,0,0,210,2.1,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,12.7,46,101200,0,0,370,0,0,0,0,0,0,0,210,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,12.1,49,101200,0,0,359,0,0,0,0,0,0,0,210,1.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,11.2,48,101200,0,0,356,0,0,0,0,0,0,0,160,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,11.6,58,101200,0,0,343,0,0,0,0,0,0,0,160,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,10.7,55,101200,0,0,342,0,0,0,0,0,0,0,150,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,11.8,75,101200,0,0,326,0,0,0,0,0,0,0,160,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.1,75,101300,0,0,328,0,0,0,0,0,0,0,130,1.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,11.8,76,101300,0,0,325,0,0,0,0,0,0,0,20,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.2,78,101300,0,0,326,0,0,0,0,0,0,0,20,1.3,0,0,15.7,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,12.3,77,101300,6,272,327,4,16,4,439,0,432,15,20,0.0,0,0,12.7,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,12.7,65,101400,190,1349,341,91,267,53,9933,1539,5834,235,20,0.0,0,0,11.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,11.8,49,101400,451,1349,358,274,536,95,31269,26264,10895,468,320,0.0,0,0,9.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,12.3,43,101400,687,1349,372,467,683,119,55010,40828,14090,635,320,0.3,0,0,4.8,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,13.2,40,101400,882,1349,384,634,766,134,76426,47039,16222,753,320,2.5,0,0,4.8,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.6,12.7,35,101300,1020,1349,391,756,815,140,92720,50247,17288,810,300,2.2,0,0,5.4,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,12.3,31,101300,1093,1349,400,821,836,144,101494,51583,17842,834,330,3.0,0,0,9.7,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,12.7,29,101200,1095,1349,411,822,830,148,101385,51327,18326,858,330,2.2,0,0,9.8,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,11.7,26,101100,1027,1349,427,755,788,155,92043,50443,19018,897,230,2.5,2,2,11.5,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,11.7,24,101000,893,1349,419,638,748,143,76701,47600,17286,806,230,1.5,0,0,12.5,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.5,11.9,24,100900,702,1349,422,474,667,128,55698,41017,15045,683,230,1.5,0,0,9.7,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,12.9,27,100900,467,1349,419,282,512,105,31984,26274,11932,518,180,1.8,0,0,9.7,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.5,14.2,31,100900,206,1349,414,97,248,59,10588,2595,6466,263,180,1.9,0,0,9.7,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,16.5,43,100900,9,349,400,5,16,5,567,0,555,20,190,0.2,0,0,9.8,77777,9,999999999,29,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,15.1,45,100900,0,0,386,0,0,0,0,0,0,0,190,2.1,0,0,11.3,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,15.5,52,100900,0,0,376,0,0,0,0,0,0,0,190,2.2,0,0,11.3,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,14.4,52,100900,0,0,370,0,0,0,0,0,0,0,210,2.5,0,0,11.8,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,10.1,43,100900,0,0,358,0,0,0,0,0,0,0,200,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,10.7,50,100900,0,0,349,0,0,0,0,0,0,0,170,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,11.0,57,100900,0,0,342,0,0,0,0,0,0,0,150,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,10.7,59,100900,0,0,336,0,0,0,0,0,0,0,160,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,10.9,64,100900,0,0,332,0,0,0,0,0,0,0,170,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,9.5,56,100900,0,0,334,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,10.7,69,100900,0,0,326,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,11.1,76,100900,5,254,321,3,9,3,331,0,327,11,130,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,11.1,66,101000,186,1350,331,82,195,55,8936,1437,6021,243,130,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,11.0,53,101000,447,1350,347,258,439,113,29025,23644,12754,555,130,1.6,0,0,15.9,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,9.9,38,101000,684,1350,366,446,587,149,51660,38917,17319,792,130,2.3,0,0,14.7,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,9.4,32,100900,878,1350,377,613,686,167,72723,46817,19869,935,130,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,9.4,28,100900,1016,1350,390,741,772,161,90070,51023,19608,926,230,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,9.5,25,100800,1089,1350,399,806,794,166,98703,52310,20384,962,230,1.6,0,0,15.9,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,10.3,24,100700,1090,1350,408,807,789,170,98585,51875,20813,984,220,2.2,0,0,14.7,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,12.7,28,100500,1022,1350,415,741,745,177,89236,49003,21442,1021,220,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.9,12.1,25,100500,887,1350,419,626,708,161,74516,46543,19255,906,220,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.2,12.0,26,100400,695,1350,415,466,637,138,54307,40187,16117,735,210,3.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,11.4,27,100300,460,1350,406,278,506,106,31522,26467,12006,520,200,3.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,11.6,30,100300,200,1350,398,95,252,57,10356,2643,6301,255,200,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,10.9,36,100300,8,316,378,4,17,4,515,0,504,18,220,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,9.4,39,100300,0,0,360,0,0,0,0,0,0,0,210,4.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,9.5,47,100300,0,0,347,0,0,0,0,0,0,0,190,4.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,10.6,58,100300,0,0,338,0,0,0,0,0,0,0,200,5.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,10.5,66,100300,0,0,327,0,0,0,0,0,0,0,210,4.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,10.0,72,100300,0,0,319,0,0,0,0,0,0,0,190,4.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,10.1,71,100200,0,0,320,0,0,0,0,0,0,0,190,5.2,0,0,15.7,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.6,81,100200,0,0,314,0,0,0,0,0,0,0,200,5.5,0,0,12.7,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.6,81,100200,0,0,314,0,0,0,0,0,0,0,210,4.0,0,0,11.3,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.6,81,100200,0,0,314,0,0,0,0,0,0,0,200,3.8,0,0,11.3,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.5,84,100200,0,0,311,0,0,0,0,0,0,0,200,5.8,0,0,11.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.1,83,100200,4,236,328,3,0,3,385,0,594,15,210,6.6,5,5,9.7,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,10.6,80,100200,183,1351,353,90,251,56,9760,1896,6087,246,190,5.6,9,9,9.7,4572,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,10.7,74,100200,443,1351,346,267,519,97,30388,25821,11059,475,210,5.2,7,7,9.8,4572,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.0,67,100200,680,1351,335,334,341,162,38361,23160,18728,863,220,6.3,1,1,11.5,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,10.5,66,100300,874,1351,367,281,34,259,32141,2735,29768,1449,220,6.6,9,9,13.3,4572,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,10.0,60,100300,1012,1351,372,330,47,295,38190,3796,34334,1696,190,5.6,9,9,15.9,4572,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,10.0,57,100300,1084,1351,362,225,34,198,27191,2380,23969,1146,200,5.3,7,7,14.7,4572,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,10.0,50,100300,1086,1351,344,633,477,250,75058,35546,29767,1448,210,6.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,9.9,47,100200,1016,1351,349,753,815,140,92417,51698,17196,804,200,5.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,9.3,46,100200,881,1351,348,643,792,126,77953,49833,15317,706,210,6.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,8.7,45,100300,689,1351,344,481,721,113,56963,43934,13417,601,200,5.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,8.3,48,100300,454,1351,338,287,577,94,32879,29295,10742,460,210,6.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,7.8,49,100300,193,1351,333,97,279,57,10590,3206,6266,253,210,6.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,7.8,55,100300,6,283,325,4,13,4,515,0,508,18,210,5.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,7.8,60,100300,0,0,318,0,0,0,0,0,0,0,200,4.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,7.7,65,100300,0,0,313,0,0,0,0,0,0,0,190,3.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,7.3,64,100300,0,0,311,0,0,0,0,0,0,0,160,3.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,7.7,65,100300,0,0,313,0,0,0,0,0,0,0,180,4.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,7.3,65,100400,0,0,310,0,0,0,0,0,0,0,170,3.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,7.8,70,100400,0,0,308,0,0,0,0,0,0,0,160,2.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,7.8,72,100400,0,0,306,0,0,0,0,0,0,0,160,4.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,7.7,74,100500,0,0,304,0,0,0,0,0,0,0,170,3.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,7.2,72,100500,0,0,303,0,0,0,0,0,0,0,180,3.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,7.2,71,100600,0,0,310,0,0,0,0,0,0,0,180,3.9,1,1,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,7.1,68,100700,4,218,353,1,0,1,168,0,264,7,180,2.7,10,10,16.1,1711,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,6.7,66,100800,179,1352,343,41,2,41,4373,184,6468,171,170,3.0,9,9,16.1,1981,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,6.8,62,100900,440,1352,321,248,400,118,27786,22879,13262,577,140,2.7,2,2,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,7.2,56,100900,676,1352,319,466,654,138,54200,43107,16154,733,140,3.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,7.1,49,101000,870,1352,328,635,751,152,75892,50705,18204,849,160,2.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,6.0,42,101000,1008,1352,332,758,804,158,92223,54435,19350,911,100,2.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,4.8,35,101000,1080,1352,350,826,841,154,101715,56336,19022,892,100,2.7,2,2,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,3.4,29,101000,1081,1352,344,832,866,139,103295,57136,17363,808,100,2.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,3.8,30,101000,1011,1352,356,772,865,125,95706,56010,15577,721,230,0.4,2,2,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,3.5,28,100900,875,1352,355,628,745,146,75470,50860,17580,817,230,3.6,1,1,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,4.9,32,100900,683,1352,389,385,385,190,43769,29188,21732,1011,190,3.6,9,9,16.1,3335,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,5.9,36,100900,447,1352,386,106,46,91,12145,2352,10425,445,210,3.6,9,9,16.1,3182,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,6.8,38,101000,186,1352,387,3,0,3,344,0,539,13,210,3.4,9,9,16.1,3048,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,6.9,42,101000,5,250,373,0,0,0,0,0,0,0,190,1.6,8,8,16.1,3048,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,5.3,42,101100,0,0,346,0,0,0,0,0,0,0,20,2.6,4,4,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,7.3,57,101200,0,0,319,0,0,0,0,0,0,0,220,2.8,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,8.2,67,101200,0,0,313,0,0,0,0,0,0,0,240,4.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,7.8,70,101300,0,0,308,0,0,0,0,0,0,0,20,3.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,7.8,76,101300,0,0,303,0,0,0,0,0,0,0,110,1.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,7.8,83,101400,0,0,297,0,0,0,0,0,0,0,40,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.8,90,101400,0,0,292,0,0,0,0,0,0,0,40,1.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,7.8,89,101500,0,0,293,0,0,0,0,0,0,0,40,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,7.7,86,101500,0,0,294,0,0,0,0,0,0,0,330,0.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,7.2,86,101500,0,0,292,0,0,0,0,0,0,0,330,3.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,7.1,81,101600,3,201,295,3,19,3,353,0,348,12,310,3.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,6.6,69,101700,175,1352,302,89,314,49,9822,1304,5367,214,310,4.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,5.5,52,101700,436,1352,315,283,624,82,32632,30013,9477,400,320,5.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,5.1,43,101800,673,1352,327,485,776,99,57905,46580,11845,523,320,5.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,5.5,38,101800,866,1352,337,659,863,106,80906,53701,13082,594,320,5.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,4.3,31,101800,1004,1352,346,787,917,107,98602,57305,13434,615,330,7.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,3.2,26,101700,1075,1352,352,855,939,108,108031,58907,13702,626,330,6.8,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,2.0,22,101700,1076,1352,356,856,944,105,108456,59328,13406,611,330,7.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,0.8,20,101600,1006,1352,357,793,930,101,99794,58651,12781,582,300,5.8,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,1.9,21,101500,869,1352,360,670,896,94,83140,55538,11701,526,320,6.6,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,0.6,19,101500,677,1352,360,499,833,82,60594,49091,10033,437,310,5.6,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,-0.3,18,101500,440,1352,356,298,708,67,34941,32968,7923,329,310,4.8,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,-0.4,19,101500,179,1352,354,99,415,44,11032,1946,4937,195,310,4.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,1.2,24,101500,4,218,345,4,38,4,462,0,451,16,340,4.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,1.9,30,101500,0,0,332,0,0,0,0,0,0,0,320,2.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,3.4,43,101500,0,0,315,0,0,0,0,0,0,0,230,0.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,4.5,52,101500,0,0,309,0,0,0,0,0,0,0,230,1.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,5.6,60,101500,0,0,306,0,0,0,0,0,0,0,250,1.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,5.3,60,101500,0,0,304,0,0,0,0,0,0,0,240,1.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,3.6,52,101500,0,0,305,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,6.1,76,101500,0,0,293,0,0,0,0,0,0,0,150,1.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,6.2,75,101500,0,0,295,0,0,0,0,0,0,0,90,1.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.6,83,101500,0,0,291,0,0,0,0,0,0,0,20,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.0,79,101600,0,0,290,0,0,0,0,0,0,0,20,1.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,5.8,77,101600,3,184,291,3,21,3,353,0,349,12,20,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,7.1,69,101700,172,1353,305,89,344,45,9786,331,4993,198,150,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,6.6,54,101700,432,1353,319,279,644,73,32362,28947,8505,356,150,1.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,5.6,41,101700,669,1353,332,475,778,90,57072,45354,10885,478,160,2.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,5.5,36,101700,862,1353,342,643,852,100,79201,52283,12371,559,160,1.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,4.9,31,101600,999,1353,350,767,900,102,96257,55551,12890,588,250,0.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,3.6,25,101600,1071,1353,358,830,916,105,105042,57082,13371,610,250,2.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,1.8,20,101500,1071,1353,364,830,915,106,105078,57685,13457,614,360,0.3,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,2.6,19,101400,1000,1353,373,766,894,105,96035,56244,13162,601,360,2.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,1.2,16,101300,863,1353,378,645,859,97,79804,53762,12009,541,50,3.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,1.1,15,101300,670,1353,380,478,792,86,57755,46888,10395,454,310,2.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,1.9,17,101200,433,1353,376,282,661,70,32882,30478,8203,342,310,0.9,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,2.2,18,101200,172,1353,374,90,356,45,9949,997,4955,196,310,0.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,6.3,31,101200,3,185,358,3,23,3,353,0,348,12,210,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,7.9,43,101200,0,0,343,0,0,0,0,0,0,0,210,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,8.5,50,101200,0,0,335,0,0,0,0,0,0,0,210,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,9.9,63,101300,0,0,328,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,9.5,65,101300,0,0,322,0,0,0,0,0,0,0,160,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,9.8,70,101200,0,0,319,0,0,0,0,0,0,0,160,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,7.8,54,101200,0,0,325,0,0,0,0,0,0,0,120,2.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,4.4,44,101200,0,0,320,0,0,0,0,0,0,0,130,2.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,4.5,45,101200,0,0,319,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,5.7,57,101200,0,0,310,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,6.7,69,101300,0,0,303,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,6.8,68,101300,2,166,304,3,22,3,331,0,327,11,130,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,7.3,58,101400,168,1354,318,87,353,43,9602,0,4788,190,130,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,7.7,46,101400,428,1354,338,277,658,69,32238,28248,8020,334,230,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,6.6,35,101400,665,1354,352,445,688,107,52706,41737,12742,566,230,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,6.1,30,101400,858,1354,361,613,758,132,73874,49623,15997,738,230,0.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,6.0,27,101300,995,1354,369,732,797,146,89378,52900,17920,839,230,1.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,5.0,22,101200,1066,1354,399,827,919,103,104628,56551,13111,598,230,1.7,5,5,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,5.1,20,101100,1066,1354,407,827,919,103,104653,56536,13101,597,230,3.5,4,4,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,5.5,21,101100,995,1354,388,763,902,100,95857,55301,12654,576,190,2.7,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,5.1,20,101000,857,1354,389,642,865,94,79376,52540,11692,526,190,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,5.9,20,100900,664,1354,391,473,789,86,56961,45239,10430,456,200,2.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,6.5,22,100900,426,1354,390,274,633,74,31696,28437,8619,361,180,2.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,7.5,24,100900,166,1354,387,82,303,45,9009,0,4955,197,180,1.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,9.8,35,100900,2,153,373,0,0,0,0,0,0,0,200,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,8.5,35,100900,0,0,383,0,0,0,0,0,0,0,200,2.2,4,4,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,10.1,44,100900,0,0,356,0,0,0,0,0,0,0,190,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,11.0,51,100900,0,0,350,0,0,0,0,0,0,0,180,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,10.6,51,100900,0,0,346,0,0,0,0,0,0,0,180,2.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,10.7,56,100900,0,0,341,0,0,0,0,0,0,0,210,3.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,11.7,66,100900,0,0,335,0,0,0,0,0,0,0,160,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.8,71,100900,0,0,330,0,0,0,0,0,0,0,190,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.2,78,100900,0,0,325,0,0,0,0,0,0,0,170,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,12.1,80,100900,0,0,323,0,0,0,0,0,0,0,170,2.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.7,78,100900,0,0,322,0,0,0,0,0,0,0,180,4.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,11.7,83,101000,2,148,318,0,0,0,0,0,0,0,170,2.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,11.8,78,101100,164,1355,323,32,0,32,3500,0,5199,136,190,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,12.2,73,101100,424,1355,330,206,297,114,23017,15467,12705,552,200,3.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,12.2,64,101200,661,1355,340,462,736,103,54730,41727,12226,543,210,3.8,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,12.2,53,101200,854,1355,355,634,831,110,77182,48993,13410,611,210,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,12.1,47,101100,991,1355,382,764,907,101,95592,52350,12682,580,210,1.6,4,4,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,11.0,40,101100,1061,1355,370,830,927,104,104668,54213,13104,599,270,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,10.3,36,101100,1061,1355,374,830,922,108,104358,54747,13620,625,270,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,8.3,29,101000,989,1355,397,760,880,118,94150,54546,14658,676,270,2.7,4,4,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,8.3,29,101000,851,1355,379,638,838,111,77741,51567,13587,619,320,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,7.2,26,101000,657,1355,378,469,766,97,55845,44829,11619,512,320,2.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,7.1,27,101000,420,1355,375,271,631,76,31286,28109,8779,368,280,2.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,6.2,26,101000,159,1355,373,80,300,45,8747,0,4902,195,280,2.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,7.6,34,101000,1,123,361,0,0,0,0,0,0,0,260,2.8,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,10.6,49,101000,0,0,351,0,0,0,0,0,0,0,240,4.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,10.6,55,101100,0,0,341,0,0,0,0,0,0,0,240,3.4,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,10.6,62,101100,0,0,333,0,0,0,0,0,0,0,240,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,10.5,68,101200,0,0,326,0,0,0,0,0,0,0,290,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,9.5,68,101200,0,0,319,0,0,0,0,0,0,0,290,1.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,5.3,46,101300,0,0,323,0,0,0,0,0,0,0,320,4.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,3.2,39,101300,0,0,321,0,0,0,0,0,0,0,340,5.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,2.9,39,101400,0,0,320,0,0,0,0,0,0,0,330,7.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,3.9,45,101400,0,0,316,0,0,0,0,0,0,0,330,6.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,3.9,48,101400,0,0,312,0,0,0,0,0,0,0,330,4.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,4.0,48,101400,1,132,312,0,0,0,0,0,0,0,330,5.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,4.4,45,101500,160,1355,319,58,120,44,6358,0,4804,190,330,5.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,4.4,39,101500,420,1355,328,266,602,80,30649,28204,9200,387,340,7.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,4.4,34,101500,657,1355,350,481,838,75,58544,46836,9176,396,340,9.0,2,2,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,4.3,30,101500,850,1355,349,651,905,84,81160,53974,10490,467,320,6.8,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,3.7,25,101400,986,1355,358,757,887,111,94262,56146,13861,635,340,7.6,0,0,15.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,2.2,21,101400,1056,1355,380,750,685,216,89815,51428,26007,1250,330,10.0,4,4,14.7,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,2.2,20,101300,1055,1355,366,801,853,137,99261,56611,17021,792,350,7.8,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,2.3,19,101300,983,1355,369,761,915,97,95762,56923,12271,557,330,8.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,2.8,19,101200,845,1355,373,638,879,90,79063,53620,11163,499,310,8.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,2.6,19,101200,651,1355,374,450,761,85,54187,44219,10245,446,320,7.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,2.5,19,101100,413,1355,395,249,584,71,28859,26072,8262,344,340,6.6,5,5,16.1,6096,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,2.3,19,101100,152,1355,400,77,326,41,8537,0,4520,178,340,6.1,7,7,16.1,6096,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,3.1,23,101200,1,93,359,0,0,0,0,0,0,0,340,5.4,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,4.9,32,101200,0,0,346,0,0,0,0,0,0,0,280,3.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,4.0,30,101200,0,0,346,0,0,0,0,0,0,0,330,3.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,5.2,37,101200,0,0,338,0,0,0,0,0,0,0,300,2.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,6.6,50,101200,0,0,324,0,0,0,0,0,0,0,230,1.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,5.9,48,101200,0,0,323,0,0,0,0,0,0,0,300,2.8,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,4.7,41,101200,0,0,328,0,0,0,0,0,0,0,340,3.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,7.2,60,101200,0,0,315,0,0,0,0,0,0,0,210,1.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,7.3,65,101200,0,0,310,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,7.9,70,101200,0,0,308,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.3,77,101100,0,0,304,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,8.4,76,101200,1,115,312,0,0,0,0,0,0,0,150,0.0,1,1,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,8.8,65,101200,157,1356,345,75,303,40,8323,0,4469,176,150,0.2,7,7,16.1,6096,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,7.7,49,101200,417,1356,332,230,454,90,26104,21798,10289,437,150,2.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,6.9,40,101100,653,1356,342,450,761,84,54184,42738,10101,440,180,1.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,8.4,39,101100,846,1356,354,613,830,95,75481,49203,11764,529,230,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,8.9,34,101100,982,1356,369,728,858,107,90706,51867,13418,615,340,3.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,8.9,31,101000,1052,1356,376,790,878,110,99216,53061,13833,635,310,5.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,9.1,28,100900,1050,1356,394,790,875,113,98973,53082,14169,652,320,5.7,1,1,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,10.4,29,100800,978,1356,426,666,633,210,78728,45414,24928,1200,350,5.7,7,7,16.1,6096,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,8.8,26,100700,839,1356,392,552,615,172,64965,42844,20277,953,340,5.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,8.2,25,100700,644,1356,392,439,721,97,52179,41616,11563,509,340,4.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,8.1,26,100700,406,1356,387,255,616,71,29494,25677,8225,343,340,3.8,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,8.4,27,100600,146,1356,383,72,287,41,7859,0,4494,178,340,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,9.2,34,100600,0,63,369,0,0,0,0,0,0,0,330,2.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,11.0,51,100600,0,0,350,0,0,0,0,0,0,0,210,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,10.7,54,100600,0,0,343,0,0,0,0,0,0,0,210,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,11.7,68,100600,0,0,332,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,10.5,64,100600,0,0,329,0,0,0,0,0,0,0,310,0.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,1.6,27,100600,0,0,339,0,0,0,0,0,0,0,310,6.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,0.6,27,100600,0,0,332,0,0,0,0,0,0,0,320,6.8,0,0,15.9,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,0.7,30,100500,0,0,325,0,0,0,0,0,0,0,330,7.4,0,0,14.7,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,1.2,33,100500,0,0,321,0,0,0,0,0,0,0,330,9.2,0,0,15.9,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,1.6,36,100500,0,0,317,0,0,0,0,0,0,0,320,9.1,0,0,13.9,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,1.2,36,100500,0,0,316,0,0,0,0,0,0,0,330,11.8,0,0,9.5,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,2.0,39,100600,1,98,314,0,0,0,0,0,0,0,330,15.5,0,0,8.6,6096,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,2.1,40,100600,153,1357,313,81,350,42,8943,0,4616,182,330,11.4,0,0,12.9,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,1.6,35,100600,413,1357,320,277,702,64,32421,30082,7468,308,330,8.3,0,0,12.5,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,1.0,29,100600,649,1357,329,479,842,77,58166,48107,9319,402,330,8.8,0,0,10.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,0.5,24,100600,842,1357,339,652,914,85,81149,55863,10621,473,330,9.2,0,0,12.9,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,0.0,21,100600,977,1357,345,777,958,87,98512,59159,11082,499,340,11.8,0,0,13.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,0.0,20,100600,1047,1357,351,843,978,88,107724,60400,11324,510,320,11.7,0,0,14.7,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,0.0,18,100600,1045,1357,361,843,977,91,107472,60563,11596,524,330,10.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,-0.1,17,100500,972,1357,363,774,950,94,97511,59460,11897,538,330,10.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,-0.5,16,100500,833,1357,366,650,916,88,80582,56536,10926,487,320,9.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,0.4,17,100400,637,1357,368,477,850,77,57698,48629,9395,405,330,7.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,1.2,18,100400,399,1357,367,272,714,62,31778,29596,7298,300,320,8.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,2.2,20,100400,139,1357,364,76,357,40,8363,0,4362,172,320,8.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,2.1,23,100400,0,36,355,0,0,0,0,0,0,0,320,6.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,1.0,23,100400,0,0,348,0,0,0,0,0,0,0,330,6.1,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,0.1,24,100500,0,0,338,0,0,0,0,0,0,0,340,5.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,0.5,29,100700,0,0,327,0,0,0,0,0,0,0,360,3.9,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,0.0,30,100700,0,0,322,0,0,0,0,0,0,0,350,2.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2006,9,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,0.1,31,100800,0,0,319,0,0,0,0,0,0,0,310,2.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,1.2,37,100900,0,0,312,0,0,0,0,0,0,0,340,3.5,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,2.1,45,100900,0,0,306,0,0,0,0,0,0,0,340,2.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,1.8,44,100900,0,0,306,0,0,0,0,0,0,0,320,3.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,2.9,54,101000,0,0,298,0,0,0,0,0,0,0,300,2.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,3.2,56,101000,0,0,298,0,0,0,0,0,0,0,320,2.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,2.2,48,101100,1,82,302,0,0,0,0,0,0,0,340,3.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,2.2,42,101200,149,1358,311,78,342,41,8633,0,4510,178,330,2.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,2.2,34,101200,409,1358,324,270,679,66,31434,29046,7655,316,340,3.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,2.3,28,101300,645,1358,341,466,806,83,56126,46536,10007,434,330,3.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,3.3,25,101300,837,1358,355,632,868,96,77770,53544,11881,534,340,4.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,2.7,21,101300,973,1358,367,750,899,106,93561,56711,13246,605,350,4.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,-1.5,14,101300,1042,1358,367,810,912,110,101824,58927,13904,636,320,3.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,0.1,15,101200,1039,1358,377,806,904,114,101018,58417,14377,660,310,3.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,1.2,16,101100,966,1358,379,735,866,119,90896,56489,14796,681,310,3.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,2.3,17,101100,827,1358,382,613,825,110,74557,52794,13469,610,330,4.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,2.0,16,101000,631,1358,383,443,744,97,52563,44739,11587,508,300,4.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,2.2,17,101000,392,1358,378,245,579,78,28059,26128,8958,375,310,4.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,1.8,18,101000,133,1358,374,64,241,40,6959,0,4401,174,310,3.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,3.1,24,101000,0,10,359,0,0,0,0,0,0,0,340,2.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,5.6,37,101100,0,0,341,0,0,0,0,0,0,0,40,0.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,5.8,38,101100,0,0,339,0,0,0,0,0,0,0,40,2.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,7.0,51,101100,0,0,325,0,0,0,0,0,0,0,240,0.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,6.0,48,101200,0,0,323,0,0,0,0,0,0,0,240,2.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,9.0,61,101200,0,0,324,0,0,0,0,0,0,0,240,0.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,9.3,70,101200,0,0,316,0,0,0,0,0,0,0,240,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.8,80,101300,0,0,305,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.4,84,101300,0,0,300,0,0,0,0,0,0,0,240,0.0,0,0,15.9,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.8,86,101300,0,0,300,0,0,0,0,0,0,0,240,0.0,0,0,14.3,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,101400,0,0,295,0,0,0,0,0,0,0,240,0.0,0,0,12.3,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,8.4,89,101400,0,67,296,0,0,0,0,0,0,0,240,0.0,0,0,8.0,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,9.0,86,101500,146,1358,301,72,276,42,7838,0,4614,183,240,0.0,0,0,8.6,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,9.2,63,101600,405,1358,324,258,615,75,29658,25871,8639,362,330,0.0,0,0,13.3,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,7.7,47,101600,641,1358,335,455,765,94,54132,43904,11250,494,330,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,7.1,37,101600,833,1358,350,622,840,107,75838,51728,13123,595,330,2.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,6.6,29,101500,968,1358,365,742,876,118,91671,55146,14620,673,330,1.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,5.8,25,101500,1037,1358,372,805,896,121,100194,56728,15119,698,330,2.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,3.8,20,101400,1034,1358,377,803,897,121,100070,57524,15111,697,330,1.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,2.7,18,101300,960,1358,381,737,879,116,91188,56588,14437,663,330,3.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,2.1,16,101300,820,1358,385,614,838,108,74747,53376,13189,596,300,2.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,1.2,14,101200,624,1358,388,443,756,95,52586,45315,11357,497,290,3.6,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,1.4,15,101200,385,1358,383,243,589,76,27831,26100,8763,365,300,3.3,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,2.4,18,101200,127,1343,379,61,240,39,6697,0,4273,168,300,2.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,7.7,38,101200,0,0,352,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,7.4,45,101200,0,0,337,0,0,0,0,0,0,0,220,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,8.9,56,101300,0,0,329,0,0,0,0,0,0,0,220,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,9.0,61,101300,0,0,324,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,9.3,69,101300,0,0,317,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,8.8,72,101300,0,0,312,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,8.2,72,101300,0,0,309,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,7.9,76,101300,0,0,304,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,8.3,80,101400,0,0,302,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.3,83,101400,0,0,300,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.2,83,101400,0,0,299,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,7.9,82,101400,0,52,298,0,0,0,0,0,0,0,340,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,8.9,77,101400,142,1359,308,69,279,40,7581,0,4396,173,340,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,8.6,53,101500,400,1359,332,254,619,72,29249,25415,8263,344,330,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,6.0,36,101500,637,1359,346,450,770,89,53758,44068,10683,466,330,2.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,5.1,28,101500,829,1359,357,613,827,108,74607,51809,13228,599,330,2.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,5.3,25,101400,963,1359,368,719,809,145,87370,54091,17738,829,350,3.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,3.0,20,101400,1032,1359,373,782,837,147,96038,56436,18114,847,330,4.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,4.1,19,101300,1028,1359,383,781,840,145,95890,56165,17925,838,290,3.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,1.6,15,101200,954,1359,388,714,813,143,86922,55391,17513,816,310,3.9,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,0.6,13,101200,814,1359,389,592,772,130,71077,51986,15642,716,340,2.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,0.3,13,101100,617,1359,391,423,685,112,49580,43295,13193,583,350,3.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,0.9,14,101100,378,1359,386,227,504,87,25652,23731,9840,414,330,2.5,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,1.8,16,101100,121,1319,381,54,177,38,5852,0,4149,163,330,1.9,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,6.8,32,101100,0,0,359,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,7.3,42,101200,0,0,342,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,8.4,51,101200,0,0,333,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,9.5,61,101200,0,0,327,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.6,68,101200,0,0,326,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.5,72,101200,0,0,321,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,9.5,71,101300,0,0,317,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.8,80,101300,0,0,310,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,8.2,73,101300,0,0,307,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,7.9,70,101300,0,0,308,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,8.4,75,101400,0,0,307,0,0,0,0,0,0,0,320,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,8.8,76,101400,0,37,308,0,0,0,0,0,0,0,320,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,7.9,64,101400,139,1360,315,66,248,40,7179,0,4431,175,310,1.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,8.1,53,101500,396,1360,328,247,579,78,28242,24896,8991,377,330,2.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,6.6,38,101500,632,1360,344,442,741,98,52430,43299,11619,510,310,0.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,5.9,32,101500,824,1360,354,605,802,119,73052,51132,14428,658,310,2.7,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,4.3,23,101500,959,1360,368,710,783,157,85718,53895,19098,897,320,3.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,4.0,20,101500,1026,1360,380,772,815,157,94239,55621,19230,904,330,4.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,4.5,19,101400,1023,1360,386,770,815,157,93865,55434,19170,901,310,4.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,4.7,18,101300,948,1360,392,698,771,161,84051,53290,19444,914,300,3.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,2.4,15,101300,808,1360,394,578,734,142,68742,50244,16920,779,320,3.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.5,2.7,14,101200,610,1360,398,410,643,121,47614,41146,14116,628,300,3.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,4.2,17,101200,371,1360,394,215,448,93,24068,21128,10421,441,280,2.8,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,5.1,20,101200,115,1296,389,48,133,37,5210,0,4000,158,280,2.8,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,10.7,40,101300,0,0,368,0,0,0,0,0,0,0,230,3.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,11.6,60,101300,0,0,341,0,0,0,0,0,0,0,220,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,11.1,65,101300,0,0,332,0,0,0,0,0,0,0,230,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.1,70,101400,0,0,327,0,0,0,0,0,0,0,240,3.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.1,73,101400,0,0,324,0,0,0,0,0,0,0,230,2.2,0,0,15.9,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.0,78,101500,0,0,319,0,0,0,0,0,0,0,190,2.5,0,0,14.5,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.6,78,101500,0,0,316,0,0,0,0,0,0,0,190,2.0,0,0,14.3,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.6,81,101500,0,0,314,0,0,0,0,0,0,0,160,1.5,0,0,12.7,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.5,84,101500,0,0,311,0,0,0,0,0,0,0,160,1.6,0,0,11.3,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.0,84,101600,0,0,308,0,0,0,0,0,0,0,190,2.0,0,0,11.3,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.9,86,101600,0,0,306,0,0,0,0,0,0,0,220,1.5,0,0,11.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,9.5,89,101600,0,23,301,0,0,0,0,0,0,0,140,1.5,0,0,9.5,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,10.1,85,101700,135,1361,308,60,190,41,6497,0,4465,177,170,1.6,0,0,8.2,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,10.7,77,101700,392,1361,318,235,507,89,26482,22389,10043,426,160,2.0,0,0,9.8,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,11.1,66,101800,628,1361,331,428,683,112,49985,39997,13184,586,190,1.7,0,0,11.8,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,11.0,55,101800,820,1361,344,597,788,123,71735,48489,14779,676,190,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,10.6,44,101700,954,1361,359,724,867,117,89174,52626,14418,664,230,3.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,10.5,38,101700,1021,1361,369,788,890,120,97750,54127,14894,689,200,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,9.4,32,101600,1017,1361,376,787,893,119,97620,54836,14856,686,220,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,9.3,29,101500,942,1361,384,720,871,117,88549,53624,14431,664,220,1.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,9.0,27,101400,801,1361,388,595,829,107,72090,50145,13008,588,210,0.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,9.3,29,101400,604,1361,386,424,743,94,50014,41373,11149,487,210,4.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,10.0,33,101400,364,1361,378,225,564,74,25578,21467,8474,353,220,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,10.2,36,101400,110,1276,374,51,207,34,5516,0,3708,146,220,3.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,11.8,50,101400,0,0,357,0,0,0,0,0,0,0,210,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,12.1,62,101400,0,0,342,0,0,0,0,0,0,0,220,3.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.6,70,101500,0,0,329,0,0,0,0,0,0,0,190,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.1,73,101500,0,0,324,0,0,0,0,0,0,0,220,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,11.1,76,101500,0,0,321,0,0,0,0,0,0,0,190,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.0,83,101500,0,0,315,0,0,0,0,0,0,0,170,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.6,81,101600,0,0,314,0,0,0,0,0,0,0,160,1.6,0,0,15.5,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.6,87,101600,0,0,309,0,0,0,0,0,0,0,150,2.2,0,0,10.9,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.6,87,101600,0,0,309,0,0,0,0,0,0,0,170,2.6,0,0,8.0,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,10.5,90,101600,0,0,306,0,0,0,0,0,0,0,200,2.5,0,0,8.2,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.9,93,101600,0,0,301,0,0,0,0,0,0,0,220,2.0,0,0,9.7,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,9.4,92,101700,0,9,299,0,0,0,0,0,0,0,190,1.3,0,0,9.5,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,9.4,89,101700,132,1361,301,60,223,39,6570,0,4233,167,160,0.2,0,0,8.2,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,9.5,82,101800,388,1361,307,234,532,83,26562,22767,9405,396,160,1.3,0,0,9.8,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,10.7,74,101800,624,1361,320,424,691,108,49711,39966,12653,560,160,0.2,0,0,11.3,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,11.2,67,101800,815,1361,331,587,771,126,70335,47683,15109,692,220,1.3,0,0,11.5,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,11.7,58,101700,949,1361,344,703,811,138,85390,50804,16816,784,220,0.2,0,0,13.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,11.6,48,101600,1016,1361,358,765,836,141,93625,52306,17293,809,220,1.5,0,0,14.7,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,11.0,39,101500,1012,1361,372,760,831,143,92932,52512,17500,819,220,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,9.9,33,101400,936,1361,377,674,747,160,80796,49747,19264,907,330,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,9.1,29,101400,795,1361,383,481,480,201,55404,35573,23262,1101,330,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,10.0,30,101300,597,1361,386,281,250,171,31559,17522,19351,885,200,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,10.9,33,101300,357,1361,384,197,427,85,22093,17251,9586,404,190,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,11.2,36,101300,105,1252,380,42,136,32,4598,0,3473,136,190,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,11.6,47,101300,0,0,360,0,0,0,0,0,0,0,220,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,10.6,51,101300,0,0,348,0,0,0,0,0,0,0,220,2.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,10.6,62,101300,0,0,332,0,0,0,0,0,0,0,230,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.6,70,101400,0,0,323,0,0,0,0,0,0,0,220,2.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.6,76,101400,0,0,319,0,0,0,0,0,0,0,220,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.6,81,101400,0,0,314,0,0,0,0,0,0,0,170,2.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.5,81,101400,0,0,314,0,0,0,0,0,0,0,200,2.5,0,0,15.7,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.0,84,101400,0,0,308,0,0,0,0,0,0,0,170,2.2,0,0,12.5,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.9,86,101400,0,0,306,0,0,0,0,0,0,0,200,2.6,0,0,9.8,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.3,89,101400,0,0,300,0,0,0,0,0,0,0,210,2.5,0,0,11.5,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,8.9,89,101400,0,0,298,0,0,0,0,0,0,0,200,1.5,0,0,12.7,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,9.0,89,101400,0,0,299,0,0,0,0,0,0,0,160,1.5,0,0,10.9,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,9.5,86,101500,128,1358,304,54,157,40,5912,0,4323,171,180,1.7,0,0,8.8,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,10.1,82,101500,384,1362,310,223,461,94,25043,20928,10535,448,220,3.4,0,0,14.7,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,10.7,71,101500,619,1362,323,412,636,123,47765,38591,14350,642,170,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,11.1,62,101500,811,1362,336,583,759,131,69512,47592,15709,722,190,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,11.1,52,101500,944,1362,348,719,889,103,89194,52225,12812,585,220,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,11.1,47,101400,1011,1362,356,778,904,107,97102,53345,13382,614,250,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,11.1,43,101300,1006,1362,364,772,896,110,96064,53218,13774,633,260,2.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,11.0,39,101300,930,1362,372,700,859,114,86022,51688,14032,644,230,3.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,10.5,36,101200,788,1362,374,575,810,106,69464,48135,12870,581,220,2.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,9.9,34,101200,590,1362,374,405,719,94,47664,39436,11056,482,220,2.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,9.7,36,101100,350,1362,368,182,365,88,20293,15147,9875,416,220,2.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,10.0,40,101100,99,1226,362,26,16,25,2906,0,2786,107,220,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,10.1,51,101200,0,0,344,0,0,0,0,0,0,0,210,2.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,10.5,66,101200,0,0,328,0,0,0,0,0,0,0,210,3.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.0,70,101200,0,0,321,0,0,0,0,0,0,0,220,2.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,9.9,75,101200,0,0,315,0,0,0,0,0,0,0,210,3.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.4,75,101300,0,0,312,0,0,0,0,0,0,0,210,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.4,78,101300,0,0,310,0,0,0,0,0,0,0,190,3.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.3,80,101300,0,0,308,0,0,0,0,0,0,0,200,4.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.9,81,101300,0,0,305,0,0,0,0,0,0,0,200,5.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,8.9,83,101300,0,0,303,0,0,0,0,0,0,0,210,4.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,8.9,84,101300,0,0,302,0,0,0,0,0,0,0,210,4.2,0,0,15.9,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.8,86,101300,0,0,300,0,0,0,0,0,0,0,210,4.5,0,0,14.5,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,8.3,82,101400,0,0,300,0,0,0,0,0,0,0,200,4.0,0,0,14.5,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,8.3,79,101400,125,1344,303,57,201,39,6188,0,4204,166,200,3.2,0,0,14.5,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,8.4,73,101400,380,1363,308,229,523,84,25919,22506,9496,400,210,4.3,0,0,14.7,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,8.9,64,101500,615,1363,320,403,631,118,46808,38291,13763,612,210,5.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,8.9,59,101500,806,1363,326,495,493,204,57110,36748,23645,1122,200,3.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,8.8,53,101400,939,1363,333,654,695,175,77920,47979,20962,993,200,5.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,8.3,47,101400,1005,1363,339,574,390,286,66493,31765,33350,1642,210,5.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,8.3,47,101300,1000,1363,339,629,489,270,73219,39027,31617,1550,200,4.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,8.4,48,101300,924,1363,339,448,198,314,50935,17228,35911,1777,230,4.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,9.0,53,101300,782,1363,335,263,45,237,29825,3628,27012,1293,210,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,9.3,54,101200,583,1363,335,185,50,163,20780,3433,18470,840,200,3.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,9.4,55,101200,343,1363,334,83,24,77,9320,910,8655,361,190,3.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,9.3,56,101200,82,1045,332,18,0,18,1942,0,2928,77,190,3.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,8.9,59,101200,0,0,327,0,0,0,0,0,0,0,210,4.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,8.9,63,101200,0,0,322,0,0,0,0,0,0,0,210,5.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,9.3,67,101200,0,0,319,0,0,0,0,0,0,0,210,3.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,9.6,71,101300,0,0,317,0,0,0,0,0,0,0,210,4.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,10.0,73,101300,0,0,317,0,0,0,0,0,0,0,200,3.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2006,9,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,10.3,73,101300,0,0,320,0,0,0,0,0,0,0,210,4.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,10.7,73,101300,0,0,322,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,10.5,77,101300,0,0,317,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,10.4,76,101300,0,0,317,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.8,79,101300,0,0,317,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,101400,0,0,317,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,11.8,84,101400,0,0,318,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,11.9,79,101500,119,1322,323,57,255,35,6238,0,3824,150,180,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,10.0,51,101500,373,1364,343,234,607,68,26847,22368,7845,325,180,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,10.3,42,101500,608,1364,361,427,764,87,50756,41057,10316,448,180,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,11.9,40,101500,798,1364,375,592,843,98,71992,48393,11984,539,180,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,9.7,28,101400,931,1364,391,710,885,106,87735,53068,13138,600,180,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,6.9,21,101400,997,1364,398,769,903,109,95855,55656,13609,624,180,0.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,4.8,16,101300,991,1364,404,765,903,109,95339,56485,13590,622,180,2.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,3.2,14,101200,914,1364,407,696,883,104,86149,55498,12943,588,220,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.1,2.9,13,101100,771,1364,412,570,837,97,69398,51510,11795,526,220,0.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.3,4.4,14,101000,573,1364,416,399,750,84,47307,41384,10036,432,220,1.4,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.9,7.0,18,101000,332,1364,412,204,571,65,23199,19023,7403,304,220,0.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,10.2,24,101000,74,991,408,39,192,29,4172,0,3071,122,220,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,11.7,38,101000,0,0,379,0,0,0,0,0,0,0,220,1.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,11.8,46,101000,0,0,364,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,12.6,52,101000,0,0,359,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,11.0,51,101000,0,0,350,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,10.5,51,101000,0,0,346,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,10.0,52,101000,0,0,342,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,10.0,59,101000,0,0,333,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,10.1,63,101000,0,0,328,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.5,67,101000,0,0,326,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.1,68,101000,0,0,323,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.1,78,101000,0,0,319,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,11.1,80,101000,0,0,317,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,11.2,72,101100,116,1309,325,57,269,34,6236,0,3756,148,180,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,11.6,53,101100,368,1365,350,234,631,64,26947,21517,7383,304,180,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,10.8,41,101100,603,1365,365,429,788,80,51186,41057,9621,416,180,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,9.0,30,101100,794,1365,379,594,868,89,72855,50227,10992,490,180,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,9.4,27,101100,926,1365,391,713,913,94,88871,53526,11737,531,180,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,9.2,24,101000,991,1365,402,772,930,96,96924,54844,12113,551,180,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.5,7.7,19,100900,985,1365,411,767,931,95,96389,55532,11993,544,180,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,6.6,17,100800,908,1365,412,699,916,90,87273,54565,11266,507,180,1.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.2,5.3,15,100800,765,1365,416,573,875,83,70430,51110,10214,450,180,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.9,4.9,14,100700,566,1365,419,402,794,73,48123,41604,8749,372,180,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.8,5.5,15,100700,325,1365,414,205,625,56,23562,18863,6492,263,220,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.2,7.7,20,100700,69,956,409,38,231,27,4125,0,2893,114,220,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,11.2,36,100700,0,0,379,0,0,0,0,0,0,0,220,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,11.8,44,100700,0,0,366,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,12.2,50,100700,0,0,358,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,12.3,55,100700,0,0,352,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,12.7,57,100800,0,0,352,0,0,0,0,0,0,0,80,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,11.7,54,100800,0,0,350,0,0,0,0,0,0,0,80,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,11.6,62,100800,0,0,339,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.0,67,100800,0,0,329,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,9.9,67,100800,0,0,323,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,9.4,65,100900,0,0,322,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,9.5,70,100900,0,0,317,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,10.1,76,100900,0,0,315,0,0,0,0,0,0,0,330,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,10.5,64,101000,113,1297,329,55,279,32,6060,0,3549,139,330,1.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,9.4,44,101000,364,1365,351,231,637,61,26645,21701,7059,289,330,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,5.1,26,101100,599,1365,366,423,787,78,50669,42810,9368,402,270,1.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,5.8,24,101100,789,1365,377,585,857,90,71737,51013,11091,493,270,0.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,7.1,24,101100,921,1365,387,700,888,101,86767,53955,12550,570,270,2.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,6.1,20,101000,986,1365,394,757,903,104,94485,55578,13085,597,290,2.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.9,6.1,19,100900,979,1365,400,750,899,105,93503,55373,13112,599,290,1.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,6.2,18,100900,902,1365,406,680,873,104,83952,53724,12827,583,220,2.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.3,6.6,18,100900,758,1365,408,554,825,96,67230,49328,11700,521,220,2.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,7.0,20,100900,559,1365,404,383,732,84,45279,39107,9934,427,200,3.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.5,7.7,23,100900,318,1365,395,190,543,64,21554,16813,7251,297,200,3.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.6,9.0,28,100900,64,922,387,32,161,25,3484,0,2686,106,200,3.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,9.6,35,100900,0,0,370,0,0,0,0,0,0,0,210,4.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,11.1,49,100900,0,0,354,0,0,0,0,0,0,0,200,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,11.1,55,101000,0,0,345,0,0,0,0,0,0,0,210,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,11.2,59,101100,0,0,339,0,0,0,0,0,0,0,210,3.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,11.6,65,101100,0,0,334,0,0,0,0,0,0,0,190,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,11.0,64,101200,0,0,332,0,0,0,0,0,0,0,200,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,10.7,64,101200,0,0,330,0,0,0,0,0,0,0,200,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,11.1,75,101300,0,0,322,0,0,0,0,0,0,0,180,4.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.1,75,101300,0,0,322,0,0,0,0,0,0,0,180,4.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.1,78,101300,0,0,320,0,0,0,0,0,0,0,190,5.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.1,78,101400,0,0,319,0,0,0,0,0,0,0,180,5.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,11.1,80,101500,0,0,317,0,0,0,0,0,0,0,200,5.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,11.2,78,101500,110,1285,320,50,213,33,5438,0,3587,141,190,4.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,11.6,74,101600,360,1366,326,179,346,88,19980,14122,9823,415,190,6.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,11.1,65,101700,594,1366,333,404,723,90,47734,38632,10619,462,210,5.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,11.1,59,101700,784,1366,339,566,815,99,68719,47184,12009,539,210,6.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,11.1,53,101700,916,1366,348,685,878,96,84957,50843,11964,542,210,5.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,11.2,51,101700,980,1366,351,742,898,98,92793,52035,12268,559,220,6.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,11.6,49,101600,973,1366,357,737,896,98,92026,51786,12307,561,220,4.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,11.1,45,101600,895,1366,361,669,878,94,82945,50579,11688,528,180,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,11.2,45,101500,752,1366,361,545,833,87,66431,46473,10649,472,180,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,11.5,46,101500,552,1366,361,378,749,76,44863,36602,8980,384,210,4.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,11.7,49,101500,311,1366,357,187,570,57,21300,14519,6552,266,210,4.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,11.6,52,101500,59,888,352,31,178,24,3369,0,2556,101,210,4.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,11.0,59,101500,0,0,338,0,0,0,0,0,0,0,190,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,10.5,65,101600,0,0,328,0,0,0,0,0,0,0,170,2.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.0,65,101600,0,0,325,0,0,0,0,0,0,0,170,3.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.0,70,101700,0,0,321,0,0,0,0,0,0,0,180,3.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.0,73,101700,0,0,318,0,0,0,0,0,0,0,160,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.0,75,101700,0,0,316,0,0,0,0,0,0,0,160,2.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.0,75,101700,0,0,315,0,0,0,0,0,0,0,150,2.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.0,77,101800,0,0,314,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.1,78,101800,0,0,313,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.6,84,101800,0,0,312,0,0,0,0,0,0,0,150,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.6,84,101800,0,0,312,0,0,0,0,0,0,0,140,1.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,10.7,84,101900,0,0,312,0,0,0,0,0,0,0,170,2.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,11.1,83,101900,107,1274,315,26,9,25,2884,0,2813,108,210,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,11.2,77,101900,355,1367,321,141,187,93,15719,7935,10351,439,180,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,11.7,69,101900,589,1367,331,340,478,134,38885,29495,15408,691,170,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,11.6,60,101900,779,1367,341,558,786,110,67036,46524,13251,599,160,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,11.0,53,101900,910,1367,346,646,748,148,77528,48312,17830,833,180,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,10.5,44,101800,975,1367,358,701,758,160,84477,50010,19412,916,210,3.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,10.0,41,101700,967,1367,360,740,903,101,92228,53405,12650,577,220,4.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,10.1,42,101700,889,1367,360,669,873,101,82424,51671,12512,568,210,4.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,10.6,43,101600,745,1367,360,531,782,105,63716,46019,12613,566,240,5.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,10.6,44,101600,545,1367,358,336,593,100,39001,32237,11627,507,190,4.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,10.6,46,101600,304,1367,354,105,86,86,11551,3099,9490,398,210,4.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,10.7,49,101600,55,854,351,14,1,14,1514,91,2272,60,210,3.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,11.0,55,101600,0,0,344,0,0,0,0,0,0,0,200,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,10.6,59,101600,0,0,336,0,0,0,0,0,0,0,200,4.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,10.7,63,101600,0,0,332,0,0,0,0,0,0,0,200,4.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,11.1,66,101600,0,0,331,0,0,0,0,0,0,0,190,2.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.1,73,101600,0,0,324,0,0,0,0,0,0,0,180,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.1,78,101600,0,0,319,0,0,0,0,0,0,0,170,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.0,83,101700,0,0,314,0,0,0,0,0,0,0,140,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.6,84,101700,0,0,311,0,0,0,0,0,0,0,130,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.6,87,101600,0,0,309,0,0,0,0,0,0,0,130,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.6,90,101600,0,0,307,0,0,0,0,0,0,0,140,1.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.5,89,101600,0,0,307,0,0,0,0,0,0,0,130,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,10.1,86,101600,0,0,307,0,0,0,0,0,0,0,160,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,10.6,85,101600,103,1260,310,49,247,30,5325,0,3294,129,170,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,10.6,77,101700,351,1368,317,217,609,61,24907,19351,6975,286,170,2.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,10.7,71,101700,585,1368,323,405,767,77,48293,38999,9213,396,220,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,11.0,64,101700,774,1368,333,565,845,86,69080,47347,10601,470,230,2.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,10.5,56,101600,905,1368,339,680,894,89,84776,51224,11098,500,190,1.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,9.4,50,101600,969,1368,342,737,912,91,92578,53111,11460,518,190,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,9.3,44,101500,961,1368,351,731,911,91,91788,53109,11416,516,190,1.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,8.4,40,101400,883,1368,353,664,895,86,82728,52007,10738,481,190,0.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,9.4,41,101300,738,1368,356,540,856,78,66268,47348,9608,421,190,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,9.1,40,101300,538,1368,356,373,776,68,44570,37281,8094,342,230,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,8.8,40,101300,297,1368,354,182,601,51,20827,13910,5904,237,220,2.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,8.3,40,101300,50,820,351,28,191,21,3002,0,2257,88,220,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,8.3,46,101300,0,0,341,0,0,0,0,0,0,0,200,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,8.3,51,101300,0,0,333,0,0,0,0,0,0,0,200,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,8.4,57,101300,0,0,326,0,0,0,0,0,0,0,200,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,9.5,68,101300,0,0,320,0,0,0,0,0,0,0,210,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.0,75,101300,0,0,315,0,0,0,0,0,0,0,180,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.0,77,101300,0,0,314,0,0,0,0,0,0,0,190,1.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.0,78,101300,0,0,313,0,0,0,0,0,0,0,170,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.0,84,101300,0,0,308,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.0,86,101300,0,0,306,0,0,0,0,0,0,0,160,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.9,86,101400,0,0,306,0,0,0,0,0,0,0,160,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,9.4,86,101400,0,0,303,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,9.5,89,101400,0,0,301,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,10.6,89,101500,100,1244,307,48,260,29,5270,0,3202,125,150,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,10.6,82,101500,346,1368,313,218,633,58,25125,19283,6710,274,150,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,10.6,69,101500,580,1368,325,409,793,73,48932,39565,8741,373,200,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,10.5,60,101400,769,1368,335,572,872,82,70193,48481,10088,445,200,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,10.1,52,101400,900,1368,343,688,915,87,85868,52398,10843,487,200,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,10.5,47,101300,963,1368,353,746,933,89,93728,53532,11210,506,200,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,10.0,41,101300,955,1368,360,739,930,90,92712,53710,11285,510,230,1.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,9.9,39,101200,876,1368,365,667,899,91,82647,52111,11345,510,230,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,9.4,37,101200,732,1368,364,541,853,85,65854,47982,10334,455,240,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,9.0,36,101100,532,1368,365,369,761,74,43743,37334,8737,371,200,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,8.8,37,101100,290,1368,361,175,564,56,19903,13499,6353,257,200,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,8.4,38,101100,46,787,355,20,100,17,2176,0,1814,70,200,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,8.9,50,101200,0,0,338,0,0,0,0,0,0,0,210,4.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,8.9,57,101200,0,0,329,0,0,0,0,0,0,0,210,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,8.9,63,101300,0,0,322,0,0,0,0,0,0,0,200,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,8.9,65,101300,0,0,319,0,0,0,0,0,0,0,190,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,8.9,70,101300,0,0,314,0,0,0,0,0,0,0,200,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,8.9,72,101400,0,0,312,0,0,0,0,0,0,0,190,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,8.9,72,101400,0,0,312,0,0,0,0,0,0,0,180,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,8.9,77,101400,0,0,308,0,0,0,0,0,0,0,150,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,8.8,77,101400,0,0,308,0,0,0,0,0,0,0,160,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,8.3,75,101400,0,0,307,0,0,0,0,0,0,0,170,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,8.3,80,101400,0,0,302,0,0,0,0,0,0,0,140,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,8.4,80,101400,0,0,303,0,0,0,0,0,0,0,140,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,8.9,79,101500,84,1067,306,45,227,31,4827,0,3346,133,140,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,8.9,68,101500,342,1369,316,210,595,62,24072,19154,7102,291,160,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,8.9,59,101500,575,1369,326,398,760,79,47359,39471,9393,403,210,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,8.8,51,101500,764,1369,336,559,843,89,68234,48572,10884,483,210,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,8.1,43,101500,894,1369,344,674,892,92,83808,52662,11418,514,180,2.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,6.8,38,101500,958,1369,346,731,911,93,91572,54593,11721,530,240,2.4,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,7.8,38,101400,949,1369,352,722,904,95,90232,53942,11920,540,240,4.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,7.9,37,101400,870,1369,355,648,863,100,79784,51953,12312,557,200,4.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,8.4,37,101400,725,1369,357,523,818,90,63380,47101,10936,483,220,4.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,9.0,40,101300,525,1369,355,355,727,76,41873,35861,9008,383,210,4.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,9.2,43,101300,283,1369,351,166,533,56,18780,12101,6319,256,210,4.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,9.3,46,101300,42,753,347,18,92,15,1993,0,1686,65,210,4.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,8.8,51,101300,0,0,336,0,0,0,0,0,0,0,210,4.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,8.4,55,101400,0,0,329,0,0,0,0,0,0,0,220,3.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,9.0,61,101400,0,0,324,0,0,0,0,0,0,0,200,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,9.5,70,101500,0,0,317,0,0,0,0,0,0,0,190,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.0,77,101500,0,0,314,0,0,0,0,0,0,0,200,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.0,78,101500,0,0,313,0,0,0,0,0,0,0,150,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.9,80,101500,0,0,310,0,0,0,0,0,0,0,110,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.5,84,101500,0,0,306,0,0,0,0,0,0,0,130,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.9,86,101500,0,0,306,0,0,0,0,0,0,0,140,1.3,0,0,15.9,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.5,90,101500,0,0,301,0,0,0,0,0,0,0,130,0.2,0,0,14.3,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.9,92,101500,0,0,301,0,0,0,0,0,0,0,130,1.5,0,0,12.9,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,9.5,89,101500,0,0,301,0,0,0,0,0,0,0,130,1.3,0,0,12.5,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,10.6,92,101500,81,1046,305,44,247,30,4751,0,3201,127,130,0.2,0,0,10.4,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,10.6,82,101600,337,1370,313,211,637,55,24390,17999,6330,257,130,1.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,10.6,71,101600,570,1370,323,401,799,68,48114,38814,8214,349,130,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,10.5,62,101500,759,1370,332,562,875,78,69151,47955,9584,421,130,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,10.0,54,101500,889,1370,340,675,907,86,84122,51963,10793,484,340,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,10.0,47,101400,952,1370,349,731,924,89,91718,53311,11226,507,340,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,9.8,43,101300,943,1370,354,722,912,94,90156,53314,11787,534,340,1.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,8.2,38,101300,864,1370,355,645,859,104,79073,52024,12786,579,310,2.9,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,7.0,34,101200,719,1370,356,518,807,95,62482,47618,11485,509,250,1.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,5.5,30,101200,518,1370,356,348,706,82,40886,36644,9594,409,250,3.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,4.9,30,101200,276,1370,352,159,491,60,17873,12558,6748,274,310,2.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,4.7,31,101200,39,720,348,17,77,15,1833,0,1599,61,310,1.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,7.3,48,101200,0,0,332,0,0,0,0,0,0,0,240,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,8.4,58,101200,0,0,324,0,0,0,0,0,0,0,240,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,9.0,60,101300,0,0,325,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,9.9,63,101300,0,0,327,0,0,0,0,0,0,0,210,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,8.9,66,101300,0,0,319,0,0,0,0,0,0,0,210,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,8.9,75,101300,0,0,309,0,0,0,0,0,0,0,220,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,8.8,78,101300,0,0,307,0,0,0,0,0,0,0,220,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,8.3,82,101300,0,0,300,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,8.2,80,101200,0,0,301,0,0,0,0,0,0,0,90,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,7.9,86,101200,0,0,295,0,0,0,0,0,0,0,90,1.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,8.2,86,101200,0,0,297,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,7.9,86,101200,0,0,295,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.4,84,101300,77,1024,299,39,102,34,4163,0,3568,143,90,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,9.4,71,101300,333,1371,316,181,459,69,20440,15390,7869,325,300,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,9.5,59,101300,566,1371,329,367,639,103,42650,35997,12060,528,300,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,9.9,53,101300,754,1371,340,546,819,95,66068,47386,11557,515,300,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,8.8,43,101200,884,1371,349,661,872,99,81514,51995,12268,555,300,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,7.7,37,101100,946,1371,354,717,889,103,88987,53964,12842,585,300,1.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,7.3,34,101000,937,1371,359,709,887,103,87987,53992,12772,581,330,2.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,8.2,35,101000,857,1371,360,639,867,97,78634,51681,11983,540,200,2.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,7.9,33,101000,712,1371,365,510,805,92,61526,46626,11092,490,230,3.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,7.9,33,100900,511,1371,364,338,687,82,39573,34739,9614,410,200,2.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,8.0,35,100900,270,1371,360,150,450,61,16762,10740,6877,280,200,2.4,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,7.9,36,101000,35,687,357,15,65,13,1639,0,1459,56,200,2.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,8.4,41,101000,0,0,350,0,0,0,0,0,0,0,210,3.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,9.5,54,101000,0,0,336,0,0,0,0,0,0,0,240,5.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,10.0,63,101100,0,0,345,0,0,0,0,0,0,0,190,3.2,4,4,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.0,68,101100,0,0,323,0,0,0,0,0,0,0,200,3.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.0,73,101100,0,0,318,0,0,0,0,0,0,0,200,3.6,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,9.9,75,101100,0,0,315,0,0,0,0,0,0,0,210,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.5,75,101100,0,0,313,0,0,0,0,0,0,0,180,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.9,83,101100,0,0,308,0,0,0,0,0,0,0,180,2.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.4,84,101100,0,0,305,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,9.3,85,101000,0,0,303,0,0,0,0,0,0,0,180,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,8.9,84,101000,0,0,302,0,0,0,0,0,0,0,190,1.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.9,86,101000,0,0,300,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,9.0,85,101000,74,1003,302,38,168,29,4044,0,3084,122,250,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,9.9,79,101000,328,1372,312,193,524,67,21809,16798,7649,315,250,0.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,9.4,69,101000,561,1372,318,328,542,107,37990,30832,12392,543,250,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,9.4,64,101000,749,1372,323,339,168,247,38021,13751,27885,1334,250,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,9.4,58,101000,878,1372,330,524,474,220,60686,35801,25634,1230,190,2.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,9.4,58,101000,940,1372,330,498,263,317,56574,22781,36286,1798,200,4.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,9.4,61,101000,931,1372,327,276,80,221,32197,5996,25967,1251,200,5.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,9.4,63,101000,851,1372,331,95,0,95,10227,0,13576,377,210,4.8,1,1,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,9.4,65,101000,706,1372,348,162,55,134,18977,3521,15732,715,210,6.3,7,7,16.1,3353,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,9.4,67,101100,505,1372,320,177,88,145,19737,5641,16187,721,220,6.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,9.4,68,101100,263,1372,319,66,27,61,7416,595,6865,279,220,6.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,9.4,70,101100,32,655,317,5,0,5,550,0,846,22,220,5.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,9.4,72,101200,0,0,315,0,0,0,0,0,0,0,190,4.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.4,75,101300,0,0,312,0,0,0,0,0,0,0,200,3.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,9.6,77,101300,0,0,327,0,0,0,0,0,0,0,200,2.0,4,4,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.4,75,101300,0,0,323,0,0,0,0,0,0,0,210,3.0,2,2,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.4,78,101300,0,0,310,0,0,0,0,0,0,0,200,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.3,80,101400,0,0,313,0,0,0,0,0,0,0,200,2.0,1,1,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,9.5,83,101400,0,0,324,0,0,0,0,0,0,0,120,2.6,5,5,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.0,83,101400,0,0,347,0,0,0,0,0,0,0,130,2.3,9,9,16.1,3353,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.0,81,101400,0,0,332,0,0,0,0,0,0,0,130,2.1,6,6,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.4,78,101500,0,0,358,0,0,0,0,0,0,0,170,1.5,10,10,16.1,1219,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,9.4,80,101500,0,0,346,0,0,0,0,0,0,0,180,1.5,9,9,16.1,1219,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,9.1,78,101600,0,0,333,0,0,0,0,0,0,0,170,1.5,7,7,16.1,884,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,9.3,82,101700,71,981,343,1,0,1,93,0,149,3,190,1.3,9,9,16.1,1189,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,8.9,74,101800,323,1372,358,59,58,46,6935,1418,5346,214,220,0.0,10,10,16.1,1146,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,9.3,73,101800,556,1372,362,189,93,151,21224,6181,17043,767,220,0.2,10,10,16.1,941,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,8.9,64,101900,743,1372,370,266,90,217,30124,7011,24696,1169,140,1.0,10,10,16.1,839,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,8.8,64,101900,873,1372,369,112,0,112,11924,30,15697,444,200,2.2,10,10,16.1,815,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,8.9,62,102000,935,1372,372,71,0,71,7642,0,10094,288,190,1.5,10,10,16.1,1017,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,9.0,63,102000,925,1372,371,91,0,91,9732,0,12786,368,190,1.5,10,10,16.1,853,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,8.9,60,102000,845,1372,375,150,0,150,15865,50,20804,591,210,2.5,10,10,16.1,1272,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,8.9,60,102000,699,1372,375,240,135,171,27477,9533,19671,909,220,1.9,10,10,16.1,1219,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,8.9,60,102000,498,1372,365,175,122,130,19629,7427,14708,649,220,0.1,9,9,16.1,1229,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,8.9,61,102000,256,1372,363,64,63,52,7215,1104,5906,237,190,0.8,9,9,16.1,1321,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,8.9,64,102100,29,623,352,13,60,12,1471,0,1336,51,190,1.5,8,8,16.1,1402,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,8.9,72,102100,0,0,328,0,0,0,0,0,0,0,150,1.3,4,4,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,8.9,78,102200,0,0,307,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.8,80,102200,0,0,310,0,0,0,0,0,0,0,150,0.0,1,1,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,8.4,83,102200,0,0,337,0,0,0,0,0,0,0,150,0.0,9,9,16.1,1455,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,9.3,82,102200,0,0,343,0,0,0,0,0,0,0,150,0.0,9,9,16.1,1402,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,8.8,78,102300,0,0,322,0,0,0,0,0,0,0,150,0.0,4,4,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,8.3,86,102300,0,0,297,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.2,89,102400,0,0,295,0,0,0,0,0,0,0,300,0.0,0,0,15.7,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,7.9,90,102400,0,0,293,0,0,0,0,0,0,0,300,0.0,0,0,12.7,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.2,89,102400,0,0,295,0,0,0,0,0,0,0,300,0.0,0,0,11.5,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.8,90,102400,0,0,292,0,0,0,0,0,0,0,300,0.0,0,0,12.9,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,7.9,90,102400,0,0,293,0,0,0,0,0,0,0,300,0.2,0,0,12.9,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,8.4,85,102500,67,959,299,35,172,27,3776,0,2880,114,300,2.3,0,0,13.3,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,8.9,73,102500,319,1373,311,189,547,62,21467,16209,7073,289,330,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,8.9,61,102500,551,1373,323,372,728,80,43989,37334,9510,407,350,3.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,8.9,52,102500,738,1373,335,531,824,88,64513,47034,10704,473,340,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,8.9,49,102400,867,1373,340,646,889,85,80389,51229,10587,473,320,2.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,8.8,46,102300,929,1373,343,692,873,101,85695,52284,12586,572,320,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,8.3,41,102200,919,1373,350,683,868,102,84454,52285,12614,573,320,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,8.3,38,102100,838,1373,355,620,872,88,76637,50753,10852,484,320,1.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,8.4,38,102100,692,1373,355,494,818,81,59876,45465,9897,432,220,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,8.9,39,102000,491,1373,357,328,727,68,38716,33173,8025,337,220,0.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,9.2,41,102000,250,1373,356,143,523,48,16189,7522,5447,217,220,0.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,9.5,44,102000,26,591,352,13,86,12,1468,0,1295,50,220,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,10.0,53,102000,0,0,341,0,0,0,0,0,0,0,210,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,10.0,57,102000,0,0,335,0,0,0,0,0,0,0,190,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,10.1,65,102000,0,0,326,0,0,0,0,0,0,0,220,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,10.8,67,102000,0,0,328,0,0,0,0,0,0,0,220,1.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,12.3,81,102000,0,0,323,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.7,87,102000,0,0,321,0,0,0,0,0,0,0,110,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,12.1,87,102100,0,0,317,0,0,0,0,0,0,0,110,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.0,83,102100,0,0,314,0,0,0,0,0,0,0,150,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.5,84,102100,0,0,311,0,0,0,0,0,0,0,160,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.4,80,102100,0,0,308,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,9.3,86,102100,0,0,303,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.0,87,102100,0,0,300,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,9.4,86,102200,64,937,303,34,197,25,3676,0,2696,106,130,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,9.5,66,102200,314,1374,322,188,574,57,21505,15498,6569,267,130,1.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,10.7,62,102200,546,1374,333,372,751,74,44179,36542,8796,374,130,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,11.2,58,102200,733,1374,341,531,839,84,64639,46107,10227,450,230,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,11.6,54,102100,862,1374,349,644,888,88,79751,49986,10869,487,230,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,11.1,47,102100,923,1374,356,699,906,90,87138,51767,11297,510,310,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,11.1,44,101900,913,1374,362,690,902,91,85919,51612,11335,511,310,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,11.0,39,101800,832,1374,372,619,874,90,76177,49734,11104,497,320,0.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,10.7,38,101800,686,1374,371,493,825,81,59700,44687,9871,431,320,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,10.5,37,101700,485,1374,371,326,727,69,38316,32496,8186,344,320,0.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,10.8,40,101700,243,1374,367,139,504,50,15676,6794,5676,227,320,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,10.8,44,101700,23,559,360,13,78,11,1388,0,1249,48,320,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,12.3,62,101700,0,0,343,0,0,0,0,0,0,0,320,0.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,12.9,69,101700,0,0,339,0,0,0,0,0,0,0,230,1.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,13.2,73,101700,0,0,336,0,0,0,0,0,0,0,230,2.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.8,76,101700,0,0,331,0,0,0,0,0,0,0,230,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,12.7,78,101700,0,0,328,0,0,0,0,0,0,0,160,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,12.3,83,101700,0,0,321,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,12.7,82,101700,0,0,325,0,0,0,0,0,0,0,160,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,11.7,89,101700,0,0,313,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.7,87,101700,0,0,315,0,0,0,0,0,0,0,130,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,11.6,92,101700,0,0,310,0,0,0,0,0,0,0,130,1.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,11.0,89,101700,0,0,309,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,10.6,91,101700,0,0,306,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.9,92,101700,61,915,307,31,163,24,3353,0,2584,102,310,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.8,81,101700,309,1375,326,180,533,60,20386,13488,6838,279,310,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,12.7,66,101800,541,1375,341,362,729,75,42765,34472,8893,379,320,1.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,12.1,52,101700,728,1375,355,498,742,105,59440,42825,12598,564,320,2.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,11.8,45,101700,856,1375,365,610,799,112,74037,47591,13676,624,360,1.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,12.2,42,101600,917,1375,374,685,901,84,85726,50066,10529,473,360,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,12.1,39,101500,907,1375,379,677,899,84,84610,50002,10502,471,330,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,11.6,35,101400,826,1375,384,607,876,80,75166,48294,9978,443,300,3.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,11.1,33,101300,679,1375,386,482,828,73,58742,43347,8955,388,310,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,11.2,34,101300,478,1375,385,316,726,64,37384,30890,7581,316,290,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,11.4,36,101300,236,1375,382,133,494,48,14958,5397,5421,216,290,0.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,11.8,40,101200,21,528,376,11,74,10,1252,0,1134,43,230,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,12.7,53,101200,0,0,357,0,0,0,0,0,0,0,230,2.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,12.2,52,101300,0,0,356,0,0,0,0,0,0,0,240,3.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,12.2,58,101300,0,0,348,0,0,0,0,0,0,0,220,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,12.3,64,101300,0,0,340,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,12.8,68,101300,0,0,339,0,0,0,0,0,0,0,130,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,12.8,72,101300,0,0,334,0,0,0,0,0,0,0,130,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,12.8,71,101300,0,0,336,0,0,0,0,0,0,0,140,2.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.7,75,101300,0,0,331,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,12.3,78,101300,0,0,326,0,0,0,0,0,0,0,120,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,12.9,78,101300,0,0,329,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,13.3,80,101300,0,0,329,0,0,0,0,0,0,0,140,1.9,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,13.4,81,101300,0,0,330,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,14.0,83,101300,58,893,332,31,192,23,3298,0,2436,96,150,1.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,14.5,72,101400,304,1375,344,179,580,50,20481,11436,5798,234,140,2.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,15.1,67,101400,536,1375,353,357,753,64,42649,32190,7627,322,170,2.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,15.6,61,101400,722,1375,365,511,835,72,62561,41433,8879,387,130,2.7,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,15.6,53,101300,850,1375,376,620,876,79,77079,45523,9789,436,130,0.2,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,15.5,49,101200,911,1375,383,676,897,82,84502,47269,10246,460,290,1.6,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,14.9,44,101100,901,1375,388,669,896,83,83517,47774,10357,465,290,2.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,14.3,38,101000,819,1375,396,600,866,84,73858,46404,10362,462,260,1.9,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,13.2,33,101000,673,1375,400,477,819,76,57791,42024,9269,403,350,0.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.7,12.4,31,100900,472,1375,402,312,723,64,36759,29893,7584,317,350,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,12.2,32,100900,230,1375,397,130,500,47,14644,4303,5257,210,10,2.8,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,12.3,34,100900,18,497,391,11,76,10,1196,0,1089,42,10,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,13.0,43,100900,0,0,376,0,0,0,0,0,0,0,330,1.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,14.4,62,100900,0,0,356,0,0,0,0,0,0,0,250,0.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,14.3,66,101000,0,0,351,0,0,0,0,0,0,0,250,1.6,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,13.4,67,101000,0,0,343,0,0,0,0,0,0,0,350,1.9,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,13.4,73,101100,0,0,337,0,0,0,0,0,0,0,310,0.7,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2012,10,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,8.6,43,101100,0,0,347,0,0,0,0,0,0,0,310,5.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,1.9,29,101000,0,0,334,0,0,0,0,0,0,0,320,7.0,0,0,15.7,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,-0.1,26,101100,0,0,329,0,0,0,0,0,0,0,320,5.8,0,0,13.3,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,-0.7,27,101000,0,0,323,0,0,0,0,0,0,0,330,6.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,-1.0,28,101100,0,0,318,0,0,0,0,0,0,0,340,4.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,-0.5,31,101100,0,0,316,0,0,0,0,0,0,0,340,5.4,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,0.7,37,101100,0,0,310,0,0,0,0,0,0,0,340,2.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,1.8,43,101200,55,870,307,33,239,23,3534,0,2516,99,330,0.3,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,2.1,35,101200,299,1376,323,192,660,49,22209,16613,5643,225,330,2.8,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,1.0,28,101200,531,1376,332,382,829,62,45928,41243,7502,313,350,4.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,0.7,24,101200,717,1376,341,543,906,71,66956,52034,8787,380,360,4.5,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,1.6,23,101200,845,1376,351,655,943,76,82057,56086,9580,423,350,3.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,1.0,19,101100,905,1376,360,709,958,79,89356,57732,9970,443,350,4.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,0.1,17,101000,894,1376,367,699,952,80,87889,57738,10047,446,20,4.9,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,0.3,16,100900,813,1376,372,625,924,79,77708,55487,9871,435,350,3.4,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,-1.6,13,100900,666,1376,372,496,875,73,60603,50152,8877,382,330,1.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,-0.6,14,100900,465,1376,376,324,772,63,38364,36020,7493,311,20,2.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,1.0,17,100900,224,1376,372,132,528,47,14924,6821,5274,209,20,0.9,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,2.7,21,100900,16,466,366,11,80,10,1177,0,1077,41,20,0.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,6.2,40,100900,0,0,338,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,6.8,47,100900,0,0,329,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,7.2,52,101000,0,0,326,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,7.3,51,101000,0,0,327,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,8.2,62,101100,0,0,319,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,7.8,62,101100,0,0,316,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,7.9,63,101100,0,0,316,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,9.0,71,101200,0,0,314,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.4,75,101200,0,0,312,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.4,78,101200,0,0,310,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,9.4,79,101300,0,0,309,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.3,77,101300,0,0,310,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,8.8,72,101300,52,848,312,28,164,22,3046,0,2389,94,300,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,8.2,52,101400,295,1377,331,179,577,56,20402,14245,6376,258,300,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,7.9,40,101400,526,1377,348,364,763,73,43109,37438,8671,367,300,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,8.2,36,101400,712,1377,359,522,847,84,63359,47854,10257,450,300,1.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,7.9,31,101400,839,1377,369,631,884,92,77678,52208,11404,511,300,1.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,9.2,31,101400,899,1377,379,684,900,96,84631,53101,11945,540,220,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,11.8,34,101300,888,1377,389,674,900,93,83386,51358,11595,523,220,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,12.2,34,101300,807,1377,390,606,892,83,74587,49041,10305,458,200,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,11.9,33,101300,660,1377,392,478,836,77,57729,43518,9351,406,200,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,10.5,30,101300,459,1377,391,308,726,67,36164,30758,7839,327,210,3.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,8.8,28,101300,217,1377,384,123,480,48,13806,4361,5354,213,240,3.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,8.4,29,101300,14,436,377,9,67,9,1019,0,947,36,240,4.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,9.4,38,101300,0,0,363,0,0,0,0,0,0,0,230,4.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,9.8,44,101400,0,0,354,0,0,0,0,0,0,0,230,6.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,12.9,58,101400,0,0,352,0,0,0,0,0,0,0,240,7.9,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,14.0,64,101500,0,0,350,0,0,0,0,0,0,0,230,5.9,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,14.5,71,101500,0,0,346,0,0,0,0,0,0,0,230,6.8,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2012,10,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.0,76,101500,0,0,343,0,0,0,0,0,0,0,210,4.1,0,0,16.1,77777,9,999999999,27,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,14.9,80,101500,0,0,339,0,0,0,0,0,0,0,200,4.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,14.4,76,101500,0,0,340,0,0,0,0,0,0,0,180,3.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,14.4,79,101500,0,0,338,0,0,0,0,0,0,0,170,2.5,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,14.4,81,101500,0,0,335,0,0,0,0,0,0,0,180,2.0,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,14.3,86,101500,0,0,330,0,0,0,0,0,0,0,180,1.7,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,13.9,87,101500,0,0,327,0,0,0,0,0,0,0,200,3.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,14.0,86,101500,49,825,328,26,134,21,2772,0,2267,89,180,3.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,14.3,79,101600,290,1378,337,170,524,60,19145,11344,6761,276,210,3.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,13.8,69,101600,521,1378,344,351,723,78,41191,33435,9191,392,220,3.0,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,12.7,56,101600,706,1378,353,509,823,87,61379,44465,10500,462,210,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,12.1,49,101500,833,1378,360,621,881,88,76501,49286,10892,487,200,3.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,11.6,44,101400,893,1378,364,675,903,89,83834,51158,11122,500,200,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,11.0,41,101300,882,1378,367,666,903,88,82686,51304,10970,492,190,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,10.9,40,101300,800,1378,369,595,878,85,73142,49235,10527,468,250,1.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,12.9,44,101200,654,1378,373,469,827,77,56615,42308,9301,403,220,0.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,12.9,46,101200,452,1378,371,302,718,66,35316,28868,7763,324,220,3.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,13.0,48,101100,211,1378,367,118,459,48,13128,2407,5307,212,200,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,12.9,51,101100,12,407,362,8,60,8,932,0,876,33,200,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,13.9,64,101100,0,0,350,0,0,0,0,0,0,0,190,2.2,0,0,16.1,77777,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,13.8,69,101100,0,0,344,0,0,0,0,0,0,0,190,2.5,0,0,16.1,77777,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,13.2,75,101100,0,0,334,0,0,0,0,0,0,0,190,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.2,75,101100,0,0,328,0,0,0,0,0,0,0,200,3.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,12.2,81,101100,0,0,323,0,0,0,0,0,0,0,160,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.2,84,101100,0,0,320,0,0,0,0,0,0,0,180,2.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,12.2,87,101100,0,0,318,0,0,0,0,0,0,0,150,2.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.1,89,101000,0,0,316,0,0,0,0,0,0,0,150,2.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.6,86,101000,0,0,315,0,0,0,0,0,0,0,160,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.0,83,101000,0,0,314,0,0,0,0,0,0,0,160,2.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.6,84,101000,0,0,311,0,0,0,0,0,0,0,150,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.6,87,101000,0,0,309,0,0,0,0,0,0,0,170,1.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,10.7,89,101000,47,803,308,19,89,16,2052,0,1729,66,200,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,11.2,83,101000,285,1378,316,163,514,57,18442,11321,6447,261,220,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.8,77,101000,515,1378,324,342,711,76,40157,33346,8926,379,230,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,12.2,69,101000,701,1378,334,497,813,84,60125,43757,10172,446,250,3.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,12.2,62,101000,828,1378,342,610,876,84,75287,48353,10391,463,290,3.4,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,12.1,56,100900,888,1378,350,662,892,87,82220,49978,10874,488,190,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,11.6,49,100800,876,1378,357,653,892,86,81113,50094,10709,480,190,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,11.1,44,100700,794,1378,361,584,873,81,71972,48284,10040,444,220,3.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,11.2,44,100700,647,1378,363,460,820,75,55598,42490,9085,392,210,3.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,11.3,45,100700,446,1378,361,294,711,64,34436,28586,7496,312,220,4.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,11.1,48,100700,205,1378,355,113,456,45,12605,1897,5054,201,220,4.9,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,10.5,50,100700,11,378,348,7,57,7,830,0,783,29,220,4.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,9.3,56,100700,0,0,332,0,0,0,0,0,0,0,210,2.7,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,8.3,56,100700,0,0,326,0,0,0,0,0,0,0,190,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,8.4,61,100700,0,0,321,0,0,0,0,0,0,0,200,3.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,8.9,67,100800,0,0,317,0,0,0,0,0,0,0,190,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,8.8,70,100800,0,0,314,0,0,0,0,0,0,0,170,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,8.2,72,100800,0,0,309,0,0,0,0,0,0,0,150,2.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,7.7,75,100800,0,0,303,0,0,0,0,0,0,0,140,2.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,7.2,75,100800,0,0,301,0,0,0,0,0,0,0,150,2.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.1,77,100800,0,0,298,0,0,0,0,0,0,0,170,2.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,6.6,76,100900,0,0,296,0,0,0,0,0,0,0,170,1.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,5.6,69,100900,0,0,297,0,0,0,0,0,0,0,180,2.9,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,5.5,70,100900,0,0,295,0,0,0,0,0,0,0,170,1.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,5.0,66,101000,44,780,297,5,0,5,527,0,818,21,170,0.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,5.0,63,101100,280,1379,299,58,11,55,6145,956,8679,228,170,1.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,5.1,61,101100,510,1379,302,141,38,127,15933,2385,14382,633,200,0.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,6.0,57,101200,695,1379,312,234,90,189,26630,6747,21577,1003,200,1.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,4.9,48,101100,822,1379,316,313,99,254,35549,8290,28986,1397,160,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,4.4,43,101100,882,1379,322,417,205,286,47436,17779,32735,1600,160,1.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,4.1,40,101100,870,1379,325,197,24,182,23140,1736,21474,1012,190,0.4,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,1.6,33,101000,788,1379,324,144,37,123,17265,2427,14804,672,190,3.5,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,1.1,32,101000,641,1379,324,269,177,187,30386,13633,21195,977,200,2.8,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,1.0,31,101000,440,1379,325,186,319,85,21429,15984,9782,413,200,4.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,1.4,32,100900,199,1379,324,83,286,41,9316,1566,4673,184,190,3.3,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,1.7,35,100900,9,350,321,7,50,7,779,0,744,28,190,2.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,2.0,39,100900,0,0,314,0,0,0,0,0,0,0,210,3.6,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,3.9,50,101000,0,0,309,0,0,0,0,0,0,0,200,3.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,4.0,51,100900,0,0,323,0,0,0,0,0,0,0,180,3.4,4,4,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,5.2,56,100900,0,0,314,0,0,0,0,0,0,0,210,5.8,1,1,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,6.8,65,100900,0,0,355,0,0,0,0,0,0,0,210,6.3,10,10,16.1,3264,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,7.4,68,100900,0,0,355,0,0,0,0,0,0,0,230,6.3,10,10,15.7,2555,9,999999999,16,0.0000,0,88,999.000,5.0,1.0 +2012,10,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.4,83,100900,0,0,353,0,0,0,0,0,0,0,210,3.1,10,10,11.4,1914,9,999999999,17,0.0000,0,88,999.000,2.8,1.0 +2012,10,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,10.0,93,100900,0,0,348,0,0,0,0,0,0,0,120,4.2,10,10,6.6,1481,9,999999999,18,0.0000,0,88,999.000,2.3,1.0 +2012,10,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.9,92,100800,0,0,348,0,0,0,0,0,0,0,120,4.7,10,10,8.0,1175,9,999999999,18,0.0000,0,88,999.000,1.3,1.0 +2012,10,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.3,89,100700,0,0,347,0,0,0,0,0,0,0,130,5.0,10,10,8.4,1335,9,999999999,17,0.0000,0,88,999.000,0.3,1.0 +2012,10,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.9,86,100700,0,0,347,0,0,0,0,0,0,0,150,3.8,10,10,11.8,1516,9,999999999,17,0.0000,0,88,999.000,0.3,1.0 +2012,10,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,8.9,86,100600,0,0,347,0,0,0,0,0,0,0,130,1.7,10,10,16.1,1441,9,999999999,17,0.0000,0,88,999.000,1.3,1.0 +2012,10,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,9.1,82,100800,41,757,351,4,0,4,498,0,769,19,290,3.3,10,10,13.4,1243,9,999999999,17,0.0000,0,88,999.000,0.2,1.0 +2012,10,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,10.0,93,100800,275,1380,348,40,0,40,4312,0,6342,164,140,0.7,10,10,2.4,603,9,999999999,18,0.0000,0,88,999.000,0.5,1.0 +2012,10,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,10.0,88,100900,505,1380,352,23,0,23,2611,0,3776,92,160,4.8,10,10,7.7,569,9,999999999,18,0.0000,0,88,999.000,0.3,1.0 +2012,10,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,10.6,92,101000,690,1380,352,86,0,86,9303,0,12693,335,150,4.0,10,10,7.6,183,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,10.9,91,101000,816,1380,355,122,0,122,12994,30,17179,476,160,3.3,10,10,16.1,211,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.1,83,101000,876,1380,340,230,68,187,26955,4765,22009,1043,170,3.8,7,7,16.1,518,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,10.4,76,101000,864,1380,356,315,166,211,36522,12312,24579,1175,160,6.4,9,9,16.1,1018,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,10.0,72,101000,782,1380,358,138,99,83,17008,5535,10163,449,160,6.4,9,9,16.1,1714,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,9.3,66,101000,635,1380,360,185,196,95,21946,11041,11301,495,170,4.6,9,9,16.1,834,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,8.5,62,101000,433,1380,359,46,80,21,5853,2345,2655,101,190,4.6,9,9,16.1,1711,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,7.9,61,101000,193,1380,357,83,233,51,9170,1640,5595,224,230,4.9,9,9,16.1,2016,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,6.8,59,101100,8,322,353,6,44,6,704,0,678,25,230,5.0,9,9,16.1,2410,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,7.7,66,101100,0,0,342,0,0,0,0,0,0,0,200,4.0,8,8,16.1,3353,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,7.2,65,101100,0,0,324,0,0,0,0,0,0,0,200,3.6,3,3,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,7.1,67,101200,0,0,355,0,0,0,0,0,0,0,190,3.7,10,10,16.1,2789,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,6.8,67,101200,0,0,352,0,0,0,0,0,0,0,210,4.4,10,10,16.1,1945,9,999999999,15,0.0000,0,88,999.000,0.3,1.0 +2012,10,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,7.9,76,101200,0,0,350,0,0,0,0,0,0,0,180,3.0,10,10,16.1,1608,9,999999999,16,0.0000,0,88,999.000,5.0,1.0 +2012,10,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,8.5,80,101300,0,0,350,0,0,0,0,0,0,0,240,2.1,10,10,14.9,1028,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,8.8,83,101300,0,0,349,0,0,0,0,0,0,0,180,2.0,10,10,16.1,2069,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,8.4,86,101400,0,0,334,0,0,0,0,0,0,0,180,1.6,9,9,16.1,2778,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,8.9,89,101400,0,0,323,0,0,0,0,0,0,0,170,2.1,7,7,16.1,3048,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,8.9,89,101400,0,0,298,0,0,0,0,0,0,0,150,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,8.8,89,101500,0,0,298,0,0,0,0,0,0,0,130,1.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,8.3,86,101600,0,0,298,0,0,0,0,0,0,0,160,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.4,86,101600,39,734,308,9,7,9,1074,0,1053,39,150,2.1,2,2,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,8.9,85,101700,270,1381,301,97,106,77,10700,3170,8443,350,160,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,8.8,76,101700,500,1381,308,209,173,147,23295,11201,16384,730,160,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,7.7,66,101700,684,1381,327,320,204,218,35815,16224,24591,1155,170,2.7,4,4,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,6.6,61,101700,811,1381,324,464,384,239,52814,31014,27310,1309,220,3.2,3,3,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,6.1,55,101700,870,1381,328,594,676,168,70197,47495,19898,933,210,3.6,3,3,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,5.9,51,101600,858,1381,329,558,587,193,65170,43451,22678,1074,200,3.6,2,2,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,4.3,45,101600,776,1381,318,429,393,209,49160,30626,24020,1134,210,3.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,3.8,43,101500,629,1381,329,394,577,131,45546,37816,15239,683,210,2.6,2,2,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,3.3,41,101500,427,1381,318,233,451,93,26463,22955,10643,453,210,2.4,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,3.3,43,101500,187,1381,315,88,295,48,9771,1982,5358,213,210,1.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,3.6,46,101500,6,295,312,5,33,5,621,0,604,22,160,0.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,5.6,67,101500,0,0,299,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,5.6,69,101500,0,0,297,0,0,0,0,0,0,0,200,1.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,5.7,67,101500,0,0,299,0,0,0,0,0,0,0,220,0.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,6.6,73,101500,0,0,298,0,0,0,0,0,0,0,220,2.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,6.1,69,101600,0,0,300,0,0,0,0,0,0,0,220,2.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,1.5,1.0 +2012,10,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.1,72,101600,0,0,310,0,0,0,0,0,0,0,200,0.2,3,3,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.5,1.0 +2012,10,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,6.4,75,101600,0,0,332,0,0,0,0,0,0,0,200,2.2,9,9,15.7,3157,9,999999999,15,0.0000,0,88,999.000,0.3,1.0 +2012,10,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.3,83,101700,0,0,345,0,0,0,0,0,0,0,140,2.6,10,10,13.3,1676,9,999999999,17,0.0000,0,88,999.000,0.5,1.0 +2012,10,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,8.3,86,101600,0,0,343,0,0,0,0,0,0,0,130,2.3,10,10,15.3,1608,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,8.3,86,101700,0,0,343,0,0,0,0,0,0,0,130,0.3,10,10,10.0,1093,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.2,85,101700,0,0,344,0,0,0,0,0,0,0,130,2.6,10,10,13.6,1028,9,999999999,16,0.0000,0,88,999.000,1.0,1.0 +2012,10,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,8.3,86,101700,0,0,343,0,0,0,0,0,0,0,140,1.5,10,10,15.9,962,9,999999999,17,0.0000,0,88,999.000,0.3,1.0 +2012,10,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.4,86,101800,36,711,344,15,50,14,1637,0,1497,57,130,1.6,10,10,14.7,1100,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,8.9,86,101800,265,1381,338,114,212,73,12565,5917,8106,335,130,2.7,9,9,16.1,1263,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,8.8,79,101900,495,1381,343,200,219,122,22552,12801,13773,604,140,3.1,9,9,16.1,2125,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,8.3,69,102000,679,1381,350,343,280,205,38585,21557,23208,1085,150,3.1,9,9,16.1,914,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,8.4,67,102000,805,1381,328,361,259,210,41438,19658,24216,1149,160,3.0,3,3,15.9,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,9.0,70,101900,864,1381,364,92,0,92,9834,0,13067,363,160,2.5,10,10,14.7,1864,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,9.1,65,101900,852,1381,360,180,90,124,21661,5684,14993,687,160,2.0,9,9,16.1,2187,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,7.3,54,101900,770,1381,363,407,321,229,46193,25607,26058,1240,160,1.6,9,9,16.1,2591,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,7.7,54,101900,623,1381,358,247,120,192,27585,9078,21621,998,180,2.6,8,8,16.1,2591,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,7.7,54,101900,421,1381,336,223,489,74,25765,21179,8596,360,190,2.6,2,2,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,7.5,55,101900,182,1381,329,97,386,47,10729,1059,5145,205,230,2.6,1,1,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,7.7,58,101900,5,268,320,5,35,5,567,0,552,20,230,2.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,7.2,60,102000,0,0,315,0,0,0,0,0,0,0,230,2.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,7.3,65,102000,0,0,310,0,0,0,0,0,0,0,200,1.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,8.4,72,102100,0,0,316,0,0,0,0,0,0,0,220,2.5,1,1,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.4,75,102100,0,0,361,0,0,0,0,0,0,0,210,2.0,10,10,16.1,2878,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.4,77,102100,0,0,358,0,0,0,0,0,0,0,200,1.3,10,10,16.1,2671,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.4,77,102200,0,0,358,0,0,0,0,0,0,0,200,0.0,10,10,16.1,2222,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.3,77,102200,0,0,357,0,0,0,0,0,0,0,200,0.0,10,10,16.1,2824,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,8.8,77,102200,0,0,355,0,0,0,0,0,0,0,230,0.0,10,10,16.1,2232,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,8.3,74,102300,0,0,354,0,0,0,0,0,0,0,230,0.3,10,10,16.1,1829,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,8.4,75,102300,0,0,354,0,0,0,0,0,0,0,230,2.5,10,10,16.1,1864,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,8.9,82,102300,0,0,350,0,0,0,0,0,0,0,250,1.3,10,10,16.1,2045,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.9,80,102300,0,0,352,0,0,0,0,0,0,0,360,0.2,10,10,16.1,1372,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,9.0,80,102300,34,687,353,15,84,13,1688,0,1466,56,360,2.3,10,10,16.1,1372,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,9.4,79,102400,260,1382,357,112,349,47,12806,5284,5333,212,340,3.8,10,10,16.1,1460,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,9.4,71,102400,489,1382,347,254,416,107,28951,22692,12220,531,330,5.7,8,8,16.1,2134,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,9.3,64,102400,673,1382,323,446,681,114,52470,41152,13507,603,350,5.9,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,8.2,55,102400,799,1382,327,593,878,85,72896,50522,10468,464,340,7.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,7.8,50,102400,858,1382,331,647,905,86,80309,52681,10666,476,330,6.8,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,7.7,48,102300,846,1382,333,639,902,87,79019,52635,10760,480,320,7.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,7.2,46,102200,764,1382,333,565,860,90,68788,50257,10971,486,340,6.8,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,7.1,45,102200,617,1382,335,439,804,81,52577,43660,9667,417,350,7.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,6.7,45,102200,415,1382,333,272,686,66,31652,28140,7690,318,340,5.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,6.4,45,102200,176,1382,330,95,401,44,10530,300,4891,194,330,5.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,6.6,49,102200,4,242,326,4,38,4,514,0,501,18,330,6.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,5.5,50,102200,0,0,318,0,0,0,0,0,0,0,330,4.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,4.9,50,102200,0,0,315,0,0,0,0,0,0,0,300,3.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,4.3,53,102200,0,0,307,0,0,0,0,0,0,0,310,3.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,3.9,54,102200,0,0,304,0,0,0,0,0,0,0,310,4.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,3.8,57,102200,0,0,299,0,0,0,0,0,0,0,310,4.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,3.3,57,102200,0,0,297,0,0,0,0,0,0,0,330,4.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,3.3,57,102200,0,0,297,0,0,0,0,0,0,0,330,3.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,3.3,59,102200,0,0,294,0,0,0,0,0,0,0,330,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,3.2,63,102200,0,0,290,0,0,0,0,0,0,0,320,2.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,2.8,61,102100,0,0,290,0,0,0,0,0,0,0,330,3.5,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,2.7,61,102200,0,0,289,0,0,0,0,0,0,0,340,3.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,2.3,62,102200,0,0,286,0,0,0,0,0,0,0,340,1.9,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,2.8,65,102200,32,664,286,15,87,13,1667,0,1452,56,330,0.4,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,2.8,56,102300,256,1383,295,148,524,51,16765,10217,5835,233,330,2.9,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,2.8,49,102300,484,1383,304,325,730,69,38312,35146,8206,344,40,1.6,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,2.8,44,102300,668,1383,312,477,824,79,57832,47066,9623,417,330,1.9,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,2.7,39,102200,794,1383,319,586,875,84,72216,52241,10330,456,330,0.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,1.6,32,102100,852,1383,327,636,890,88,78849,54295,10895,486,330,2.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,1.2,28,102000,840,1383,332,624,885,87,77310,53958,10789,480,330,3.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,1.8,27,101900,757,1383,340,552,859,81,67758,50897,10017,440,330,2.3,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,2.1,27,101800,611,1383,343,426,799,74,51381,43761,8891,380,300,0.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,1.6,25,101800,409,1383,344,261,676,61,30568,27801,7152,294,300,1.4,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,1.7,26,101800,171,1383,342,89,392,40,9872,0,4506,177,300,0.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,2.1,29,101800,3,216,337,4,36,4,441,0,430,15,300,0.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,5.1,47,101800,0,0,320,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,6.1,54,101800,0,0,316,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,6.2,60,101800,0,0,309,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,6.7,65,101800,0,0,307,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,6.8,67,101800,0,0,305,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,7.3,75,101800,0,0,301,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,7.7,77,101800,0,0,301,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,7.2,80,101700,0,0,296,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,7.2,83,101700,0,0,294,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.1,86,101700,0,0,291,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,6.7,84,101700,0,0,291,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,6.7,87,101700,0,0,289,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,6.9,88,101700,29,640,289,14,82,12,1528,0,1340,51,310,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,8.2,75,101700,251,1383,306,140,505,49,15879,7707,5562,222,310,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,7.2,59,101800,479,1383,317,313,714,66,36968,32246,7817,326,310,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,7.3,49,101700,662,1383,329,464,812,75,56249,44094,9134,394,310,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,7.8,45,101700,788,1383,339,571,866,78,70587,49043,9670,425,310,0.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,7.8,40,101600,846,1383,347,622,889,78,77572,50814,9791,434,310,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,7.9,37,101500,834,1383,355,613,892,76,76502,50508,9456,417,310,2.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,8.4,36,101400,751,1383,361,545,873,71,67404,47805,8810,383,330,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,9.0,35,101400,605,1383,367,422,817,65,51183,40815,7946,337,350,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,9.7,37,101300,404,1383,366,260,704,55,30532,24735,6435,263,10,1.4,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,10.3,42,101300,165,1383,360,88,426,37,9815,0,4175,164,10,0.7,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,11.1,51,101300,3,191,350,3,43,3,407,0,397,14,10,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,11.2,64,101300,0,0,334,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.7,73,101300,0,0,327,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.6,78,101300,0,0,322,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.1,81,101300,0,0,317,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.0,80,101400,0,0,317,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.5,78,101400,0,0,316,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,9.9,81,101400,0,0,310,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,9.3,85,101400,0,0,303,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,8.8,83,101400,0,0,302,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,8.4,86,101400,0,0,298,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,8.8,89,101400,0,0,298,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,101400,0,0,295,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,8.6,87,101400,27,617,298,13,76,12,1450,0,1289,49,100,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,10.5,73,101500,246,1384,320,137,486,51,15375,6735,5701,229,100,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,9.3,57,101500,474,1384,332,268,487,101,30486,25538,11542,498,100,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,8.9,48,101500,657,1384,341,460,802,80,55484,43474,9665,419,100,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,8.9,42,101500,782,1384,351,569,859,83,69815,48753,10251,453,100,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,9.0,40,101400,840,1384,356,620,881,85,76717,50587,10549,470,100,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,9.5,39,101400,828,1384,362,610,880,84,75370,50005,10372,461,230,1.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,10.0,39,101300,746,1384,365,539,850,81,65856,47020,9891,434,230,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,10.1,38,101300,599,1384,368,415,789,74,49752,40078,8898,381,230,0.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,10.9,40,101300,398,1384,367,252,660,63,29269,23929,7287,301,230,0.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,11.5,46,101300,160,1384,362,82,355,41,9015,0,4518,179,230,0.8,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,12.2,53,101300,2,167,354,3,25,3,331,0,326,11,230,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,12.2,66,101300,0,0,337,0,0,0,0,0,0,0,230,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.3,73,101400,0,0,330,0,0,0,0,0,0,0,230,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.7,78,101400,0,0,328,0,0,0,0,0,0,0,230,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,12.2,81,101400,0,0,323,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.1,83,101500,0,0,320,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.6,84,101500,0,0,317,0,0,0,0,0,0,0,140,0.0,0,0,15.9,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.0,87,101500,0,0,311,0,0,0,0,0,0,0,140,0.2,0,0,14.7,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.6,87,101600,0,0,309,0,0,0,0,0,0,0,140,2.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.6,87,101600,0,0,309,0,0,0,0,0,0,0,170,1.3,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,10.5,90,101600,0,0,306,0,0,0,0,0,0,0,170,0.0,0,0,15.2,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.3,89,101700,0,0,300,0,0,0,0,0,0,0,210,0.2,0,0,8.2,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,9.0,93,101700,0,0,296,0,0,0,0,0,0,0,210,1.3,0,0,9.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.7,92,101800,25,593,301,13,86,12,1445,0,1279,49,210,0.0,0,0,6.0,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,11.8,86,101800,241,1385,317,138,525,47,15608,5593,5345,213,210,0.0,0,0,14.7,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,12.2,76,101800,468,1385,327,314,737,65,36920,30361,7628,318,290,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,12.1,66,101800,651,1385,337,467,834,74,56398,42624,9012,389,290,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,11.7,55,101800,776,1385,349,576,889,78,70927,48132,9593,422,290,0.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,11.8,51,101800,835,1385,355,627,905,82,77601,49899,10123,450,290,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,12.1,46,101700,822,1385,364,616,901,81,76138,49389,10064,447,290,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,11.6,44,101600,740,1385,364,545,877,77,66788,47011,9442,413,340,0.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,11.1,40,101600,593,1385,370,420,819,70,50516,40240,8408,358,340,2.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,11.4,41,101600,392,1385,369,256,693,59,29722,23870,6923,284,340,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,11.7,45,101600,155,1385,364,80,354,40,8761,0,4428,175,340,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,12.2,53,101500,2,144,354,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,12.2,66,101600,0,0,337,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.2,75,101600,0,0,328,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,12.2,81,101600,0,0,323,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,12.1,87,101600,0,0,317,0,0,0,0,0,0,0,110,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.6,87,101600,0,0,315,0,0,0,0,0,0,0,110,1.3,0,0,15.9,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,11.0,89,101600,0,0,309,0,0,0,0,0,0,0,110,0.0,0,0,13.9,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,10.5,91,101600,0,0,306,0,0,0,0,0,0,0,110,0.0,0,0,9.8,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,9.5,92,101600,0,0,299,0,0,0,0,0,0,0,170,0.0,0,0,11.5,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,9.9,89,101600,0,0,303,0,0,0,0,0,0,0,170,0.0,0,0,12.9,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.3,89,101600,0,0,300,0,0,0,0,0,0,0,170,0.2,0,0,12.5,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,101600,0,0,295,0,0,0,0,0,0,0,170,1.3,0,0,10.2,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.4,90,101600,0,0,295,0,0,0,0,0,0,0,230,0.0,0,0,13.0,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,10.0,95,101700,23,570,346,12,77,11,1339,0,1203,46,240,0.0,10,10,0.9,30,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,10.1,88,101700,236,1386,315,133,495,49,14933,5771,5503,220,240,0.0,2,2,13.3,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,11.2,80,101700,463,1386,318,306,714,68,35880,30203,7963,333,240,0.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,12.2,71,101700,646,1386,332,457,811,79,54916,41982,9557,414,240,0.0,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,12.2,60,101700,771,1386,344,563,858,86,68738,47199,10530,467,240,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,12.2,54,101600,829,1386,352,614,877,89,75406,49045,10971,490,160,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,12.3,51,101500,816,1386,357,603,873,89,73940,48658,10952,489,160,0.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,12.7,50,101400,734,1386,363,532,843,86,64551,45681,10436,460,160,1.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,11.8,47,101400,587,1386,361,408,779,78,48576,39071,9314,400,160,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,12.0,49,101300,387,1386,359,211,435,90,23724,18623,10133,430,210,1.4,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,11.9,52,101300,150,1386,353,54,122,41,5885,0,4450,176,210,0.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,11.7,56,101300,1,122,346,0,0,0,0,0,0,0,190,0.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,11.6,67,101300,0,0,333,0,0,0,0,0,0,0,190,1.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,10.8,62,101300,0,0,333,0,0,0,0,0,0,0,200,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.2,75,101300,0,0,328,0,0,0,0,0,0,0,200,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,12.2,80,101300,0,0,323,0,0,0,0,0,0,0,210,3.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,12.2,81,101300,0,0,323,0,0,0,0,0,0,0,230,4.2,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,12.1,87,101300,0,0,317,0,0,0,0,0,0,0,190,1.6,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.7,87,101300,0,0,315,0,0,0,0,0,0,0,190,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.6,89,101300,0,0,313,0,0,0,0,0,0,0,210,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.1,87,101300,0,0,312,0,0,0,0,0,0,0,200,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.1,87,101300,0,0,312,0,0,0,0,0,0,0,190,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.1,87,101300,0,0,312,0,0,0,0,0,0,0,170,2.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,11.1,89,101400,0,0,310,0,0,0,0,0,0,0,160,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,11.3,87,101400,21,546,323,2,0,2,203,0,317,8,170,3.1,2,2,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,12.2,89,101500,231,1386,333,41,20,38,4717,80,4350,171,170,2.6,4,4,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,12.1,82,101500,458,1386,332,124,129,81,14281,5774,9414,399,200,2.7,2,2,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,11.6,71,101500,640,1386,328,336,333,182,37747,23666,20530,947,210,3.3,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,10.6,63,101500,765,1386,332,315,143,236,35489,11323,26737,1276,210,4.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,10.6,62,101500,823,1386,332,270,49,241,30747,3863,27590,1327,200,4.2,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,10.6,61,101400,811,1386,344,310,99,253,35067,7976,28698,1383,220,5.1,2,2,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,10.6,63,101400,728,1386,331,147,1,147,15625,130,20817,569,230,4.9,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,10.7,66,101400,582,1386,340,114,0,114,12144,0,16735,444,230,3.0,2,2,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,11.0,68,101400,381,1386,328,70,0,70,7523,0,10775,281,210,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.1,69,101400,145,1386,339,21,0,21,2272,0,3415,88,160,2.0,2,2,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,11.1,70,101400,1,102,347,0,0,0,0,0,0,0,160,1.5,5,5,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,10,31,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,11.2,70,101500,0,0,367,0,0,0,0,0,0,0,160,1.1,9,9,16.1,1524,9,999999999,20,0.0000,0,88,999.000,0.3,1.0 +2012,10,31,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.8,73,101500,0,0,378,0,0,0,0,0,0,0,160,0.7,10,10,16.1,1541,9,999999999,20,0.0000,0,88,999.000,0.8,1.0 +2012,10,31,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.2,84,101600,0,0,352,0,0,0,0,0,0,0,90,0.3,8,8,15.4,4012,9,999999999,22,0.0000,0,88,999.000,0.4,1.0 +2012,10,31,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.5,86,101600,0,0,340,0,0,0,0,0,0,0,90,0.0,7,7,15.0,6260,9,999999999,20,0.0000,0,88,999.000,0.3,1.0 +2012,10,31,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,11.4,89,101700,0,0,333,0,0,0,0,0,0,0,90,0.2,6,6,14.7,8509,9,999999999,20,0.0000,0,88,999.000,0.3,1.0 +2012,10,31,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,11.0,91,101800,0,0,327,0,0,0,0,0,0,0,90,1.2,5,5,14.4,10757,9,999999999,20,0.0000,0,88,999.000,0.2,1.0 +2005,11,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,10.3,90,101800,0,0,321,0,0,0,0,0,0,0,330,0.0,4,4,14.0,13006,9,999999999,18,0.0000,0,88,999.000,0.2,1.0 +2005,11,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,9.6,90,101800,0,0,315,0,0,0,0,0,0,0,330,0.0,3,3,13.7,15254,9,999999999,17,0.0000,0,88,999.000,0.1,1.0 +2005,11,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.0,87,101800,0,0,305,0,0,0,0,0,0,0,150,0.0,2,2,13.4,17503,9,999999999,16,0.0000,0,88,999.000,0.1,1.0 +2005,11,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.3,90,101900,0,0,295,0,0,0,0,0,0,0,150,0.0,1,1,13.0,19751,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,6.6,90,101900,0,0,286,0,0,0,0,0,0,0,150,0.0,0,0,12.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,6.2,93,101900,0,0,282,0,0,0,0,0,0,0,150,0.0,0,0,11.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.9,91,101900,20,529,287,11,56,10,1181,0,1095,42,150,0.0,0,0,9.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.4,78,101900,227,1387,305,124,427,54,13798,5974,6055,244,150,0.2,0,0,11.5,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,9.4,65,101900,454,1387,322,240,409,106,27074,21551,12025,520,150,1.6,0,0,12.7,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,9.4,58,101800,637,1387,331,418,644,122,48527,39482,14241,636,150,1.9,0,0,11.5,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,9.4,53,101800,761,1387,336,512,690,133,60396,44164,15769,720,150,0.0,0,0,12.7,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,9.4,48,101700,819,1387,345,595,814,114,71704,49815,13758,624,150,0.2,0,0,11.3,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,9.3,42,101600,807,1387,353,592,828,111,71377,50270,13380,605,150,2.1,0,0,11.5,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,8.4,40,101500,724,1387,352,441,521,169,50796,36666,19584,906,150,2.2,0,0,12.9,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,8.9,41,101400,578,1387,352,259,227,165,29070,15761,18539,841,220,2.7,0,0,11.3,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,9.4,46,101400,378,1387,348,123,66,105,13607,3207,11657,499,220,1.5,0,0,9.7,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,9.8,53,101300,142,1387,340,25,0,25,2738,0,4111,108,120,1.5,0,0,10.6,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,10.6,62,101300,1,87,332,0,0,0,0,0,0,0,120,1.5,0,0,11.3,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,10.5,70,101300,0,0,323,0,0,0,0,0,0,0,160,1.5,0,0,11.3,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,9.7,72,101300,0,0,317,0,0,0,0,0,0,0,170,1.6,0,0,11.8,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,7.9,55,101300,0,0,325,0,0,0,0,0,0,0,190,2.7,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,9.0,63,101300,0,0,322,0,0,0,0,0,0,0,220,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,9.5,70,101300,0,0,317,0,0,0,0,0,0,0,210,3.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.1,75,101200,0,0,316,0,0,0,0,0,0,0,180,3.0,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.7,79,101200,0,0,316,0,0,0,0,0,0,0,180,2.7,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.7,84,101200,0,0,317,0,0,0,0,0,0,0,210,3.0,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.7,87,101200,0,0,315,0,0,0,0,0,0,0,140,2.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.7,87,101200,0,0,315,0,0,0,0,0,0,0,140,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,12.0,88,101200,0,0,322,0,0,0,0,0,0,0,160,2.2,1,1,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.8,87,101200,0,0,354,0,0,0,0,0,0,0,200,3.3,9,9,16.1,355,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,12.0,88,101200,18,505,355,2,0,2,203,0,317,8,180,3.6,9,9,16.1,3048,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,11.0,82,101300,222,1388,334,41,18,38,4669,59,4345,170,200,4.1,5,5,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,10.5,77,101300,449,1388,355,179,142,133,19812,8372,14804,651,190,4.5,9,9,16.1,1998,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,9.8,68,101300,631,1388,360,258,142,194,28878,10585,21758,1007,220,7.1,9,9,16.1,2151,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,8.2,62,101400,756,1388,351,202,19,191,21122,1939,26601,743,220,6.4,8,8,16.1,2286,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,7.6,58,101300,814,1388,336,207,77,162,24311,5314,19115,889,220,7.5,4,4,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,6.0,46,101300,801,1388,327,488,508,195,56337,38033,22577,1063,210,6.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,5.0,42,101300,719,1388,328,450,574,153,52265,39799,17854,818,200,4.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,4.9,42,101300,572,1388,327,334,496,130,38205,31722,14861,660,220,7.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,4.4,42,101300,372,1388,323,205,486,75,23360,19920,8557,356,220,6.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,4.4,45,101400,137,1388,319,71,346,37,7829,0,4086,160,210,6.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,4.4,48,101400,0,69,315,0,0,0,0,0,0,0,210,5.8,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,4.5,52,101500,0,0,309,0,0,0,0,0,0,0,230,6.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,5.0,60,101500,0,0,303,0,0,0,0,0,0,0,220,5.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,5.0,64,101600,0,0,299,0,0,0,0,0,0,0,220,4.4,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,5.0,67,101700,0,0,296,0,0,0,0,0,0,0,210,2.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,5.0,72,101800,0,0,291,0,0,0,0,0,0,0,100,2.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,5.1,75,101800,0,0,289,0,0,0,0,0,0,0,170,2.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,5.5,77,101800,0,0,289,0,0,0,0,0,0,0,160,2.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,5.0,81,101900,0,0,284,0,0,0,0,0,0,0,160,1.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,4.9,88,101800,0,0,278,0,0,0,0,0,0,0,130,0.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.8,4.5,85,101900,0,0,278,0,0,0,0,0,0,0,130,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,5.1,86,101900,0,0,281,0,0,0,0,0,0,0,170,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,5.7,86,102000,0,0,289,0,0,0,0,0,0,0,120,2.1,1,1,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,6.2,83,102000,17,482,312,7,16,7,765,0,745,27,130,2.2,7,7,16.1,3658,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,6.8,80,102000,217,1388,294,91,203,59,9975,3187,6508,264,120,3.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,7.9,76,102100,443,1388,319,246,504,86,28238,23951,9838,417,140,2.1,4,4,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,8.2,68,102100,626,1388,313,335,360,172,37748,25686,19524,894,210,2.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,7.7,59,102000,750,1388,333,465,538,175,53665,38441,20220,940,210,4.0,3,3,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,6.7,53,102000,808,1388,334,470,657,87,57720,38552,10781,479,210,3.7,3,3,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,6.6,50,101900,795,1388,365,284,115,219,32499,8993,25103,1192,200,4.7,9,9,16.1,3317,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,6.0,45,101800,713,1388,368,336,229,218,37838,18290,24691,1162,220,5.2,9,9,16.1,3048,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,5.6,45,101800,567,1388,365,257,216,169,28706,15501,18929,858,220,5.8,9,9,16.1,3083,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,5.7,47,101800,367,1388,373,115,50,102,12737,2442,11308,482,220,6.0,10,10,16.1,3290,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,6.0,50,101800,133,1388,370,26,0,26,2819,0,4258,112,200,4.7,10,10,16.1,2757,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,6.1,52,101800,0,51,368,0,0,0,0,0,0,0,200,3.8,10,10,16.1,2250,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,7.0,56,101800,0,0,358,0,0,0,0,0,0,0,220,5.5,9,9,16.1,1981,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,7.1,59,101800,0,0,334,0,0,0,0,0,0,0,170,3.7,5,5,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,7.7,62,101800,0,0,355,0,0,0,0,0,0,0,170,4.7,9,9,16.1,1711,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,7.3,61,101800,0,0,353,0,0,0,0,0,0,0,150,5.2,9,9,16.1,1796,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,8.0,66,101900,0,0,361,0,0,0,0,0,0,0,150,4.2,10,10,16.1,1054,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,9.0,70,101800,0,0,353,0,0,0,0,0,0,0,190,3.6,9,9,16.1,2824,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,9.5,74,101800,0,0,362,0,0,0,0,0,0,0,170,3.8,10,10,16.1,2093,9,999999999,17,0.0000,0,88,999.000,0.7,1.0 +2005,11,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.1,87,101800,0,0,353,0,0,0,0,0,0,0,160,5.3,10,10,14.3,630,9,999999999,18,0.0000,0,88,999.000,0.5,1.0 +2005,11,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,10.7,93,101800,0,0,352,0,0,0,0,0,0,0,160,3.1,10,10,5.7,561,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,11.0,93,101800,0,0,354,0,0,0,0,0,0,0,150,3.6,10,10,10.0,579,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.1,93,101800,0,0,355,0,0,0,0,0,0,0,150,2.7,10,10,16.1,625,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.0,92,101900,0,0,354,0,0,0,0,0,0,0,120,3.0,10,10,16.1,518,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,10.5,89,101900,15,458,354,9,49,8,988,0,932,35,130,2.6,10,10,16.1,503,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.1,83,102000,212,1389,357,29,49,22,3474,0,2584,97,120,2.7,10,10,16.1,396,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,11.4,84,102000,438,1389,364,134,56,117,14974,3000,13062,568,160,3.6,10,10,16.1,1003,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,11.7,77,102000,620,1389,330,406,662,111,47312,37994,12953,574,170,2.6,1,1,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,12.1,73,102100,744,1389,369,476,602,153,55266,39399,17838,822,240,2.6,9,9,16.1,1524,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,10.9,62,102000,802,1389,349,595,882,86,73040,49495,10590,470,210,2.8,3,3,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,9.4,52,101900,790,1389,355,585,876,87,71607,49940,10634,472,210,4.1,4,4,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,9.1,51,101800,708,1389,337,460,633,138,53614,40962,16094,732,230,4.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,6.7,44,101800,562,1389,334,388,770,77,46065,39839,9135,390,240,5.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,6.5,45,101800,362,1389,331,218,562,72,24803,21389,8162,338,230,4.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,7.0,50,101800,129,1389,327,45,110,35,4985,0,3878,152,210,4.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,7.3,53,101800,0,33,324,0,0,0,0,0,0,0,210,3.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,7.8,63,101900,0,0,315,0,0,0,0,0,0,0,220,2.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,7.7,70,101900,0,0,307,0,0,0,0,0,0,0,210,2.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.2,78,102000,0,0,298,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,7.2,81,102000,0,0,295,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,7.1,93,102000,0,0,287,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.8,1.0 +2005,11,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,6.6,93,102000,0,0,284,0,0,0,0,0,0,0,250,0.0,0,0,15.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,6.0,96,101900,0,0,279,0,0,0,0,0,0,0,210,0.0,0,0,13.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,5.5,96,101900,0,0,277,0,0,0,0,0,0,0,210,0.0,0,0,14.3,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,4.9,93,101900,0,0,276,0,0,0,0,0,0,0,210,0.0,0,0,12.7,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,3.9,93,101900,0,0,271,0,0,0,0,0,0,0,210,0.0,0,0,9.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,3.9,97,101900,0,0,268,0,0,0,0,0,0,0,210,0.2,0,0,8.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,3.8,96,102000,0,0,268,0,0,0,0,0,0,0,120,1.3,0,0,13.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.8,3.6,92,101900,13,435,270,9,67,8,970,0,900,34,120,0.0,0,0,10.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,6.2,87,102000,207,1390,286,115,477,44,12923,2998,4953,196,170,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,6.8,73,102100,433,1390,300,284,717,61,33381,29180,7166,295,170,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,7.1,65,102100,615,1390,309,432,814,72,52095,42726,8728,373,170,1.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,6.2,53,102100,739,1390,318,534,850,82,65235,48805,10074,442,170,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,6.6,50,102000,797,1390,325,583,872,84,71799,50618,10315,456,170,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,6.2,45,101900,784,1390,349,573,872,80,70553,50291,9937,437,170,0.2,5,5,15.9,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,6.8,45,101800,702,1390,353,401,495,151,46398,33724,17531,801,170,2.1,5,5,14.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,7.3,46,101800,556,1390,386,356,657,93,41607,35977,10923,473,170,2.1,10,10,16.1,2760,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,7.6,48,101700,357,1390,373,136,205,84,15281,8408,9414,395,170,2.1,9,9,16.1,2896,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,7.8,51,101700,125,1390,352,62,324,33,6839,0,3664,143,210,2.1,6,6,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,7.9,55,101700,0,17,340,0,0,0,0,0,0,0,210,2.2,3,3,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,8.4,58,101700,0,0,374,0,0,0,0,0,0,0,230,3.1,10,10,16.1,3048,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,8.9,65,101700,0,0,351,0,0,0,0,0,0,0,230,3.0,8,8,16.1,3048,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,9.0,71,101700,0,0,320,0,0,0,0,0,0,0,220,2.5,1,1,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.3,74,101700,0,0,351,0,0,0,0,0,0,0,140,1.3,9,9,16.1,3048,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,8.9,78,101700,0,0,317,0,0,0,0,0,0,0,140,0.0,2,2,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,8.9,84,101700,0,0,302,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.8,86,101700,0,0,300,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,101700,0,0,295,0,0,0,0,0,0,0,150,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,101700,0,0,295,0,0,0,0,0,0,0,130,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,101600,0,0,295,0,0,0,0,0,0,0,130,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.4,90,101600,0,0,295,0,0,0,0,0,0,0,130,2.0,0,0,15.9,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,9.0,93,101600,0,0,296,0,0,0,0,0,0,0,130,1.6,0,0,14.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,9.5,92,101600,12,410,300,3,0,3,332,0,514,13,150,2.7,0,0,11.8,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,10.0,85,101600,202,1390,307,60,68,50,6627,461,5547,222,160,3.5,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,10.1,76,101600,428,1390,329,197,258,117,21857,13969,13089,568,170,3.2,3,3,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,10.7,70,101600,609,1390,339,358,498,139,40843,31598,15974,719,180,4.1,3,3,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,11.8,67,101500,733,1390,354,427,438,196,48566,31833,22389,1050,170,4.2,5,5,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,11.8,65,101400,791,1390,377,470,446,216,53597,33491,24782,1179,230,4.0,9,9,16.1,739,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,12.1,64,101300,779,1390,391,273,121,205,31158,8868,23543,1114,200,4.2,10,10,16.1,908,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,11.8,62,101300,697,1390,381,119,2,118,12753,250,17035,457,210,4.9,9,9,16.1,1070,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,12.2,65,101300,551,1390,380,59,0,59,6405,0,8982,230,210,3.1,9,9,16.1,1086,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,12.2,66,101200,352,1390,371,136,212,82,15206,7935,9239,388,220,3.1,8,8,16.1,1006,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,12.2,68,101200,121,1390,350,45,114,35,4873,0,3812,150,220,2.8,3,3,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,12.2,70,101200,0,2,333,0,0,0,0,0,0,0,220,2.5,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.3,76,101200,0,0,334,0,0,0,0,0,0,0,210,2.1,1,1,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.8,81,101200,0,0,358,0,0,0,0,0,0,0,210,2.0,8,8,16.1,3353,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,12.7,83,101200,0,0,323,0,0,0,0,0,0,0,180,1.3,0,0,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,12.3,88,101200,0,0,334,0,0,0,0,0,0,0,200,0.2,4,4,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.8,93,101200,0,0,322,0,0,0,0,0,0,0,200,2.1,1,1,16.1,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,12.7,93,101200,0,0,342,0,0,0,0,0,0,0,210,2.0,7,7,15.9,1128,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,12.2,93,101200,0,0,319,0,0,0,0,0,0,0,180,1.6,1,1,14.5,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,12.2,93,101200,0,0,339,0,0,0,0,0,0,0,120,2.6,7,7,14.5,3353,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,12.2,92,101100,0,0,314,0,0,0,0,0,0,0,130,2.5,0,0,14.3,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.2,90,101100,0,0,329,0,0,0,0,0,0,0,170,1.6,3,3,12.9,1097,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,12.1,90,101100,0,0,337,0,0,0,0,0,0,0,170,2.1,6,6,12.7,1104,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.5,89,101100,0,0,351,0,0,0,0,0,0,0,160,2.0,9,9,11.5,1414,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.0,80,101100,11,386,342,2,0,2,278,0,431,11,170,1.7,8,8,12.5,3353,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,9.9,79,101100,197,1391,325,36,0,36,3916,0,5813,152,140,3.2,3,3,9.5,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,9.4,74,101200,422,1391,329,132,52,117,14707,2826,12999,564,160,4.2,4,4,8.4,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,9.3,67,101100,604,1391,319,172,29,159,19415,1994,18061,820,160,4.6,0,0,11.5,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,8.4,55,101100,728,1391,343,150,0,150,15802,0,21239,582,170,4.5,3,3,12.9,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,8.8,57,101100,786,1391,378,174,4,171,18282,450,23881,668,160,4.1,10,10,13.1,2743,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,8.3,54,101000,773,1391,380,124,4,121,13148,451,17287,473,170,4.1,10,10,14.5,2743,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,8.3,54,100900,692,1391,379,70,0,70,7590,0,10460,273,160,4.1,10,10,14.3,2743,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,8.4,56,100900,546,1391,377,45,0,45,4897,0,6966,176,170,4.0,10,10,12.7,2778,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,8.7,58,100900,347,1391,377,38,0,38,4129,0,6046,154,160,3.6,10,10,11.2,3048,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,8.9,58,100900,117,1376,377,16,0,16,1776,0,2696,70,150,3.6,10,10,10.4,3048,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,8.9,58,100900,0,0,377,0,0,0,0,0,0,0,150,3.6,10,10,10.0,2976,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,8.9,58,100900,0,0,377,0,0,0,0,0,0,0,150,3.5,10,10,12.9,2420,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,8.9,58,100900,0,0,377,0,0,0,0,0,0,0,150,3.0,10,10,12.9,2286,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,9.0,59,100900,0,0,377,0,0,0,0,0,0,0,160,2.5,10,10,12.7,2303,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,9.5,63,101000,0,0,375,0,0,0,0,0,0,0,150,2.2,10,10,11.1,2402,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,10.2,74,101100,0,0,367,0,0,0,0,0,0,0,280,4.0,10,10,11.2,1714,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,8.8,89,101200,0,0,344,0,0,0,0,0,0,0,320,6.0,10,10,16.1,266,9,999999999,17,0.0000,0,88,999.000,0.3,1.0 +2005,11,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,8.2,93,101200,0,0,337,0,0,0,0,0,0,0,320,8.0,10,10,16.1,213,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.8,93,101300,0,0,335,0,0,0,0,0,0,0,330,6.2,10,10,16.1,213,9,999999999,16,0.0000,0,88,999.000,0.8,1.0 +2005,11,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.8,93,101300,0,0,335,0,0,0,0,0,0,0,330,6.1,10,10,15.7,213,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.8,93,101300,0,0,335,0,0,0,0,0,0,0,340,5.6,10,10,13.3,205,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.8,93,101300,0,0,335,0,0,0,0,0,0,0,330,4.5,10,10,16.1,152,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.8,93,101400,0,0,335,0,0,0,0,0,0,0,340,4.3,10,10,16.1,152,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,7.8,92,101400,9,363,326,1,0,1,91,0,145,3,340,5.0,9,9,16.1,579,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,7.9,89,101400,192,1392,322,52,137,33,5902,0,3746,145,340,4.8,8,8,16.1,3353,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,8.3,82,101400,417,1392,316,210,380,96,23660,18465,10875,464,340,6.3,4,4,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,8.4,76,101400,599,1392,306,404,747,83,47995,39852,9858,425,340,7.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,8.9,69,101400,722,1392,315,506,795,93,60909,45747,11245,497,350,7.3,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,9.0,64,101300,780,1392,334,553,807,100,66845,47771,12149,544,340,8.0,3,3,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,10.0,67,101300,768,1392,343,381,297,217,43240,22773,24724,1172,340,6.3,5,5,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.0,65,101200,687,1392,365,384,459,157,44053,30985,18154,832,340,6.8,9,9,16.1,3048,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,10.0,69,101200,541,1392,360,151,38,136,17006,2360,15404,686,340,7.0,9,9,16.1,3083,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.0,70,101200,343,1392,360,66,26,59,7542,785,6826,279,330,5.7,9,9,16.1,3370,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,9.7,69,101200,113,1362,358,34,42,31,3728,0,3362,131,340,5.7,9,9,16.1,3523,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,9.3,69,101200,0,0,348,0,0,0,0,0,0,0,340,5.6,8,8,16.1,3658,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,8.3,67,101200,0,0,328,0,0,0,0,0,0,0,340,4.5,3,3,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,8.2,67,101200,0,0,339,0,0,0,0,0,0,0,340,4.0,7,7,16.1,3962,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,7.8,67,101300,0,0,317,0,0,0,0,0,0,0,330,3.2,1,1,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,7.8,67,101400,0,0,349,0,0,0,0,0,0,0,330,0.6,9,9,16.1,3353,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,7.7,67,101300,0,0,341,0,0,0,0,0,0,0,330,4.9,8,8,16.1,3353,9,999999999,16,0.0000,0,88,999.000,0.7,1.0 +2005,11,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,7.3,67,101300,0,0,326,0,0,0,0,0,0,0,350,3.7,5,5,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,7.7,69,101200,0,0,338,0,0,0,0,0,0,0,330,4.9,8,8,16.1,3658,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,7.2,72,101000,0,0,316,0,0,0,0,0,0,0,330,7.3,3,3,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,7.1,71,101000,0,0,333,0,0,0,0,0,0,0,350,7.8,8,8,16.1,2743,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,6.7,70,100900,0,0,302,0,0,0,0,0,0,0,330,7.8,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,6.7,71,101000,0,0,301,0,0,0,0,0,0,0,330,5.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,6.6,69,100900,0,0,303,0,0,0,0,0,0,0,330,6.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,6.2,66,101000,8,339,303,6,47,6,705,0,676,25,340,5.1,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,6.7,62,101000,188,1392,311,101,410,46,11162,1343,5057,201,340,4.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,6.8,60,101200,412,1392,313,266,668,68,30760,27408,7921,329,130,1.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,7.2,55,101300,593,1392,335,415,782,81,49309,41883,9708,418,180,2.5,3,3,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,7.3,54,101300,717,1392,334,521,842,87,63059,48322,10603,466,180,2.1,2,2,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,7.8,52,101200,775,1392,329,570,860,91,69372,50240,11162,496,100,2.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,7.8,48,101200,763,1392,334,558,849,93,67698,49698,11299,502,100,1.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,7.8,47,101200,681,1392,336,486,811,89,58343,46113,10762,472,180,0.2,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,7.9,46,101200,537,1392,339,361,722,83,42380,37154,9755,417,180,2.0,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,8.6,49,101300,338,1392,337,201,542,69,22738,18383,7868,325,180,1.8,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,8.9,53,101400,110,1347,334,49,189,34,5343,0,3732,147,240,4.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,9.1,57,101400,0,0,329,0,0,0,0,0,0,0,240,6.4,0,0,15.9,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,7.1,54,101500,0,0,322,0,0,0,0,0,0,0,230,7.5,0,0,14.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,6.8,55,101500,0,0,319,0,0,0,0,0,0,0,240,5.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,7.3,61,101600,0,0,315,0,0,0,0,0,0,0,250,2.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,7.7,70,101600,0,0,318,0,0,0,0,0,0,0,100,1.6,2,2,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,7.2,74,101600,0,0,301,0,0,0,0,0,0,0,100,1.9,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,7.1,74,101600,0,0,300,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,6.7,81,101600,0,0,293,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.7,90,101500,0,0,287,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,6.8,90,101500,0,0,287,0,0,0,0,0,0,0,290,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,7.1,89,101500,0,0,289,0,0,0,0,0,0,0,290,1.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,6.6,90,101600,0,0,286,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.1,93,101600,0,0,282,0,0,0,0,0,0,0,290,0.0,0,0,15.9,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,6.2,93,101600,7,317,282,5,28,5,569,0,553,20,290,0.0,0,0,14.5,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,7.0,92,101600,183,1393,286,76,231,46,8394,537,5054,201,290,0.0,0,0,14.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,8.8,84,101700,407,1393,302,199,327,104,22263,16341,11660,500,180,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,8.4,69,101700,588,1393,313,341,489,135,38925,31069,15462,691,180,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,8.9,64,101700,712,1393,321,410,450,180,46800,32379,20634,957,180,0.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,8.9,58,101600,770,1393,327,338,185,236,38179,14864,26755,1276,180,0.2,0,0,15.9,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,8.9,55,101500,758,1393,332,397,388,185,45557,28149,21397,1000,180,1.6,0,0,14.7,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,8.9,58,101500,677,1393,328,434,635,126,50666,39751,14753,663,180,2.1,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,8.8,52,101500,532,1393,335,338,625,100,39055,34053,11541,501,170,2.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,8.5,50,101400,334,1393,336,184,474,71,20809,16143,8008,331,150,2.6,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,8.0,49,101400,107,1334,335,49,213,32,5305,0,3535,138,180,2.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,7.7,51,101400,0,0,330,0,0,0,0,0,0,0,180,2.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,7.1,54,101400,0,0,322,0,0,0,0,0,0,0,180,2.1,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,6.2,56,101500,0,0,314,0,0,0,0,0,0,0,190,2.1,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,6.7,63,101500,0,0,309,0,0,0,0,0,0,0,150,2.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,6.7,70,101600,0,0,302,0,0,0,0,0,0,0,140,2.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,6.7,72,101600,0,0,300,0,0,0,0,0,0,0,150,2.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.7,75,101600,0,0,298,0,0,0,0,0,0,0,120,1.6,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,6.6,77,101600,0,0,296,0,0,0,0,0,0,0,140,2.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.2,81,101600,0,0,291,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,7.3,86,101600,0,0,292,0,0,0,0,0,0,0,170,2.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,7.7,86,101600,0,0,294,0,0,0,0,0,0,0,170,2.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.3,90,101600,0,0,290,0,0,0,0,0,0,0,150,2.7,0,0,15.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.8,93,101700,0,0,300,0,0,0,0,0,0,0,140,3.0,2,2,12.7,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,7.9,93,101700,6,294,291,5,41,5,599,0,580,21,150,2.6,0,0,11.5,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,8.4,89,101800,178,1394,296,94,396,43,10375,0,4792,190,170,2.6,0,0,13.3,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,8.9,81,101900,402,1394,304,257,669,64,29762,25324,7425,306,230,2.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,8.8,70,101900,583,1394,314,405,789,75,48328,40321,9006,385,210,2.0,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,7.8,58,101900,706,1394,321,511,851,80,62144,47367,9719,424,220,1.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,7.8,55,101900,764,1394,324,561,873,83,68715,49691,10130,446,180,2.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,7.9,50,101800,753,1394,346,551,869,82,67388,49233,10050,442,190,2.5,3,3,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,8.4,49,101800,672,1394,388,456,726,106,53868,43034,12537,556,190,5.2,10,10,16.1,2250,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,9.6,54,101800,527,1394,389,205,135,154,22846,8947,17227,773,220,5.7,10,10,16.1,1981,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,10.5,60,101900,330,1394,375,93,29,86,10297,1110,9565,402,220,5.7,9,9,16.1,1981,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,11.1,67,101900,104,1323,370,24,4,23,2572,277,3807,101,220,6.0,9,9,16.1,1981,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,11.1,71,101900,0,0,366,0,0,0,0,0,0,0,220,6.0,9,9,16.1,1998,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.1,81,102000,0,0,355,0,0,0,0,0,0,0,210,4.0,9,9,16.1,2134,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.1,83,102000,0,0,333,0,0,0,0,0,0,0,190,3.5,5,5,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.0,83,102100,0,0,353,0,0,0,0,0,0,0,190,2.7,9,9,16.1,1829,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.6,84,102200,0,0,349,0,0,0,0,0,0,0,140,0.2,9,9,16.1,1864,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,10.5,90,102200,0,0,331,0,0,0,0,0,0,0,140,1.6,7,7,15.7,2134,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,9.5,87,102200,0,0,303,0,0,0,0,0,0,0,120,2.1,0,0,12.5,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,9.7,95,102200,0,0,298,0,0,0,0,0,0,0,170,1.5,0,0,7.7,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,7.9,98,102200,0,0,287,0,0,0,0,0,0,0,140,0.0,0,0,4.6,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,7.9,99,102200,0,0,331,0,0,0,0,0,0,0,310,0.0,10,10,3.9,91,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.0,94,102200,0,0,341,0,0,0,0,0,0,0,300,2.1,10,10,1.2,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,8.2,97,102300,0,0,334,0,0,0,0,0,0,0,310,1.6,10,10,0.7,30,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,8.2,95,102300,0,0,335,0,0,0,0,0,0,0,350,2.3,10,10,7.7,536,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,9.0,100,102300,5,271,337,5,39,5,546,0,530,19,360,2.9,10,10,0.4,54,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,9.5,95,102400,173,1394,343,59,253,28,6748,0,3162,121,310,1.7,10,10,2.2,40,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,10.7,96,102500,396,1394,340,72,0,72,7782,0,11128,291,310,4.4,9,9,3.6,91,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,8.3,66,102500,577,1394,315,346,620,89,40684,33492,10526,455,330,4.3,0,0,13.3,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,3.9,41,102400,701,1394,322,517,869,80,62846,49774,9722,423,340,5.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,3.8,38,102300,759,1394,326,492,618,155,57393,43292,18205,838,330,7.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,3.5,38,102200,748,1394,325,427,409,208,48627,32151,23787,1118,330,7.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,5.1,43,102200,667,1394,326,361,365,187,40855,27460,21224,981,310,5.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,5.6,42,102200,523,1394,331,339,682,83,39696,35496,9786,418,340,5.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,5.5,43,102200,326,1394,329,181,485,68,20458,16253,7683,316,320,4.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,5.3,45,102200,101,1311,324,50,278,30,5486,0,3296,128,330,3.8,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,5.0,47,102200,0,0,320,0,0,0,0,0,0,0,330,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,5.1,53,102300,0,0,311,0,0,0,0,0,0,0,330,1.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,5.5,71,102200,0,0,294,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,5.1,75,102300,0,0,289,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,5.5,80,102300,0,0,287,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,4.9,81,102300,0,0,283,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,4.4,74,102300,0,0,286,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,4.4,80,102300,0,0,282,0,0,0,0,0,0,0,330,0.0,0,0,15.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,4.4,86,102400,0,0,278,0,0,0,0,0,0,0,330,0.0,0,0,13.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,4.4,91,102300,0,0,274,0,0,0,0,0,0,0,310,0.0,0,0,9.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,4.4,90,102300,0,0,275,0,0,0,0,0,0,0,310,0.0,0,0,11.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,4.4,93,102400,0,0,273,0,0,0,0,0,0,0,310,0.0,0,0,12.7,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,4.3,96,102400,0,0,271,0,0,0,0,0,0,0,310,0.0,0,0,10.7,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.8,4.1,95,102400,4,249,270,3,0,3,306,0,479,12,310,0.0,0,0,7.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,5.7,85,102500,169,1395,285,56,86,46,6193,59,5073,202,310,0.0,0,0,13.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.6,74,102600,391,1395,298,190,318,101,21215,15677,11319,483,310,0.2,0,0,14.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,6.0,58,102600,572,1395,311,363,643,100,42374,36745,11640,507,310,1.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,4.9,47,102500,696,1395,319,378,375,191,42889,28446,21733,1009,270,2.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,3.9,38,102400,754,1395,327,446,463,196,51102,35418,22557,1056,320,2.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,3.8,34,102400,743,1395,334,427,423,202,48709,32844,23159,1086,320,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,3.0,31,102300,662,1395,336,435,703,101,51597,42653,12041,530,320,2.8,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,1.2,27,102200,519,1395,335,300,503,114,34323,30364,13020,568,300,4.4,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,1.9,30,102200,322,1395,332,141,259,81,15703,10210,9076,378,330,3.0,0,0,15.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,3.1,36,102200,98,1299,327,19,0,19,2033,0,3102,81,310,2.2,0,0,13.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,4.1,43,102200,0,0,320,0,0,0,0,0,0,0,310,1.5,0,0,11.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,5.6,53,102200,0,0,314,0,0,0,0,0,0,0,320,1.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,5.7,52,102200,0,0,316,0,0,0,0,0,0,0,310,2.1,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,6.0,58,102200,0,0,311,0,0,0,0,0,0,0,330,2.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,5.6,58,102200,0,0,308,0,0,0,0,0,0,0,290,1.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,5.7,62,102200,0,0,304,0,0,0,0,0,0,0,330,2.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,6.0,64,102200,0,0,304,0,0,0,0,0,0,0,310,3.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,5.7,67,102200,0,0,299,0,0,0,0,0,0,0,330,0.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,6.0,74,102200,0,0,295,0,0,0,0,0,0,0,330,1.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,5.7,78,102200,0,0,290,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,6.1,83,102200,0,0,288,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,6.1,89,102200,0,0,284,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,6.1,90,102200,0,0,284,0,0,0,0,0,0,0,330,0.0,0,0,15.9,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.6,6.3,92,102200,4,226,283,4,49,4,462,0,447,16,330,0.0,0,0,14.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.8,81,102300,164,1395,299,87,436,36,9688,0,3981,155,330,0.0,0,0,15.7,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,7.9,63,102300,386,1395,315,246,707,51,28984,23297,5972,242,330,0.4,0,0,13.3,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,8.4,54,102300,567,1395,330,325,496,124,37205,30200,14233,630,330,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,9.0,52,102200,691,1395,336,409,480,171,46662,33835,19596,903,300,3.5,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,10.0,48,102000,749,1395,348,437,438,202,49719,32634,23078,1085,320,6.8,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,9.9,42,101900,738,1395,357,460,560,164,53118,38408,18976,877,320,7.4,0,0,16.1,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,9.3,37,101800,658,1395,364,471,850,71,57276,44371,8625,371,330,9.2,0,0,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,8.2,35,101700,514,1395,362,352,782,64,41960,35929,7656,320,330,8.5,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,7.8,35,101700,318,1395,360,197,639,52,22721,16451,6002,242,340,10.6,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,7.5,36,101700,96,1284,355,47,281,28,5134,0,3041,118,340,9.3,0,0,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,7.1,37,101700,0,0,350,0,0,0,0,0,0,0,340,8.3,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,6.7,38,101700,0,0,345,0,0,0,0,0,0,0,340,8.8,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,6.6,41,101700,0,0,339,0,0,0,0,0,0,0,330,8.5,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,6.1,41,101700,0,0,336,0,0,0,0,0,0,0,340,6.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,6.0,42,101700,0,0,333,0,0,0,0,0,0,0,330,9.3,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,5.5,42,101800,0,0,330,0,0,0,0,0,0,0,340,9.4,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,4.3,40,101800,0,0,326,0,0,0,0,0,0,0,340,10.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,3.8,40,101800,0,0,323,0,0,0,0,0,0,0,340,8.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,3.3,43,101900,0,0,316,0,0,0,0,0,0,0,340,8.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,3.3,44,101900,0,0,313,0,0,0,0,0,0,0,340,7.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,3.2,46,101900,0,0,311,0,0,0,0,0,0,0,350,6.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,2.7,46,102000,0,0,308,0,0,0,0,0,0,0,340,6.6,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,2.1,45,102000,0,0,305,0,0,0,0,0,0,0,340,5.9,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,1.6,43,102000,3,203,305,4,56,4,462,0,449,16,340,7.1,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,1.1,40,102100,159,1396,307,70,334,32,7881,0,3609,139,340,6.3,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,1.0,36,102100,381,1396,315,239,614,71,27381,25560,8205,340,350,7.1,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,0.7,31,102100,562,1396,324,399,829,66,48049,42767,7913,333,360,6.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,0.9,28,102100,686,1396,331,441,648,123,51809,42459,14486,649,20,6.6,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,-0.5,23,102000,744,1396,335,519,777,105,62382,49346,12690,566,360,6.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,0.0,22,101900,733,1396,343,542,863,88,65806,52245,10752,472,350,4.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,0.1,21,101900,653,1396,348,416,640,117,48800,41176,13766,612,30,4.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,0.7,22,101900,510,1396,348,327,671,82,38296,35509,9608,408,360,3.9,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,1.0,24,101800,314,1396,343,204,664,55,23412,19241,6273,253,340,2.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,1.7,28,101800,93,1274,335,47,281,29,5176,0,3140,122,340,0.9,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,2.5,34,101900,0,0,327,0,0,0,0,0,0,0,180,0.4,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,5.0,46,101900,0,0,320,0,0,0,0,0,0,0,180,2.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,5.2,59,101900,0,0,305,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,6.7,70,102000,0,0,302,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.6,74,102000,0,0,298,0,0,0,0,0,0,0,180,0.0,0,0,15.9,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,6.2,78,102100,0,0,293,0,0,0,0,0,0,0,310,0.0,0,0,14.3,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.6,83,102100,0,0,291,0,0,0,0,0,0,0,310,0.0,0,0,13.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,6.0,80,102200,0,0,290,0,0,0,0,0,0,0,310,0.0,0,0,14.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,5.5,82,102200,0,0,286,0,0,0,0,0,0,0,310,0.4,0,0,11.8,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,5.1,77,102200,0,0,287,0,0,0,0,0,0,0,310,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,5.5,79,102200,0,0,288,0,0,0,0,0,0,0,340,1.9,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,4.9,75,102200,0,0,288,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,4.0,78,102200,0,0,282,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,4.5,84,102200,2,183,279,3,27,3,354,0,348,12,330,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,5.3,76,102300,155,1396,290,82,377,41,9051,0,4476,176,330,0.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,3.2,50,102300,376,1396,305,244,677,62,28267,25404,7193,295,330,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,2.7,41,102300,557,1396,314,394,804,74,46955,42143,8786,373,340,1.6,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,2.1,34,102300,681,1396,325,503,876,77,61220,49874,9328,403,300,2.7,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,1.7,29,102200,739,1396,332,555,896,80,67914,52651,9833,430,360,3.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,1.6,27,102100,729,1396,340,545,895,79,66747,52224,9652,420,320,2.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,1.2,25,102000,649,1396,341,477,871,73,57959,48609,8859,380,320,2.5,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,2.2,26,102000,506,1396,345,355,801,65,42280,38659,7774,325,340,1.6,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,2.8,29,102000,310,1396,340,197,645,53,22582,17722,6151,248,340,2.4,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,3.4,34,102000,91,1262,332,44,259,28,4853,0,3024,117,340,1.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,4.3,43,102000,0,0,321,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,4.0,49,102000,0,0,311,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,4.5,56,102000,0,0,304,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,5.0,64,102000,0,0,299,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,5.0,67,102000,0,0,296,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,5.0,74,102000,0,0,289,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,4.9,75,102000,0,0,288,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,4.5,80,102000,0,0,282,0,0,0,0,0,0,0,340,0.0,0,0,15.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,4.9,88,102000,0,0,278,0,0,0,0,0,0,0,340,0.0,0,0,14.7,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,3.9,83,102000,0,0,277,0,0,0,0,0,0,0,340,0.0,0,0,15.7,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,3.9,89,102000,0,0,273,0,0,0,0,0,0,0,340,0.0,0,0,13.3,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,3.8,89,102000,0,0,273,0,0,0,0,0,0,0,340,0.0,0,0,15.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,3.3,89,102100,0,0,270,0,0,0,0,0,0,0,340,0.0,0,0,14.3,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.3,3.6,89,102100,2,162,272,0,0,0,0,0,0,0,340,0.0,0,0,12.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,5.7,83,102200,150,1397,286,45,57,39,4933,0,4272,168,340,0.0,0,0,13.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,6.1,63,102200,371,1397,306,230,585,74,26121,23253,8478,352,340,0.0,0,0,14.5,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,6.2,54,102200,552,1397,316,399,836,69,47683,41612,8244,348,340,0.0,0,0,14.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,6.6,46,102200,676,1397,331,455,698,118,53452,43493,13857,619,340,0.2,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,6.0,38,102100,735,1397,340,559,917,77,68508,51802,9466,413,340,1.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,5.4,36,102000,724,1397,341,549,910,78,67144,51615,9553,416,340,2.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,4.0,32,102000,645,1397,342,478,870,77,57748,48257,9296,400,310,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,4.3,32,101900,502,1397,342,355,797,69,42032,38373,8175,343,310,2.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,4.2,32,101900,307,1397,342,195,635,56,22298,17387,6385,258,320,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,4.5,35,101900,88,1249,337,44,250,28,4760,0,3052,119,320,0.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,5.1,40,101900,0,0,331,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,6.2,55,101900,0,0,315,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,6.8,70,102000,0,0,303,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,7.1,72,102000,0,0,302,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,6.8,78,102000,0,0,296,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,7.1,83,102000,0,0,294,0,0,0,0,0,0,0,10,0.0,0,0,15.9,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,6.8,84,102100,0,0,291,0,0,0,0,0,0,0,10,0.0,0,0,13.9,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,7.1,93,102100,0,0,287,0,0,0,0,0,0,0,10,0.0,0,0,9.5,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,6.0,93,102100,0,0,281,0,0,0,0,0,0,0,10,0.0,0,0,8.2,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,4.9,92,102200,0,0,276,0,0,0,0,0,0,0,10,0.0,0,0,9.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,4.4,89,102200,0,0,276,0,0,0,0,0,0,0,10,0.0,0,0,8.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,4.5,90,102200,0,0,276,0,0,0,0,0,0,0,10,0.2,0,0,9.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,4.9,93,102300,0,0,276,0,0,0,0,0,0,0,10,1.9,0,0,10.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.2,4.0,92,102300,1,141,272,0,0,0,0,0,0,0,10,0.0,0,0,8.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,6.2,89,102400,146,1398,284,77,368,39,8484,0,4284,168,10,0.0,0,0,11.3,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,6.6,63,102400,366,1398,309,244,708,58,28217,23972,6742,275,290,0.0,0,0,11.6,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,6.1,51,102400,547,1398,320,396,835,70,47261,41535,8319,351,290,0.0,0,0,14.3,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,6.1,43,102400,671,1398,332,506,901,74,61567,49245,8974,387,290,0.3,0,0,13.3,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,6.0,38,102300,730,1398,341,559,923,77,68454,52078,9454,412,290,2.7,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,5.5,33,102200,720,1398,349,550,921,76,67322,51875,9351,406,340,3.2,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,4.9,31,102100,641,1398,350,481,893,72,58324,48306,8757,375,320,3.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,4.3,30,102100,499,1398,347,358,824,64,42570,38626,7676,320,320,3.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,4.1,30,102000,304,1398,346,197,671,52,22665,17040,5937,238,350,3.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,4.2,33,102000,86,1235,340,44,281,27,4820,0,2946,114,320,2.4,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,4.5,38,102000,0,0,332,0,0,0,0,0,0,0,320,1.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,5.1,55,102000,0,0,309,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,5.6,65,102000,0,0,301,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,5.7,72,102100,0,0,295,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,6.0,80,102100,0,0,290,0,0,0,0,0,0,0,320,0.0,0,0,15.9,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,5.6,84,102100,0,0,285,0,0,0,0,0,0,0,320,0.0,0,0,14.3,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,5.6,86,102100,0,0,283,0,0,0,0,0,0,0,320,0.0,0,0,12.5,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.6,5.5,87,102100,0,0,283,0,0,0,0,0,0,0,320,0.0,0,0,9.5,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,4.4,90,102100,0,0,275,0,0,0,0,0,0,0,320,0.0,0,0,5.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,3.4,94,102100,0,0,268,0,0,0,0,0,0,0,350,0.0,0,0,5.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,3.8,93,102000,0,0,270,0,0,0,0,0,0,0,350,0.0,0,0,9.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,3.2,93,102000,0,0,267,0,0,0,0,0,0,0,350,0.0,0,0,8.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.8,2.7,93,102100,0,0,265,0,0,0,0,0,0,0,350,0.0,0,0,10.9,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.6,2.5,93,102100,1,121,264,0,0,0,0,0,0,0,350,0.0,0,0,8.2,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.2,4.6,90,102100,141,1398,276,78,399,37,8550,0,4133,162,350,0.0,0,0,9.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,5.9,69,102100,361,1398,299,246,745,54,28665,24047,6289,255,350,0.0,0,0,11.8,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,4.3,50,102100,542,1398,311,399,862,65,47813,42400,7761,325,350,0.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,3.8,41,102100,666,1398,322,507,914,72,61802,50409,8763,376,350,2.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,3.4,36,102000,725,1398,329,560,935,75,68709,53318,9178,398,330,2.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,4.3,34,101900,715,1398,338,551,931,74,67455,52548,9142,396,350,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,3.3,30,101800,637,1398,341,480,898,72,58225,48935,8689,372,350,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,3.2,30,101800,495,1398,341,357,830,64,42477,38895,7573,315,20,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,3.6,33,101800,300,1398,336,196,673,52,22509,16914,5927,238,20,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,4.0,38,101800,72,1051,328,43,271,29,4574,0,3092,122,20,0.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,4.9,49,101800,0,0,316,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,4.5,58,101800,0,0,302,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,4.9,68,101800,0,0,294,0,0,0,0,0,0,0,20,0.0,0,0,15.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,4.1,68,101900,0,0,290,0,0,0,0,0,0,0,20,0.0,0,0,14.3,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,5.5,83,101900,0,0,285,0,0,0,0,0,0,0,20,0.0,0,0,12.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,4.9,83,101900,0,0,282,0,0,0,0,0,0,0,20,0.0,0,0,11.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,4.3,85,102000,0,0,277,0,0,0,0,0,0,0,20,0.0,0,0,9.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,3.8,86,102000,0,0,274,0,0,0,0,0,0,0,360,0.0,0,0,8.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,3.2,92,102000,0,0,268,0,0,0,0,0,0,0,360,0.0,0,0,8.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,2.7,89,102000,0,0,267,0,0,0,0,0,0,0,360,0.0,0,0,9.7,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,2.2,89,102000,0,0,265,0,0,0,0,0,0,0,360,0.0,0,0,9.7,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,2.2,89,102000,0,0,265,0,0,0,0,0,0,0,360,0.0,0,0,9.7,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.8,2.1,89,102100,0,0,264,0,0,0,0,0,0,0,360,0.0,0,0,9.5,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.6,1.9,89,102100,1,102,264,0,0,0,0,0,0,0,360,0.0,0,0,8.2,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.3,3.5,82,102200,137,1399,275,71,316,40,7724,0,4360,172,360,0.2,0,0,10.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,4.9,62,102200,357,1399,300,233,654,66,26616,23664,7563,311,360,2.0,0,0,14.7,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,4.3,50,102200,537,1399,311,384,796,78,45290,41349,9264,394,330,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,4.0,42,102200,662,1399,321,496,884,78,60001,49612,9505,411,330,2.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,4.3,38,102100,721,1399,330,549,906,82,66820,52349,9990,436,350,2.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,3.9,35,102000,711,1399,335,540,901,82,65608,52015,9956,434,330,2.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,4.0,33,102000,633,1399,340,470,865,78,56474,47924,9458,407,340,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,4.3,32,102000,492,1399,342,348,790,70,40970,37757,8267,347,340,2.7,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,4.1,33,102000,297,1399,340,188,621,56,21415,16362,6413,259,340,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,3.9,35,101900,70,1037,333,39,222,28,4219,0,3043,120,30,2.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,4.0,40,101900,0,0,324,0,0,0,0,0,0,0,30,1.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,4.4,56,102000,0,0,304,0,0,0,0,0,0,0,30,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,4.5,66,102000,0,0,294,0,0,0,0,0,0,0,30,0.0,0,0,15.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,4.9,69,102000,0,0,293,0,0,0,0,0,0,0,30,0.0,0,0,14.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,4.5,78,102000,0,0,284,0,0,0,0,0,0,0,30,0.0,0,0,14.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,5.1,87,102000,0,0,280,0,0,0,0,0,0,0,30,0.0,0,0,11.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,5.5,93,102000,0,0,279,0,0,0,0,0,0,0,30,0.0,0,0,9.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,4.3,92,102100,0,0,273,0,0,0,0,0,0,0,30,0.0,0,0,9.7,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,3.3,93,102100,0,0,267,0,0,0,0,0,0,0,30,0.0,0,0,9.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,3.0,93,102100,0,0,266,0,0,0,0,0,0,0,330,0.0,0,0,4.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.6,2.5,93,102100,0,0,264,0,0,0,0,0,0,0,330,0.0,0,0,4.3,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.3,1.7,89,102100,0,0,262,0,0,0,0,0,0,0,330,0.0,0,0,4.5,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.0,2.0,93,102100,0,0,261,0,0,0,0,0,0,0,330,0.0,0,0,8.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.0,1.0,93,102100,0,83,257,0,0,0,0,0,0,0,330,0.0,0,0,4.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.1,3.4,89,102200,133,1399,271,67,308,38,7305,0,4122,162,330,0.0,0,0,8.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,3.8,62,102200,352,1399,294,226,646,63,25873,22768,7277,298,330,0.0,0,0,11.3,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,2.7,48,102200,533,1399,305,375,786,76,44334,40767,9031,383,330,0.2,0,0,11.5,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,1.8,38,102100,657,1399,316,485,862,80,58493,49222,9667,418,330,2.2,0,0,13.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,2.9,35,102000,717,1399,328,537,884,84,65192,51823,10261,449,20,2.3,0,0,13.9,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,3.0,32,102000,707,1399,333,528,879,84,64040,51335,10223,446,20,0.0,0,0,10.2,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,1.3,27,101900,629,1399,336,460,845,80,55205,47763,9608,414,330,0.2,0,0,14.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,2.8,30,101900,488,1399,337,339,766,71,39842,37141,8404,352,330,2.0,0,0,11.5,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,3.2,34,101900,295,1399,332,181,592,57,20609,15723,6475,262,300,1.4,0,0,12.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,3.7,39,101800,68,1024,324,37,200,28,3987,0,2957,117,300,0.7,0,0,12.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,4.5,49,101800,0,0,314,0,0,0,0,0,0,0,300,0.0,0,0,12.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,5.0,60,101900,0,0,302,0,0,0,0,0,0,0,300,0.0,0,0,13.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,5.0,69,101900,0,0,294,0,0,0,0,0,0,0,300,0.0,0,0,14.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,5.0,75,101900,0,0,289,0,0,0,0,0,0,0,300,0.0,0,0,14.3,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,4.9,80,101900,0,0,284,0,0,0,0,0,0,0,300,0.0,0,0,12.7,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,4.3,83,101900,0,0,279,0,0,0,0,0,0,0,300,0.0,0,0,11.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,3.3,83,101900,0,0,274,0,0,0,0,0,0,0,300,0.0,0,0,9.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,3.3,89,101900,0,0,270,0,0,0,0,0,0,0,330,0.0,0,0,8.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,3.2,93,101900,0,0,267,0,0,0,0,0,0,0,330,0.0,0,0,7.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.5,2.9,96,101900,0,0,264,0,0,0,0,0,0,0,330,0.0,0,0,5.3,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.8,2.7,93,101900,0,0,265,0,0,0,0,0,0,0,330,0.0,0,0,5.2,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.2,1.7,90,101900,0,0,262,0,0,0,0,0,0,0,330,0.0,0,0,7.7,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.9,1.8,93,101900,0,0,261,0,0,0,0,0,0,0,330,0.0,0,0,5.2,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.5,2.4,93,101900,0,64,264,0,0,0,0,0,0,0,330,0.0,0,0,8.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,4.2,91,102000,129,1400,273,62,254,39,6745,0,4220,166,330,0.2,0,0,8.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,6.0,74,102000,347,1400,295,215,582,71,24408,21237,8082,334,330,2.1,0,0,14.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,4.9,56,102000,528,1400,307,361,720,90,42063,38786,10486,450,320,2.2,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,4.0,45,101900,652,1400,316,465,773,105,54890,46968,12425,548,340,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,4.3,40,101800,712,1400,326,517,799,111,61437,49898,13176,588,300,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,3.8,34,101800,703,1400,335,513,816,103,61167,49987,12333,547,340,1.6,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,3.3,30,101700,626,1400,341,457,844,80,54781,46993,9578,412,340,2.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,3.3,30,101700,485,1400,341,338,774,70,39762,36882,8212,344,320,2.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,3.3,32,101700,292,1400,337,182,613,54,20724,15378,6193,249,340,2.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,3.6,36,101600,66,1012,330,38,230,27,4042,0,2887,114,360,1.8,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,4.0,43,101600,0,0,319,0,0,0,0,0,0,0,360,1.3,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,4.5,60,101700,0,0,300,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,5.1,65,101700,0,0,298,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,5.5,75,101700,0,0,292,0,0,0,0,0,0,0,360,0.0,0,0,15.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,5.0,80,101800,0,0,285,0,0,0,0,0,0,0,360,0.0,0,0,12.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,4.9,86,101800,0,0,280,0,0,0,0,0,0,0,300,0.0,0,0,12.7,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,4.0,87,101800,0,0,275,0,0,0,0,0,0,0,300,0.0,0,0,11.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,4.2,88,101800,0,0,275,0,0,0,0,0,0,0,300,0.0,0,0,9.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,2.8,86,101800,0,0,270,0,0,0,0,0,0,0,300,0.0,0,0,8.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,2.8,86,101800,0,0,269,0,0,0,0,0,0,0,300,0.2,0,0,8.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,2.9,93,101700,0,0,266,0,0,0,0,0,0,0,300,1.3,0,0,8.2,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.1,4.0,93,101700,0,0,271,0,0,0,0,0,0,0,310,0.2,0,0,10.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,4.3,92,101700,0,0,273,0,0,0,0,0,0,0,310,1.3,0,0,12.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,3.4,89,101800,0,47,270,0,0,0,0,0,0,0,310,0.0,0,0,12.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,4.1,90,101800,124,1400,274,63,319,35,6927,0,3837,150,320,0.3,0,0,10.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,5.5,67,101800,343,1400,298,218,658,57,25131,20706,6602,268,320,2.7,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,5.0,54,101800,523,1400,310,366,792,70,43387,38871,8292,349,330,3.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,4.9,47,101700,648,1400,319,472,858,75,57112,47065,9122,392,320,3.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,4.3,38,101600,708,1400,330,523,878,79,63688,50136,9688,422,330,2.8,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,3.4,32,101500,699,1400,337,515,871,80,62573,49998,9730,423,320,4.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,3.8,32,101500,622,1400,339,448,839,76,53948,45842,9129,391,330,3.1,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,2.8,29,101400,482,1400,340,330,763,68,38965,36015,7998,334,310,3.0,0,0,16.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,3.2,32,101400,289,1400,336,177,601,53,20161,14507,6026,242,310,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,3.7,37,101400,65,1000,328,36,227,26,3889,0,2773,109,310,0.9,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,4.4,46,101400,0,0,318,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,4.4,58,101400,0,0,302,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,4.4,66,101400,0,0,293,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,4.4,69,101500,0,0,291,0,0,0,0,0,0,0,90,0.0,0,0,15.7,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,4.5,75,101500,0,0,286,0,0,0,0,0,0,0,90,0.0,0,0,12.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,5.0,80,101500,0,0,285,0,0,0,0,0,0,0,90,0.0,0,0,12.3,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,4.9,85,101500,0,0,280,0,0,0,0,0,0,0,90,0.0,0,0,8.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,4.3,83,101500,0,0,279,0,0,0,0,0,0,0,90,0.2,0,0,8.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,3.8,86,101600,0,0,275,0,0,0,0,0,0,0,90,1.3,0,0,8.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,3.2,89,101600,0,0,270,0,0,0,0,0,0,0,90,0.0,0,0,8.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,2.2,86,101600,0,0,267,0,0,0,0,0,0,0,90,0.0,0,0,9.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,2.1,85,101700,0,0,267,0,0,0,0,0,0,0,90,0.0,0,0,11.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,1.2,80,101700,0,0,266,0,0,0,0,0,0,0,110,0.0,0,0,15.9,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.1,1.9,86,101700,0,30,265,0,0,0,0,0,0,0,110,0.0,0,0,14.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,3.3,83,101800,121,1401,274,61,313,34,6656,0,3717,145,110,0.2,0,0,11.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,3.4,65,101800,338,1401,289,177,422,76,19965,16132,8545,354,110,1.6,0,0,10.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,4.5,57,101800,519,1401,303,257,358,125,29126,22096,14154,622,70,1.9,0,0,12.7,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,5.7,57,101800,644,1401,310,288,267,165,32695,18973,18862,861,250,0.2,0,0,11.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,6.1,53,101800,704,1401,317,275,124,213,30969,9779,24093,1130,250,1.3,0,0,9.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,6.0,51,101700,696,1401,319,303,182,213,34068,14401,24040,1126,300,0.2,0,0,9.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,5.6,50,101700,619,1401,319,167,14,161,17466,1335,23094,627,300,1.6,0,0,9.5,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,5.7,49,101600,479,1401,321,95,0,95,10096,46,14293,377,100,2.3,0,0,8.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,6.3,52,101600,287,1401,319,111,225,65,12402,6178,7261,297,100,0.0,0,0,8.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,6.7,58,101600,63,990,314,27,55,25,2897,0,2638,104,100,0.0,0,0,8.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,7.1,65,101600,0,0,309,0,0,0,0,0,0,0,100,0.0,0,0,8.2,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,6.2,70,101700,0,0,300,0,0,0,0,0,0,0,170,0.0,0,0,9.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,6.7,74,101700,0,0,298,0,0,0,0,0,0,0,170,0.0,0,0,9.7,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,6.7,74,101700,0,0,299,0,0,0,0,0,0,0,170,0.0,0,0,9.5,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,6.8,72,101800,0,0,301,0,0,0,0,0,0,0,170,0.2,0,0,8.4,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,7.3,75,101800,0,0,307,0,0,0,0,0,0,0,170,1.9,1,1,11.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.4,86,101800,0,0,311,0,0,0,0,0,0,0,170,0.0,3,3,15.7,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,8.9,82,101800,0,0,350,0,0,0,0,0,0,0,120,0.4,10,10,12.9,2824,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.9,80,101600,0,0,352,0,0,0,0,0,0,0,120,3.0,10,10,12.9,2268,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.8,80,101600,0,0,352,0,0,0,0,0,0,0,160,2.1,10,10,12.7,2151,9,999999999,17,0.0000,0,88,999.000,0.5,1.0 +2005,11,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.4,78,101500,0,0,351,0,0,0,0,0,0,0,180,2.2,10,10,10.7,2268,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,9.4,85,101500,0,0,351,0,0,0,0,0,0,0,140,3.2,10,10,6.8,2052,9,999999999,17,0.0000,0,88,999.000,0.5,1.0 +2005,11,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.4,83,101500,0,0,353,0,0,0,0,0,0,0,140,3.5,10,10,9.3,1386,9,999999999,17,0.0000,0,88,999.000,0.5,1.0 +2005,11,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.3,83,101500,0,12,352,0,0,0,0,0,0,0,130,2.8,10,10,6.1,1026,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,9.0,86,101500,116,1401,348,25,0,25,2743,32,4122,109,140,3.1,10,10,1.8,671,9,999999999,17,0.0000,0,88,999.000,3.6,1.0 +2005,11,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,10.0,89,101500,333,1401,351,19,0,19,2142,44,3160,78,190,2.1,10,10,3.8,949,9,999999999,18,0.0000,0,88,999.000,0.7,1.0 +2005,11,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,11.0,94,101500,514,1401,353,11,0,11,1306,0,1914,45,170,5.1,10,10,1.2,610,9,999999999,20,0.0000,0,88,999.000,0.3,1.0 +2005,11,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,11.0,94,101500,639,1401,353,94,14,87,11183,768,10438,455,160,4.6,10,10,1.6,549,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,11.8,93,101400,700,1401,359,126,14,119,13466,1431,17154,461,150,2.6,10,10,2.8,213,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2005,11,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,13.0,94,101400,692,1401,366,159,205,58,19680,9896,7164,305,150,3.1,10,10,3.2,213,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,13.9,85,101400,616,1401,351,433,805,79,51606,39858,9488,410,150,3.6,6,6,5.4,274,9,999999999,25,0.0000,0,88,999.000,0.0,1.0 +2005,11,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,13.1,76,101400,477,1401,346,323,759,65,38006,30987,7707,322,150,2.9,3,3,11.8,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2005,11,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,9.6,61,101500,285,1401,338,176,634,48,20202,11682,5469,218,290,5.1,2,2,16.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,6.6,53,101500,62,980,326,36,262,24,3858,0,2626,103,300,4.8,1,1,16.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,6.0,56,101600,0,0,313,0,0,0,0,0,0,0,300,4.4,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,5.6,61,101700,0,0,305,0,0,0,0,0,0,0,300,3.0,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,5.5,69,101700,0,0,297,0,0,0,0,0,0,0,250,2.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,4.4,65,101800,0,0,295,0,0,0,0,0,0,0,220,2.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,4.4,74,101800,0,0,286,0,0,0,0,0,0,0,220,1.5,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,4.4,77,101900,0,0,299,0,0,0,0,0,0,0,200,1.3,4,4,16.1,77777,9,999999999,12,0.0000,0,88,999.000,2.8,1.0 +2005,11,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,4.5,79,101900,0,0,295,0,0,0,0,0,0,0,290,0.2,3,3,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,5.1,75,102000,0,0,324,0,0,0,0,0,0,0,290,1.9,9,9,16.1,1729,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,5.6,83,102100,0,0,314,0,0,0,0,0,0,0,310,0.3,8,8,16.1,2134,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,5.5,84,102100,0,0,294,0,0,0,0,0,0,0,310,2.3,2,2,16.1,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,4.9,93,102100,0,0,276,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.2,3.6,89,102200,0,0,271,0,0,0,0,0,0,0,310,0.4,0,0,16.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,1.7,71,102200,0,0,275,0,0,0,0,0,0,0,310,3.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,1.7,76,102200,0,0,271,0,0,0,0,0,0,0,310,2.7,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,1.7,70,102300,113,1402,276,60,348,32,6619,0,3553,138,310,3.3,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.5,1.7,63,102400,329,1402,282,218,708,52,25221,20811,6011,242,320,5.1,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,1.7,56,102400,510,1402,289,369,843,63,44102,40428,7500,312,320,5.3,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,1.6,50,102400,635,1402,296,480,908,69,58386,49446,8349,356,330,6.8,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,0.8,44,102400,696,1402,300,536,936,71,65714,53051,8715,375,320,7.4,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,-1.8,33,102300,689,1402,301,530,933,72,64879,53528,8798,378,330,8.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,-2.3,31,102300,613,1402,303,463,895,71,55901,49608,8642,368,320,6.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,-2.9,30,102300,474,1402,301,293,598,91,33780,32460,10541,449,330,6.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,-3.6,30,102400,282,1402,297,184,668,50,21103,15983,5706,228,320,5.1,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,-3.3,33,102400,61,971,292,37,259,26,3936,0,2747,108,300,4.8,0,0,16.1,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,-2.7,38,102400,0,0,288,0,0,0,0,0,0,0,300,4.4,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,-1.6,45,102400,0,0,284,0,0,0,0,0,0,0,320,3.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,-0.7,54,102400,0,0,279,0,0,0,0,0,0,0,340,3.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,-1.1,56,102400,0,0,274,0,0,0,0,0,0,0,330,3.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,-1.1,58,102400,0,0,272,0,0,0,0,0,0,0,350,2.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,-1.0,62,102500,0,0,268,0,0,0,0,0,0,0,360,2.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,-0.1,67,102400,0,0,269,0,0,0,0,0,0,0,320,2.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.1,-0.7,71,102500,0,0,263,0,0,0,0,0,0,0,340,2.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.1,-1.0,79,102500,0,0,255,0,0,0,0,0,0,0,320,1.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.6,-0.7,84,102500,0,0,254,0,0,0,0,0,0,0,290,1.5,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.2,-1.2,83,102500,0,0,252,0,0,0,0,0,0,0,300,1.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.2,-1.6,75,102500,0,0,255,0,0,0,0,0,0,0,350,2.9,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.9,-1.2,79,102600,0,0,254,0,0,0,0,0,0,0,360,1.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.3,-1.6,87,102600,0,0,248,0,0,0,0,0,0,0,330,0.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.6,-0.6,79,102600,110,1388,257,45,227,27,5016,0,3051,117,330,2.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.8,-0.5,64,102600,325,1402,270,198,581,64,22566,19721,7290,298,340,3.0,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.5,-0.1,59,102700,506,1402,277,359,819,63,42772,39653,7565,315,320,2.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,-1.1,46,102700,631,1402,286,379,530,141,43604,36459,16239,729,350,3.2,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,-1.2,42,102600,693,1402,290,431,564,153,49858,40245,17729,807,310,3.6,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,-2.2,36,102500,685,1402,294,512,897,74,62527,51841,9061,390,340,3.7,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,-2.1,34,102500,610,1402,298,447,865,71,53973,47661,8562,364,350,4.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-1.0,38,102400,472,1402,299,330,796,62,39087,36832,7366,305,320,2.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,-0.7,39,102400,280,1402,298,176,637,49,20161,14286,5580,222,330,2.1,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,-0.3,43,102500,59,963,294,35,125,30,3688,0,3141,125,290,1.8,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,0.1,48,102500,0,0,290,0,0,0,0,0,0,0,290,1.3,0,0,16.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,0.7,58,102500,0,0,282,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,1.6,69,102500,0,0,276,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,1.1,74,102500,0,0,270,0,0,0,0,0,0,0,290,0.0,0,0,15.8,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,1.2,80,102500,0,0,266,0,0,0,0,0,0,0,110,0.0,0,0,13.4,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.3,1.6,89,102500,0,0,262,0,0,0,0,0,0,0,110,0.0,0,0,11.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.2,1.1,86,102500,0,0,261,0,0,0,0,0,0,0,110,0.0,0,0,8.6,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.7,0.9,88,102500,0,0,259,0,0,0,0,0,0,0,110,0.2,0,0,7.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2005,11,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.4,-0.7,80,102400,0,0,262,0,0,0,0,0,0,0,110,1.3,1,1,11.8,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,-1.0,70,102400,0,0,294,0,0,0,0,0,0,0,110,0.0,9,9,16.1,3048,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,-0.6,70,102500,0,0,305,0,0,0,0,0,0,0,150,0.2,10,10,16.1,3048,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2005,11,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.5,-0.6,69,102400,0,0,305,0,0,0,0,0,0,0,150,1.5,10,10,16.1,2976,9,999999999,8,0.0000,0,88,999.000,0.3,1.0 +2005,11,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,-0.3,66,102400,0,0,310,0,0,0,0,0,0,0,160,1.6,10,10,16.1,2384,9,999999999,8,0.0000,0,88,999.000,0.5,1.0 +2005,11,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.1,1.7,79,102600,0,0,311,0,0,0,0,0,0,0,350,2.2,10,10,15.9,1927,9,999999999,10,0.0000,0,88,999.000,1.0,1.0 +2005,11,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,2.0,78,102500,106,1370,313,31,42,28,3448,0,3104,120,50,2.7,10,10,13.5,1630,9,999999999,11,0.0000,0,88,999.000,0.5,1.0 +2005,11,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,3.8,88,102500,320,1403,316,28,25,23,3500,418,2806,106,80,0.2,10,10,7.0,2438,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,3.4,79,102500,502,1403,321,139,89,107,15847,5107,12258,531,80,2.2,10,10,11.8,2438,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,4.0,74,102400,627,1403,328,150,11,145,15672,1066,20877,564,60,2.3,10,10,16.1,2438,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,5.0,74,102400,689,1403,334,142,9,138,14928,934,19698,533,360,0.3,10,10,16.1,2473,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,5.1,75,102300,682,1403,334,67,0,67,7212,0,10026,261,360,2.7,10,10,15.7,2725,9,999999999,12,0.0000,0,88,999.000,0.3,1.0 +2005,11,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,6.2,83,102200,607,1403,333,73,0,73,7809,0,10939,284,20,3.0,10,10,13.3,2573,9,999999999,13,0.0000,0,88,999.000,0.5,1.0 +2005,11,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,6.8,84,102200,469,1403,336,17,0,17,1892,0,2786,67,70,1.9,10,10,15.2,2402,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,7.1,90,102200,279,1403,333,12,0,12,1392,0,2106,51,180,0.2,10,10,7.7,2089,9,999999999,15,0.0000,0,88,999.000,0.5,1.0 +2005,11,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,7.0,93,102100,58,955,330,1,0,1,171,0,271,6,180,2.0,10,10,4.3,1707,9,999999999,15,0.0000,0,88,999.000,0.3,1.0 +2005,11,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.6,89,102100,0,0,331,0,0,0,0,0,0,0,80,3.4,10,10,11.8,1829,9,999999999,15,0.0000,0,88,999.000,0.5,1.0 +2005,11,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,5.7,84,102100,0,0,329,0,0,0,0,0,0,0,80,1.5,10,10,15.0,1811,9,999999999,13,0.0000,0,88,999.000,0.5,1.0 +2005,11,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,6.2,89,102100,0,0,328,0,0,0,0,0,0,0,120,1.3,10,10,7.2,1658,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.7,90,102000,0,0,331,0,0,0,0,0,0,0,110,0.2,10,10,13.1,1516,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,6.6,89,102000,0,0,331,0,0,0,0,0,0,0,110,1.7,10,10,14.3,1420,9,999999999,15,0.0000,0,88,999.000,0.5,1.0 +2005,11,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,5.4,80,102000,0,0,331,0,0,0,0,0,0,0,140,4.3,10,10,10.7,982,9,999999999,13,0.0000,0,88,999.000,1.7,1.0 +2005,11,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,7.0,93,102000,0,0,330,0,0,0,0,0,0,0,150,5.6,10,10,3.4,732,9,999999999,15,0.0000,0,88,999.000,0.3,1.0 +2005,11,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,6.8,90,101900,0,0,331,0,0,0,0,0,0,0,150,6.5,10,10,5.4,724,9,999999999,15,0.0000,0,88,999.000,0.3,1.0 +2005,11,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.2,89,101900,0,0,334,0,0,0,0,0,0,0,150,5.2,10,10,10.4,671,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,7.1,88,101800,0,0,334,0,0,0,0,0,0,0,150,5.8,10,10,16.1,671,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,6.6,82,101800,0,0,336,0,0,0,0,0,0,0,150,6.8,10,10,16.1,678,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,6.1,77,101800,0,0,338,0,0,0,0,0,0,0,150,7.3,10,10,15.2,732,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,6.0,76,101800,0,0,338,0,0,0,0,0,0,0,150,7.5,10,10,9.0,724,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,5.7,75,101800,0,0,338,0,0,0,0,0,0,0,150,5.8,10,10,16.1,671,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,6.7,80,101900,103,1352,339,17,0,17,1868,0,2844,74,150,6.0,10,10,16.1,663,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,6.7,80,101900,316,1403,339,99,123,72,11127,4077,8048,332,150,4.3,10,10,16.1,602,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,6.7,76,102000,497,1403,342,107,17,101,11349,1603,15111,399,170,5.4,10,10,16.1,549,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,6.8,75,101900,624,1403,344,109,17,101,12782,990,11935,523,160,3.2,10,10,16.1,549,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,7.9,80,101900,685,1403,346,161,22,150,18578,1516,17386,792,160,3.6,10,10,16.1,541,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,8.4,80,101900,679,1403,349,157,23,146,18131,1527,16920,769,170,3.5,10,10,15.7,488,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,8.7,81,101800,604,1403,350,82,0,82,8836,0,12294,321,170,3.3,10,10,13.6,474,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.3,77,101800,467,1403,351,39,0,39,4283,0,6182,156,160,3.5,10,10,16.1,427,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.0,76,101800,277,1403,351,42,0,42,4555,0,6717,174,150,3.0,10,10,16.0,570,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.1,77,101800,58,949,351,7,0,7,768,0,1181,30,150,2.5,10,10,15.1,1800,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.4,78,101800,0,0,351,0,0,0,0,0,0,0,160,3.1,10,10,14.1,2814,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,9.0,84,101900,0,0,349,0,0,0,0,0,0,0,150,3.0,10,10,11.1,3353,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.4,89,101900,0,0,347,0,0,0,0,0,0,0,180,2.1,10,10,9.7,3353,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.3,89,102000,0,0,347,0,0,0,0,0,0,0,160,2.5,10,10,9.4,2816,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,8.2,93,102000,0,0,337,0,0,0,0,0,0,0,330,4.2,10,10,4.2,209,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2005,11,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,6.8,88,102100,0,0,333,0,0,0,0,0,0,0,340,3.8,10,10,14.5,366,9,999999999,15,0.0000,0,88,999.000,0.4,1.0 +2005,11,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,6.1,89,102200,0,0,289,0,0,0,0,0,0,0,320,2.5,1,1,12.9,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,6.2,89,102100,0,0,319,0,0,0,0,0,0,0,310,2.0,9,9,12.7,351,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,6.9,92,102200,0,0,330,0,0,0,0,0,0,0,360,1.9,10,10,11.3,286,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,6.8,91,102100,0,0,330,0,0,0,0,0,0,0,330,2.4,10,10,11.7,442,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,5.2,89,102200,0,0,307,0,0,0,0,0,0,0,320,2.6,8,8,15.7,671,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,5.0,94,102200,0,0,309,0,0,0,0,0,0,0,330,3.6,9,9,4.7,83,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,5.7,99,102200,0,0,318,0,0,0,0,0,0,0,340,3.3,10,10,1.0,30,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,4.7,93,102200,0,0,316,0,0,0,0,0,0,0,350,3.0,10,10,5.6,91,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,5.0,93,102200,100,1340,318,23,5,23,2487,331,3713,98,330,2.6,10,10,6.4,183,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,5.0,93,102200,312,1404,309,72,27,66,8095,838,7446,305,330,2.6,9,9,5.2,111,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.8,5.1,89,102200,493,1404,322,84,17,78,9808,839,9137,386,300,2.1,10,10,5.4,91,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,6.0,87,102200,620,1404,329,88,17,80,10519,926,9649,416,320,2.1,10,10,9.7,183,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,5.6,83,102000,682,1404,321,173,29,159,19846,2063,18282,835,320,0.0,9,9,11.3,446,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,5.7,77,102000,676,1404,326,258,94,213,28848,7455,23916,1117,50,0.0,9,9,10.7,1683,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,6.1,79,101900,602,1404,326,114,9,111,12096,854,16235,431,50,1.5,9,9,8.0,765,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,6.1,77,101900,465,1404,338,73,0,73,7832,0,11191,291,80,1.6,10,10,8.0,2402,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,6.1,79,101900,275,1404,336,16,0,16,1765,0,2664,66,320,2.1,10,10,8.4,2107,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,6.1,82,101900,57,943,334,3,0,3,368,0,576,14,290,2.4,10,10,11.6,1878,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.0,82,101800,0,0,333,0,0,0,0,0,0,0,290,2.3,10,10,14.5,1676,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,5.7,80,101800,0,0,332,0,0,0,0,0,0,0,290,0.0,10,10,14.3,1676,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,6.2,83,101700,0,0,333,0,0,0,0,0,0,0,320,0.0,10,10,12.7,1658,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,5.7,84,101800,0,0,313,0,0,0,0,0,0,0,320,0.2,8,8,10.0,3785,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.3,4.9,91,101900,0,0,299,0,0,0,0,0,0,0,320,1.9,7,7,9.2,6062,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.3,5.0,91,101900,0,0,296,0,0,0,0,0,0,0,130,0.3,6,6,8.3,8339,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2005,11,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.4,5.2,92,102000,0,0,294,0,0,0,0,0,0,0,130,2.5,5,5,7.5,10616,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.4,4.2,92,102100,0,0,287,0,0,0,0,0,0,0,170,1.5,4,4,6.6,12892,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.1,2.8,91,102200,0,0,278,0,0,0,0,0,0,0,170,0.0,3,3,5.7,15169,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.4,0.5,94,102200,0,0,262,0,0,0,0,0,0,0,80,0.0,2,2,4.9,17446,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.4,-0.7,92,102300,0,0,254,0,0,0,0,0,0,0,80,0.0,1,1,4.0,19723,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-1.0,-2.0,93,102400,0,0,243,0,0,0,0,0,0,0,80,0.0,0,0,3.2,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-1.5,-2.1,96,102400,0,0,241,0,0,0,0,0,0,0,90,0.0,0,0,3.8,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-1.8,-2.6,94,102500,0,0,240,0,0,0,0,0,0,0,90,0.0,0,0,4.1,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.6,-1.9,91,102500,97,1328,245,46,256,29,5062,0,3146,122,100,0.2,0,0,5.2,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.0,0.1,81,102500,307,1404,260,191,621,55,21871,17678,6349,256,140,1.3,0,0,8.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.7,1.2,78,102600,489,1404,267,338,774,69,39869,37353,8123,339,140,0.0,0,0,8.2,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,1.7,70,102500,615,1404,276,445,835,79,53325,46618,9513,408,280,0.0,0,0,9.6,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,1.7,63,102400,678,1404,282,499,863,83,60295,50042,10003,434,280,0.2,0,0,9.6,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,1.7,59,102300,673,1404,287,494,854,85,59453,49758,10241,445,280,1.5,0,0,9.6,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,1.6,54,102300,599,1404,291,427,801,85,50672,45258,10132,436,300,1.3,0,0,9.8,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,1.0,50,102200,463,1404,292,312,716,76,36283,34784,8840,371,300,0.0,0,0,11.4,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,0.6,49,102200,274,1404,292,162,527,59,18195,13430,6654,269,330,0.1,0,0,12.6,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,0.6,52,102200,56,937,288,29,143,24,3155,0,2554,100,330,0.8,0,0,11.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,0.6,56,102200,0,0,283,0,0,0,0,0,0,0,330,1.3,0,0,10.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,0.7,74,102200,0,0,268,0,0,0,0,0,0,0,330,0.0,0,0,12.6,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.8,1.1,77,102200,0,0,267,0,0,0,0,0,0,0,330,0.0,0,0,11.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.3,1.0,85,102200,0,0,262,0,0,0,0,0,0,0,330,0.0,0,0,9.4,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.2,0.6,83,102200,0,0,261,0,0,0,0,0,0,0,330,0.0,0,0,7.8,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.1,0.5,89,102200,0,0,257,0,0,0,0,0,0,0,330,0.0,0,0,6.2,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.8,0.1,89,102300,0,0,255,0,0,0,0,0,0,0,330,0.0,0,0,5.2,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.0,0.4,89,102300,0,0,256,0,0,0,0,0,0,0,310,0.0,0,0,8.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.5,-1.1,89,102300,0,0,249,0,0,0,0,0,0,0,310,0.0,0,0,7.6,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.1,-1.1,93,102300,0,0,247,0,0,0,0,0,0,0,310,0.0,0,0,4.7,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.9,-1.0,99,102300,0,0,244,0,0,0,0,0,0,0,310,0.0,0,0,4.2,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.6,-1.1,96,102300,0,0,245,0,0,0,0,0,0,0,310,0.0,0,0,4.8,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-1.1,-2.2,92,102300,0,0,242,0,0,0,0,0,0,0,310,0.0,0,0,4.8,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-1.5,-2.2,95,102400,0,0,241,0,0,0,0,0,0,0,310,0.9,0,0,4.3,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.6,-0.6,100,102400,94,1315,246,43,205,30,4728,0,3250,127,300,1.5,0,0,4.8,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.7,1.0,77,102400,303,1404,267,187,574,63,21109,17547,7115,290,300,0.2,0,0,10.3,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,0.0,62,102400,485,1404,274,336,751,77,39316,37929,9027,380,330,1.9,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,0.1,56,102400,612,1404,281,449,846,80,53673,47719,9632,414,330,4.4,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,0.4,48,102300,675,1404,291,505,880,82,61041,51330,9979,433,350,3.4,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,-1.2,35,102300,670,1404,302,503,885,81,60790,51672,9810,425,350,5.8,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,-1.8,31,102200,597,1404,306,439,852,77,52562,47525,9200,393,340,6.3,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,-2.1,31,102200,461,1404,305,323,779,68,37992,36818,7968,331,340,6.5,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-1.7,34,102100,272,1404,301,170,604,53,19334,14192,6061,243,320,5.2,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,-1.1,38,102100,55,933,297,32,195,24,3416,0,2605,102,330,4.9,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,-1.2,41,102100,0,0,293,0,0,0,0,0,0,0,330,4.7,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,-1.6,40,102100,0,0,291,0,0,0,0,0,0,0,330,5.7,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,-1.1,47,102100,0,0,285,0,0,0,0,0,0,0,340,5.5,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,-1.2,52,102200,0,0,278,0,0,0,0,0,0,0,340,3.5,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.5,-2.1,54,102200,0,0,271,0,0,0,0,0,0,0,360,3.0,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.1,-1.8,60,102200,0,0,266,0,0,0,0,0,0,0,20,2.7,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.4,-2.1,58,102200,0,0,267,0,0,0,0,0,0,0,330,3.0,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.8,-1.7,67,102200,0,0,261,0,0,0,0,0,0,0,310,2.5,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.5,-1.8,72,102200,0,0,256,0,0,0,0,0,0,0,330,1.3,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.5,-2.3,81,102200,0,0,248,0,0,0,0,0,0,0,330,0.0,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.7,-2.8,85,102200,0,0,243,0,0,0,0,0,0,0,330,0.0,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-1.2,-2.9,88,102200,0,0,242,0,0,0,0,0,0,0,330,0.0,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-2.2,-3.3,92,102200,0,0,238,0,0,0,0,0,0,0,130,0.0,0,0,15.6,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-2.1,-3.2,92,102200,0,0,238,0,0,0,0,0,0,0,130,0.0,0,0,12.4,77777,9,999999999,6,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-1.1,-2.5,90,102200,91,1301,242,48,313,28,5241,0,3036,118,130,0.0,0,0,9.6,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.5,0.0,78,102200,299,1405,261,199,700,50,22913,17765,5765,230,130,0.2,0,0,9.4,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.3,0.0,69,102200,481,1405,268,351,846,62,41753,39289,7333,304,130,2.1,0,0,8.4,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,-0.1,57,102200,608,1405,278,462,909,69,55935,49171,8336,354,130,1.9,0,0,11.4,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,-0.5,51,102100,672,1405,283,518,932,72,63154,52825,8829,379,130,0.2,0,0,13.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,-0.1,48,102000,667,1405,290,513,923,74,62353,52481,9058,390,180,1.6,0,0,14.6,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,-0.7,42,101900,595,1405,293,446,876,75,53447,48178,8974,382,180,1.9,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,-1.0,39,101900,460,1405,297,328,799,66,38530,37168,7823,325,180,0.2,0,0,15.8,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,-0.9,40,101800,271,1405,295,172,619,53,19564,14191,6006,241,180,2.0,0,0,14.4,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,-0.6,45,101800,55,930,289,32,195,25,3441,0,2639,104,180,0.9,0,0,14.4,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,-0.5,50,101800,0,0,284,0,0,0,0,0,0,0,140,0.0,0,0,14.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,0.1,66,101700,0,0,271,0,0,0,0,0,0,0,140,0.2,0,0,10.8,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,0.6,71,101700,0,0,270,0,0,0,0,0,0,0,140,1.6,0,0,8.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.5,0.7,77,101700,0,0,266,0,0,0,0,0,0,0,120,2.8,0,0,8.2,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,1.1,73,101700,0,0,270,0,0,0,0,0,0,0,150,4.0,0,0,9.6,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,1.0,73,101700,0,0,270,0,0,0,0,0,0,0,140,3.0,0,0,9.6,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.2,0.5,77,101700,0,0,264,0,0,0,0,0,0,0,120,2.0,0,0,9.4,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.7,-0.1,82,101700,0,0,258,0,0,0,0,0,0,0,120,1.3,0,0,8.2,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.9,-0.7,83,101600,0,0,255,0,0,0,0,0,0,0,120,0.0,0,0,9.2,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.6,-1.7,92,101500,0,0,245,0,0,0,0,0,0,0,120,0.0,0,0,6.6,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-1.0,-1.8,94,101500,0,0,243,0,0,0,0,0,0,0,120,0.0,0,0,6.9,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-1.1,-2.7,89,101400,0,0,242,0,0,0,0,0,0,0,120,0.0,0,0,8.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-1.2,-2.3,92,101400,0,0,242,0,0,0,0,0,0,0,160,0.0,0,0,7.8,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-1.6,-2.7,92,101400,0,0,240,0,0,0,0,0,0,0,160,0.0,0,0,6.6,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.6,-1.9,91,101300,88,1284,245,41,117,34,4421,0,3652,144,160,0.0,0,0,8.2,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.6,0.1,78,101300,296,1405,262,155,454,60,17580,13028,6777,275,160,0.2,0,0,9.2,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,1.2,73,101200,478,1405,271,206,240,124,23095,14757,13996,611,160,2.1,0,0,6.2,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.2,2.3,76,101100,605,1405,274,187,34,173,21042,2494,19498,888,160,2.0,0,0,4.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,2.8,73,100900,669,1405,279,246,85,205,27573,6750,23149,1077,290,1.6,0,0,4.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,2.8,71,100800,665,1405,281,356,416,159,40732,29582,18295,834,290,2.0,0,0,4.6,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,3.2,67,100800,593,1405,286,347,502,135,39655,33063,15502,692,300,2.6,0,0,4.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,2.8,62,100700,458,1405,289,231,364,112,25982,20791,12671,548,300,2.3,0,0,4.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,2.9,64,100600,271,1405,287,146,459,58,16421,10848,6487,262,130,0.2,0,0,4.7,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,2.9,69,100600,54,928,283,26,70,23,2779,0,2498,98,130,1.8,0,0,4.3,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,3.0,72,100600,0,0,281,0,0,0,0,0,0,0,140,1.3,0,0,4.3,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,2.7,80,100600,0,0,273,0,0,0,0,0,0,0,120,0.2,0,0,6.2,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.5,1.8,83,100600,0,0,267,0,0,0,0,0,0,0,120,1.5,0,0,4.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.4,2.7,83,100600,0,0,271,0,0,0,0,0,0,0,320,1.6,0,0,4.7,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,2.2,88,100600,0,0,265,0,0,0,0,0,0,0,320,2.0,0,0,4.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,2.2,86,100600,0,0,266,0,0,0,0,0,0,0,340,1.7,0,0,4.7,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.8,1.7,86,100600,0,0,264,0,0,0,0,0,0,0,10,2.3,0,0,4.8,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.4,1.6,88,100600,0,0,262,0,0,0,0,0,0,0,330,3.8,0,0,5.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.8,1.1,83,100700,0,0,264,0,0,0,0,0,0,0,350,5.0,0,0,6.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.2,1.0,92,100700,0,0,257,0,0,0,0,0,0,0,320,2.7,0,0,3.4,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.0,1.0,93,100700,0,0,257,0,0,0,0,0,0,0,330,3.1,0,0,4.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.2,0.5,89,100700,0,0,257,0,0,0,0,0,0,0,340,4.6,0,0,4.8,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.1,0.0,86,100700,0,0,256,0,0,0,0,0,0,0,340,4.5,0,0,4.8,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.8,0.0,88,100800,0,0,255,0,0,0,0,0,0,0,330,3.6,0,0,4.3,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.0,0.1,81,100900,85,1263,260,37,168,27,4057,0,2962,115,330,3.5,0,0,4.8,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.7,0.6,75,100900,292,1406,267,172,512,66,19339,15694,7434,304,340,2.7,0,0,5.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,1.1,65,100900,474,1406,277,317,685,86,36640,35495,9984,424,10,3.2,0,0,6.8,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,1.7,60,100900,602,1406,285,426,767,97,50061,45224,11450,498,320,4.1,0,0,9.8,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,1.6,53,100800,667,1406,292,481,800,102,57084,49027,12147,535,330,4.0,0,0,11.2,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,1.1,47,100700,663,1406,297,478,793,104,56549,48917,12310,542,340,3.0,0,0,11.2,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,1.0,43,100700,591,1406,301,414,747,100,48520,44451,11764,512,310,2.1,0,0,11.2,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,0.0,41,100700,457,1406,300,302,659,87,34683,33975,10069,427,320,2.1,0,0,11.4,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,0.4,46,100700,270,1406,294,156,474,65,17379,13075,7263,296,270,2.0,0,0,12.9,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,0.6,52,100700,54,926,288,28,80,25,3006,0,2689,106,270,0.9,0,0,13.7,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,1.2,58,100700,0,0,284,0,0,0,0,0,0,0,200,0.3,0,0,13.8,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,2.1,61,100800,0,0,286,0,0,0,0,0,0,0,200,2.6,0,0,9.6,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,1.9,62,100800,0,0,284,0,0,0,0,0,0,0,210,2.6,0,0,9.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,3.5,72,100800,0,0,283,0,0,0,0,0,0,0,210,2.8,0,0,11.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,5.1,80,100800,0,0,285,0,0,0,0,0,0,0,230,4.0,0,0,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.1,86,100800,0,0,286,0,0,0,0,0,0,0,210,3.0,0,0,16.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,6.0,86,100900,0,0,298,0,0,0,0,0,0,0,210,2.1,3,3,15.8,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.6,5.5,87,100900,0,0,306,0,0,0,0,0,0,0,150,2.2,7,7,13.8,3353,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,4.3,88,101000,0,0,281,0,0,0,0,0,0,0,140,3.0,1,1,9.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,3.9,86,101100,0,0,297,0,0,0,0,0,0,0,150,2.7,7,7,8.2,3658,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,3.9,86,101100,0,0,275,0,0,0,0,0,0,0,160,3.1,0,0,9.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,3.9,90,101100,0,0,273,0,0,0,0,0,0,0,150,3.1,0,0,11.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,3.8,93,101200,0,0,270,0,0,0,0,0,0,0,160,3.1,0,0,11.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.5,2.8,89,101300,0,0,268,0,0,0,0,0,0,0,160,3.1,0,0,9.2,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.8,2.9,82,101300,69,1055,273,28,46,26,2995,0,2760,108,160,3.2,0,0,6.6,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,3.4,76,101500,288,1406,279,135,302,73,14978,9693,8138,335,180,4.0,0,0,8.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,4.5,76,101500,471,1406,286,270,518,97,30866,27508,11093,475,160,3.2,0,0,8.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,5.0,68,101500,599,1406,295,330,411,155,37304,28428,17554,792,160,4.2,0,0,10.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,5.0,63,101400,664,1406,305,363,381,183,41077,28478,20815,960,150,5.1,1,1,14.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,4.7,60,101300,661,1406,331,326,286,191,36670,21807,21645,1001,160,4.8,8,8,16.0,1981,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,2.8,51,101200,590,1406,319,302,359,152,34224,24893,17266,777,160,6.1,5,5,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,2.9,53,101200,456,1406,317,138,108,103,15663,5906,11737,504,160,5.7,5,5,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,3.2,55,101200,269,1406,335,22,0,22,2394,0,3605,91,170,5.7,9,9,16.0,3048,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,3.6,57,101100,54,926,335,5,0,5,581,0,904,23,160,6.0,9,9,16.0,3048,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,3.4,57,101100,0,0,343,0,0,0,0,0,0,0,160,6.2,10,10,16.0,2923,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,3.9,61,101100,0,0,341,0,0,0,0,0,0,0,150,6.3,10,10,15.8,1927,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,3.9,61,101000,0,0,341,0,0,0,0,0,0,0,160,6.9,10,10,14.0,1509,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,3.8,61,101000,0,0,341,0,0,0,0,0,0,0,160,9.0,10,10,11.0,1402,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,3.5,58,101000,0,0,343,0,0,0,0,0,0,0,160,10.2,10,10,9.2,1394,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,4.9,68,100900,0,0,340,0,0,0,0,0,0,0,160,9.3,10,10,6.8,1333,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,4.5,66,100900,0,0,339,0,0,0,0,0,0,0,160,9.4,10,10,9.6,1287,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,5.1,70,100800,0,0,339,0,0,0,0,0,0,0,160,10.0,10,10,9.4,1323,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,5.7,81,100800,0,0,332,0,0,0,0,0,0,0,150,11.4,10,10,7.4,1167,9,999999999,13,0.0000,0,88,999.000,2.3,1.0 +2004,12,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,6.8,91,101000,0,0,330,0,0,0,0,0,0,0,170,8.0,10,10,3.7,1001,9,999999999,15,0.0000,0,88,999.000,0.3,1.0 +2004,12,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.2,93,101000,0,0,331,0,0,0,0,0,0,0,150,7.7,10,10,4.0,884,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.2,93,101000,0,0,331,0,0,0,0,0,0,0,160,7.2,10,10,6.4,914,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.2,89,101100,0,0,334,0,0,0,0,0,0,0,150,6.4,10,10,11.8,747,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,7.4,92,101300,0,0,333,0,0,0,0,0,0,0,170,4.8,10,10,4.6,325,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.1,89,101300,67,1035,334,31,67,28,3330,0,3001,119,150,6.1,10,10,6.4,284,9,999999999,15,0.0000,0,88,999.000,0.7,1.0 +2004,12,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.2,89,101400,285,1406,334,124,278,67,13790,7723,7534,309,160,4.6,10,10,10.1,299,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.2,83,101400,468,1406,339,81,1,81,8656,93,12267,321,160,6.2,10,10,14.4,274,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.8,86,101500,596,1406,340,90,0,90,9647,0,13433,353,180,4.6,10,10,12.8,274,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,7.8,83,101400,662,1406,343,139,5,137,14704,471,19741,532,150,6.2,10,10,11.2,488,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,8.3,80,101400,659,1406,349,147,2,146,15511,225,20969,567,170,5.1,10,10,11.2,434,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,8.3,80,101400,589,1406,349,89,0,89,9551,0,13307,349,170,3.7,10,10,11.6,495,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,8.3,80,101300,455,1406,339,93,0,93,9910,0,14052,371,160,4.3,9,9,14.6,549,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,8.2,78,101200,269,1406,322,70,19,67,7790,487,7402,303,150,5.6,5,5,16.0,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,8.0,77,101200,54,926,333,14,1,14,1504,88,2273,60,160,4.7,8,8,16.1,480,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,7.9,81,101200,0,0,345,0,0,0,0,0,0,0,170,4.1,10,10,16.0,3246,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.3,83,101300,0,0,345,0,0,0,0,0,0,0,160,4.2,10,10,16.0,2366,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,8.3,86,101300,0,0,343,0,0,0,0,0,0,0,150,5.3,10,10,15.1,1747,9,999999999,17,0.0000,0,88,999.000,0.2,1.0 +2004,12,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.4,86,101300,0,0,344,0,0,0,0,0,0,0,150,5.7,10,10,8.0,1070,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,8.9,89,101300,0,0,344,0,0,0,0,0,0,0,150,6.2,10,10,9.4,1811,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,9.0,90,101300,0,0,344,0,0,0,0,0,0,0,160,6.1,10,10,8.4,1658,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,9.4,92,101300,0,0,345,0,0,0,0,0,0,0,160,5.4,10,10,10.6,1506,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,9.4,92,101300,0,0,345,0,0,0,0,0,0,0,140,6.7,10,10,6.2,1251,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.0,88,101300,0,0,346,0,0,0,0,0,0,0,150,6.7,10,10,4.8,278,9,999999999,17,0.0000,0,88,999.000,0.5,1.0 +2004,12,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,9.6,92,101300,0,0,346,0,0,0,0,0,0,0,150,9.0,10,10,5.4,330,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,9.3,92,101300,0,0,345,0,0,0,0,0,0,0,160,8.3,10,10,8.4,914,9,999999999,17,0.0000,0,88,999.000,1.0,1.0 +2004,12,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.9,89,101300,0,0,345,0,0,0,0,0,0,0,160,8.8,10,10,10.3,833,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.4,89,101300,0,0,347,0,0,0,0,0,0,0,160,9.5,10,10,8.0,366,9,999999999,17,0.0000,0,88,999.000,0.3,1.0 +2004,12,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.3,89,101400,0,0,347,0,0,0,0,0,0,0,150,10.4,10,10,7.0,364,9,999999999,17,0.0000,0,88,999.000,0.3,1.0 +2004,12,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,9.3,91,101500,64,1015,345,1,0,1,150,0,237,6,160,8.7,10,10,5.9,355,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,9.9,92,101600,282,1407,348,7,0,7,796,0,1212,29,160,7.4,10,10,6.5,371,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,9.5,86,101800,465,1407,351,57,0,57,6139,0,8774,225,170,7.9,10,10,16.0,823,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.0,86,101800,594,1407,353,53,0,53,5743,0,8072,206,160,9.3,10,10,16.0,758,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,10.0,86,101800,659,1407,354,46,0,46,5061,0,7067,180,160,6.7,10,10,16.0,789,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.0,83,101800,657,1407,357,26,0,26,2921,0,4134,102,160,7.3,10,10,16.0,823,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,10.1,80,101800,587,1407,359,34,0,34,3799,0,5395,135,150,7.7,10,10,16.0,812,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.5,81,101800,455,1407,362,45,0,45,4906,0,7044,179,150,7.6,10,10,16.0,724,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,10.3,82,101900,269,1407,360,9,0,9,1017,0,1541,37,150,6.6,10,10,16.0,678,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,10.0,82,101900,54,928,357,0,0,0,36,0,58,1,150,6.1,10,10,16.0,738,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.0,83,101900,0,0,357,0,0,0,0,0,0,0,150,5.8,10,10,16.0,792,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.9,80,101900,0,0,359,0,0,0,0,0,0,0,160,6.1,10,10,16.0,799,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.5,78,102000,0,0,358,0,0,0,0,0,0,0,170,5.6,10,10,16.0,853,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,10.0,82,102000,0,0,357,0,0,0,0,0,0,0,170,5.1,10,10,16.1,2469,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.0,83,102100,0,0,356,0,0,0,0,0,0,0,170,2.6,10,10,16.0,2536,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,10.0,84,102200,0,0,355,0,0,0,0,0,0,0,170,2.9,10,10,16.0,941,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,10.0,85,102200,0,0,354,0,0,0,0,0,0,0,160,3.6,10,10,16.0,1009,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,10.0,84,102300,0,0,355,0,0,0,0,0,0,0,160,3.8,10,10,16.0,875,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.0,86,102300,0,0,344,0,0,0,0,0,0,0,150,2.5,9,9,16.0,739,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,10.0,87,102400,0,0,343,0,0,0,0,0,0,0,170,1.3,9,9,15.6,866,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.9,93,102400,0,0,338,0,0,0,0,0,0,0,140,0.4,9,9,12.6,1550,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,9.3,91,102400,0,0,336,0,0,0,0,0,0,0,140,2.9,9,9,11.2,2124,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,9.3,92,102500,0,0,335,0,0,0,0,0,0,0,150,0.2,9,9,10.8,799,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,8.9,95,102500,0,0,318,0,0,0,0,0,0,0,80,1.5,7,7,7.6,853,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,8.5,92,102600,62,996,295,31,153,25,3368,0,2657,105,100,1.6,0,0,5.7,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,10.1,83,102700,278,1407,310,158,499,59,17721,10943,6658,270,160,2.1,0,0,12.8,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,11.3,81,102700,462,1407,318,296,665,78,34236,29431,9034,381,170,1.9,0,0,12.6,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,12.9,80,102700,591,1407,334,398,718,96,46482,37923,11279,492,270,0.4,1,1,11.2,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,13.1,76,102600,657,1407,355,439,702,111,51392,40010,13077,582,270,2.6,6,6,11.2,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,13.3,75,102600,656,1407,375,369,422,172,41641,28679,19504,897,190,2.5,9,9,16.0,589,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,13.3,75,102500,586,1407,367,323,425,146,36478,26614,16544,745,240,2.3,8,8,16.0,671,9,999999999,24,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,12.8,73,102500,454,1407,351,261,518,94,29676,24370,10742,460,190,1.6,4,4,16.0,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,12.7,75,102500,269,1407,331,129,313,69,14238,7341,7679,316,240,2.4,0,0,16.0,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,12.5,78,102500,54,930,327,21,39,20,2317,0,2160,84,240,1.1,0,0,16.0,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,12.2,82,102500,0,0,322,0,0,0,0,0,0,0,240,0.0,0,0,16.0,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,12.1,93,102500,0,0,313,0,0,0,0,0,0,0,290,0.0,0,0,15.4,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,11.4,93,102500,0,0,309,0,0,0,0,0,0,0,290,0.0,0,0,8.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,11.9,99,102500,0,0,314,0,0,0,0,0,0,0,320,1.9,1,1,5.3,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,11.9,100,102600,0,0,344,0,0,0,0,0,0,0,350,1.5,9,9,1.2,30,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,11.8,100,102600,0,0,353,0,0,0,0,0,0,0,360,0.3,10,10,3.5,626,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,12.1,99,102600,0,0,356,0,0,0,0,0,0,0,320,2.1,10,10,5.0,586,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.6,96,102600,0,0,355,0,0,0,0,0,0,0,310,2.0,10,10,6.7,652,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.1,93,102500,0,0,355,0,0,0,0,0,0,0,360,1.5,10,10,9.6,762,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,11.1,96,102500,0,0,352,0,0,0,0,0,0,0,360,0.0,10,10,8.0,823,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,11.0,93,102500,0,0,354,0,0,0,0,0,0,0,20,0.0,10,10,8.0,823,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,10.7,97,102400,0,0,349,0,0,0,0,0,0,0,20,0.4,10,10,6.9,819,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,9.7,100,102400,0,0,341,0,0,0,0,0,0,0,330,2.3,10,10,0.7,51,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,9.5,100,102400,0,0,340,0,0,0,0,0,0,0,330,0.0,10,10,0.4,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.9,99,102400,60,977,342,31,167,24,3342,0,2597,102,350,0.2,10,10,0.3,30,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,9.6,97,102500,275,1407,343,105,182,69,11594,4749,7676,316,350,1.6,10,10,0.3,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,11.1,100,102500,459,1407,349,166,109,131,18385,6298,14520,638,10,1.9,10,10,0.7,30,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,11.1,96,102500,589,1407,352,256,242,155,28803,15959,17479,790,310,2.1,10,10,0.4,30,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.8,87,102300,655,1407,341,446,729,107,52377,41566,12594,558,290,1.8,7,7,10.4,610,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,11.8,75,102200,654,1407,326,393,522,150,44872,33910,17210,783,310,1.7,0,0,15.8,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,12.1,75,102200,585,1407,344,414,811,77,49165,39854,9117,391,340,2.9,4,4,14.9,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.2,78,102100,454,1407,342,241,400,112,26979,20852,12581,546,300,4.0,4,4,15.6,77777,9,999999999,22,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,11.9,83,102100,269,1407,319,101,185,66,11179,4128,7299,299,300,3.0,0,0,12.6,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,11.6,89,102000,54,932,313,29,164,23,3123,0,2453,97,330,2.5,0,0,11.0,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,11.0,93,102000,0,0,307,0,0,0,0,0,0,0,330,2.1,0,0,9.6,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,10.7,97,102000,0,0,302,0,0,0,0,0,0,0,330,1.6,0,0,8.4,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,11.0,100,102000,0,0,339,0,0,0,0,0,0,0,340,2.4,9,9,1.0,57,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,10.3,97,102000,0,0,347,0,0,0,0,0,0,0,360,2.6,10,10,0.6,30,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,10.5,100,102100,0,0,346,0,0,0,0,0,0,0,320,2.5,10,10,0.4,30,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.9,99,102100,0,0,342,0,0,0,0,0,0,0,60,1.3,10,10,0.4,30,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,9.4,97,102100,0,0,341,0,0,0,0,0,0,0,120,0.2,10,10,0.4,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,9.4,99,102100,0,0,339,0,0,0,0,0,0,0,120,1.3,10,10,0.4,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,9.4,97,101900,0,0,341,0,0,0,0,0,0,0,350,0.2,10,10,0.4,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,9.4,99,101900,0,0,339,0,0,0,0,0,0,0,350,1.6,10,10,0.4,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,9.3,96,101900,0,0,341,0,0,0,0,0,0,0,330,2.2,10,10,0.4,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,8.9,97,101900,0,0,338,0,0,0,0,0,0,0,340,2.5,10,10,0.4,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,8.9,100,101800,0,0,336,0,0,0,0,0,0,0,40,2.1,10,10,0.4,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,8.9,100,101900,0,0,336,0,0,0,0,0,0,0,360,2.1,10,10,0.4,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.9,99,101900,57,959,336,22,42,21,2430,0,2251,88,340,2.2,10,10,0.3,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,8.9,97,101900,272,1408,338,134,337,69,14800,8716,7621,313,330,2.5,10,10,0.4,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,9.0,99,101900,456,1408,337,148,170,93,16890,8375,10654,455,340,2.1,10,10,1.3,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,9.3,100,101900,586,1408,338,192,73,162,21566,4994,18240,827,300,0.4,10,10,3.0,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.4,96,101800,653,1408,342,216,77,180,24372,5565,20427,941,330,0.0,10,10,3.2,91,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,9.5,92,101700,653,1408,336,289,206,193,32353,15296,21767,1008,320,0.2,9,9,8.0,159,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,10.0,89,101600,585,1408,334,314,388,153,35381,25679,17325,782,280,2.0,8,8,8.0,213,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.0,86,101600,453,1408,306,281,634,77,32465,28029,8900,375,260,1.6,0,0,9.4,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,9.9,88,101600,269,1408,305,161,583,50,18259,9664,5637,226,310,2.1,0,0,7.9,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,9.7,90,101600,55,936,302,30,202,23,3260,0,2426,95,260,1.8,0,0,7.1,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,9.4,94,101600,0,0,298,0,0,0,0,0,0,0,260,1.3,0,0,6.2,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,9.0,100,101600,0,0,312,0,0,0,0,0,0,0,170,0.9,6,6,2.9,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,9.3,96,101600,0,0,341,0,0,0,0,0,0,0,200,1.3,10,10,0.4,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,8.9,100,101600,0,0,336,0,0,0,0,0,0,0,200,0.0,10,10,0.4,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,9.0,100,101600,0,0,337,0,0,0,0,0,0,0,150,0.0,10,10,0.4,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,9.3,98,101600,0,0,340,0,0,0,0,0,0,0,150,0.0,10,10,0.6,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,9.2,97,101600,0,0,340,0,0,0,0,0,0,0,150,1.7,10,10,4.0,113,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.3,95,101500,0,0,342,0,0,0,0,0,0,0,150,1.9,10,10,3.8,135,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.4,96,101500,0,0,342,0,0,0,0,0,0,0,170,2.0,10,10,2.6,91,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.1,94,101500,0,0,342,0,0,0,0,0,0,0,180,1.5,10,10,0.9,43,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.3,95,101400,0,0,342,0,0,0,0,0,0,0,130,1.1,10,10,1.0,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.1,94,101400,0,0,342,0,0,0,0,0,0,0,120,1.7,10,10,1.8,30,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.7,98,101500,0,0,342,0,0,0,0,0,0,0,200,1.8,10,10,2.5,47,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.1,94,101500,0,0,342,0,0,0,0,0,0,0,140,1.5,10,10,3.2,136,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,9.3,91,101500,55,941,345,1,0,1,93,0,148,3,160,2.0,10,10,2.5,212,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.9,89,101600,269,1408,345,11,0,11,1287,0,1946,47,210,0.7,10,10,3.5,292,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,9.0,86,101600,453,1408,347,94,5,93,10032,511,13948,368,210,1.5,10,10,3.9,342,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,9.4,86,101700,584,1408,350,101,7,98,10805,711,14552,383,150,1.6,10,10,3.3,388,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,9.3,85,101600,652,1408,350,143,8,140,15141,767,20111,542,150,2.7,10,10,4.0,335,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,9.0,84,101500,652,1408,350,61,0,61,6653,0,9256,239,160,3.2,10,10,4.0,335,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,9.3,85,101500,584,1408,350,59,0,59,6386,0,8976,230,210,3.9,10,10,4.1,324,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,8.9,83,101500,453,1408,350,165,222,93,18778,10948,10660,455,110,1.7,10,10,4.7,343,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,9.4,86,101600,269,1408,350,121,270,69,13338,6876,7652,314,120,2.6,10,10,4.0,396,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,9.1,83,101600,55,941,351,29,150,23,3077,0,2457,97,90,2.2,10,10,4.6,435,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.9,86,101600,0,0,316,0,0,0,0,0,0,0,120,1.9,4,4,5.2,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,8.9,88,101700,0,0,320,0,0,0,0,0,0,0,140,2.0,6,6,4.8,701,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.9,93,101700,0,0,296,0,0,0,0,0,0,0,140,1.7,0,0,4.3,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.7,96,101800,0,0,293,0,0,0,0,0,0,0,100,0.0,1,1,4.8,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.5,7.5,100,101900,0,0,293,0,0,0,0,0,0,0,120,0.0,2,2,3.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.7,97,102000,0,0,288,0,0,0,0,0,0,0,140,1.3,1,1,2.4,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,6.9,97,102100,0,0,311,0,0,0,0,0,0,0,150,0.3,8,8,2.2,1006,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.5,7.9,96,102100,0,0,324,0,0,0,0,0,0,0,150,0.0,9,9,3.6,831,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.4,90,102100,0,0,340,0,0,0,0,0,0,0,280,0.2,10,10,6.4,678,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,8.5,95,102200,0,0,337,0,0,0,0,0,0,0,280,0.9,10,10,6.4,986,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,8.4,93,102200,0,0,338,0,0,0,0,0,0,0,320,1.3,10,10,5.0,784,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,102200,0,0,341,0,0,0,0,0,0,0,300,0.0,10,10,6.4,1144,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.9,93,102300,0,0,341,0,0,0,0,0,0,0,300,1.5,10,10,6.2,1402,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.9,93,102400,0,0,332,0,0,0,0,0,0,0,10,1.1,9,9,4.4,1494,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,9.3,95,102400,53,924,342,27,130,22,2887,0,2368,93,360,1.6,10,10,2.9,208,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,9.5,88,102500,267,1408,339,71,94,53,8000,1696,6012,242,10,2.1,9,9,3.3,213,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.0,83,102500,451,1408,319,202,235,127,22445,13508,14153,620,360,1.7,2,2,4.8,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,10.1,80,102600,582,1408,311,378,661,105,43880,37173,12255,537,290,3.0,0,0,4.8,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,10.6,80,102500,650,1408,315,458,798,90,54527,43550,10706,468,310,2.8,0,0,5.0,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.6,78,102500,651,1408,316,382,490,156,43556,32729,17846,813,310,4.5,0,0,6.8,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.6,78,102500,584,1408,355,312,403,145,35306,25890,16506,742,290,4.1,9,9,9.6,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.6,78,102500,453,1408,365,162,90,133,17876,5302,14721,647,290,2.7,10,10,11.4,488,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.7,79,102500,270,1408,365,95,101,76,10404,2780,8320,345,290,0.0,10,10,12.6,488,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.6,81,102600,56,946,363,18,16,17,1948,0,1884,72,290,0.0,10,10,11.0,488,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,10.5,82,102600,0,0,343,0,0,0,0,0,0,0,260,0.0,8,8,9.9,488,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,10.0,94,102600,0,0,301,0,0,0,0,0,0,0,260,0.2,0,0,9.2,77777,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,9.8,94,102700,0,0,300,0,0,0,0,0,0,0,260,1.8,0,0,6.0,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,9.0,99,102700,0,0,293,0,0,0,0,0,0,0,260,0.0,0,0,3.9,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,9.0,95,102800,0,0,331,0,0,0,0,0,0,0,320,0.0,9,9,3.7,437,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,10.6,96,102800,0,0,349,0,0,0,0,0,0,0,320,0.0,10,10,6.6,366,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.6,90,102800,0,0,354,0,0,0,0,0,0,0,320,0.0,10,10,8.0,366,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.6,90,102800,0,0,354,0,0,0,0,0,0,0,320,0.0,10,10,8.0,373,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.6,90,102800,0,0,354,0,0,0,0,0,0,0,350,0.0,10,10,8.0,427,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.6,90,102800,0,0,354,0,0,0,0,0,0,0,350,0.2,10,10,8.2,427,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.5,89,102900,0,0,354,0,0,0,0,0,0,0,350,2.0,10,10,10.2,427,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.0,86,102900,0,0,353,0,0,0,0,0,0,0,360,1.6,10,10,14.2,427,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.9,86,102900,0,0,353,0,0,0,0,0,0,0,30,2.6,10,10,13.2,427,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.4,83,102900,0,0,353,0,0,0,0,0,0,0,30,2.7,10,10,15.6,427,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.5,84,102900,51,908,353,28,180,22,3043,0,2347,92,350,3.5,10,10,12.6,419,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,10.0,86,103000,264,1408,354,31,106,11,3912,0,1388,50,350,3.0,10,10,11.8,366,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.0,83,103000,449,1408,356,28,0,28,3090,0,4491,111,10,2.7,10,10,16.0,373,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,9.9,82,103000,580,1408,357,51,0,51,5550,0,7824,199,320,3.1,10,10,16.0,434,9,999999999,18,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.4,78,102900,649,1408,358,78,0,78,8417,0,11640,304,350,3.2,10,10,16.0,488,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,9.4,80,102900,650,1408,356,72,0,72,7811,0,10820,281,10,3.6,10,10,16.0,488,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.3,80,102800,583,1408,355,80,0,80,8583,0,11979,312,320,3.4,10,10,16.0,488,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,8.9,80,102800,454,1408,353,65,0,65,6965,0,9952,257,330,1.5,10,10,16.0,488,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,8.9,79,102700,270,1408,353,60,121,37,7005,1439,4318,169,360,1.5,10,10,16.0,488,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,9.2,80,102700,56,952,354,32,121,28,3421,0,2923,117,360,1.5,10,10,16.0,488,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.3,83,102700,0,0,352,0,0,0,0,0,0,0,360,1.5,10,10,16.0,468,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,8.8,87,102700,0,0,315,0,0,0,0,0,0,0,350,1.9,4,4,15.8,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,8.2,93,102700,0,0,292,0,0,0,0,0,0,0,350,0.0,0,0,12.6,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,7.7,97,102700,0,0,287,0,0,0,0,0,0,0,350,0.0,0,0,15.6,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,7.0,100,102700,0,0,282,0,0,0,0,0,0,0,350,0.0,0,0,7.1,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.3,5.7,96,102700,0,0,305,0,0,0,0,0,0,0,350,0.0,8,8,0.7,30,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,5.1,95,102700,0,0,275,0,0,0,0,0,0,0,350,0.0,0,0,0.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.1,5.1,100,102700,0,0,314,0,0,0,0,0,0,0,350,0.0,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,5.5,100,102600,0,0,316,0,0,0,0,0,0,0,110,0.0,10,10,0.3,30,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,5.0,97,102700,0,0,316,0,0,0,0,0,0,0,110,0.0,10,10,0.4,195,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,4.9,99,102600,0,0,314,0,0,0,0,0,0,0,110,0.0,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.2,4.5,95,102600,0,0,314,0,0,0,0,0,0,0,110,0.0,10,10,0.4,47,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.3,5.9,97,102600,0,0,321,0,0,0,0,0,0,0,110,0.0,10,10,0.5,194,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,7.2,100,102600,0,0,326,0,0,0,0,0,0,0,110,0.0,10,10,1.2,91,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.4,96,102600,50,892,336,29,220,22,3128,0,2307,91,110,2.0,10,10,1.6,91,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,8.9,95,102700,261,1409,340,80,131,56,8997,2475,6286,254,110,1.8,10,10,5.6,270,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,9.4,92,102700,446,1409,335,174,135,132,19270,7955,14598,640,120,0.0,9,9,6.4,91,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,8.9,82,102700,578,1409,340,296,334,159,33243,22731,17947,811,180,2.1,9,9,12.2,412,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,8.9,74,102600,648,1409,335,389,521,149,44446,34662,17119,776,90,1.2,7,7,16.0,518,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,8.3,71,102500,649,1409,320,480,879,75,57951,46632,9027,388,90,0.2,2,2,16.0,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,8.2,68,102400,583,1409,312,423,855,69,50732,42627,8301,352,90,1.3,0,0,16.0,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,7.9,66,102400,454,1409,313,310,775,60,36569,31849,7147,295,90,0.0,0,0,16.0,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,8.1,69,102400,271,1409,311,138,393,63,15414,9255,7005,285,120,0.0,0,0,15.8,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,8.3,75,102400,57,959,307,25,58,22,2661,0,2415,95,120,0.0,0,0,14.2,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,8.3,80,102400,0,0,302,0,0,0,0,0,0,0,120,0.0,0,0,12.6,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,8.2,87,102400,0,0,296,0,0,0,0,0,0,0,120,0.2,0,0,10.6,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,7.2,92,102400,0,0,287,0,0,0,0,0,0,0,120,1.5,0,0,6.6,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,7.2,90,102500,0,0,289,0,0,0,0,0,0,0,140,1.5,0,0,7.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,7.0,93,102500,0,0,286,0,0,0,0,0,0,0,160,1.5,0,0,6.2,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,5.5,93,102500,0,0,279,0,0,0,0,0,0,0,120,1.5,0,0,4.7,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,5.0,94,102600,0,0,275,0,0,0,0,0,0,0,120,0.3,0,0,3.1,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.8,5.9,94,102600,0,0,280,0,0,0,0,0,0,0,130,0.0,0,0,4.5,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,3.9,97,102600,0,0,268,0,0,0,0,0,0,0,120,0.0,0,0,2.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,4.0,94,102600,0,0,287,0,0,0,0,0,0,0,120,0.2,5,5,6.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,3.8,93,102600,0,0,270,0,0,0,0,0,0,0,70,0.2,0,0,6.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,3.2,93,102700,0,0,267,0,0,0,0,0,0,0,70,1.3,0,0,6.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.5,2.9,96,102700,0,0,264,0,0,0,0,0,0,0,70,0.0,0,0,5.2,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.8,3.1,95,102700,0,0,265,0,0,0,0,0,0,0,360,0.0,0,0,3.9,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,3.0,93,102800,48,877,266,11,0,11,1230,0,1885,50,360,0.0,0,0,1.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,5.9,93,102900,259,1409,280,101,180,68,11173,4608,7539,309,360,1.0,0,0,5.3,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,6.8,80,102900,444,1409,294,303,763,63,35603,31697,7368,305,360,0.0,0,0,6.2,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,7.3,77,102900,577,1409,309,414,835,72,49455,42332,8611,366,310,0.2,2,2,5.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,7.8,77,102800,647,1409,302,475,871,75,57306,46438,9073,390,310,2.1,0,0,6.4,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,7.8,71,102800,649,1409,307,477,872,75,57529,46552,9109,392,320,2.1,0,0,6.4,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,7.8,69,102700,583,1409,309,419,838,73,50128,42566,8698,370,10,2.0,0,0,6.4,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,7.8,67,102700,455,1409,311,311,764,64,36461,32223,7560,314,10,1.5,0,0,6.4,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,7.5,68,102700,272,1409,308,166,597,50,18822,11154,5733,230,20,1.4,0,0,6.4,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,7.2,72,102700,58,967,303,32,211,24,3475,0,2554,100,20,0.7,0,0,6.4,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,6.7,78,102800,0,0,295,0,0,0,0,0,0,0,20,0.0,0,0,6.4,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,6.7,87,102800,0,0,289,0,0,0,0,0,0,0,290,0.0,0,0,6.2,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.4,6.3,93,102800,0,0,283,0,0,0,0,0,0,0,290,0.0,0,0,4.4,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.5,6.5,93,102900,0,0,283,0,0,0,0,0,0,0,290,0.8,0,0,3.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,5.3,89,102900,0,0,280,0,0,0,0,0,0,0,320,0.0,0,0,2.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.8,5.8,100,102900,0,0,276,0,0,0,0,0,0,0,30,1.5,0,0,0.6,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.8,5.4,97,102900,0,0,318,0,0,0,0,0,0,0,40,0.0,10,10,0.3,39,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,4.0,100,102900,0,0,308,0,0,0,0,0,0,0,40,0.0,10,10,0.3,57,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,5.0,100,103000,0,0,314,0,0,0,0,0,0,0,300,0.2,10,10,0.3,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,4.9,100,103000,0,0,313,0,0,0,0,0,0,0,300,1.5,10,10,0.3,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,4.3,100,103000,0,0,310,0,0,0,0,0,0,0,310,1.5,10,10,0.3,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.3,3.3,100,103000,0,0,304,0,0,0,0,0,0,0,310,1.5,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.3,3.2,99,103000,0,0,304,0,0,0,0,0,0,0,360,1.5,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.2,2.8,97,103100,0,0,303,0,0,0,0,0,0,0,20,1.3,10,10,0.3,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.8,2.8,100,103100,47,863,302,27,195,21,2938,0,2255,88,20,0.0,10,10,0.3,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.1,3.1,100,103100,257,1409,303,61,116,40,7059,1578,4635,182,280,0.0,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,3.9,100,103100,443,1409,308,143,60,124,15921,3576,13875,604,280,0.0,10,10,0.8,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,5.0,100,103100,575,1409,305,257,215,169,28683,15454,18974,860,310,1.5,9,9,4.8,91,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,6.2,82,103000,646,1409,289,429,676,119,49951,42069,13889,618,300,0.2,0,0,6.6,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,7.3,79,102900,649,1409,298,381,504,149,43591,33923,17136,776,300,1.5,0,0,8.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,7.7,69,102800,584,1409,309,358,590,114,41312,34997,13164,580,310,1.3,0,0,8.4,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,6.6,64,102800,455,1409,307,202,296,106,22761,15926,12023,518,310,0.2,0,0,11.8,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,6.7,65,102800,273,1409,307,154,535,51,17543,10358,5772,231,310,1.4,0,0,15.6,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,6.8,70,102800,59,976,302,31,95,27,3264,0,2851,113,310,0.7,0,0,12.4,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,7.7,81,102700,0,0,298,0,0,0,0,0,0,0,310,0.0,0,0,9.6,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,7.1,90,102800,0,0,289,0,0,0,0,0,0,0,310,0.0,0,0,9.2,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,6.0,93,102800,0,0,281,0,0,0,0,0,0,0,150,0.0,0,0,6.2,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,5.5,93,102800,0,0,279,0,0,0,0,0,0,0,150,0.0,0,0,4.8,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,4.7,98,102800,0,0,294,0,0,0,0,0,0,0,150,0.0,7,7,3.8,180,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.1,4.0,99,102800,0,0,267,0,0,0,0,0,0,0,150,0.3,0,0,0.5,234,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.6,3.9,95,102800,0,0,269,0,0,0,0,0,0,0,150,0.5,0,0,0.7,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,4.3,96,102700,0,0,312,0,0,0,0,0,0,0,150,2.1,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,3.9,97,102700,0,0,309,0,0,0,0,0,0,0,120,2.1,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,3.8,99,102700,0,0,307,0,0,0,0,0,0,0,140,2.0,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.8,3.3,97,102600,0,0,306,0,0,0,0,0,0,0,160,1.5,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.4,3.4,100,102600,0,0,305,0,0,0,0,0,0,0,150,1.6,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.8,3.8,100,102700,0,0,307,0,0,0,0,0,0,0,160,2.6,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.7,2.7,100,102700,0,0,301,0,0,0,0,0,0,0,140,2.5,10,10,0.4,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.3,2.3,100,102700,45,849,299,25,112,22,2710,0,2338,92,170,1.5,10,10,0.3,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.9,2.9,100,102800,255,1409,302,41,112,21,5016,515,2576,96,170,1.3,10,10,0.3,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.4,3.4,100,102800,441,1409,305,82,0,82,8644,0,12410,326,170,0.0,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.5,4.0,97,102800,574,1409,310,140,3,139,14610,286,20140,541,120,0.0,10,10,0.8,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,4.2,95,102700,645,1409,313,172,11,167,17904,1096,23776,648,120,0.6,10,10,1.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,5.1,96,102600,648,1409,317,156,3,154,16281,321,22078,599,160,1.3,10,10,2.0,91,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.3,5.7,96,102600,584,1409,320,180,43,162,20236,3043,18306,828,200,0.3,10,10,2.5,103,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,5.8,93,102500,456,1409,314,176,146,129,19601,8802,14412,631,200,0.3,9,9,3.1,150,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.5,5.9,96,102500,275,1409,313,124,307,64,13806,7859,7148,291,180,1.9,9,9,4.6,146,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,5.9,99,102500,60,986,310,34,118,29,3565,0,3046,121,170,0.2,9,9,3.3,95,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,5.6,98,102500,0,0,318,0,0,0,0,0,0,0,190,1.5,10,10,1.7,90,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,5.0,100,102600,0,0,314,0,0,0,0,0,0,0,150,0.0,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,5.0,100,102600,0,0,314,0,0,0,0,0,0,0,170,0.2,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,5.0,100,102600,0,0,314,0,0,0,0,0,0,0,170,1.3,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,4.9,100,102600,0,0,313,0,0,0,0,0,0,0,120,0.2,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,4.4,100,102700,0,0,310,0,0,0,0,0,0,0,120,1.5,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.5,4.5,100,102700,0,0,311,0,0,0,0,0,0,0,210,1.3,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,4.9,100,102700,0,0,313,0,0,0,0,0,0,0,180,0.2,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,4.4,100,102700,0,0,310,0,0,0,0,0,0,0,180,1.6,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,4.4,100,102600,0,0,310,0,0,0,0,0,0,0,140,1.9,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,4.4,100,102600,0,0,310,0,0,0,0,0,0,0,300,0.2,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,4.4,100,102700,0,0,310,0,0,0,0,0,0,0,300,1.9,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,4.4,100,102600,0,0,310,0,0,0,0,0,0,0,300,0.0,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,4.4,100,102600,0,0,310,0,0,0,0,0,0,0,260,0.0,10,10,0.4,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.5,4.4,99,102600,44,836,311,25,189,19,2710,0,2086,81,260,0.2,10,10,0.3,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,4.5,97,102600,253,1410,313,38,111,18,4625,219,2181,81,260,1.9,10,10,0.3,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.1,5.1,100,102700,439,1410,314,61,0,61,6498,0,9373,242,260,0.0,10,10,0.3,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,5.6,99,102600,573,1410,317,83,0,83,8830,0,12408,324,280,0.2,10,10,0.4,30,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,5.9,99,102500,644,1410,319,128,0,128,13519,0,18590,499,280,0.4,10,10,0.5,30,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.8,6.1,95,102400,648,1410,323,132,0,132,13882,0,19059,512,300,0.6,10,10,1.4,30,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.8,6.1,95,102300,584,1410,323,141,5,139,14769,510,20127,541,280,0.4,10,10,1.7,101,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.1,93,102300,457,1410,325,108,1,108,11406,120,16112,428,270,1.8,10,10,1.9,142,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.0,92,102200,276,1410,325,70,117,47,8036,2184,5423,216,320,1.6,10,10,1.6,90,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,6.0,93,102200,61,996,324,34,117,29,3589,0,3063,122,320,2.0,10,10,1.2,90,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,6.0,93,102200,0,0,324,0,0,0,0,0,0,0,150,0.0,10,10,1.2,79,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,6.1,96,102200,0,0,323,0,0,0,0,0,0,0,150,2.0,10,10,0.8,30,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,6.0,99,102200,0,0,320,0,0,0,0,0,0,0,240,1.5,10,10,0.5,30,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,5.6,97,102200,0,0,319,0,0,0,0,0,0,0,280,1.9,10,10,0.4,30,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,5.6,97,102200,0,0,319,0,0,0,0,0,0,0,190,0.2,10,10,0.4,30,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,5.6,97,102100,0,0,319,0,0,0,0,0,0,0,190,1.5,10,10,0.4,30,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,5.6,100,102100,0,0,317,0,0,0,0,0,0,0,190,1.5,10,10,0.4,30,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,5.6,100,102100,0,0,317,0,0,0,0,0,0,0,190,1.3,10,10,0.4,30,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,5.5,99,102100,0,0,317,0,0,0,0,0,0,0,140,0.0,10,10,0.5,30,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,4.9,96,102000,0,0,316,0,0,0,0,0,0,0,120,2.2,10,10,0.8,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,4.3,96,101900,0,0,312,0,0,0,0,0,0,0,150,3.0,10,10,0.9,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.3,3.9,97,101900,0,0,309,0,0,0,0,0,0,0,130,1.5,10,10,2.2,46,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,3.9,100,101900,0,0,308,0,0,0,0,0,0,0,160,1.7,10,10,2.6,90,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,3.7,98,102000,0,0,308,0,0,0,0,0,0,0,30,2.1,10,10,3.0,90,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,3.8,99,102000,43,824,308,0,0,0,58,0,94,2,110,1.5,10,10,1.5,90,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,3.3,96,101900,251,1410,307,14,0,14,1520,0,2314,57,170,3.1,10,10,1.6,91,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,3.3,96,102000,438,1410,307,24,0,24,2607,0,3846,95,160,1.5,10,10,1.7,37,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,3.4,96,102000,572,1410,307,55,0,55,5954,0,8472,217,160,1.3,10,10,2.5,91,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.2,3.9,91,101900,644,1410,313,77,0,77,8178,0,11422,298,140,0.3,10,10,3.2,103,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,4.0,90,101600,648,1410,315,79,9,75,8451,864,11197,292,140,3.2,10,10,3.9,152,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,4.0,87,101600,585,1410,317,100,9,97,10598,849,14305,377,140,0.0,10,10,2.9,150,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,4.4,91,101600,459,1410,316,35,0,35,3852,0,5614,141,140,0.0,10,10,3.3,173,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,4.2,89,101500,278,1410,317,10,0,10,1115,0,1701,41,250,0.0,10,10,4.0,329,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,4.1,88,101500,63,1007,317,2,0,2,204,0,323,8,250,0.0,10,10,4.0,281,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,4.2,88,101500,0,0,318,0,0,0,0,0,0,0,250,2.6,10,10,3.9,245,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,4.4,92,101500,0,0,316,0,0,0,0,0,0,0,270,1.9,10,10,5.0,213,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,4.4,92,101500,0,0,316,0,0,0,0,0,0,0,350,0.3,10,10,6.2,205,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,4.4,92,101500,0,0,316,0,0,0,0,0,0,0,350,2.7,10,10,5.0,152,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,4.4,92,101500,0,0,316,0,0,0,0,0,0,0,30,3.0,10,10,6.2,152,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,4.3,91,101600,0,0,316,0,0,0,0,0,0,0,320,2.8,10,10,4.8,152,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,3.9,90,101600,0,0,315,0,0,0,0,0,0,0,360,4.3,10,10,4.5,151,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,4.1,94,101600,0,0,313,0,0,0,0,0,0,0,330,4.5,10,10,6.8,90,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,3.8,93,101600,0,0,303,0,0,0,0,0,0,0,360,5.1,9,9,8.0,213,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.2,3.2,93,101600,0,0,289,0,0,0,0,0,0,0,330,4.1,7,7,8.0,213,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.8,2.7,93,101600,0,0,276,0,0,0,0,0,0,0,350,3.1,3,3,6.4,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.7,2.1,96,101700,0,0,269,0,0,0,0,0,0,0,30,2.9,2,2,6.2,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.5,1.1,97,101700,0,0,255,0,0,0,0,0,0,0,110,1.0,0,0,4.5,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.8,0.3,97,101700,0,0,252,0,0,0,0,0,0,0,240,0.9,0,0,4.5,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,0.2,77,101800,41,812,263,19,124,16,2102,0,1711,66,150,0.4,0,0,4.5,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,0.6,59,101900,249,1410,281,157,642,44,17922,9449,4987,197,350,4.1,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,2.8,68,102000,436,1410,283,308,816,56,36490,33218,6628,271,110,2.2,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,2.8,65,102000,571,1410,286,424,892,62,51194,44901,7559,317,90,3.0,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,2.9,64,102000,644,1410,288,486,923,65,59391,49300,7929,337,150,2.0,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,3.3,60,101900,649,1410,293,489,921,65,59738,49256,7985,340,170,1.6,0,0,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,3.4,57,101900,586,1410,298,432,883,65,52164,45218,7830,330,130,2.5,0,0,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,4.4,60,101900,460,1410,300,323,814,57,38299,34391,6822,280,130,2.2,0,0,15.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,4.4,61,101900,279,1410,298,177,660,46,20291,12684,5294,210,110,2.6,0,0,14.3,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,4.4,65,101900,64,1019,295,38,277,25,4070,0,2732,107,100,2.6,0,0,13.5,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,4.4,69,101900,0,0,290,0,0,0,0,0,0,0,100,2.6,0,0,12.8,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,4.3,77,101900,0,0,284,0,0,0,0,0,0,0,120,2.5,0,0,12.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,3.9,80,102000,0,0,279,0,0,0,0,0,0,0,180,1.6,0,0,9.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,3.8,82,102100,0,0,277,0,0,0,0,0,0,0,140,2.2,0,0,8.4,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,3.3,86,102100,0,0,272,0,0,0,0,0,0,0,140,2.7,0,0,11.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,3.2,88,102100,0,0,270,0,0,0,0,0,0,0,140,0.0,0,0,9.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.8,2.7,86,102100,0,0,269,0,0,0,0,0,0,0,120,0.0,0,0,9.2,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.3,2.2,93,102100,0,0,263,0,0,0,0,0,0,0,120,0.3,0,0,6.4,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.2,2.1,93,102000,0,0,262,0,0,0,0,0,0,0,120,2.3,0,0,6.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.2,1.6,96,102000,0,0,258,0,0,0,0,0,0,0,120,0.3,0,0,4.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.9,1.8,93,102100,0,0,261,0,0,0,0,0,0,0,160,2.0,0,0,4.4,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.2,1.1,93,102100,0,0,257,0,0,0,0,0,0,0,160,2.7,0,0,4.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.1,1.1,93,102100,0,0,257,0,0,0,0,0,0,0,150,2.7,0,0,3.9,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.8,1.1,95,102200,0,0,256,0,0,0,0,0,0,0,140,0.3,0,0,3.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.9,1.2,95,102200,40,801,256,19,124,15,2049,0,1667,64,140,2.5,0,0,2.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.6,2.6,93,102200,247,1410,264,153,638,41,17551,8133,4751,187,120,2.6,0,0,3.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.3,3.5,82,102200,435,1410,275,289,742,60,33968,30724,7038,289,110,2.4,0,0,4.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.4,4.0,79,102300,570,1410,280,359,641,99,41812,36987,11623,505,110,1.9,0,0,5.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,4.3,72,102200,644,1410,287,464,846,78,55872,46842,9444,407,130,0.2,0,0,6.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,3.2,60,102100,649,1410,293,427,668,119,49790,42452,13947,620,130,1.3,0,0,8.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,2.8,54,102000,587,1410,297,425,849,72,51000,44967,8659,368,130,0.0,0,0,9.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,2.8,51,101900,461,1410,301,318,775,65,37467,34816,7639,317,360,0.4,0,0,11.6,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,2.5,50,101900,281,1410,300,174,616,51,19810,13718,5822,233,360,3.0,0,0,14.5,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,2.5,54,101900,65,1031,296,37,237,26,3965,0,2793,110,20,2.2,0,0,15.3,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,2.3,57,101900,0,0,292,0,0,0,0,0,0,0,20,1.3,0,0,16.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,2.7,74,102000,0,0,277,0,0,0,0,0,0,0,160,0.2,0,0,15.4,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,2.3,79,102000,0,0,272,0,0,0,0,0,0,0,160,1.3,0,0,10.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.4,2.7,83,102000,0,0,271,0,0,0,0,0,0,0,160,0.0,0,0,7.6,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.8,2.1,89,102000,0,0,264,0,0,0,0,0,0,0,130,0.0,0,0,5.0,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.2,1.8,91,102100,0,0,262,0,0,0,0,0,0,0,130,0.0,0,0,5.6,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.8,1.1,95,102100,0,0,256,0,0,0,0,0,0,0,130,0.0,0,0,1.6,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.2,1.2,93,102100,0,0,258,0,0,0,0,0,0,0,150,0.2,0,0,2.7,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.7,1.7,93,102100,0,0,260,0,0,0,0,0,0,0,110,1.3,0,0,2.2,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.0,0.9,99,102200,0,0,253,0,0,0,0,0,0,0,100,0.3,0,0,2.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.3,0.3,100,102200,0,0,250,0,0,0,0,0,0,0,100,0.0,0,0,1.7,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.6,-1.7,92,102200,0,0,245,0,0,0,0,0,0,0,100,0.0,0,0,1.2,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-1.0,-1.0,100,102200,0,0,244,0,0,0,0,0,0,0,100,0.0,0,0,2.9,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-1.7,-2.2,96,102300,0,0,240,0,0,0,0,0,0,0,20,0.0,0,0,3.2,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,-0.6,-1.3,95,102400,39,791,245,9,11,9,1078,0,1046,39,20,0.0,0,0,4.8,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.4,1.8,89,102400,246,1410,263,107,239,66,11847,5835,7279,297,20,0.5,0,0,4.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.5,2.1,64,102400,434,1410,283,307,824,53,36426,33013,6355,259,20,4.6,0,0,6.1,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,1.7,55,102400,570,1410,291,420,880,65,50665,45014,7806,328,10,4.5,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,1.4,42,102300,644,1410,305,482,907,68,58688,49500,8339,355,360,4.1,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,-0.7,33,102200,650,1410,310,485,903,69,59073,50113,8425,359,350,8.1,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,-1.0,30,102200,588,1410,314,429,861,69,51602,46244,8384,355,340,7.0,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,-0.1,32,102100,463,1410,314,321,786,63,37933,35834,7487,310,360,5.4,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,-0.6,34,102200,283,1410,309,176,626,51,20154,14684,5814,232,10,6.3,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,-0.2,39,102200,67,1045,302,38,246,27,4125,0,2879,113,10,3.0,0,0,16.0,77777,9,999999999,8,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,0.7,47,102200,0,0,295,0,0,0,0,0,0,0,130,0.0,0,0,16.0,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,1.4,56,102200,0,0,288,0,0,0,0,0,0,0,130,0.2,0,0,15.3,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,3.8,72,102300,0,0,285,0,0,0,0,0,0,0,130,1.5,0,0,9.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,3.4,80,102300,0,0,277,0,0,0,0,0,0,0,140,1.7,0,0,6.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,3.8,86,102400,0,0,275,0,0,0,0,0,0,0,140,3.0,0,0,5.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,3.3,86,102400,0,0,272,0,0,0,0,0,0,0,150,2.7,0,0,6.2,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,3.2,88,102500,0,0,270,0,0,0,0,0,0,0,160,3.1,0,0,4.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.2,2.7,90,102500,0,0,267,0,0,0,0,0,0,0,160,1.9,0,0,3.9,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.9,1.9,93,102500,0,0,261,0,0,0,0,0,0,0,130,1.1,0,0,2.9,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.1,2.1,93,102600,0,0,262,0,0,0,0,0,0,0,160,1.6,0,0,3.2,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.3,1.0,98,102600,0,0,259,0,0,0,0,0,0,0,150,2.3,1,1,2.7,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.7,0.7,100,102600,0,0,290,0,0,0,0,0,0,0,140,1.3,10,10,0.4,30,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.7,1.7,100,102700,0,0,296,0,0,0,0,0,0,0,250,0.2,10,10,0.4,30,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.7,1.6,99,102700,0,0,296,0,0,0,0,0,0,0,250,1.6,10,10,0.4,30,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.8,1.2,96,102700,38,782,296,18,118,15,1962,0,1614,62,170,2.5,10,10,0.3,30,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.2,2.2,100,102800,245,1410,298,39,118,18,4729,155,2225,82,140,2.0,10,10,0.3,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.3,2.2,99,102900,433,1410,299,77,0,77,8135,0,11725,307,140,1.6,10,10,0.3,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.8,2.3,97,102800,570,1410,301,147,8,144,15337,809,20872,562,160,2.0,10,10,0.5,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.2,3.2,100,102700,644,1410,304,190,25,178,19708,2446,25337,693,160,2.6,10,10,1.5,30,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.2,3.1,93,102600,651,1410,308,214,47,192,24013,3645,21669,1000,170,2.4,10,10,3.2,122,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.1,3.4,89,102600,590,1410,304,242,152,178,26984,11324,19989,911,200,2.1,9,9,4.0,213,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,3.9,86,102600,465,1410,289,217,307,116,24384,17778,13056,567,180,2.1,4,4,4.3,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,3.5,87,102500,285,1410,272,180,642,50,20591,14289,5772,231,170,1.6,0,0,4.6,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,2.8,89,102500,81,1252,267,40,260,25,4393,0,2761,107,150,2.1,0,0,2.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.8,2.2,96,102500,0,0,261,0,0,0,0,0,0,0,150,0.0,0,0,2.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,2.9,93,102500,0,0,266,0,0,0,0,0,0,0,150,0.0,0,0,3.2,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.0,1.5,97,102500,0,0,257,0,0,0,0,0,0,0,150,0.0,0,0,1.1,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,0.4,0.4,100,102500,0,0,289,0,0,0,0,0,0,0,200,0.0,10,10,0.4,66,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.1,1.9,99,102500,0,0,298,0,0,0,0,0,0,0,200,0.0,10,10,0.4,44,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.8,2.3,97,102500,0,0,301,0,0,0,0,0,0,0,200,0.2,10,10,0.4,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.8,2.8,100,102500,0,0,302,0,0,0,0,0,0,0,200,1.3,10,10,0.4,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.7,2.7,100,102400,0,0,301,0,0,0,0,0,0,0,180,0.2,10,10,0.4,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.1,2.1,100,102300,0,0,298,0,0,0,0,0,0,0,180,1.3,10,10,0.4,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.7,1.7,100,102400,0,0,296,0,0,0,0,0,0,0,180,0.0,10,10,0.4,30,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.7,1.6,99,102300,0,0,296,0,0,0,0,0,0,0,100,0.2,10,10,0.4,30,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.6,1.1,97,102300,0,0,295,0,0,0,0,0,0,0,100,1.9,10,10,0.4,30,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.1,1.1,100,102300,0,0,292,0,0,0,0,0,0,0,290,0.2,10,10,0.4,30,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.1,1.1,100,102300,0,0,292,0,0,0,0,0,0,0,290,1.9,10,10,0.4,30,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.2,1.2,100,102200,38,773,293,4,0,4,417,0,652,16,150,0.2,10,10,0.3,30,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.6,1.6,100,102300,243,1410,295,30,0,30,3222,0,4843,124,150,1.5,10,10,0.3,30,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,1.2,1.2,100,102200,432,1410,293,72,0,72,7643,0,11045,288,180,1.3,10,10,0.4,30,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.1,1.9,99,102200,569,1410,298,128,0,128,13398,0,18730,501,200,1.0,10,10,0.9,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.0,2.0,100,102100,644,1410,297,151,0,151,15716,0,21635,586,170,2.4,10,10,1.8,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.9,2.1,95,102000,652,1410,301,134,0,134,13980,0,19281,519,200,1.5,10,10,3.1,90,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.9,2.2,89,101900,591,1410,297,132,10,128,13828,940,18666,500,120,2.6,9,9,5.0,158,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,2.2,86,101800,467,1410,283,178,137,133,19851,8660,14855,652,160,2.6,5,5,6.4,213,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,2.2,86,101700,288,1410,283,128,275,72,14201,8746,7988,328,160,3.1,5,5,4.8,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.0,2.1,88,101700,83,1264,287,30,60,27,3312,0,2936,114,170,2.7,7,7,4.8,210,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.1,2.1,93,101700,0,0,302,0,0,0,0,0,0,0,170,2.6,10,10,4.5,176,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.8,2.2,96,101600,0,0,293,0,0,0,0,0,0,0,160,0.4,9,9,3.9,141,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.8,2.2,96,101600,0,0,301,0,0,0,0,0,0,0,180,2.0,10,10,2.2,82,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.6,2.6,100,101600,0,0,300,0,0,0,0,0,0,0,190,1.0,10,10,0.6,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.8,2.3,97,101600,0,0,301,0,0,0,0,0,0,0,210,0.2,10,10,0.4,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.8,2.8,100,101600,0,0,302,0,0,0,0,0,0,0,150,2.2,10,10,0.5,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.9,2.9,100,101500,0,0,302,0,0,0,0,0,0,0,140,2.6,10,10,1.4,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.0,2.0,93,101500,0,0,287,0,0,0,0,0,0,0,120,2.5,8,8,3.1,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.8,1.7,93,101400,0,0,260,0,0,0,0,0,0,0,140,1.5,0,0,4.8,77777,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.6,1.8,95,101300,0,0,260,0,0,0,0,0,0,0,200,1.8,0,0,4.6,77777,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.1,2.1,100,101300,0,0,298,0,0,0,0,0,0,0,170,2.9,10,10,0.8,41,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.2,2.2,100,101200,0,0,298,0,0,0,0,0,0,0,160,0.2,10,10,0.5,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.1,2.1,100,101100,0,0,298,0,0,0,0,0,0,0,140,0.9,10,10,0.9,30,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.3,1.7,96,101100,0,0,290,0,0,0,0,0,0,0,150,1.6,9,9,1.5,1520,9,999999999,10,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,2.3,2.1,99,101100,37,765,290,7,0,7,787,0,1216,32,140,2.7,9,9,1.7,1539,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.3,2.8,97,101100,242,1411,295,75,54,66,8252,1278,7251,296,140,3.6,9,9,2.4,1676,9,999999999,11,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,3.6,84,101100,432,1411,297,203,281,117,22654,16055,13121,568,140,5.3,7,7,3.0,1524,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,4.1,75,101100,569,1411,319,238,229,146,26880,15416,16513,739,150,6.2,9,9,5.0,1786,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,5.6,77,100900,645,1411,335,174,42,155,19845,2904,17733,805,160,6.1,10,10,6.8,1455,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,5.6,71,100900,653,1411,341,93,0,93,9927,0,13748,363,160,5.2,10,10,10.0,1394,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,5.6,68,100800,593,1411,344,106,0,106,11180,29,15557,412,150,5.5,10,10,13.0,1351,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,5.5,61,100700,469,1411,351,154,79,128,17223,4799,14346,628,140,7.6,10,10,14.6,1443,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,5.2,61,100700,290,1411,340,68,0,68,7191,0,10530,279,140,7.1,9,9,16.0,1524,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,4.7,62,100700,85,1268,315,15,0,15,1615,0,2469,65,140,6.6,4,4,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,5.0,67,100600,0,0,296,0,0,0,0,0,0,0,140,6.1,0,0,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,4.9,68,100600,0,0,294,0,0,0,0,0,0,0,150,5.3,0,0,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,4.4,66,100600,0,0,306,0,0,0,0,0,0,0,150,6.3,3,3,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,4.4,66,100700,0,0,308,0,0,0,0,0,0,0,160,6.6,4,4,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,4.4,68,100600,0,0,292,0,0,0,0,0,0,0,150,6.3,0,0,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,4.3,65,100600,0,0,300,0,0,0,0,0,0,0,150,6.6,1,1,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,3.8,61,100600,0,0,331,0,0,0,0,0,0,0,150,6.1,9,9,16.0,2286,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,3.9,59,100500,0,0,311,0,0,0,0,0,0,0,150,6.7,3,3,16.0,2896,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,5.1,66,100500,0,0,312,0,0,0,0,0,0,0,150,6.8,4,4,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,6.0,66,100400,0,0,316,0,0,0,0,0,0,0,160,7.1,3,3,16.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,5.7,62,100300,0,0,342,0,0,0,0,0,0,0,140,7.1,9,9,16.0,2455,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,6.2,63,100300,0,0,344,0,0,0,0,0,0,0,150,9.6,9,9,16.0,2608,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,6.8,67,100300,0,0,343,0,0,0,0,0,0,0,150,7.7,9,9,16.0,2707,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,7.2,69,100300,0,0,343,0,0,0,0,0,0,0,140,7.6,9,9,16.0,2438,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,7.3,69,100300,36,757,343,0,0,0,35,0,57,1,140,7.3,9,9,16.0,2366,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,7.8,71,100400,241,1411,344,2,0,2,290,0,453,10,150,8.1,9,9,16.0,1935,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,7.8,70,100500,431,1411,339,55,0,55,5901,0,8505,219,150,10.4,8,8,16.0,2743,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,7.8,71,100500,569,1411,325,68,0,68,7337,0,10327,267,140,7.7,5,5,16.0,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,7.8,67,100400,645,1411,330,105,2,104,11156,245,15208,403,140,11.7,5,5,16.0,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,7.7,66,100400,654,1411,349,100,2,99,10671,246,14537,385,130,10.6,9,9,16.0,2941,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,7.3,65,100300,594,1411,358,280,308,151,31696,20700,17098,770,130,8.8,10,10,15.8,2098,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,7.8,69,100400,471,1411,356,114,144,66,13427,6297,7800,325,140,4.4,10,10,14.6,1829,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,7.8,68,100400,293,1411,358,60,77,44,6983,1466,5140,204,180,3.2,10,10,16.0,1829,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,7.5,68,100500,87,1280,356,4,0,4,504,0,785,19,190,3.7,10,10,16.0,1829,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,7.4,72,100600,0,0,351,0,0,0,0,0,0,0,190,4.1,10,10,14.9,1661,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,7.7,93,100700,0,0,334,0,0,0,0,0,0,0,220,3.4,10,10,13.2,1470,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.8,90,100800,0,0,331,0,0,0,0,0,0,0,180,1.3,10,10,16.0,1541,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.2,93,100800,0,0,331,0,0,0,0,0,0,0,240,0.3,10,10,15.4,1693,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,7.2,93,100900,0,0,331,0,0,0,0,0,0,0,240,2.5,10,10,10.8,1864,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.2,95,100900,0,0,329,0,0,0,0,0,0,0,360,1.7,10,10,7.8,2080,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.3,93,101000,0,0,331,0,0,0,0,0,0,0,50,2.9,10,10,6.6,1676,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,7.8,96,100900,0,0,332,0,0,0,0,0,0,0,40,1.6,10,10,7.6,1676,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.9,93,100900,0,0,335,0,0,0,0,0,0,0,20,2.2,10,10,5.2,1693,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.3,95,100900,0,0,336,0,0,0,0,0,0,0,60,3.2,10,10,8.4,1829,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,8.3,92,100700,0,0,338,0,0,0,0,0,0,0,50,3.5,10,10,11.8,1811,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,100700,0,0,341,0,0,0,0,0,0,0,100,3.0,10,10,15.6,1633,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,100700,0,0,341,0,0,0,0,0,0,0,100,2.7,10,10,13.2,1335,9,999999999,17,0.0000,0,88,999.000,0.5,1.0 +2004,12,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.2,89,100700,0,0,340,0,0,0,0,0,0,0,90,2.9,10,10,14.7,1387,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.3,85,100700,36,751,344,8,4,8,943,0,934,34,100,3.5,10,10,16.0,1693,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.3,83,100700,241,1411,336,76,62,66,8369,1294,7239,296,120,3.0,9,9,16.0,1829,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,8.3,82,100600,431,1411,313,133,89,105,14881,4618,11863,510,110,2.5,3,3,16.0,77777,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,8.4,81,100600,570,1411,348,100,0,100,10614,0,14790,390,20,1.3,10,10,15.1,1888,9,999999999,17,0.0000,0,88,999.000,0.3,1.0 +2004,12,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.0,88,100500,646,1411,346,128,2,127,13531,176,18394,493,20,1.2,10,10,8.0,800,9,999999999,17,0.0000,0,88,999.000,0.3,1.0 +2004,12,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.4,89,100400,655,1411,347,114,2,113,12103,177,16451,438,340,2.1,10,10,12.8,518,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,9.4,92,100300,596,1411,345,42,0,42,4593,0,6495,164,340,1.7,10,10,4.8,457,9,999999999,17,0.0000,0,88,999.000,2.3,1.0 +2004,12,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,9.6,93,100400,473,1411,345,18,0,18,2011,0,2943,71,160,2.8,10,10,4.8,644,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.4,96,100400,295,1411,342,14,0,14,1540,0,2314,57,180,2.6,10,10,4.8,549,9,999999999,17,0.0000,0,88,999.000,0.5,1.0 +2004,12,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.2,89,100400,89,1294,340,2,0,2,207,0,327,8,170,3.5,10,10,4.8,695,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,100400,0,0,341,0,0,0,0,0,0,0,170,5.0,10,10,8.9,1505,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,100500,0,0,341,0,0,0,0,0,0,0,160,3.1,10,10,16.0,1882,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,100500,0,0,341,0,0,0,0,0,0,0,160,3.0,10,10,16.0,2410,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.2,89,100500,0,0,331,0,0,0,0,0,0,0,130,2.1,9,9,16.0,3281,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,7.7,93,100600,0,0,318,0,0,0,0,0,0,0,150,2.2,8,8,16.0,2743,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,7.2,93,100600,0,0,304,0,0,0,0,0,0,0,150,2.3,5,5,15.3,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.3,96,100600,0,0,329,0,0,0,0,0,0,0,110,0.3,10,10,9.6,2214,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,7.8,94,100500,0,0,334,0,0,0,0,0,0,0,110,2.0,10,10,8.1,1774,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.2,96,100400,0,0,329,0,0,0,0,0,0,0,110,0.0,10,10,4.8,2438,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,6.7,97,100400,0,0,326,0,0,0,0,0,0,0,360,0.0,10,10,1.2,1676,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,6.7,100,100400,0,0,323,0,0,0,0,0,0,0,360,0.0,10,10,0.8,1829,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.1,95,100300,0,0,329,0,0,0,0,0,0,0,360,0.0,10,10,5.3,1437,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.2,96,100400,0,0,329,0,0,0,0,0,0,0,130,1.3,10,10,9.2,1909,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.2,96,100400,0,0,329,0,0,0,0,0,0,0,140,0.2,10,10,6.2,1341,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.2,96,100400,35,746,329,2,0,2,258,0,404,10,140,1.5,10,10,4.8,1128,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.8,97,100500,240,1411,332,30,0,30,3231,0,4819,124,160,0.0,10,10,4.0,1128,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,7.9,91,100600,431,1411,337,72,0,72,7672,0,10989,286,170,3.1,10,10,5.7,634,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,8.1,85,100600,570,1411,343,93,0,93,9885,0,13805,363,170,3.8,10,10,12.3,913,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,7.9,83,100600,647,1411,334,86,4,85,9227,375,12518,328,190,3.9,9,9,16.0,822,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,7.8,77,100500,657,1411,339,233,77,197,26148,5888,22219,1030,190,3.9,9,9,16.0,615,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,7.0,72,100500,598,1411,339,95,35,80,11278,1851,9550,410,190,4.9,9,9,16.1,920,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,7.3,70,100600,476,1411,324,230,516,56,27430,21559,6726,277,190,3.9,5,5,16.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,7.0,70,100600,298,1411,341,156,405,70,17389,12329,7872,324,220,2.1,9,9,16.0,1151,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,6.9,72,100600,91,1305,339,34,121,26,3746,0,2903,112,190,2.1,9,9,16.0,1349,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,6.3,70,100600,0,0,336,0,0,0,0,0,0,0,190,2.4,9,9,16.0,1456,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.8,81,100600,0,0,345,0,0,0,0,0,0,0,160,4.6,10,10,16.0,1137,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,7.6,82,100600,0,0,342,0,0,0,0,0,0,0,160,4.7,10,10,15.6,2434,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,6.1,77,100700,0,0,338,0,0,0,0,0,0,0,170,6.0,10,10,13.2,1271,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,6.4,78,100500,0,0,338,0,0,0,0,0,0,0,140,8.1,10,10,15.3,1443,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.0,87,100400,0,0,340,0,0,0,0,0,0,0,150,7.9,10,10,10.3,1513,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,5.7,75,100500,0,0,337,0,0,0,0,0,0,0,170,9.1,10,10,14.9,1422,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,6.2,81,100600,0,0,335,0,0,0,0,0,0,0,180,7.8,10,10,7.5,1351,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,6.6,85,100600,0,0,334,0,0,0,0,0,0,0,150,8.8,10,10,16.0,1479,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,6.2,78,100600,0,0,338,0,0,0,0,0,0,0,160,8.9,10,10,16.0,1743,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,6.8,84,100600,0,0,336,0,0,0,0,0,0,0,150,8.9,10,10,15.1,1097,9,999999999,15,0.0000,0,88,999.000,2.5,1.0 +2004,12,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.1,89,100600,0,0,334,0,0,0,0,0,0,0,160,6.2,10,10,6.4,954,9,999999999,15,0.0000,0,88,999.000,0.3,1.0 +2004,12,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,7.1,88,100800,0,0,334,0,0,0,0,0,0,0,200,4.4,10,10,7.5,867,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,7.8,92,100800,0,0,335,0,0,0,0,0,0,0,160,4.1,10,10,14.9,1711,9,999999999,16,0.0000,0,88,999.000,1.5,1.0 +2004,12,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,7.9,92,100900,35,741,336,14,51,13,1533,0,1400,53,210,3.8,10,10,4.9,814,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,7.0,87,101000,240,1411,334,18,51,9,2274,0,1171,41,190,3.7,10,10,13.3,839,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,7.2,86,101100,431,1411,328,85,53,69,9892,2221,8045,335,180,4.3,9,9,16.0,1452,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,7.3,83,101200,571,1411,331,236,201,155,26474,13619,17435,785,190,5.6,9,9,16.0,1343,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,7.8,83,101100,648,1411,333,200,69,168,22654,4906,19125,875,170,5.0,9,9,16.0,1128,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,7.9,83,101000,658,1411,344,117,0,117,12372,0,16964,453,180,3.7,10,10,16.0,1174,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.9,86,101000,601,1411,347,142,10,138,15015,1019,19996,537,140,4.3,10,10,16.0,1388,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.9,86,100900,478,1411,337,131,38,118,14693,2166,13288,580,160,5.7,9,9,16.0,445,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,8.8,87,100800,301,1411,336,90,40,81,9892,1357,8990,375,150,5.7,9,9,15.7,2528,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,8.6,88,100800,93,1318,334,18,0,18,1976,0,2994,79,150,5.4,9,9,13.3,1995,9,999999999,17,0.0000,0,88,999.000,1.3,1.0 +2004,12,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.9,93,100800,0,0,341,0,0,0,0,0,0,0,150,5.3,10,10,10.5,1374,9,999999999,17,0.0000,0,88,999.000,1.6,1.0 +2004,12,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,9.3,91,100600,0,0,345,0,0,0,0,0,0,0,150,7.1,10,10,6.4,280,9,999999999,17,0.0000,0,88,999.000,8.9,1.0 +2004,12,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.0,94,100600,0,0,341,0,0,0,0,0,0,0,160,6.1,10,10,4.3,398,9,999999999,17,0.0000,0,88,999.000,0.3,1.0 +2004,12,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.0,88,100600,0,0,346,0,0,0,0,0,0,0,180,7.2,10,10,8.2,290,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,8.9,90,100600,0,0,344,0,0,0,0,0,0,0,170,6.1,10,10,15.3,2034,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.9,93,100600,0,0,341,0,0,0,0,0,0,0,220,5.5,10,10,10.3,1326,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.8,93,100600,0,0,331,0,0,0,0,0,0,0,200,4.0,9,9,16.0,1836,9,999999999,17,0.0000,0,88,999.000,0.0,1.0 +2004,12,31,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,8.2,93,100600,0,0,328,0,0,0,0,0,0,0,170,3.0,9,9,16.0,3119,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,31,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.8,93,100500,0,0,326,0,0,0,0,0,0,0,140,1.9,9,9,16.0,3391,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,31,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.8,93,100500,0,0,326,0,0,0,0,0,0,0,180,0.3,9,9,16.0,1372,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,31,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,7.7,93,100500,0,0,299,0,0,0,0,0,0,0,180,2.5,2,2,16.0,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,31,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,6.6,93,100500,0,0,284,0,0,0,0,0,0,0,190,1.9,0,0,16.0,77777,9,999999999,15,0.0000,0,88,999.000,0.0,1.0 +2004,12,31,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,6.0,96,100600,0,0,279,0,0,0,0,0,0,0,190,0.0,0,0,16.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,31,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.2,5.6,96,100700,0,0,277,0,0,0,0,0,0,0,200,0.2,0,0,16.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,31,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.8,5.7,93,100700,34,737,280,13,56,12,1435,0,1287,49,200,1.6,0,0,16.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,31,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,6.1,88,100800,239,1411,285,110,315,57,12270,5546,6359,257,230,2.0,0,0,16.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,31,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,6.0,79,100900,431,1411,291,275,651,76,31693,29075,8828,370,190,1.6,0,0,16.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,31,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,5.5,70,101000,571,1411,295,407,833,69,48695,42271,8338,353,190,2.3,0,0,16.0,77777,9,999999999,13,0.0000,0,88,999.000,0.0,1.0 +2004,12,31,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,4.5,61,101000,650,1411,299,472,864,74,57078,47263,9010,387,220,3.8,0,0,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,31,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,4.9,61,101000,660,1411,319,407,575,138,47000,38193,15999,721,220,5.3,5,5,16.0,77777,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,31,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,4.0,58,100900,603,1411,336,403,709,100,47216,41587,11770,514,190,6.0,9,9,16.0,1492,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,31,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,5.0,64,100900,481,1411,345,117,126,74,13706,6027,8689,365,170,4.5,10,10,16.0,1317,9,999999999,12,0.0000,0,88,999.000,0.0,1.0 +2004,12,31,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,5.1,65,100900,304,1411,344,54,36,46,6245,820,5347,213,170,4.1,10,10,15.3,1773,9,999999999,12,0.0000,0,88,999.000,2.0,1.0 +2004,12,31,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,5.6,70,100900,96,1330,341,14,0,14,1548,0,2367,61,180,4.1,10,10,9.8,1301,9,999999999,13,0.0000,0,88,999.000,6.1,1.0 +2004,12,31,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,6.5,81,100900,0,0,337,0,0,0,0,0,0,0,180,5.2,10,10,3.8,790,9,999999999,15,0.0000,0,88,999.000,1.5,1.0 +2004,12,31,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,6.9,92,101000,0,0,330,0,0,0,0,0,0,0,150,3.7,10,10,9.1,713,9,999999999,15,0.0000,0,88,999.000,1.3,1.0 +2004,12,31,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.3,93,101000,0,0,331,0,0,0,0,0,0,0,160,1.7,10,10,8.4,1135,9,999999999,15,0.0000,0,88,999.000,2.3,1.0 +2004,12,31,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.5,8.1,97,101000,0,0,333,0,0,0,0,0,0,0,170,3.3,10,10,11.8,1178,9,999999999,16,0.0000,0,88,999.000,0.3,1.0 +2004,12,31,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,7.4,92,101000,0,0,333,0,0,0,0,0,0,0,180,4.5,10,10,16.1,1075,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,31,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.7,92,101100,0,0,325,0,0,0,0,0,0,0,190,4.1,9,9,16.1,914,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 +2004,12,31,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,7.5,90,101200,0,0,303,0,0,0,0,0,0,0,190,4.2,3,3,16.1,77777,9,999999999,16,0.0000,0,88,999.000,0.0,1.0 diff --git a/test/commands.cse b/test/commands.cse new file mode 100644 index 000000000..682209b53 --- /dev/null +++ b/test/commands.cse @@ -0,0 +1,1634 @@ +// commands.cse +// test object manipulation +// CLEAR, DEFTYPE, USETYPE, LIKE, COPY, UNSET + +#define INABSORP 0.9 +#define ABSORP 0.8 +#define SURFMODEL FD +#define WINH 4 +#define WINW 3 +#define OHDPTH 2 +#define COOLTEMP 75 + +CLEAR // CLEAR when empty + +elevation = 1000 + + repHdrL="Command Test" + repHdrR="" + WfName="CTZ12S13B.CSW" + BEGDay=Jan 1 // + ENDDay=Dec 31 // + ebTolHour=.001 ebTolDay=.001 ebTolMon=.001 + Jan1DOW=Tue + wuDays=30 // + nSubSteps=10 // + skyModel=anisotropic // + WindF=.7 + bldgAzm=0.0 //don't adjust surface azimuths + DT=NO //No daylight savings per BESTEST p.9 + + DELETE HOLIDAY "New Year's Day" + DELETE HOLIDAY "M L King Day" + DELETE HOLIDAY "President's Day" + DELETE HOLIDAY "Memorial Day" + DELETE HOLIDAY "Fourth of July" + DELETE HOLIDAY "Labor Day" + DELETE HOLIDAY "Columbus Day" + DELETE HOLIDAY "Veterans Day" + DELETE HOLIDAY "Thanksgiving" + DELETE HOLIDAY "Christmas" + +//------ MATERIALS section for lightweight case ------ +MATERIAL "Plasterboard" matCond=0.09243 matSpHt=0.2008 matDens=59.375 +MATERIAL "FiberQuilt" matCond=0.02311 matSpHt=0.2008 matDens=0.75 +MATERIAL "WoodSiding" matCond=0.08088 matSpHt=0.2151 matDens=33.125 +MATERIAL "Ins0" matCond=0.01 matSpHt=0 matDens=0 +MATERIAL "SunWallMat" matCond=0.295 matSpHt=0.239 matDens=87.399 + +//------ MATERIALS section for heavyweight case ------ +MATERIAL "ConcreteBlock" matCond=0.2946 matSpHt=0.239 matDens=87.5 +MATERIAL "FoamInsul" matCond=0.02311 matSpHt=0.3346 matDens=0.625 +MATERIAL "ConcreteSlab" matCond=0.6528 matSpHt=0.239 matDens=87.5 +MATERIAL "Mass0_Ins" MatCond = 0.02 matSpHt=0 matDens = 0 + +//Revised materials 120114 BAW +#define RCQ 1.0 +MATERIAL "NCeilIns" matCond=0.025/RCQ matCondCT=.0042 matSpHt=0.2 matDens=0.7 // +MATERIAL "NR21" matCond=(5.5/(12.*21.))/RCQ matSpHt=.2 matDens=0.7 matThk=5.5/12. // Lower density from 2009 HOF 26.6 +MATERIAL "NR13" matCond=(3.5/(12.*13.))/RCQ matSpHt=.2 matDens=0.7 matThk=3.5/12. // Lower density from 2009 HOF 26.6 +MATERIAL "NFoam" matCond=1./(48) matSpHt=.35 matDens=1.5 // R4 from 2009 HOF 26.6 +MATERIAL "NGypbd" matCond=1.1/12 matSpHt=0.27 matDens=40 // 2009 HOF 26.6 +MATERIAL "NOSB" matCond=0.5/(0.68*12) matSpHt=.45 matDens=41. // 2009 HOF 26.6 k=thick/R +MATERIAL "NSoftWood" matCond=0.98/12 matSpHt=.39 matDens=35. // 2009 HOF 26.6 Douglas fir/larch +MATERIAL "TileGap" matCond=0.75/(0.85*12.) matSpHt=.24 matDens=0.075 matThk=0.75/12. // 2009 HOF 26.3 90 deg, down, E=.82 +MATERIAL "ConcTile" matCond=1 matSpHt=.2 matDens=120 matThk=1./12. // 2008 RACM Table R3-10 + + + +// ----- CONSTRUCTION section for lightweight case ----- + + CONSTRUCTION lw_wall + layer lrThk=0.03937 + lrMat="Plasterboard" + layer lrThk=0.2165 + lrMat="FiberQuilt" + layer lrThk=0.02953 lrMat="WoodSiding" + + CONSTRUCTION mass0 + layer lrThk = .333 lrMat = mass0_Ins + + CONSTRUCTION light + layer lrThk = .333 lrMat = mass0_Ins + layer lrThk = .1 lrMat = FoamInsul + + CONSTRUCTION foam_wall + layer lrThk = .1 lrMat = FoamInsul + + CONSTRUCTION conc_wall + layer lrThk = .1 lrMat = ConcreteSlab + + +MATERIAL "TimberFloor" matCond=0.08088 matSpHt=0.2868 matDens=40.625 + +CONSTRUCTION lw_floor + layer lrThk=0.08202 lrMat="TimberFloor" + layer lrThk=.12 lrMat="TimberFloor" + + + CONSTRUCTION roofcon + layer lrThk=0.03937 lrMat="Plasterboard" + layer lrThk=0.3668 lrMat="FiberQuilt" + layer lrThk=0.06234 lrMat="WoodSiding" + + CONSTRUCTION sunwall + layer lrThk=0.656 + lrMat="SunWallMat" + +// ----- CONSTRUCTION section for heavyweight case ----- + + CONSTRUCTION hw_wall + layer lrThk=0.3281 + lrMat="ConcreteBlock" + layer lrThk=1/12 + lrMat="FoamInsul" + layer lrThk=0.02953 lrMat="WoodSiding" + + CONSTRUCTION hw_floor + layer lrThk=0.2625 + lrMat="ConcreteSlab" + layer lrThk=3.304 + lrMat="Ins0" + + CONSTRUCTION CFrm2x4 // 3.5" + Layer lrMat="NGypbd" lrThk=0.5/12. + Layer lrMat="NSoftWood" lrThk=3.5/12. // 2x4 joist + Layer lrMat="NCeilIns" lrThk=(9.794251-3.5)/12. //insulation above the joist + + + +// ----- CONSTRUCTION section for R 1000 high resistance test case --- + + CONSTRUCTION styro + layer lrThk=23 lrMat="FoamInsul" + +IZXFER H341 izNVTYPE = AirNetExt izZN1 = Z2 izALo = 2 izHD = 24. izNVEff = 1 +IZXFER Z1Z2 izNVTYPE = AirNetIZ izZN1 = Z2 izZN2 = Z1 izALo = 1 izHD = 3. + +DEFTYPE SURFACE WALL + sfType=Wall + sfModel=SURFMODEL + sfArea=400 + sfAzm=0 + sfExH = 1.2 + sfCon=mass0 + sfExAbs=ABSORP + sfInAbs=INABSORP + sfInHcModel = UNIFIED + sfExHcModel = UNIFIED + +DEFTYPE SURFACE "IntWall" USETYPE WALL sfExCnd=ADJZN sfAdjZn = "Z2" + +ZONE Z1 + znModel = CZM + + znArea=400 + znVol=3200 + znSC=0 //shades always open + znAzm=0 + infAC=0 + znCair=1000 + znHcFrcF = .23 + znEaveZ = 10 + + infShld = 4 + + znTH = 65 + znTD = 68 + znTC = 74 + + znQMxH = 200000 + znQMxC = -200000 + + SURFACE WallN1 USETYPE WALL sfAzm = 0 sfExH = 1.3 + SURFACE WallS1 USETYPE WALL sfAzm = 180 sfCon = CFrm2x4 sfExHcLChar = 18 + SURFACE WallW1 USETYPE WALL sfAzm = 270 sfCon = lw_floor + SURFACE WallIZ USETYPE IntWall sfAzm = 270 sfTilt=85 sfCon = CFrm2x4 + + SURFACE Clg1 + sfType=Ceiling + sfModel=SURFMODEL + sfArea=400 + sfAzm=0 + sfTilt = 15 + sfCon=mass0 + sfExAbs=ABSORP + sfInAbs=INABSORP + sfInHcModel = UNIFIED + sfExHcModel = UNIFIED + + ZONE Z2 + znModel = CZM + + znArea=400 + znVol=3200 + znSC=0 //shades always open + znAzm=0 + infAC=0 + znCair=1000 + znFloorZ = 2 + + znTH = 65 znTD = 68 + znTC = 70 + + + infShld = 4 + infStories = 3 + + znQMxH = 200000 + znQMxC = -200000 + + SURFACE WallN2 USETYPE WALL sfAzm = 0 + SURFACE WallE2 USETYPE WALL sfAzm = 90 // sfCon = CFrm2x4 + SURFACE WallS2 USETYPE WALL sfAzm = 180 sfCon = CFrm2x4 + + SURFACE Clg2 + sfType=Ceiling + sfModel=SURFMODEL + sfArea=400 + sfAzm=0 + sfTilt = 20 + sfCon=mass0 + sfExAbs=ABSORP + sfInAbs=INABSORP + sfInHcModel = UNIFIED + sfExHcModel = UNIFIED + + + //--------- REPORTS ------------ + REPORT rpType=ZEB rpZone=Z1 rpFreq=Month + REPORT rpType=ZEB rpZone=Z2 rpFreq=Month + REPORT rpType=ZEB rpZone=Z1 rpDayBeg=Jul 10 rpDayEnd= Jul 10 rpFreq=Hour + REPORT rpType=ZEB rpZone=Z2 rpDayBeg=Jul 10 rpDayEnd= Jul 10 rpFreq=Hour + + RUN + + CLEAR + + elevation = 1000 + + repHdrL="Command Test" + repHdrR="" + WfName="CTZ12S13B.CSW" + BEGDay=Jan 1 // + ENDDay=Dec 31 // + ebTolHour=.001 ebTolDay=.001 ebTolMon=.001 + Jan1DOW=Tue + wuDays=30 // + nSubSteps=10 // + skyModel=anisotropic // + WindF=.7 + bldgAzm=0.0 //don't adjust surface azimuths + DT=NO //No daylight savings per BESTEST p.9 + + DELETE HOLIDAY "New Year's Day" //No holidays per BESTEST p.9 + DELETE HOLIDAY "M L King Day" + DELETE HOLIDAY "President's Day" + DELETE HOLIDAY "Memorial Day" + DELETE HOLIDAY "Fourth of July" + DELETE HOLIDAY "Labor Day" + DELETE HOLIDAY "Columbus Day" + DELETE HOLIDAY "Veterans Day" + DELETE HOLIDAY "Thanksgiving" + DELETE HOLIDAY "Christmas" + +//------ MATERIALS section for lightweight case ------ +MATERIAL "Plasterboard" matCond=0.09243 matSpHt=0.2008 matDens=59.375 +MATERIAL "FiberQuilt" matCond=0.02311 matSpHt=0.2008 matDens=0.75 +MATERIAL "WoodSiding" matCond=0.08088 matSpHt=0.2151 matDens=33.125 +MATERIAL "Ins0" matCond=0.01 matSpHt=0 matDens=0 +MATERIAL "SunWallMat" matCond=0.295 matSpHt=0.239 matDens=87.399 + +//------ MATERIALS section for heavyweight case ------ +MATERIAL "ConcreteBlock" matCond=0.2946 matSpHt=0.239 matDens=87.5 +MATERIAL "FoamInsul" matCond=0.02311 matSpHt=0.3346 matDens=0.625 +MATERIAL "ConcreteSlab" matCond=0.6528 matSpHt=0.239 matDens=87.5 +MATERIAL "Mass0_Ins" MatCond = 0.02 matSpHt=0 matDens = 0 + +//Revised materials 120114 BAW +#define RCQ 1.0 +MATERIAL "NCeilIns" matCond=0.025/RCQ matCondCT=.0042 matSpHt=0.2 matDens=0.7 // +MATERIAL "NR21" matCond=(5.5/(12.*21.))/RCQ matSpHt=.2 matDens=0.7 matThk=5.5/12. // Lower density from 2009 HOF 26.6 +MATERIAL "NR13" matCond=(3.5/(12.*13.))/RCQ matSpHt=.2 matDens=0.7 matThk=3.5/12. // Lower density from 2009 HOF 26.6 +MATERIAL "NFoam" matCond=1./(48) matSpHt=.35 matDens=1.5 // R4 from 2009 HOF 26.6 +MATERIAL "NGypbd" matCond=1.1/12 matSpHt=0.27 matDens=40 // 2009 HOF 26.6 +MATERIAL "NOSB" matCond=0.5/(0.68*12) matSpHt=.45 matDens=41. // 2009 HOF 26.6 k=thick/R +MATERIAL "NSoftWood" matCond=0.98/12 matSpHt=.39 matDens=35. // 2009 HOF 26.6 Douglas fir/larch +MATERIAL "TileGap" matCond=0.75/(0.85*12.) matSpHt=.24 matDens=0.075 matThk=0.75/12. // 2009 HOF 26.3 90 deg, down, E=.82 +MATERIAL "ConcTile" matCond=1 matSpHt=.2 matDens=120 matThk=1./12. // 2008 RACM Table R3-10 + + + +// ----- CONSTRUCTION section for lightweight case ----- + + CONSTRUCTION lw_wall + layer lrThk=0.03937 + lrMat="Plasterboard" + layer lrThk=0.2165 + lrMat="FiberQuilt" + layer lrThk=0.02953 lrMat="WoodSiding" + + CONSTRUCTION mass0 + layer lrThk = .333 lrMat = mass0_Ins + + CONSTRUCTION light + layer lrThk = .333 lrMat = mass0_Ins + layer lrThk = .1 lrMat = FoamInsul + + CONSTRUCTION foam_wall + layer lrThk = .1 lrMat = FoamInsul + + CONSTRUCTION conc_wall + layer lrThk = .1 lrMat = ConcreteSlab + + +MATERIAL "TimberFloor" matCond=0.08088 matSpHt=0.2868 matDens=40.625 + +CONSTRUCTION lw_floor + layer lrThk=0.08202 lrMat="TimberFloor" + layer lrThk=.12 lrMat="TimberFloor" + + + CONSTRUCTION roofcon + layer lrThk=0.03937 lrMat="Plasterboard" + layer lrThk=0.3668 lrMat="FiberQuilt" + layer lrThk=0.06234 lrMat="WoodSiding" + + CONSTRUCTION sunwall + layer lrThk=0.656 + lrMat="SunWallMat" + +// ----- CONSTRUCTION section for heavyweight case ----- + + CONSTRUCTION hw_wall + layer lrThk=0.3281 + lrMat="ConcreteBlock" + layer lrThk=1/12 + lrMat="FoamInsul" + layer lrThk=0.02953 lrMat="WoodSiding" + + CONSTRUCTION hw_floor + layer lrThk=0.2625 + lrMat="ConcreteSlab" + layer lrThk=3.304 + lrMat="Ins0" + + CONSTRUCTION CFrm2x4 // 3.5" + Layer lrMat="NGypbd" lrThk=0.5/12. + Layer lrMat="NSoftWood" lrThk=3.5/12. // 2x4 joist + Layer lrMat="NCeilIns" lrThk=(9.794251-3.5)/12. //insulation above the joist + + + +// ----- CONSTRUCTION section for R 1000 high resistance test case --- + + CONSTRUCTION styro + layer lrThk=23 lrMat="FoamInsul" + +IZXFER H341 izNVTYPE = AirNetExt izZN1 = Z2 izALo = 2 izHD = 24. izNVEff = 1 +IZXFER Z1Z2 izNVTYPE = AirNetIZ izZN1 = Z2 izZN2 = Z1 izALo = 1 izHD = 3. + +DEFTYPE SURFACE WALL + sfType=Wall + sfModel=SURFMODEL + sfArea=400 + sfAzm=0 + sfExH = 1.2 + sfCon=mass0 + sfExAbs=ABSORP + sfInAbs=INABSORP + sfInHcModel = UNIFIED + sfExHcModel = UNIFIED + +DEFTYPE SURFACE "IntWall" USETYPE WALL sfExCnd=ADJZN sfAdjZn = "Z2" + +ZONE Z1 + znModel = CZM + + znArea=400 + znVol=3200 + znSC=0 //shades always open + znAzm=0 + infAC=0 + znCair=1000 + znHcFrcF = .23 + znEaveZ = 10 + + infShld = 4 + + znTH = 65 + znTD = 68 + znTC = 74 + + znQMxH = 200000 + znQMxC = -200000 + + SURFACE WallN1 USETYPE WALL sfAzm = 0 sfExH = 1.3 + SURFACE WallS1 USETYPE WALL sfAzm = 180 sfCon = CFrm2x4 sfExHcLChar = 18 + SURFACE WallW1 USETYPE WALL sfAzm = 270 sfCon = lw_floor + SURFACE WallIZ1 USETYPE IntWall sfAzm = 270 sfTilt=85 sfCon = CFrm2x4 + + SURFACE Clg1 + sfType=Ceiling + sfModel=SURFMODEL + sfArea=400 + sfAzm=0 + sfTilt = 15 + sfCon=mass0 + sfExAbs=ABSORP + sfInAbs=INABSORP + sfInHcModel = UNIFIED + sfExHcModel = UNIFIED + + ZONE Z2 + znModel = CZM + + znArea=400 + znVol=3200 + znSC=0 //shades always open + znAzm=0 + infAC=0 + znCair=1000 + znFloorZ = 2 + + znTH = 65 znTD = 68 + znTC = 70 + + + infShld = 4 + infStories = 3 + + znQMxH = 200000 + znQMxC = -200000 + + SURFACE WallN2 USETYPE WALL sfAzm = 0 + SURFACE WallE2 USETYPE WALL sfAzm = 90 // sfCon = CFrm2x4 + SURFACE WallS2 USETYPE WALL sfAzm = 180 sfCon = CFrm2x4 + + SURFACE Clg2 + sfType=Ceiling + sfModel=SURFMODEL + sfArea=400 + sfAzm=0 + sfTilt = 20 + sfCon=mass0 + sfExAbs=ABSORP + sfInAbs=INABSORP + sfInHcModel = UNIFIED + sfExHcModel = UNIFIED + + + //--------- REPORTS ------------ + REPORT Z1BMon rpType=ZEB rpZone=Z1 rpFreq=Month + REPORT Z2BMon rpType=ZEB rpZone=Z2 rpFreq=Month + REPORT Z1BHr rpType=ZEB rpZone=Z1 rpDayBeg=Jul 10 rpDayEnd= Jul 10 rpFreq=Hour + REPORT Z2Bhr rpType=ZEB rpZone=Z2 rpDayBeg=Jul 10 rpDayEnd= Jul 10 rpFreq=Hour + +RUN + +// delete Z1 and refs to it +DELETE ZONE Z1 +DELETE REPORT Z1BMon +DELETE REPORT Z1BHr +DELETE IZXFER Z1Z2 + +RUN + +ZONE Z3 COPY Z2 +IZXFER H34X izNVTYPE = AirNetExt izZN1 = Z3 izALo = 2 izHD = 24. izNVEff = .3 + +REPORT Z3BMon LIKE Z2BMon rpZone=Z3 +REPORT Z3BHr LIKE Z2BHr rpZone=Z3 + +RUN + +CLEAR + +// Dual DHWSYS case +// Tests COPY with subobjects and string expression + +wfName = "SACRAMENTO-EXECUTIVE_STYP20.epw" // use different weather file + + +//365 day DHW Profile +#define DHW4BR choose1($dayofyear,"5H","3F","2S","3U","3M","4T","5W","5R","3F","2S","4U","6M","6T","3W","2R","2F","2S","3U","3H","4T","5W","1R","1F","2S","3U","6M","2T","5W","4R","2F","5S",\ +"2U","4M","5T","3W","3R","3F","4S","2U","4M","5T","2W","3R","2F","2S","6U","3H","2T","3W","2R","5F","4S","4U","4M","4T","2W","5R","5F","4S","1U","1M","3T","3W","1R","3F","2S","2U","6M",\ +"5T","1W","5R","4F","4S","5U","3M","6T","2W","5R","6F","4S","2U","4M","4T","4W","5R","3F","4S","5U","4M","3H","4W","4R","4F","6S","4U","2M","2T","4W","4R","3F","3S","4U","3M","2T","1W",\ +"5R","5F","5S","3U","6M","4T","3W","5R","4F","2S","3U","1M","3T","5W","2R","2F","2S","2U","4M","2T","6W","3R","2F","1S","4U","4M","4T","4W","3R","2F","2S","4U","6M","2T","2W","3R","2F",\ +"2S","3U","5H","2T","2W","4R","4F","6S","2U","6M","2T","4W","2R","3F","1S","4U","2M","1T","3W","2R","2F","3S","3U","2M","3T","5W","4R","5F","6S","4U","3M","4T","4W","4R","5F","3S","6U",\ +"5M","4T","4W","2R","4H","1S","4U","6M","2T","5W","4R","4F","2S","2U","3M","2T","1W","2R","2F","4S","2U","6M","2T","4W","2R","4F","3S","1U","4M","6T","1W","4R","5F","3S","2U","4M","1T",\ +"4W","4R","2F","1S","2U","2M","4T","2W","2R","5F","2S","5U","4M","5T","6W","6R","3F","4S","5U","3M","3T","2W","4R","5F","4S","1U","4M","5T","6W","2R","6F","4S","2U","6H","4T","1W","5R",\ +"2F","6S","5U","4M","2T","2W","4R","3F","4S","2U","4M","3T","5W","5R","2F","5S","3U","1M","4T","4W","3R","2F","4S","4U","2M","1T","4W","4R","2F","3S","4U","3M","3T","3W","4R","4F","4S",\ +"2U","4M","4T","5W","2R","2F","4S","3U","1M","3T","2W","2R","4F","4S","3U","6M","3T","4W","2R","3F","5S","5U","5M","6T","1H","2R","3F","2S","2U","2M","1T","4W","2R","2F","3S","6U","2M",\ +"2T","2W","4H","2H","4S","5U","4M","1T","4W","4R","2F","1S","4U","2M","3T","4W","2R","2F","6S","5U","3M","6T","2W","1R","3F","2S","2U","2M","5T","2W","4R","3H","2S","5U","3M","4T","2W","4R") + +// project parameters +#define ShwrFLOWF 1 +#define ShwrDRAINHREFF 0 +#define CwshHOTF 0.22 +#define CwshUSEF 1 +#define FaucHOTF 0.5 +#define FaucFlowF 1 +#define BathFLOWF 1 +#define BathDRAINHREFF 0 +#define DwshFLOWF 1 + +// define macros for each end use (with specific parameters exposed) +#define SHWR( s, d, f) \ +DHWUSE wuHWEndUse="Shower" wuStart=s wuDuration=d wuFlow=f*ShwrFLOWF wuTemp=105 wuHeatRecEF=ShwrDRAINHREFF + +#define CWSH( s, d, f) \ +DHWUSE wuHWEndUse="CWashr" wuStart=s wuDuration=d wuFlow=f*CwshUSEF wuHotF=CwshHOTF + +#define FAUC( s, d, f) \ +DHWUSE wuHWEndUse="Faucet" wuStart=s wuDuration=d wuFlow=f*FaucFLOWF wuHotF=FaucHOTF + +#define BATH( s, d, f) \ +DHWUSE wuHWEndUse="Bath" wuStart=s wuDuration=d wuFlow=f*BathFLOWF wuTemp=105 wuHeatRecEF=BathDRAINHREFF + +#define DWSH( s, d, f) \ +DHWUSE wuHWEndUse="DWashr" wuStart=s wuDuration=d wuFlow=f*DwshFLOWF +//============================================================================================= + +// 1 person +DHWDAYUSE "1M" + FAUC( 6.92, 0.333, 0.836) SHWR( 7.20, 17.833, 1.149) FAUC( 7.56, 1.000, 0.189) FAUC( 10.82, 0.167, 0.590) + FAUC( 10.82, 4.667, 0.896) FAUC( 11.56, 0.667, 0.812) FAUC( 11.75, 0.500, 0.886) FAUC( 12.09, 0.833, 0.482) + FAUC( 12.13, 1.500, 2.515) FAUC( 12.16, 0.500, 1.542) SHWR( 12.18, 3.333, 1.708) FAUC( 12.45, 0.167, 0.935) + FAUC( 12.47, 5.667, 0.027) FAUC( 12.60, 0.333, 0.787) FAUC( 12.99, 0.500, 0.590) FAUC( 13.01, 0.167, 0.836) + FAUC( 13.02, 0.167, 0.886) FAUC( 13.54, 5.000, 0.759) FAUC( 13.65, 0.333, 1.009) FAUC( 14.55, 0.167, 0.443) + FAUC( 16.81, 0.167, 0.984) FAUC( 16.94, 0.167, 1.870) FAUC( 16.98, 0.500, 1.804) FAUC( 17.26, 0.833, 0.059) + FAUC( 17.29, 0.333, 0.541) FAUC( 17.45, 0.333, 0.664) FAUC( 17.71, 0.333, 0.467) FAUC( 18.01, 1.833, 1.167) + FAUC( 18.06, 0.833, 0.649) FAUC( 18.15, 0.667, 0.726) FAUC( 18.62, 1.500, 0.968) FAUC( 18.74, 0.333, 0.812) + FAUC( 20.41, 0.333, 0.344) FAUC( 20.50, 1.333, 1.144) FAUC( 20.53, 3.833, 1.219) FAUC( 20.61, 0.333, 0.640) + FAUC( 21.27, 0.667, 0.996) FAUC( 21.30, 0.333, 0.836) +ENDDHWDAYUSE +DHWDAYUSE "1T" + FAUC( 7.35, 1.500, 1.050) FAUC( 7.53, 2.167, 0.136) FAUC( 7.79, 1.167, 0.555) FAUC( 7.93, 1.500, 2.045) + FAUC( 8.21, 0.167, 0.787) FAUC( 8.33, 0.333, 1.304) FAUC( 8.36, 3.333, 1.237) FAUC( 8.46, 0.167, 0.541) + FAUC( 8.48, 0.833, 0.610) FAUC( 18.45, 0.500, 1.443) FAUC( 19.64, 0.333, 0.394) FAUC( 19.67, 0.167, 0.443) + FAUC( 20.02, 0.167, 0.295) SHWR( 20.96, 7.333, 1.708) FAUC( 21.12, 0.167, 0.492) FAUC( 21.40, 1.000, 0.484) +ENDDHWDAYUSE +DHWDAYUSE "1W" + FAUC( 5.24, 1.167, 0.388) FAUC( 7.04, 0.667, 0.657) SHWR( 7.50, 3.167, 1.504) FAUC( 7.82, 0.167, 0.407) + FAUC( 7.83, 0.167, 0.272) FAUC( 8.18, 1.000, 0.815) FAUC( 8.32, 0.167, 0.272) FAUC( 8.33, 1.667, 0.489) + SHWR( 8.36, 7.667, 1.335) FAUC( 8.59, 0.500, 0.724) FAUC( 8.75, 0.167, 0.453) FAUC( 8.76, 0.167, 0.272) + FAUC( 8.82, 0.167, 0.272) FAUC( 8.87, 0.333, 0.498) FAUC( 8.90, 0.167, 0.272) FAUC( 9.00, 0.167, 0.272) + FAUC( 9.03, 0.167, 0.272) CWSH( 9.08, 6.833, 0.595) FAUC( 9.27, 0.167, 0.407) FAUC( 9.28, 0.167, 0.407) + CWSH( 9.35, 5.667, 0.695) CWSH( 9.51, 0.333, 0.512) CWSH( 9.52, 0.500, 0.362) FAUC( 9.55, 0.167, 0.272) + CWSH( 9.61, 5.667, 0.697) FAUC( 9.73, 0.333, 0.340) CWSH( 9.77, 0.333, 0.506) CWSH( 9.78, 0.500, 0.350) + FAUC( 9.80, 4.167, 0.831) FAUC( 9.89, 0.333, 0.475) FAUC( 10.20, 0.500, 0.498) FAUC( 10.23, 0.333, 0.407) + FAUC( 10.55, 0.333, 0.679) FAUC( 11.91, 1.000, 0.340) FAUC( 12.14, 0.167, 0.272) FAUC( 12.76, 0.167, 0.272) + FAUC( 12.85, 0.167, 0.272) FAUC( 12.93, 0.167, 0.272) FAUC( 12.94, 0.167, 0.272) FAUC( 13.79, 0.167, 0.453) + FAUC( 13.82, 0.167, 0.272) FAUC( 13.84, 0.167, 0.272) FAUC( 15.31, 0.167, 0.272) FAUC( 15.70, 0.167, 0.272) + FAUC( 15.73, 0.167, 0.272) FAUC( 16.00, 0.167, 0.272) FAUC( 17.56, 0.167, 0.272) FAUC( 17.57, 0.167, 0.407) + FAUC( 17.85, 0.167, 0.272) FAUC( 17.87, 0.167, 0.272) FAUC( 17.98, 0.167, 0.272) FAUC( 18.61, 0.167, 0.272) + FAUC( 18.77, 0.167, 0.272) FAUC( 18.80, 0.167, 0.272) FAUC( 19.15, 0.167, 0.272) FAUC( 20.43, 0.833, 0.924) + FAUC( 20.47, 0.333, 0.362) SHWR( 20.48, 3.667, 1.483) FAUC( 21.16, 0.500, 0.634) FAUC( 21.17, 0.167, 0.407) + FAUC( 21.70, 1.167, 0.453) +ENDDHWDAYUSE +DHWDAYUSE "1R" + FAUC( 0.85, 0.167, 0.407) FAUC( 0.87, 0.167, 0.543) FAUC( 1.15, 0.167, 0.453) FAUC( 8.83, 0.167, 0.407) + CWSH( 8.90, 4.000, 1.030) FAUC( 9.30, 0.167, 0.407) FAUC( 9.34, 0.167, 0.407) CWSH( 9.64, 3.000, 1.352) + CWSH( 9.70, 0.167, 0.922) CWSH( 9.72, 0.167, 1.424) CWSH( 9.88, 3.000, 1.303) CWSH( 9.93, 0.167, 1.047) + FAUC( 13.40, 0.667, 1.109) FAUC( 13.42, 0.167, 0.679) FAUC( 13.43, 0.167, 0.543) FAUC( 13.51, 0.333, 0.860) + FAUC( 13.53, 0.667, 0.872) FAUC( 17.62, 0.167, 0.407) FAUC( 19.24, 0.167, 0.407) FAUC( 19.39, 0.167, 0.543) + FAUC( 20.93, 0.167, 0.407) FAUC( 23.10, 1.000, 0.347) FAUC( 23.50, 0.333, 1.087) +ENDDHWDAYUSE +DHWDAYUSE "1F" + FAUC( 6.59, 0.500, 0.724) FAUC( 6.66, 0.833, 0.896) FAUC( 6.68, 0.333, 0.860) FAUC( 6.75, 0.500, 0.936) + FAUC( 6.76, 0.167, 0.589) FAUC( 6.81, 0.500, 0.830) FAUC( 6.83, 0.167, 0.770) FAUC( 7.25, 0.667, 0.849) + FAUC( 7.55, 0.167, 0.407) FAUC( 9.71, 0.167, 0.407) DWSH( 9.77, 1.333, 0.453) FAUC( 15.76, 0.167, 0.589) + DWSH( 15.78, 1.333, 0.456) FAUC( 16.96, 0.167, 0.407) FAUC( 17.03, 0.167, 0.407) FAUC( 17.36, 4.333, 0.038) + FAUC( 17.44, 0.667, 0.826) FAUC( 17.90, 1.167, 0.815) FAUC( 18.00, 1.500, 0.971) FAUC( 18.34, 3.500, 0.923) + FAUC( 18.41, 0.167, 0.589) FAUC( 20.04, 0.333, 0.679) FAUC( 21.69, 0.167, 1.766) FAUC( 21.70, 0.167, 1.721) + FAUC( 21.76, 0.167, 1.721) FAUC( 21.90, 0.333, 1.743) FAUC( 21.93, 0.167, 0.770) FAUC( 22.12, 0.500, 0.906) + FAUC( 22.23, 0.167, 0.407) FAUC( 22.38, 0.167, 0.407) +ENDDHWDAYUSE +DHWDAYUSE "1S" + FAUC( 0.78, 0.167, 0.738) FAUC( 1.15, 0.167, 0.344) FAUC( 1.31, 0.667, 1.058) FAUC( 9.33, 0.500, 0.886) + FAUC( 10.21, 0.667, 0.775) SHWR( 10.23, 11.333, 1.066) FAUC( 10.45, 0.333, 0.713) FAUC( 10.55, 0.333, 0.713) + FAUC( 10.97, 0.500, 0.722) SHWR( 11.77, 4.167, 1.708) FAUC( 11.84, 2.500, 0.030) FAUC( 11.88, 1.667, 1.899) + FAUC( 12.07, 0.167, 0.738) FAUC( 12.09, 0.500, 1.050) FAUC( 12.11, 0.500, 0.787) FAUC( 12.29, 2.833, 0.917) + FAUC( 12.37, 1.000, 0.139) FAUC( 12.47, 0.167, 0.295) FAUC( 12.53, 0.167, 0.246) FAUC( 12.60, 0.167, 0.344) + FAUC( 12.86, 0.333, 0.148) FAUC( 13.35, 1.333, 1.181) FAUC( 14.13, 0.833, 1.171) FAUC( 14.44, 0.167, 0.246) + FAUC( 17.61, 0.333, 0.394) FAUC( 17.90, 0.333, 0.221) FAUC( 18.71, 1.333, 0.978) FAUC( 19.00, 0.500, 0.246) + FAUC( 19.50, 0.167, 0.640) FAUC( 19.92, 0.833, 1.053) FAUC( 20.86, 0.333, 0.148) FAUC( 21.12, 1.500, 0.979) + FAUC( 21.15, 0.167, 0.246) FAUC( 21.17, 0.833, 0.463) FAUC( 21.17, 0.333, 0.812) FAUC( 21.19, 0.500, 0.623) + FAUC( 21.20, 0.667, 0.566) FAUC( 21.54, 0.333, 0.664) FAUC( 21.55, 1.000, 0.886) FAUC( 21.56, 0.500, 0.672) + FAUC( 21.66, 0.167, 0.886) FAUC( 21.68, 0.167, 0.246) FAUC( 21.69, 0.167, 0.394) FAUC( 21.78, 1.000, 0.205) + FAUC( 22.89, 0.667, 0.738) FAUC( 23.03, 0.167, 0.295) +ENDDHWDAYUSE +DHWDAYUSE "1U" + FAUC( 7.44, 0.833, 1.259) FAUC( 7.45, 0.167, 0.226) FAUC( 7.46, 0.167, 0.226) FAUC( 7.46, 0.167, 0.453) + FAUC( 7.49, 5.667, 0.037) FAUC( 7.71, 0.167, 0.770) FAUC( 7.91, 0.333, 1.630) CWSH( 8.06, 3.000, 1.946) + CWSH( 8.25, 0.667, 0.928) CWSH( 8.31, 4.667, 1.200) CWSH( 8.49, 0.500, 1.190) FAUC( 9.05, 0.167, 0.634) + FAUC( 9.31, 1.000, 0.755) FAUC( 9.44, 0.167, 0.679) FAUC( 10.32, 0.333, 0.136) FAUC( 10.58, 0.167, 0.317) + FAUC( 12.39, 0.667, 0.623) FAUC( 12.42, 0.167, 0.815) FAUC( 12.54, 0.167, 0.317) FAUC( 12.85, 1.333, 0.577) + FAUC( 12.91, 0.833, 0.444) FAUC( 12.93, 7.500, 0.023) FAUC( 13.11, 0.667, 1.494) FAUC( 13.12, 0.167, 0.272) + FAUC( 13.12, 0.333, 0.136) FAUC( 13.22, 0.167, 0.407) FAUC( 13.34, 0.333, 1.313) FAUC( 13.40, 0.500, 0.347) + FAUC( 13.43, 0.833, 0.860) FAUC( 13.44, 0.167, 0.226) FAUC( 13.44, 0.167, 0.453) FAUC( 13.45, 4.500, 0.029) + FAUC( 13.54, 0.333, 0.521) FAUC( 13.54, 0.167, 0.226) FAUC( 15.95, 0.167, 0.226) FAUC( 15.95, 0.167, 0.815) + FAUC( 15.98, 1.167, 0.576) FAUC( 18.00, 0.500, 0.755) FAUC( 18.02, 0.333, 0.657) FAUC( 18.06, 0.167, 0.543) + SHWR( 18.60, 5.500, 1.529) FAUC( 18.72, 2.833, 0.061) FAUC( 18.80, 5.333, 0.027) FAUC( 18.89, 0.167, 0.272) + FAUC( 19.05, 0.833, 0.643) FAUC( 21.49, 0.167, 0.317) FAUC( 22.37, 1.000, 0.106) +ENDDHWDAYUSE +DHWDAYUSE "1H" + FAUC( 0.16, 0.333, 0.988) FAUC( 1.44, 0.167, 0.473) FAUC( 6.55, 0.333, 1.332) FAUC( 6.63, 0.167, 0.215) + FAUC( 8.50, 0.500, 1.160) FAUC( 8.57, 0.167, 0.473) CWSH( 8.80, 3.500, 1.148) FAUC( 8.85, 0.167, 1.160) + FAUC( 8.86, 2.833, 2.315) FAUC( 8.97, 0.833, 0.962) FAUC( 9.01, 2.167, 1.894) CWSH( 9.09, 0.500, 0.560) + CWSH( 9.13, 3.333, 0.996) CWSH( 9.25, 0.333, 1.275) FAUC( 9.29, 0.333, 0.816) CWSH( 9.48, 4.000, 1.152) + FAUC( 9.86, 0.167, 0.687) FAUC( 13.01, 0.167, 0.215) FAUC( 13.04, 0.167, 0.215) FAUC( 14.62, 0.333, 0.301) + FAUC( 14.64, 0.167, 0.473) FAUC( 15.41, 0.500, 1.490) FAUC( 15.43, 0.167, 0.215) FAUC( 15.48, 0.333, 1.934) + FAUC( 16.71, 0.500, 1.719) FAUC( 16.75, 0.333, 0.516) FAUC( 19.75, 0.500, 1.561) FAUC( 19.82, 0.167, 0.473) + FAUC( 20.22, 0.167, 1.891) SHWR( 22.22, 7.000, 1.314) FAUC( 22.42, 0.167, 0.945) +ENDDHWDAYUSE + +// 2 person +DHWDAYUSE "2M" + FAUC( 1.03, 0.167, 0.645) FAUC( 2.09, 0.167, 0.258) FAUC( 2.10, 0.167, 0.258) FAUC( 2.13, 0.167, 0.730) + SHWR( 4.16, 8.500, 1.354) FAUC( 6.88, 0.167, 0.945) FAUC( 6.91, 0.667, 0.666) FAUC( 7.01, 1.333, 0.591) + FAUC( 7.19, 2.167, 0.678) FAUC( 7.58, 1.667, 0.382) FAUC( 7.64, 4.167, 0.323) FAUC( 7.87, 0.167, 0.516) + SHWR( 7.98, 5.167, 1.393) FAUC( 8.45, 2.000, 0.630) SHWR( 8.75, 4.833, 1.492) FAUC( 8.78, 1.000, 0.730) + FAUC( 9.28, 0.500, 0.602) FAUC( 9.32, 0.500, 0.816) FAUC( 9.62, 0.500, 0.816) FAUC( 9.65, 0.167, 0.516) + FAUC( 9.70, 0.333, 0.408) FAUC( 9.79, 0.167, 1.117) FAUC( 9.94, 2.167, 1.210) FAUC( 10.01, 1.667, 1.478) + FAUC( 10.04, 0.500, 1.046) FAUC( 10.09, 0.167, 0.258) FAUC( 10.09, 0.167, 0.816) FAUC( 10.11, 0.167, 0.344) + FAUC( 10.20, 0.167, 0.687) FAUC( 10.21, 0.333, 0.709) FAUC( 10.34, 0.167, 0.258) FAUC( 10.36, 0.167, 0.387) + FAUC( 10.38, 0.333, 0.838) FAUC( 10.64, 0.167, 0.215) FAUC( 10.66, 0.167, 0.344) FAUC( 10.66, 2.500, 1.444) + FAUC( 10.71, 0.500, 0.745) FAUC( 10.86, 0.167, 0.258) FAUC( 11.88, 0.333, 1.074) FAUC( 13.56, 0.500, 0.773) + FAUC( 13.77, 0.167, 0.559) FAUC( 14.13, 0.833, 2.664) FAUC( 14.85, 1.333, 2.143) SHWR( 15.08, 4.833, 1.492) + FAUC( 15.29, 0.167, 0.258) FAUC( 15.68, 0.333, 0.344) FAUC( 16.98, 0.333, 0.537) FAUC( 17.04, 0.500, 1.332) + FAUC( 17.06, 0.500, 0.859) FAUC( 17.53, 0.167, 0.945) FAUC( 17.56, 0.167, 0.816) FAUC( 17.95, 2.000, 1.851) + FAUC( 18.07, 1.667, 1.259) BATH( 18.10, 2.500, 3.584) FAUC( 18.30, 0.333, 0.902) FAUC( 18.58, 0.333, 0.924) + FAUC( 19.11, 0.167, 0.945) FAUC( 19.60, 0.167, 0.473) FAUC( 20.16, 2.667, 0.811) FAUC( 20.52, 1.833, 1.148) + FAUC( 20.56, 0.500, 0.816) FAUC( 20.57, 0.167, 0.344) CWSH( 21.09, 4.333, 1.267) CWSH( 21.37, 2.167, 0.870) + CWSH( 21.41, 1.333, 0.837) CWSH( 21.48, 4.500, 0.924) FAUC( 23.08, 1.167, 1.891) +ENDDHWDAYUSE +DHWDAYUSE "2T" + SHWR( 7.19, 4.333, 1.492) SHWR( 7.35, 5.000, 0.865) SHWR( 7.44, 7.000, 0.818) FAUC( 7.74, 1.000, 0.952) + FAUC( 7.78, 0.667, 0.902) FAUC( 8.16, 0.667, 0.602) FAUC( 8.25, 1.167, 0.933) FAUC( 8.30, 4.000, 1.212) + FAUC( 8.35, 1.000, 0.938) CWSH( 9.62, 3.667, 1.373) CWSH( 9.89, 3.500, 0.869) CWSH( 10.02, 5.333, 0.858) + FAUC( 12.24, 1.333, 0.886) FAUC( 12.27, 1.833, 0.930) FAUC( 12.56, 0.333, 0.602) FAUC( 12.72, 0.667, 0.687) + FAUC( 12.74, 0.333, 0.580) FAUC( 12.78, 0.333, 0.645) FAUC( 12.84, 1.667, 0.894) FAUC( 12.89, 2.167, 0.876) + FAUC( 12.92, 0.167, 0.387) FAUC( 12.95, 0.333, 0.537) FAUC( 13.77, 1.333, 0.440) FAUC( 14.09, 0.333, 0.365) + FAUC( 14.17, 0.500, 0.645) FAUC( 14.21, 0.833, 0.920) FAUC( 14.48, 1.167, 0.687) FAUC( 14.73, 0.500, 0.859) + FAUC( 14.74, 0.500, 0.573) FAUC( 16.56, 0.333, 0.859) FAUC( 19.84, 0.167, 0.258) FAUC( 21.38, 0.333, 0.580) + FAUC( 22.20, 1.333, 0.859) FAUC( 23.16, 1.167, 0.939) FAUC( 23.18, 0.833, 0.954) +ENDDHWDAYUSE +DHWDAYUSE "2W" + FAUC( 6.28, 8.000, 0.513) FAUC( 6.31, 0.500, 1.031) SHWR( 6.42, 7.333, 1.076) FAUC( 6.64, 0.333, 0.537) + FAUC( 6.90, 0.667, 0.752) FAUC( 7.50, 0.833, 0.859) FAUC( 7.54, 0.500, 0.702) FAUC( 7.55, 0.167, 0.043) + FAUC( 7.80, 2.833, 0.437) FAUC( 7.93, 0.333, 0.322) FAUC( 7.95, 0.333, 0.172) FAUC( 8.01, 0.333, 0.838) + FAUC( 8.11, 0.333, 0.666) FAUC( 8.36, 0.500, 0.659) FAUC( 8.37, 0.333, 0.193) FAUC( 8.95, 0.500, 0.329) + FAUC( 9.26, 0.333, 0.537) FAUC( 9.27, 0.500, 0.401) FAUC( 9.33, 0.333, 0.107) SHWR( 11.12, 5.167, 1.492) + FAUC( 11.88, 0.167, 0.043) FAUC( 12.06, 0.333, 0.945) FAUC( 12.13, 0.333, 0.666) FAUC( 12.25, 0.500, 0.687) + FAUC( 12.62, 0.667, 0.806) CWSH( 12.66, 3.833, 1.070) FAUC( 12.79, 1.333, 0.854) CWSH( 13.02, 0.333, 0.177) + CWSH( 13.03, 0.667, 0.097) CWSH( 13.08, 4.833, 0.868) FAUC( 13.11, 1.500, 0.578) CWSH( 13.26, 0.333, 0.153) + CWSH( 13.27, 0.167, 0.032) CWSH( 13.27, 0.167, 0.499) CWSH( 13.36, 4.833, 0.847) FAUC( 14.17, 0.333, 0.902) + FAUC( 15.23, 0.333, 0.945) FAUC( 15.55, 0.333, 0.559) FAUC( 15.75, 0.500, 1.117) FAUC( 15.94, 0.500, 0.100) + FAUC( 17.99, 0.333, 1.010) FAUC( 17.99, 1.167, 0.049) FAUC( 18.05, 0.333, 0.107) FAUC( 18.06, 0.333, 0.666) + FAUC( 18.11, 1.167, 0.933) FAUC( 18.22, 0.333, 0.451) FAUC( 18.25, 0.333, 0.129) FAUC( 18.25, 0.333, 0.086) + FAUC( 18.27, 0.333, 0.172) FAUC( 18.29, 0.333, 0.301) FAUC( 18.34, 0.333, 0.086) FAUC( 18.37, 0.333, 0.687) + FAUC( 18.63, 0.667, 0.451) FAUC( 18.95, 0.667, 1.031) FAUC( 18.97, 2.667, 0.918) FAUC( 19.01, 0.167, 0.043) + FAUC( 19.02, 0.167, 0.043) FAUC( 19.05, 1.667, 1.001) FAUC( 19.10, 0.500, 0.960) FAUC( 19.11, 0.167, 0.043) + FAUC( 19.11, 1.167, 0.872) FAUC( 19.19, 0.500, 0.802) FAUC( 19.20, 0.167, 0.043) FAUC( 19.23, 0.333, 0.430) + FAUC( 19.24, 1.500, 1.394) FAUC( 20.04, 1.167, 0.405) FAUC( 20.45, 2.500, 0.444) SHWR( 20.58, 10.667, 1.099) + FAUC( 21.11, 0.333, 0.408) FAUC( 21.23, 0.167, 0.043) FAUC( 21.23, 0.333, 0.279) FAUC( 21.24, 0.167, 0.043) + FAUC( 21.37, 0.833, 0.636) FAUC( 22.19, 0.833, 0.069) +ENDDHWDAYUSE +DHWDAYUSE "2R" + FAUC( 17.91, 0.333, 0.679) FAUC( 18.64, 0.167, 0.362) FAUC( 18.65, 0.333, 0.272) FAUC( 18.66, 0.333, 0.589) + FAUC( 18.75, 0.167, 0.362) DWSH( 19.16, 18.167, 0.129) DWSH( 19.56, 0.833, 0.798) DWSH( 20.06, 0.833, 0.758) + DWSH( 20.17, 1.000, 0.684) DWSH( 20.29, 1.000, 0.684) FAUC( 20.56, 0.167, 0.634) FAUC( 20.59, 0.167, 0.498) + FAUC( 20.60, 0.333, 0.407) FAUC( 20.63, 0.500, 0.770) FAUC( 21.27, 0.333, 0.453) FAUC( 21.34, 0.667, 0.668) + FAUC( 22.80, 0.333, 0.770) +ENDDHWDAYUSE +DHWDAYUSE "2F" + FAUC( 6.87, 0.167, 1.132) FAUC( 7.10, 0.500, 0.785) FAUC( 7.84, 0.333, 0.770) FAUC( 7.89, 0.333, 0.362) + FAUC( 8.31, 0.500, 1.207) FAUC( 8.80, 0.500, 1.041) FAUC( 8.82, 1.000, 1.170) FAUC( 8.84, 1.167, 0.737) + FAUC( 8.88, 4.000, 1.079) FAUC( 8.97, 1.000, 0.581) FAUC( 8.99, 1.000, 0.860) FAUC( 9.01, 1.333, 1.098) + SHWR( 9.22, 8.500, 1.120) FAUC( 9.55, 0.500, 0.423) FAUC( 9.79, 0.167, 0.317) FAUC( 10.01, 0.167, 0.407) + FAUC( 10.11, 0.167, 1.539) FAUC( 10.12, 0.667, 1.324) FAUC( 12.19, 0.167, 0.407) FAUC( 12.90, 1.000, 1.079) + FAUC( 13.22, 0.167, 1.132) FAUC( 13.22, 1.000, 1.117) FAUC( 16.15, 0.167, 0.407) FAUC( 16.89, 0.333, 1.268) + FAUC( 18.59, 0.500, 0.830) FAUC( 18.64, 0.333, 0.996) FAUC( 18.73, 0.833, 0.643) FAUC( 19.95, 0.167, 0.543) + CWSH( 20.37, 1.667, 0.908) CWSH( 20.56, 1.667, 0.902) CWSH( 20.73, 1.667, 0.876) CWSH( 20.78, 0.333, 0.673) + FAUC( 21.07, 3.000, 0.765) FAUC( 21.16, 0.167, 0.407) CWSH( 21.19, 1.500, 0.977) CWSH( 21.33, 1.667, 0.873) + FAUC( 21.55, 0.333, 1.404) +ENDDHWDAYUSE +DHWDAYUSE "2S" + FAUC( 5.93, 0.500, 1.000) FAUC( 5.94, 0.167, 0.197) SHWR( 7.60, 10.333, 1.104) FAUC( 7.90, 0.333, 1.033) + FAUC( 8.01, 0.333, 0.148) FAUC( 8.02, 0.167, 0.295) FAUC( 8.43, 0.333, 0.566) FAUC( 8.44, 0.167, 0.492) + FAUC( 8.44, 0.167, 0.197) FAUC( 8.72, 0.500, 0.656) FAUC( 9.12, 0.167, 0.443) FAUC( 9.15, 0.333, 2.952) + FAUC( 9.16, 1.333, 0.886) FAUC( 9.17, 0.833, 1.014) FAUC( 9.19, 1.167, 1.139) FAUC( 9.31, 0.167, 0.640) + FAUC( 9.31, 1.167, 0.865) FAUC( 9.32, 0.667, 1.710) FAUC( 9.35, 0.167, 1.132) FAUC( 9.36, 0.333, 1.353) + FAUC( 9.36, 0.167, 0.197) FAUC( 9.62, 0.667, 1.722) FAUC( 9.66, 2.000, 1.447) FAUC( 9.74, 0.167, 0.492) + FAUC( 9.79, 0.333, 0.418) CWSH( 9.84, 3.667, 1.540) FAUC( 9.97, 0.167, 0.443) CWSH( 10.10, 1.167, 1.398) + CWSH( 10.13, 3.500, 1.535) CWSH( 10.38, 3.667, 1.554) FAUC( 10.49, 3.167, 0.026) CWSH( 10.63, 1.167, 1.372) + CWSH( 10.67, 3.500, 1.529) FAUC( 11.03, 0.167, 0.541) FAUC( 11.03, 0.167, 0.197) FAUC( 11.06, 0.167, 0.197) + FAUC( 11.87, 2.333, 1.030) FAUC( 11.92, 0.167, 0.443) FAUC( 12.21, 0.167, 0.492) FAUC( 12.37, 0.167, 0.197) + FAUC( 12.49, 0.167, 0.492) FAUC( 12.49, 1.333, 0.990) FAUC( 12.55, 0.500, 0.558) FAUC( 12.57, 0.333, 1.205) + FAUC( 12.65, 0.167, 1.033) FAUC( 14.76, 0.167, 0.197) FAUC( 15.69, 0.167, 0.640) FAUC( 16.32, 0.500, 0.148) + FAUC( 16.57, 0.167, 1.427) FAUC( 16.59, 0.333, 0.787) SHWR( 17.01, 10.000, 1.050) FAUC( 17.20, 0.167, 0.197) + FAUC( 17.20, 0.333, 0.935) FAUC( 17.21, 0.333, 0.197) FAUC( 17.24, 0.833, 1.328) FAUC( 17.30, 0.500, 0.656) + FAUC( 17.33, 0.333, 1.451) FAUC( 17.39, 0.167, 0.492) FAUC( 17.55, 0.167, 0.443) FAUC( 17.63, 0.167, 0.836) + FAUC( 17.89, 0.333, 1.353) FAUC( 17.91, 0.167, 0.443) FAUC( 18.00, 4.500, 0.745) FAUC( 18.10, 0.333, 0.467) + FAUC( 18.45, 0.167, 0.197) FAUC( 18.45, 0.333, 0.615) FAUC( 18.52, 0.333, 0.886) FAUC( 18.69, 5.833, 0.018) + FAUC( 18.78, 0.333, 0.787) FAUC( 18.79, 0.167, 0.197) FAUC( 18.80, 0.333, 0.148) FAUC( 18.83, 0.333, 0.271) + FAUC( 18.83, 0.167, 0.197) FAUC( 18.84, 0.333, 0.787) FAUC( 18.86, 0.167, 0.197) FAUC( 18.87, 0.333, 0.517) + FAUC( 18.87, 0.333, 0.148) FAUC( 18.92, 0.333, 0.615) FAUC( 19.09, 0.333, 0.566) FAUC( 19.16, 2.833, 0.049) + FAUC( 19.67, 0.333, 0.148) FAUC( 19.88, 0.167, 0.295) FAUC( 20.93, 0.167, 0.443) +ENDDHWDAYUSE +DHWDAYUSE "2U" + FAUC( 1.96, 0.333, 0.362) FAUC( 5.36, 0.333, 0.362) FAUC( 8.97, 0.500, 1.222) FAUC( 8.99, 0.167, 1.087) + FAUC( 9.51, 0.167, 0.362) FAUC( 10.02, 0.667, 1.053) FAUC( 10.08, 0.333, 0.906) FAUC( 11.28, 1.333, 1.166) + FAUC( 11.39, 1.167, 1.041) FAUC( 11.67, 0.500, 1.585) FAUC( 11.69, 1.667, 0.471) FAUC( 11.69, 1.167, 0.783) + FAUC( 11.72, 2.667, 1.231) DWSH( 11.79, 1.833, 0.284) DWSH( 11.93, 2.000, 0.273) DWSH( 12.07, 1.667, 0.294) + FAUC( 12.15, 0.333, 0.543) FAUC( 12.17, 0.333, 0.724) DWSH( 12.38, 1.500, 0.314) DWSH( 12.47, 1.667, 0.293) + FAUC( 14.29, 0.167, 1.449) FAUC( 14.62, 0.500, 0.483) FAUC( 15.22, 0.667, 1.551) FAUC( 15.25, 0.667, 1.189) + FAUC( 15.28, 0.667, 1.189) FAUC( 15.48, 0.667, 1.143) FAUC( 15.55, 0.500, 1.222) FAUC( 15.63, 0.667, 1.279) + FAUC( 17.25, 0.333, 0.362) FAUC( 17.59, 0.333, 0.362) FAUC( 17.61, 0.167, 1.087) FAUC( 17.82, 0.167, 0.724) + FAUC( 18.05, 0.500, 0.724) FAUC( 18.17, 0.833, 0.815) FAUC( 18.42, 0.333, 0.906) FAUC( 18.55, 0.500, 0.860) + FAUC( 18.60, 1.167, 0.834) FAUC( 18.63, 0.500, 0.724) FAUC( 18.70, 0.667, 1.460) FAUC( 21.32, 0.833, 0.951) + FAUC( 21.83, 0.167, 0.724) SHWR( 23.50, 8.333, 1.572) FAUC( 23.61, 0.167, 0.362) FAUC( 23.70, 0.500, 0.770) + FAUC( 23.72, 0.167, 0.724) +ENDDHWDAYUSE +DHWDAYUSE "2H" + FAUC( 4.45, 0.167, 0.226) SHWR( 7.70, 2.833, 1.470) FAUC( 7.79, 0.667, 0.509) SHWR( 8.08, 4.833, 1.260) + FAUC( 8.51, 0.500, 0.257) FAUC( 9.26, 1.000, 0.060) FAUC( 9.44, 2.833, 0.312) FAUC( 9.84, 1.667, 0.503) + FAUC( 10.16, 1.500, 0.397) FAUC( 10.19, 1.167, 0.679) FAUC( 10.25, 0.333, 0.566) CWSH( 10.35, 1.500, 1.854) + FAUC( 10.69, 0.833, 1.041) CWSH( 10.77, 2.000, 1.380) FAUC( 10.84, 0.333, 0.249) CWSH( 11.06, 2.333, 1.686) + CWSH( 11.36, 2.500, 1.270) FAUC( 11.57, 0.333, 0.385) FAUC( 11.58, 0.500, 0.890) FAUC( 14.82, 0.500, 0.241) + FAUC( 14.84, 0.500, 0.377) FAUC( 14.92, 2.500, 0.121) SHWR( 16.97, 5.000, 1.528) FAUC( 17.03, 0.833, 1.141) + FAUC( 18.45, 3.333, 0.690) FAUC( 18.51, 2.333, 0.899) FAUC( 18.60, 0.833, 0.987) FAUC( 20.34, 0.333, 1.336) + FAUC( 21.05, 0.500, 0.890) FAUC( 21.06, 1.833, 1.227) FAUC( 21.12, 1.333, 1.426) FAUC( 21.22, 2.667, 0.192) + FAUC( 21.58, 1.333, 0.832) FAUC( 21.71, 0.500, 0.694) FAUC( 21.92, 0.500, 0.574) +ENDDHWDAYUSE + +// 3 person +DHWDAYUSE "3M" + FAUC( 5.86, 0.333, 0.214) FAUC( 5.88, 0.667, 0.642) FAUC( 5.90, 0.500, 0.571) FAUC( 6.01, 0.333, 0.589) + FAUC( 6.02, 1.333, 1.144) FAUC( 6.60, 0.500, 0.393) FAUC( 7.48, 0.167, 0.856) SHWR( 7.70, 18.167, 1.859) + FAUC( 8.08, 0.167, 0.803) FAUC( 8.16, 0.500, 0.410) FAUC( 8.29, 0.667, 1.071) FAUC( 8.31, 0.500, 1.178) + FAUC( 8.56, 1.000, 0.384) FAUC( 8.97, 2.000, 1.610) FAUC( 9.06, 3.167, 1.812) BATH( 9.16, 4.167, 3.105) + FAUC( 9.89, 0.167, 1.124) FAUC( 9.89, 1.000, 0.517) FAUC( 9.92, 0.167, 0.482) FAUC( 9.93, 1.000, 0.901) + FAUC( 9.95, 0.333, 0.428) FAUC( 10.27, 2.500, 2.338) FAUC( 10.84, 0.333, 0.883) FAUC( 10.85, 0.333, 0.616) + FAUC( 10.88, 0.167, 0.321) FAUC( 10.91, 0.167, 0.696) FAUC( 10.91, 0.333, 0.776) FAUC( 10.93, 0.500, 0.517) + FAUC( 10.98, 0.667, 0.683) FAUC( 11.00, 0.333, 0.509) SHWR( 12.36, 6.833, 1.859) FAUC( 12.38, 2.167, 1.503) + FAUC( 12.61, 2.000, 0.990) FAUC( 12.83, 0.167, 0.482) FAUC( 14.84, 0.167, 0.749) FAUC( 15.02, 0.333, 0.187) + FAUC( 15.32, 0.333, 0.214) FAUC( 16.35, 0.167, 0.749) FAUC( 16.36, 0.333, 0.642) FAUC( 16.37, 0.667, 0.856) + FAUC( 16.62, 1.500, 0.803) FAUC( 16.66, 0.167, 0.428) FAUC( 17.25, 0.167, 0.428) FAUC( 17.85, 0.333, 0.856) + FAUC( 18.58, 0.167, 0.482) FAUC( 19.63, 0.167, 1.017) FAUC( 19.79, 0.167, 0.375) FAUC( 20.08, 0.167, 1.071) + FAUC( 20.15, 0.333, 0.268) FAUC( 20.48, 0.333, 0.509) FAUC( 21.02, 1.000, 0.687) FAUC( 21.04, 0.500, 0.589) + FAUC( 22.12, 0.667, 0.629) FAUC( 22.16, 0.167, 0.482) FAUC( 22.43, 0.500, 1.035) FAUC( 22.56, 0.167, 0.589) +ENDDHWDAYUSE +DHWDAYUSE "3T" + SHWR( 6.54, 4.667, 1.417) FAUC( 6.70, 4.500, 0.441) FAUC( 6.93, 0.167, 0.226) FAUC( 7.13, 0.167, 0.226) + FAUC( 7.58, 1.000, 1.011) FAUC( 8.11, 0.167, 0.634) CWSH( 8.13, 4.833, 0.993) FAUC( 8.31, 0.167, 0.498) + FAUC( 8.33, 0.167, 0.634) FAUC( 8.34, 0.167, 0.770) FAUC( 8.34, 0.833, 1.032) CWSH( 8.40, 2.667, 1.008) + CWSH( 8.50, 5.167, 0.940) CWSH( 8.65, 0.500, 0.617) FAUC( 9.40, 0.333, 2.400) FAUC( 9.42, 0.500, 1.253) + FAUC( 9.46, 0.500, 0.785) FAUC( 9.47, 1.333, 1.364) FAUC( 9.51, 1.500, 1.036) FAUC( 9.51, 0.500, 0.468) + FAUC( 9.66, 1.667, 1.272) FAUC( 9.71, 0.333, 0.385) FAUC( 9.82, 0.333, 0.430) FAUC( 9.83, 0.167, 0.226) + FAUC( 10.68, 0.167, 0.770) FAUC( 10.70, 0.667, 0.668) FAUC( 10.72, 0.333, 0.430) FAUC( 10.74, 0.500, 0.468) + FAUC( 10.75, 1.000, 0.551) FAUC( 10.77, 0.333, 0.475) FAUC( 10.93, 0.333, 0.815) FAUC( 10.98, 0.333, 1.064) + FAUC( 11.16, 0.167, 0.543) FAUC( 11.35, 0.333, 0.521) FAUC( 11.49, 0.167, 0.724) FAUC( 12.66, 0.333, 0.543) + FAUC( 13.34, 0.167, 0.317) FAUC( 13.35, 0.167, 0.226) FAUC( 13.37, 0.167, 0.226) FAUC( 13.53, 0.500, 0.634) + FAUC( 13.59, 0.167, 0.543) FAUC( 13.59, 0.667, 0.804) FAUC( 14.49, 0.167, 0.770) FAUC( 14.85, 0.167, 0.226) + FAUC( 14.88, 1.167, 0.828) FAUC( 15.01, 0.333, 0.317) FAUC( 15.03, 0.167, 0.407) FAUC( 15.04, 0.167, 0.453) + FAUC( 15.09, 0.167, 0.226) FAUC( 15.17, 0.167, 0.543) FAUC( 15.94, 0.333, 0.860) FAUC( 15.95, 0.833, 0.643) + FAUC( 15.97, 0.167, 0.453) FAUC( 15.99, 0.500, 0.679) FAUC( 16.01, 0.333, 0.634) FAUC( 16.01, 0.333, 0.385) + FAUC( 16.02, 0.500, 0.543) FAUC( 16.04, 0.333, 0.543) FAUC( 16.04, 0.500, 0.498) FAUC( 16.34, 0.167, 0.317) + FAUC( 16.53, 0.167, 0.453) FAUC( 16.71, 0.500, 0.604) SHWR( 17.60, 4.500, 1.572) FAUC( 17.86, 0.333, 1.064) + SHWR( 17.89, 3.500, 1.383) FAUC( 18.08, 0.167, 0.634) FAUC( 18.11, 0.333, 0.475) FAUC( 18.12, 0.167, 0.724) + FAUC( 18.19, 3.500, 0.407) SHWR( 19.24, 4.500, 1.411) FAUC( 19.46, 0.333, 0.226) FAUC( 19.47, 0.167, 0.226) + FAUC( 19.50, 0.333, 0.702) FAUC( 19.51, 0.333, 0.475) FAUC( 19.51, 0.333, 0.430) FAUC( 19.52, 0.167, 0.724) + FAUC( 19.90, 0.667, 0.781) FAUC( 20.50, 0.500, 0.664) +ENDDHWDAYUSE +DHWDAYUSE "3W" + SHWR( 6.57, 12.667, 1.172) FAUC( 6.84, 0.167, 0.535) FAUC( 6.87, 0.667, 1.057) FAUC( 7.05, 0.167, 0.642) + FAUC( 8.26, 0.167, 0.642) FAUC( 8.44, 0.833, 0.974) FAUC( 8.46, 0.167, 0.642) SHWR( 8.86, 8.667, 1.859) + FAUC( 9.09, 0.333, 0.509) FAUC( 13.18, 0.333, 0.562) FAUC( 13.26, 0.500, 1.374) FAUC( 13.32, 0.833, 1.777) + CWSH( 13.34, 5.333, 1.176) CWSH( 13.62, 5.000, 1.163) CWSH( 13.80, 0.333, 0.767) CWSH( 13.81, 0.500, 0.610) + CWSH( 16.98, 4.500, 1.369) CWSH( 17.25, 5.167, 1.146) FAUC( 17.37, 0.333, 0.776) CWSH( 17.43, 0.333, 0.773) + CWSH( 17.44, 0.500, 0.625) FAUC( 18.51, 0.333, 0.562) FAUC( 18.57, 0.500, 0.517) FAUC( 18.59, 0.333, 0.937) + FAUC( 18.63, 0.333, 0.375) FAUC( 18.78, 0.333, 1.178) FAUC( 18.83, 0.167, 1.017) FAUC( 18.95, 0.333, 0.509) + FAUC( 19.27, 0.667, 1.017) FAUC( 19.33, 1.000, 0.919) FAUC( 19.35, 0.333, 0.616) FAUC( 19.39, 0.667, 1.606) + FAUC( 19.41, 1.333, 1.506) FAUC( 19.41, 0.333, 0.616) FAUC( 19.42, 0.333, 1.445) FAUC( 19.44, 0.167, 0.535) + FAUC( 19.46, 0.333, 0.509) FAUC( 19.47, 1.833, 1.217) FAUC( 19.51, 0.333, 0.616) FAUC( 19.53, 0.667, 1.111) + FAUC( 19.55, 0.667, 0.937) FAUC( 19.63, 0.167, 0.428) SHWR( 19.66, 11.500, 1.013) FAUC( 19.98, 0.500, 0.928) + FAUC( 20.01, 0.333, 0.509) FAUC( 20.14, 0.167, 0.910) FAUC( 21.09, 0.167, 0.910) FAUC( 22.95, 0.333, 0.375) + FAUC( 22.96, 0.333, 1.552) FAUC( 23.01, 2.167, 0.791) FAUC( 23.47, 0.333, 0.455) +ENDDHWDAYUSE +DHWDAYUSE "3R" + FAUC( 0.04, 0.167, 0.836) FAUC( 0.16, 0.667, 0.873) FAUC( 0.17, 0.167, 0.295) FAUC( 0.21, 0.833, 0.216) + FAUC( 1.09, 0.333, 1.156) FAUC( 1.10, 0.500, 0.836) FAUC( 1.11, 0.500, 0.492) FAUC( 1.12, 0.167, 1.132) + FAUC( 1.15, 0.167, 0.394) FAUC( 4.71, 1.333, 0.363) FAUC( 5.35, 0.500, 0.508) FAUC( 5.46, 1.500, 1.028) + FAUC( 5.59, 0.167, 0.246) FAUC( 5.63, 0.500, 0.836) FAUC( 5.71, 0.167, 0.246) FAUC( 5.72, 0.667, 0.787) + FAUC( 5.99, 0.167, 0.246) FAUC( 6.03, 0.167, 0.836) FAUC( 9.54, 0.167, 0.394) FAUC( 9.86, 0.167, 0.935) + FAUC( 11.92, 0.167, 0.344) FAUC( 11.94, 0.167, 0.590) FAUC( 11.96, 0.167, 0.492) FAUC( 13.16, 0.833, 1.151) + FAUC( 13.18, 0.500, 0.344) FAUC( 13.19, 0.333, 0.787) FAUC( 13.54, 1.000, 1.246) FAUC( 13.57, 0.500, 1.214) + FAUC( 13.58, 0.333, 0.369) FAUC( 14.21, 0.333, 0.197) FAUC( 14.31, 0.167, 0.738) FAUC( 17.62, 0.167, 0.492) + FAUC( 17.96, 0.500, 0.623) FAUC( 18.11, 0.333, 0.394) FAUC( 18.20, 0.333, 0.221) FAUC( 18.65, 0.500, 0.262) + FAUC( 18.69, 0.167, 0.344) FAUC( 18.71, 0.167, 0.443) FAUC( 18.78, 0.333, 0.197) FAUC( 18.84, 1.833, 0.743) + FAUC( 18.87, 0.333, 0.763) FAUC( 18.87, 0.500, 0.836) FAUC( 18.88, 0.667, 0.566) FAUC( 18.90, 0.500, 0.853) + FAUC( 18.91, 0.333, 0.148) FAUC( 18.92, 1.167, 1.265) FAUC( 18.94, 0.667, 0.640) FAUC( 18.96, 0.167, 1.378) + FAUC( 18.98, 1.000, 1.427) FAUC( 19.01, 0.333, 0.713) FAUC( 19.15, 0.500, 0.443) FAUC( 19.84, 0.333, 0.148) + FAUC( 21.07, 0.333, 1.058) FAUC( 21.15, 0.500, 0.705) CWSH( 21.17, 2.000, 1.977) CWSH( 21.21, 0.500, 1.022) + CWSH( 21.23, 0.500, 1.755) CWSH( 21.25, 0.833, 1.080) CWSH( 21.27, 0.667, 1.766) CWSH( 21.28, 0.667, 1.349) + CWSH( 21.34, 0.167, 0.800) CWSH( 21.40, 1.000, 1.999) FAUC( 21.41, 0.667, 2.362) CWSH( 21.45, 0.667, 1.133) + CWSH( 21.60, 0.500, 1.355) CWSH( 21.62, 0.500, 1.533) CWSH( 21.67, 0.667, 0.919) CWSH( 21.70, 2.167, 1.018) + CWSH( 21.77, 2.167, 0.515) CWSH( 21.78, 1.000, 0.846) CWSH( 21.84, 0.667, 0.950) CWSH( 21.85, 1.000, 0.877) + CWSH( 21.88, 0.833, 0.872) CWSH( 21.92, 1.667, 1.087) CWSH( 21.98, 3.333, 0.976) CWSH( 22.16, 0.500, 1.132) +ENDDHWDAYUSE +DHWDAYUSE "3F" + FAUC( 5.65, 0.833, 0.894) FAUC( 5.95, 0.167, 0.602) FAUC( 7.67, 0.833, 0.619) FAUC( 7.72, 0.500, 1.575) + FAUC( 7.83, 0.167, 2.363) FAUC( 7.84, 0.167, 2.320) FAUC( 8.53, 0.167, 0.215) FAUC( 8.56, 0.167, 0.344) + FAUC( 8.58, 0.167, 0.301) FAUC( 9.55, 2.833, 0.361) FAUC( 9.59, 0.333, 1.912) FAUC( 9.67, 0.833, 0.799) + FAUC( 9.85, 0.333, 0.258) FAUC( 9.89, 0.167, 0.430) FAUC( 10.22, 0.167, 0.344) FAUC( 10.24, 0.500, 1.117) + FAUC( 10.34, 0.167, 0.859) FAUC( 10.49, 0.167, 0.516) FAUC( 10.54, 0.333, 2.105) FAUC( 10.55, 0.500, 1.418) + FAUC( 10.57, 0.500, 1.461) FAUC( 10.66, 0.167, 1.031) FAUC( 11.03, 0.167, 0.258) FAUC( 13.36, 0.167, 0.258) + FAUC( 13.74, 0.833, 1.126) FAUC( 13.77, 0.167, 0.215) FAUC( 14.17, 0.167, 0.258) FAUC( 14.29, 2.667, 1.815) + FAUC( 14.35, 0.167, 0.773) FAUC( 14.39, 0.167, 0.387) FAUC( 14.49, 0.333, 1.096) FAUC( 14.58, 0.167, 0.215) + FAUC( 14.96, 0.167, 0.387) FAUC( 15.05, 0.333, 0.451) FAUC( 18.11, 0.500, 1.404) FAUC( 19.30, 0.167, 0.387) + FAUC( 19.34, 1.000, 0.881) FAUC( 20.01, 0.500, 1.776) FAUC( 20.14, 1.500, 0.878) FAUC( 20.18, 0.333, 0.344) + FAUC( 20.19, 0.500, 0.186) FAUC( 20.42, 0.333, 0.408) FAUC( 20.43, 0.833, 1.143) FAUC( 20.58, 0.167, 0.602) + FAUC( 20.67, 0.333, 2.277) FAUC( 20.87, 0.333, 0.602) FAUC( 20.94, 0.333, 0.430) FAUC( 20.94, 0.500, 0.358) + FAUC( 20.97, 0.167, 0.344) FAUC( 20.99, 0.667, 1.128) FAUC( 21.01, 0.667, 0.881) FAUC( 21.03, 0.167, 0.215) + DWSH( 21.05, 3.500, 0.564) FAUC( 21.12, 0.167, 1.160) DWSH( 21.16, 1.667, 0.560) DWSH( 21.32, 1.667, 0.535) + DWSH( 21.61, 0.667, 0.475) DWSH( 21.64, 1.667, 0.532) FAUC( 22.13, 0.333, 0.666) FAUC( 22.46, 0.167, 0.215) + FAUC( 22.90, 1.833, 0.523) FAUC( 22.91, 0.333, 1.289) FAUC( 23.19, 0.167, 0.945) +ENDDHWDAYUSE +DHWDAYUSE "3S" + FAUC( 1.25, 0.167, 0.301) FAUC( 1.30, 0.167, 0.387) FAUC( 2.46, 0.333, 0.129) FAUC( 2.53, 0.167, 0.516) + FAUC( 2.63, 0.167, 0.473) FAUC( 4.85, 0.167, 0.215) FAUC( 4.86, 0.167, 0.215) FAUC( 5.04, 0.167, 0.301) + FAUC( 5.37, 0.667, 1.558) FAUC( 6.18, 1.667, 0.812) FAUC( 6.86, 0.833, 0.696) FAUC( 6.91, 1.000, 0.874) + FAUC( 6.92, 0.333, 1.568) FAUC( 6.93, 2.167, 1.382) FAUC( 6.94, 1.000, 0.981) FAUC( 6.97, 1.500, 1.461) + FAUC( 7.00, 0.500, 1.432) FAUC( 7.02, 0.167, 0.344) FAUC( 7.10, 0.167, 0.258) FAUC( 7.41, 0.333, 0.301) + FAUC( 7.42, 0.167, 0.258) FAUC( 7.43, 0.333, 0.172) FAUC( 8.18, 0.167, 0.387) FAUC( 8.38, 0.167, 0.215) + FAUC( 8.39, 0.167, 0.215) FAUC( 8.40, 0.333, 0.494) FAUC( 8.50, 0.500, 0.559) FAUC( 8.54, 0.167, 0.301) + FAUC( 8.59, 0.167, 0.602) FAUC( 8.60, 0.333, 0.150) FAUC( 8.62, 0.167, 0.258) FAUC( 8.63, 0.167, 0.258) + FAUC( 8.64, 1.000, 0.852) FAUC( 8.68, 1.167, 0.792) FAUC( 8.97, 0.333, 0.580) FAUC( 8.98, 0.167, 0.945) + FAUC( 9.47, 0.167, 0.215) SHWR( 9.48, 10.000, 0.699) FAUC( 9.69, 0.333, 0.666) FAUC( 9.71, 0.167, 0.344) + FAUC( 9.83, 0.167, 0.215) FAUC( 9.86, 0.333, 0.494) FAUC( 10.13, 0.500, 0.100) FAUC( 10.18, 0.167, 0.387) + FAUC( 10.20, 0.167, 0.215) FAUC( 10.24, 0.500, 1.547) FAUC( 10.27, 0.167, 0.344) FAUC( 10.38, 0.667, 0.408) + FAUC( 10.41, 0.333, 0.430) FAUC( 10.43, 0.167, 0.215) FAUC( 10.55, 0.167, 0.387) FAUC( 10.65, 0.333, 0.645) + FAUC( 10.67, 0.167, 0.387) FAUC( 10.71, 0.333, 0.580) FAUC( 10.75, 0.833, 0.902) FAUC( 11.51, 0.500, 0.458) + CWSH( 11.56, 18.667, 0.339) FAUC( 11.58, 0.833, 1.057) FAUC( 11.62, 0.667, 0.483) FAUC( 11.63, 0.333, 0.602) + FAUC( 11.64, 0.833, 0.344) FAUC( 11.87, 0.167, 0.301) FAUC( 11.88, 0.167, 0.301) FAUC( 11.89, 0.167, 0.387) + FAUC( 11.90, 0.167, 0.344) FAUC( 11.91, 0.333, 0.193) FAUC( 11.92, 0.167, 0.344) FAUC( 11.93, 0.167, 0.387) + FAUC( 11.94, 0.167, 0.344) FAUC( 11.95, 0.167, 0.258) FAUC( 11.96, 0.167, 0.215) FAUC( 11.97, 0.167, 0.344) + FAUC( 11.98, 0.167, 0.301) FAUC( 11.98, 0.167, 0.215) FAUC( 12.00, 0.167, 0.344) CWSH( 12.00, 1.000, 0.330) + CWSH( 12.03, 17.833, 0.336) FAUC( 12.05, 0.333, 0.236) FAUC( 12.12, 0.667, 0.290) FAUC( 12.15, 0.333, 0.172) + FAUC( 12.33, 0.167, 0.215) FAUC( 12.46, 0.333, 0.795) FAUC( 12.55, 0.167, 0.516) FAUC( 12.55, 0.167, 0.215) + FAUC( 12.78, 0.333, 0.645) FAUC( 14.35, 0.167, 0.258) FAUC( 14.35, 1.333, 1.246) FAUC( 14.35, 0.667, 1.343) + FAUC( 14.37, 0.667, 0.773) FAUC( 14.43, 0.167, 0.258) FAUC( 14.45, 0.167, 0.258) FAUC( 14.46, 0.333, 0.344) + FAUC( 14.47, 0.333, 0.623) FAUC( 15.15, 0.167, 0.473) FAUC( 15.15, 0.167, 0.258) FAUC( 16.58, 0.333, 0.150) + FAUC( 16.60, 0.167, 0.215) FAUC( 17.37, 0.167, 0.301) FAUC( 17.44, 0.167, 0.215) FAUC( 17.45, 0.167, 0.215) + FAUC( 17.48, 0.167, 0.344) FAUC( 17.51, 0.333, 0.752) FAUC( 17.52, 0.167, 0.215) FAUC( 17.59, 0.167, 0.215) + FAUC( 17.59, 2.167, 0.684) FAUC( 17.65, 0.833, 1.074) FAUC( 17.70, 0.500, 1.977) FAUC( 17.71, 0.667, 0.064) + FAUC( 17.79, 0.167, 0.301) FAUC( 17.82, 0.167, 0.301) FAUC( 17.83, 0.167, 0.301) FAUC( 17.83, 0.167, 0.215) + FAUC( 17.84, 0.500, 0.430) FAUC( 17.87, 0.500, 0.372) FAUC( 17.88, 0.167, 0.344) FAUC( 17.89, 0.333, 0.193) + FAUC( 17.90, 0.167, 0.344) FAUC( 18.10, 0.167, 0.344) FAUC( 18.12, 0.167, 0.301) FAUC( 18.13, 0.833, 0.722) + FAUC( 18.18, 0.167, 0.387) FAUC( 18.19, 0.167, 0.602) FAUC( 18.21, 0.167, 0.387) FAUC( 18.21, 0.167, 0.602) + FAUC( 18.22, 0.333, 0.494) FAUC( 18.23, 0.167, 0.258) FAUC( 18.24, 0.167, 0.301) FAUC( 18.25, 0.167, 0.215) + FAUC( 18.28, 0.167, 0.215) FAUC( 18.30, 0.167, 0.215) FAUC( 18.33, 0.167, 0.215) FAUC( 18.35, 0.167, 0.344) + FAUC( 18.36, 0.167, 0.387) FAUC( 18.37, 0.833, 0.421) FAUC( 18.38, 0.167, 0.773) FAUC( 18.38, 0.167, 0.258) + FAUC( 18.42, 0.167, 0.301) FAUC( 18.43, 0.167, 0.301) FAUC( 18.48, 0.500, 0.458) FAUC( 18.49, 0.167, 0.258) + FAUC( 18.89, 0.167, 0.215) FAUC( 18.90, 1.167, 1.086) FAUC( 18.93, 0.167, 0.215) FAUC( 18.94, 0.167, 0.301) + FAUC( 19.30, 0.500, 0.458) FAUC( 19.40, 0.167, 0.945) FAUC( 19.41, 0.833, 0.730) FAUC( 19.44, 1.000, 0.931) + FAUC( 19.47, 0.667, 0.677) FAUC( 19.48, 0.333, 0.172) SHWR( 19.78, 15.333, 0.727) FAUC( 20.07, 0.167, 0.258) + FAUC( 20.45, 0.500, 0.716) FAUC( 20.47, 0.500, 0.716) FAUC( 20.51, 0.333, 0.730) FAUC( 20.76, 0.167, 0.301) + FAUC( 21.00, 0.167, 0.387) FAUC( 21.00, 0.167, 0.387) FAUC( 21.03, 0.167, 0.344) FAUC( 22.22, 0.167, 0.215) + FAUC( 22.23, 0.167, 0.387) FAUC( 22.23, 0.333, 0.301) FAUC( 22.24, 0.167, 0.387) FAUC( 22.25, 0.167, 0.430) + FAUC( 22.26, 0.167, 0.387) FAUC( 22.27, 0.333, 0.193) FAUC( 22.28, 0.167, 0.215) FAUC( 22.28, 0.167, 0.344) + FAUC( 22.29, 0.167, 0.387) FAUC( 22.30, 0.167, 0.430) FAUC( 22.31, 0.167, 0.473) FAUC( 22.32, 0.333, 0.193) + FAUC( 22.33, 0.167, 0.387) FAUC( 22.37, 0.333, 0.516) FAUC( 22.38, 0.167, 0.344) FAUC( 22.40, 0.167, 0.988) + FAUC( 22.41, 0.167, 0.387) FAUC( 22.42, 0.833, 1.057) FAUC( 22.44, 0.333, 0.301) BATH( 22.45, 3.833, 2.269) + FAUC( 22.52, 0.167, 0.258) FAUC( 22.53, 0.167, 0.215) FAUC( 22.63, 0.500, 0.473) +ENDDHWDAYUSE +DHWDAYUSE "3U" + FAUC( 0.02, 0.333, 0.521) FAUC( 6.56, 0.333, 0.475) FAUC( 9.51, 0.333, 0.724) FAUC( 9.58, 0.167, 1.268) + FAUC( 9.62, 0.167, 0.996) FAUC( 9.67, 0.500, 1.554) FAUC( 9.77, 0.333, 1.290) FAUC( 9.93, 0.167, 0.317) + FAUC( 10.01, 0.333, 1.517) SHWR( 10.27, 10.833, 1.572) FAUC( 10.75, 0.167, 0.589) SHWR( 10.98, 5.667, 1.572) + FAUC( 11.09, 0.500, 0.634) FAUC( 11.14, 0.167, 0.407) FAUC( 11.40, 3.000, 1.326) FAUC( 11.43, 1.333, 0.826) + FAUC( 11.47, 0.333, 0.430) FAUC( 11.49, 0.167, 0.407) FAUC( 11.53, 0.833, 0.688) FAUC( 11.55, 0.500, 0.438) + CWSH( 14.73, 2.833, 1.455) CWSH( 15.13, 5.000, 0.811) CWSH( 15.31, 0.500, 0.450) CWSH( 15.32, 0.333, 0.623) + CWSH( 15.41, 5.000, 0.808) FAUC( 15.71, 0.167, 0.407) FAUC( 15.97, 0.833, 0.380) FAUC( 17.18, 0.333, 0.724) + FAUC( 17.22, 0.167, 0.860) FAUC( 19.68, 1.667, 0.724) FAUC( 19.71, 0.667, 0.690) FAUC( 19.73, 0.500, 0.770) + FAUC( 19.76, 0.333, 0.566) FAUC( 19.78, 0.167, 0.589) FAUC( 19.88, 0.167, 0.679) FAUC( 22.72, 0.500, 0.619) + FAUC( 23.06, 2.333, 0.744) FAUC( 23.14, 0.833, 0.806) +ENDDHWDAYUSE +DHWDAYUSE "3H" + FAUC( 7.64, 0.500, 0.558) FAUC( 7.65, 1.000, 1.170) FAUC( 7.69, 0.167, 0.407) FAUC( 7.71, 0.167, 0.407) + FAUC( 7.75, 0.167, 0.362) FAUC( 7.76, 0.167, 0.226) FAUC( 7.79, 0.167, 0.498) FAUC( 7.83, 0.167, 0.226) + FAUC( 7.87, 0.167, 0.543) FAUC( 7.95, 0.167, 0.906) FAUC( 7.95, 0.167, 0.226) FAUC( 7.97, 0.167, 0.272) + FAUC( 8.04, 0.500, 2.098) FAUC( 8.51, 0.167, 0.906) FAUC( 8.73, 0.167, 0.226) FAUC( 8.79, 0.167, 1.041) + FAUC( 8.88, 0.167, 0.362) FAUC( 9.02, 0.333, 0.136) FAUC( 9.25, 0.333, 0.340) FAUC( 9.45, 0.167, 0.226) + FAUC( 9.71, 0.167, 0.362) FAUC( 9.96, 2.167, 1.303) FAUC( 10.00, 1.833, 1.280) FAUC( 10.02, 0.500, 0.785) + FAUC( 10.03, 0.500, 1.192) DWSH( 10.09, 1.000, 1.708) DWSH( 10.16, 0.833, 1.941) DWSH( 10.23, 1.000, 1.674) + SHWR( 10.30, 7.167, 1.167) CWSH( 10.49, 4.500, 1.250) CWSH( 10.87, 4.167, 1.273) DWSH( 10.90, 0.833, 0.395) + DWSH( 10.96, 0.833, 0.452) DWSH( 11.03, 1.000, 0.369) CWSH( 11.04, 0.333, 0.987) CWSH( 11.05, 0.333, 0.948) + FAUC( 11.21, 0.500, 0.634) FAUC( 11.30, 0.500, 0.860) FAUC( 11.77, 0.833, 1.087) FAUC( 11.79, 0.833, 0.969) + FAUC( 11.80, 1.500, 0.035) FAUC( 11.83, 0.833, 1.014) FAUC( 11.84, 2.167, 0.031) FAUC( 11.88, 0.167, 0.498) + FAUC( 11.93, 0.833, 1.123) FAUC( 11.96, 1.000, 1.087) FAUC( 11.98, 0.167, 0.226) FAUC( 11.98, 0.167, 1.313) + FAUC( 11.99, 0.167, 0.226) FAUC( 12.02, 0.167, 0.226) FAUC( 12.05, 1.333, 1.205) FAUC( 12.10, 0.167, 0.272) + FAUC( 12.12, 0.167, 0.498) FAUC( 12.41, 0.833, 1.023) FAUC( 12.45, 0.333, 0.951) CWSH( 12.64, 2.167, 2.446) + FAUC( 12.67, 0.667, 1.687) CWSH( 12.78, 2.167, 2.716) CWSH( 12.91, 0.500, 1.502) CWSH( 12.92, 0.500, 1.431) + CWSH( 13.04, 4.500, 1.366) CWSH( 13.41, 4.167, 1.382) FAUC( 13.47, 0.500, 1.011) CWSH( 13.58, 0.333, 1.151) + CWSH( 13.59, 0.333, 1.080) FAUC( 13.74, 0.333, 0.634) FAUC( 17.04, 0.167, 0.226) FAUC( 19.50, 0.333, 0.634) + SHWR( 19.54, 12.833, 1.264) FAUC( 21.13, 0.333, 0.272) FAUC( 21.60, 0.167, 0.226) FAUC( 21.60, 0.833, 0.254) +ENDDHWDAYUSE + +// 4 person +DHWDAYUSE "4M" + SHWR( 0.61, 5.667, 1.572) FAUC( 1.25, 0.167, 0.860) FAUC( 1.29, 0.667, 0.589) FAUC( 1.96, 0.167, 0.272) + FAUC( 7.67, 0.833, 3.287) FAUC( 7.70, 0.500, 2.686) FAUC( 7.71, 1.000, 3.720) FAUC( 7.75, 0.333, 1.630) + BATH( 7.77, 2.500, 4.858) FAUC( 7.89, 0.333, 0.815) FAUC( 8.05, 0.167, 0.362) FAUC( 8.25, 1.333, 0.894) + FAUC( 8.28, 0.167, 0.498) FAUC( 8.69, 1.000, 1.117) FAUC( 8.89, 0.667, 1.053) FAUC( 9.34, 0.333, 0.906) + SHWR( 9.60, 9.000, 1.572) FAUC( 9.71, 0.333, 0.611) FAUC( 9.90, 0.667, 0.996) FAUC( 9.91, 0.167, 1.041) + FAUC( 10.08, 0.333, 0.385) FAUC( 10.12, 0.500, 1.177) FAUC( 10.14, 0.167, 0.407) FAUC( 10.18, 0.333, 0.883) + FAUC( 10.21, 0.667, 0.419) FAUC( 10.23, 0.333, 1.064) FAUC( 10.28, 0.333, 2.264) FAUC( 10.28, 0.167, 1.811) + FAUC( 10.55, 0.500, 0.951) FAUC( 10.75, 0.667, 1.268) FAUC( 11.46, 0.500, 1.162) FAUC( 11.72, 0.167, 0.498) + FAUC( 12.32, 0.500, 1.026) FAUC( 12.57, 0.167, 0.724) FAUC( 12.71, 0.167, 0.498) FAUC( 12.72, 0.333, 0.838) + FAUC( 13.15, 0.500, 1.072) FAUC( 13.83, 0.333, 0.951) FAUC( 14.76, 0.333, 0.928) FAUC( 14.78, 0.500, 0.709) + FAUC( 14.95, 0.333, 0.883) CWSH( 15.04, 2.500, 1.421) CWSH( 15.08, 0.500, 1.182) CWSH( 15.11, 1.000, 0.643) + CWSH( 15.30, 0.333, 0.539) FAUC( 15.39, 0.167, 0.543) CWSH( 15.51, 1.667, 2.096) CWSH( 15.62, 0.167, 0.763) + CWSH( 15.65, 0.333, 0.696) CWSH( 15.71, 1.667, 2.083) CWSH( 15.81, 0.333, 1.077) FAUC( 16.23, 0.167, 1.177) + FAUC( 16.44, 0.333, 0.521) FAUC( 16.47, 0.500, 0.785) FAUC( 16.58, 0.333, 0.973) FAUC( 16.83, 0.167, 0.543) + FAUC( 17.02, 0.167, 0.679) FAUC( 17.25, 0.167, 0.407) SHWR( 18.76, 9.167, 1.572) FAUC( 19.31, 0.167, 0.543) + FAUC( 19.49, 0.667, 1.064) FAUC( 19.84, 0.167, 0.226) FAUC( 19.90, 0.167, 0.498) FAUC( 20.11, 1.500, 0.895) + FAUC( 20.38, 1.167, 1.177) FAUC( 20.83, 0.167, 1.177) FAUC( 20.88, 0.500, 0.981) FAUC( 21.37, 0.500, 0.981) + FAUC( 21.38, 0.500, 0.860) FAUC( 21.66, 0.833, 1.078) FAUC( 21.72, 0.333, 0.521) FAUC( 21.77, 0.167, 0.453) + FAUC( 21.80, 0.333, 0.883) FAUC( 21.87, 0.167, 0.272) FAUC( 21.94, 0.167, 0.498) FAUC( 22.29, 0.667, 0.951) + DWSH( 22.34, 1.667, 0.994) FAUC( 22.34, 1.500, 0.966) FAUC( 22.37, 0.500, 1.162) DWSH( 22.57, 1.833, 0.935) + FAUC( 22.68, 0.167, 0.498) FAUC( 22.69, 0.667, 0.894) DWSH( 22.80, 1.667, 0.977) FAUC( 23.22, 0.167, 0.272) + FAUC( 23.45, 0.167, 0.996) +ENDDHWDAYUSE +DHWDAYUSE "4T" + FAUC( 5.82, 0.333, 0.967) FAUC( 5.85, 0.500, 0.988) FAUC( 6.28, 0.667, 1.418) FAUC( 6.30, 0.833, 0.687) + FAUC( 6.33, 0.167, 0.387) FAUC( 6.41, 1.000, 0.874) CWSH( 8.23, 5.167, 1.019) CWSH( 8.70, 6.833, 0.997) + FAUC( 8.72, 4.333, 0.464) CWSH( 8.91, 0.333, 0.805) CWSH( 8.92, 0.333, 0.900) FAUC( 9.18, 0.333, 1.010) + FAUC( 9.33, 0.333, 0.301) FAUC( 9.47, 0.500, 0.745) FAUC( 9.60, 0.333, 1.074) FAUC( 9.89, 0.167, 0.516) + FAUC( 9.97, 0.167, 0.516) FAUC( 10.26, 0.167, 0.387) FAUC( 10.29, 0.500, 1.074) FAUC( 10.36, 0.167, 0.301) + FAUC( 10.40, 0.333, 0.559) FAUC( 10.45, 0.500, 0.702) FAUC( 11.02, 0.167, 0.215) FAUC( 11.03, 0.333, 1.096) + FAUC( 11.08, 0.167, 0.687) FAUC( 11.47, 0.167, 0.301) FAUC( 11.74, 0.333, 0.494) FAUC( 11.78, 0.167, 0.602) + FAUC( 12.31, 0.333, 1.010) FAUC( 12.38, 0.167, 0.387) FAUC( 12.41, 0.333, 1.117) FAUC( 12.50, 0.167, 0.215) + FAUC( 12.75, 0.167, 0.215) FAUC( 12.93, 0.667, 0.559) FAUC( 13.04, 0.167, 0.430) FAUC( 13.77, 0.333, 0.602) + FAUC( 14.03, 0.333, 1.117) FAUC( 14.10, 0.333, 1.203) FAUC( 14.47, 0.333, 1.117) FAUC( 14.54, 0.333, 1.160) + FAUC( 14.69, 0.333, 0.365) FAUC( 14.72, 0.167, 0.344) FAUC( 15.39, 0.333, 0.258) FAUC( 17.29, 0.833, 0.765) + FAUC( 17.36, 0.333, 0.365) FAUC( 17.77, 0.167, 0.730) FAUC( 17.84, 0.500, 1.189) FAUC( 18.07, 0.333, 0.473) + FAUC( 18.07, 0.500, 0.816) FAUC( 18.12, 0.333, 0.215) SHWR( 18.27, 7.167, 1.159) FAUC( 18.46, 0.500, 0.888) + FAUC( 18.47, 0.333, 0.645) FAUC( 18.52, 0.333, 0.365) FAUC( 18.54, 1.333, 0.532) FAUC( 18.62, 0.500, 0.602) + FAUC( 18.69, 1.333, 0.585) SHWR( 18.72, 7.500, 0.966) FAUC( 18.75, 0.833, 0.292) FAUC( 18.78, 0.333, 0.193) + FAUC( 18.79, 1.167, 0.381) SHWR( 19.22, 8.333, 0.833) FAUC( 19.61, 0.833, 0.920) FAUC( 19.63, 0.167, 1.504) + FAUC( 19.98, 0.167, 1.031) FAUC( 19.99, 0.167, 0.215) FAUC( 20.05, 0.167, 0.215) FAUC( 20.05, 0.500, 0.816) + FAUC( 20.06, 0.167, 0.301) FAUC( 20.08, 0.667, 0.816) FAUC( 20.11, 0.333, 0.258) FAUC( 20.13, 0.167, 0.258) + FAUC( 20.14, 0.500, 0.530) FAUC( 20.15, 0.500, 0.415) FAUC( 20.18, 0.333, 0.408) FAUC( 20.21, 0.167, 0.516) + FAUC( 20.35, 0.167, 0.730) FAUC( 20.37, 0.167, 0.816) FAUC( 20.53, 0.333, 0.559) FAUC( 20.60, 0.333, 0.559) + FAUC( 20.67, 0.167, 0.301) FAUC( 20.68, 0.500, 0.874) FAUC( 20.70, 0.333, 0.516) FAUC( 20.94, 0.500, 1.146) + FAUC( 20.98, 0.167, 0.516) FAUC( 21.00, 0.667, 1.063) FAUC( 21.30, 0.167, 0.430) FAUC( 21.31, 0.167, 0.215) + FAUC( 21.33, 0.500, 1.318) FAUC( 21.38, 0.667, 0.580) FAUC( 21.52, 0.833, 0.808) FAUC( 21.58, 0.167, 0.430) + FAUC( 21.59, 0.167, 0.730) FAUC( 21.65, 0.667, 0.784) FAUC( 21.68, 1.333, 0.548) SHWR( 21.89, 11.667, 0.994) + FAUC( 22.18, 0.167, 0.430) FAUC( 23.68, 0.500, 0.501) +ENDDHWDAYUSE +DHWDAYUSE "4W" + FAUC( 0.89, 0.167, 0.246) FAUC( 1.02, 0.167, 0.246) FAUC( 1.04, 0.167, 0.246) FAUC( 1.05, 0.167, 0.344) + FAUC( 1.05, 0.167, 0.246) FAUC( 1.43, 0.167, 0.492) FAUC( 2.34, 0.167, 0.246) FAUC( 3.18, 0.167, 0.935) + FAUC( 4.05, 0.167, 0.836) FAUC( 4.19, 0.167, 0.344) FAUC( 4.81, 0.167, 1.033) FAUC( 4.93, 0.167, 0.344) + FAUC( 6.33, 0.500, 0.886) FAUC( 6.35, 0.333, 1.451) FAUC( 6.38, 0.167, 0.344) FAUC( 6.39, 0.167, 0.344) + FAUC( 6.39, 0.167, 0.344) FAUC( 6.40, 0.167, 0.246) FAUC( 6.41, 0.167, 0.344) FAUC( 6.45, 0.167, 0.246) + FAUC( 6.46, 0.167, 0.246) SHWR( 6.94, 8.167, 1.708) FAUC( 7.11, 0.167, 0.246) FAUC( 7.13, 0.333, 0.246) + FAUC( 7.17, 0.667, 0.357) FAUC( 7.19, 0.167, 0.246) FAUC( 7.23, 0.167, 1.722) FAUC( 7.27, 0.500, 0.836) + FAUC( 7.30, 0.167, 0.492) FAUC( 7.36, 0.167, 0.344) FAUC( 7.37, 0.167, 0.246) FAUC( 7.52, 0.167, 0.443) + FAUC( 7.53, 0.167, 1.033) FAUC( 7.53, 0.167, 1.427) FAUC( 7.54, 0.500, 2.214) FAUC( 7.57, 0.167, 0.246) + FAUC( 7.59, 0.167, 0.590) FAUC( 7.66, 0.167, 1.821) FAUC( 7.70, 0.333, 1.378) FAUC( 7.72, 0.333, 0.443) + FAUC( 7.74, 0.167, 0.492) FAUC( 7.78, 0.167, 0.590) FAUC( 7.79, 0.333, 0.246) FAUC( 7.81, 0.167, 0.492) + FAUC( 7.82, 0.167, 0.344) FAUC( 7.84, 0.333, 1.009) FAUC( 7.85, 0.167, 0.246) FAUC( 7.85, 0.500, 0.508) + FAUC( 7.87, 0.167, 0.689) FAUC( 7.88, 0.333, 0.812) FAUC( 7.90, 0.167, 0.443) FAUC( 7.90, 0.167, 1.624) + FAUC( 7.90, 4.333, 0.691) FAUC( 7.98, 0.167, 0.492) SHWR( 7.99, 4.000, 1.708) FAUC( 8.01, 0.333, 0.812) + FAUC( 8.06, 0.333, 0.295) FAUC( 8.07, 0.167, 0.246) FAUC( 8.13, 0.167, 0.295) FAUC( 8.22, 0.167, 2.313) + FAUC( 8.38, 0.167, 0.590) SHWR( 8.51, 4.667, 1.708) FAUC( 8.56, 0.333, 1.107) CWSH( 8.59, 1.167, 10.843) + FAUC( 8.59, 0.333, 1.747) CWSH( 8.62, 4.667, 1.225) FAUC( 8.70, 0.167, 1.427) FAUC( 8.70, 0.167, 0.344) + FAUC( 8.71, 0.500, 1.739) FAUC( 8.72, 0.333, 0.517) FAUC( 8.73, 0.333, 0.344) FAUC( 8.74, 0.167, 0.935) + FAUC( 8.75, 0.167, 1.624) FAUC( 8.76, 0.167, 1.427) FAUC( 8.77, 0.167, 1.082) FAUC( 8.78, 0.167, 1.033) + FAUC( 8.78, 0.167, 0.935) FAUC( 8.79, 0.167, 0.492) FAUC( 8.79, 0.167, 0.935) FAUC( 8.80, 0.167, 1.181) + FAUC( 8.81, 0.167, 0.492) FAUC( 8.81, 0.167, 0.443) FAUC( 8.82, 0.167, 0.689) FAUC( 8.82, 0.167, 0.344) + FAUC( 8.83, 0.167, 0.787) FAUC( 8.84, 0.167, 0.246) FAUC( 8.84, 0.167, 0.443) FAUC( 8.85, 0.167, 0.443) + FAUC( 8.86, 0.167, 0.344) FAUC( 8.86, 0.167, 0.492) FAUC( 8.87, 0.167, 0.492) FAUC( 8.87, 0.167, 0.443) + FAUC( 8.88, 0.167, 0.443) FAUC( 8.88, 0.167, 0.492) FAUC( 8.90, 0.167, 0.246) FAUC( 8.92, 0.167, 0.590) + CWSH( 8.92, 0.500, 0.419) CWSH( 8.94, 0.333, 0.589) FAUC( 8.95, 0.167, 0.492) FAUC( 8.96, 0.167, 0.492) + FAUC( 8.96, 0.167, 0.689) FAUC( 8.97, 0.167, 0.689) CWSH( 8.97, 10.167, 0.595) FAUC( 9.15, 0.167, 0.344) + FAUC( 9.15, 0.167, 0.246) FAUC( 9.16, 0.167, 0.344) FAUC( 9.18, 0.167, 0.344) FAUC( 9.19, 0.333, 0.295) + FAUC( 9.19, 0.167, 2.903) FAUC( 9.20, 0.167, 0.443) FAUC( 9.21, 0.167, 0.590) FAUC( 9.21, 0.167, 0.344) + CWSH( 9.22, 0.667, 0.397) CWSH( 9.23, 0.500, 0.424) FAUC( 9.27, 0.167, 0.443) FAUC( 9.27, 0.167, 0.246) + FAUC( 9.31, 0.167, 0.344) FAUC( 9.32, 0.167, 0.246) FAUC( 9.41, 0.167, 1.870) FAUC( 9.44, 0.167, 0.246) + FAUC( 9.51, 0.167, 0.344) FAUC( 9.51, 0.167, 0.492) FAUC( 9.71, 0.167, 0.246) FAUC( 9.87, 0.167, 0.443) + FAUC( 10.72, 0.167, 0.295) FAUC( 11.35, 0.167, 0.492) FAUC( 11.38, 0.167, 1.033) FAUC( 11.92, 0.167, 1.279) + FAUC( 11.94, 0.167, 0.394) FAUC( 12.73, 0.167, 0.787) FAUC( 12.85, 0.167, 0.344) FAUC( 13.01, 0.167, 0.246) + FAUC( 13.10, 0.167, 1.378) FAUC( 13.42, 0.167, 0.394) FAUC( 13.42, 0.167, 0.344) FAUC( 13.43, 0.167, 0.443) + FAUC( 13.60, 0.167, 0.344) FAUC( 13.70, 0.333, 0.738) FAUC( 13.74, 0.167, 0.836) FAUC( 13.76, 0.333, 0.541) + FAUC( 13.79, 0.167, 0.590) FAUC( 14.06, 0.333, 0.467) FAUC( 14.44, 0.333, 0.910) FAUC( 14.79, 0.167, 0.394) + FAUC( 16.24, 0.667, 1.304) FAUC( 16.76, 0.167, 0.344) FAUC( 17.08, 0.167, 0.590) FAUC( 17.38, 0.167, 0.246) + FAUC( 17.92, 0.167, 0.344) FAUC( 17.93, 0.167, 0.443) FAUC( 17.93, 0.167, 0.443) FAUC( 17.99, 0.167, 0.246) + FAUC( 18.00, 0.167, 1.082) FAUC( 18.01, 0.167, 0.246) FAUC( 18.02, 0.167, 0.246) FAUC( 18.02, 0.167, 0.246) + FAUC( 18.04, 0.167, 0.443) FAUC( 18.04, 0.167, 0.246) FAUC( 18.05, 0.167, 0.443) FAUC( 18.05, 0.167, 0.246) + FAUC( 18.06, 0.167, 0.246) FAUC( 18.07, 0.167, 0.344) FAUC( 18.07, 0.167, 0.246) FAUC( 18.08, 0.167, 0.443) + FAUC( 18.09, 0.167, 0.590) FAUC( 18.09, 0.167, 0.787) FAUC( 18.10, 0.167, 0.935) FAUC( 18.15, 0.167, 0.689) + FAUC( 18.33, 0.167, 0.295) FAUC( 18.34, 0.167, 0.344) FAUC( 18.38, 0.167, 0.689) FAUC( 18.39, 0.167, 0.689) + FAUC( 18.40, 0.167, 0.394) FAUC( 18.41, 0.167, 0.935) FAUC( 18.42, 0.167, 0.935) FAUC( 18.42, 0.167, 0.246) + FAUC( 18.43, 0.167, 0.295) FAUC( 18.44, 0.167, 0.246) FAUC( 18.45, 0.167, 0.246) FAUC( 18.46, 0.167, 0.344) + FAUC( 18.47, 0.167, 0.443) FAUC( 18.48, 0.167, 0.246) FAUC( 18.50, 0.167, 0.246) FAUC( 18.52, 0.167, 0.246) + FAUC( 18.56, 0.167, 0.295) FAUC( 18.57, 0.167, 0.246) FAUC( 18.62, 0.167, 0.344) FAUC( 18.79, 0.167, 0.246) + FAUC( 18.79, 0.167, 1.525) FAUC( 18.85, 0.167, 1.082) FAUC( 18.86, 0.167, 0.443) FAUC( 18.91, 0.333, 0.344) + FAUC( 19.04, 0.167, 0.344) FAUC( 19.07, 0.167, 0.344) FAUC( 19.16, 0.167, 1.230) FAUC( 19.17, 0.167, 0.344) + FAUC( 19.17, 0.167, 0.246) FAUC( 19.18, 0.167, 0.443) FAUC( 19.18, 0.167, 0.344) FAUC( 19.20, 0.167, 0.344) + FAUC( 19.20, 0.167, 0.246) FAUC( 19.21, 0.167, 0.344) FAUC( 19.21, 0.167, 0.836) FAUC( 19.22, 0.167, 0.344) + FAUC( 19.22, 0.167, 0.443) FAUC( 19.25, 0.167, 0.394) FAUC( 19.26, 0.167, 0.443) FAUC( 19.27, 0.167, 0.344) + FAUC( 19.27, 0.167, 0.935) FAUC( 19.28, 1.000, 0.623) FAUC( 19.30, 0.167, 0.344) SHWR( 20.13, 6.667, 1.708) + FAUC( 20.25, 0.333, 0.246) FAUC( 20.30, 0.167, 0.590) FAUC( 20.34, 0.167, 0.590) FAUC( 20.42, 0.167, 0.295) + FAUC( 20.53, 0.167, 0.246) FAUC( 20.64, 0.500, 0.279) FAUC( 20.65, 0.167, 0.443) FAUC( 21.18, 0.167, 1.722) + FAUC( 21.24, 0.167, 0.590) CWSH( 21.26, 2.500, 1.878) CWSH( 21.44, 2.333, 1.014) FAUC( 21.48, 0.167, 0.246) + CWSH( 21.53, 0.333, 0.766) CWSH( 21.54, 0.333, 0.860) CWSH( 21.60, 4.167, 1.075) FAUC( 21.73, 0.167, 0.246) + CWSH( 21.77, 0.333, 0.825) CWSH( 21.78, 0.333, 0.884) FAUC( 21.80, 0.167, 0.246) FAUC( 21.93, 0.167, 0.443) + FAUC( 21.94, 0.167, 0.492) FAUC( 21.94, 1.333, 0.861) FAUC( 21.96, 0.167, 1.279) FAUC( 21.97, 0.333, 0.418) + FAUC( 21.99, 0.667, 0.664) FAUC( 22.01, 0.167, 1.033) FAUC( 22.02, 0.167, 0.787) FAUC( 22.02, 0.333, 0.713) + FAUC( 22.03, 0.167, 0.590) FAUC( 22.04, 0.167, 0.344) FAUC( 22.05, 0.167, 1.082) FAUC( 22.06, 0.167, 1.033) + FAUC( 22.07, 0.167, 2.116) FAUC( 22.07, 0.167, 2.067) FAUC( 22.08, 0.167, 0.836) FAUC( 22.12, 0.167, 0.443) + FAUC( 22.12, 0.167, 0.344) FAUC( 22.13, 0.167, 0.344) FAUC( 22.13, 0.167, 0.246) FAUC( 22.14, 0.167, 0.246) + FAUC( 22.15, 0.167, 0.344) FAUC( 22.16, 0.167, 0.246) FAUC( 22.16, 0.167, 0.344) FAUC( 22.17, 0.167, 0.295) + FAUC( 22.18, 0.167, 0.246) FAUC( 22.19, 0.167, 0.246) FAUC( 22.19, 0.167, 0.492) FAUC( 22.20, 0.167, 0.246) + FAUC( 22.20, 0.167, 0.246) FAUC( 22.21, 0.167, 0.344) FAUC( 22.61, 0.167, 0.787) FAUC( 22.75, 0.167, 0.344) + FAUC( 23.23, 0.167, 0.246) FAUC( 23.45, 0.333, 0.640) +ENDDHWDAYUSE +DHWDAYUSE "4R" + FAUC( 5.88, 1.333, 0.333) FAUC( 5.92, 0.333, 0.215) FAUC( 5.97, 0.167, 0.215) FAUC( 5.99, 0.333, 0.451) + FAUC( 6.02, 1.000, 0.666) FAUC( 6.35, 0.167, 0.258) FAUC( 6.37, 0.167, 0.516) SHWR( 6.43, 8.833, 1.166) + SHWR( 6.72, 6.833, 1.169) FAUC( 8.16, 0.333, 0.430) FAUC( 8.20, 0.167, 0.516) FAUC( 8.26, 0.167, 0.215) + FAUC( 8.29, 0.167, 0.430) FAUC( 14.54, 0.167, 0.215) FAUC( 14.59, 0.333, 0.902) FAUC( 15.15, 1.833, 1.102) + FAUC( 16.67, 0.333, 0.709) FAUC( 16.68, 0.333, 0.623) FAUC( 16.72, 0.167, 0.258) FAUC( 18.85, 0.167, 0.773) + FAUC( 18.95, 3.000, 1.241) FAUC( 19.20, 0.167, 0.516) FAUC( 19.31, 0.167, 0.258) FAUC( 19.33, 3.500, 1.191) + FAUC( 19.41, 0.500, 0.401) FAUC( 19.43, 0.167, 0.258) FAUC( 19.44, 0.167, 0.602) FAUC( 19.49, 0.167, 0.301) + FAUC( 19.50, 0.333, 0.709) FAUC( 19.53, 4.000, 0.881) FAUC( 20.03, 0.167, 0.430) FAUC( 20.07, 0.167, 0.945) + FAUC( 20.46, 0.167, 0.301) FAUC( 20.47, 0.333, 0.430) FAUC( 20.49, 0.167, 0.215) FAUC( 20.65, 1.167, 1.117) + FAUC( 20.91, 0.500, 1.060) FAUC( 20.92, 0.167, 0.301) FAUC( 21.64, 0.167, 0.215) +ENDDHWDAYUSE +DHWDAYUSE "4F" + FAUC( 3.70, 0.167, 0.226) FAUC( 4.25, 0.167, 0.860) FAUC( 4.26, 0.167, 0.407) FAUC( 4.27, 0.333, 0.838) + SHWR( 7.12, 10.667, 1.572) FAUC( 7.36, 1.333, 0.555) FAUC( 12.97, 0.167, 0.272) FAUC( 13.00, 1.500, 0.936) + SHWR( 13.40, 6.333, 1.572) FAUC( 13.91, 0.167, 0.407) BATH( 18.94, 2.000, 3.781) FAUC( 19.18, 0.167, 0.498) + FAUC( 19.18, 4.500, 1.125) FAUC( 19.27, 0.667, 0.962) FAUC( 19.31, 1.167, 0.931) FAUC( 19.33, 0.333, 0.724) + FAUC( 21.81, 1.333, 0.945) FAUC( 21.92, 0.333, 1.087) +ENDDHWDAYUSE +DHWDAYUSE "4S" + SHWR( 8.47, 11.333, 1.572) FAUC( 8.52, 1.000, 0.770) FAUC( 9.98, 3.333, 0.844) FAUC( 10.41, 1.000, 0.574) + FAUC( 10.69, 0.167, 1.041) FAUC( 13.21, 0.167, 0.226) FAUC( 13.21, 0.167, 0.543) FAUC( 14.80, 0.333, 1.041) + FAUC( 14.81, 2.167, 0.028) FAUC( 14.84, 0.500, 0.815) SHWR( 14.91, 22.000, 1.572) CWSH( 18.71, 1.833, 1.030) + CWSH( 18.76, 0.333, 0.841) CWSH( 18.85, 0.167, 0.156) FAUC( 18.85, 0.167, 0.860) CWSH( 18.96, 0.667, 1.261) + CWSH( 19.02, 0.667, 0.739) CWSH( 19.03, 2.000, 1.323) FAUC( 19.13, 0.167, 0.272) CWSH( 19.15, 2.833, 1.165) + FAUC( 19.22, 0.167, 0.272) CWSH( 19.32, 0.167, 0.778) CWSH( 19.32, 2.333, 1.305) FAUC( 19.41, 0.167, 0.272) + FAUC( 19.44, 0.167, 0.543) FAUC( 19.79, 4.167, 0.994) FAUC( 19.91, 0.667, 0.724) FAUC( 19.98, 0.333, 0.951) + FAUC( 20.05, 0.167, 0.407) FAUC( 20.71, 3.500, 1.026) FAUC( 22.09, 0.333, 0.362) FAUC( 22.11, 0.333, 0.792) + FAUC( 22.14, 2.333, 0.986) FAUC( 22.19, 1.333, 0.696) FAUC( 22.23, 1.000, 0.928) FAUC( 22.27, 0.167, 0.226) + FAUC( 22.29, 0.167, 0.226) FAUC( 22.29, 0.667, 0.770) FAUC( 22.33, 0.500, 0.951) FAUC( 22.59, 0.167, 0.996) + FAUC( 22.63, 1.167, 0.990) CWSH( 23.40, 2.000, 1.415) CWSH( 23.45, 0.333, 0.512) FAUC( 23.61, 0.167, 0.272) + FAUC( 23.63, 1.667, 1.136) CWSH( 23.67, 0.500, 1.333) CWSH( 23.73, 0.167, 0.800) CWSH( 23.74, 1.833, 1.352) + FAUC( 23.80, 1.500, 0.750) CWSH( 23.85, 2.500, 1.073) CWSH( 23.98, 0.167, 0.800) CWSH( 23.98, 2.667, 1.333) +ENDDHWDAYUSE +DHWDAYUSE "4U" + FAUC( 1.16, 0.167, 0.272) FAUC( 1.22, 1.167, 0.640) FAUC( 1.25, 1.333, 0.560) FAUC( 8.54, 1.000, 0.792) + FAUC( 8.57, 0.500, 0.890) FAUC( 8.58, 0.667, 1.189) FAUC( 8.60, 0.500, 0.785) FAUC( 8.61, 0.167, 0.589) + FAUC( 9.02, 1.667, 1.127) FAUC( 9.10, 0.500, 0.785) FAUC( 9.11, 0.500, 0.287) FAUC( 9.25, 0.167, 0.906) + FAUC( 9.33, 2.000, 0.939) FAUC( 9.36, 3.000, 0.888) FAUC( 9.42, 0.833, 1.005) FAUC( 9.52, 0.333, 0.294) + FAUC( 9.79, 0.500, 0.890) FAUC( 9.99, 3.167, 1.168) CWSH( 10.14, 5.000, 0.861) CWSH( 10.52, 0.167, 0.319) + CWSH( 10.53, 0.167, 0.564) CWSH( 10.58, 4.833, 0.827) CWSH( 10.76, 0.167, 0.319) CWSH( 10.77, 0.333, 0.282) + FAUC( 10.81, 0.333, 0.883) FAUC( 10.82, 0.667, 0.781) CWSH( 10.86, 4.667, 0.868) FAUC( 11.11, 0.333, 0.747) + FAUC( 11.29, 1.167, 0.724) FAUC( 11.30, 0.500, 0.679) FAUC( 11.32, 0.333, 0.747) FAUC( 11.64, 0.333, 0.294) + FAUC( 11.71, 0.167, 0.272) FAUC( 12.10, 0.500, 0.392) SHWR( 12.23, 6.667, 1.572) BATH( 12.44, 2.167, 3.534) + FAUC( 12.46, 0.500, 0.604) FAUC( 12.48, 0.333, 0.747) FAUC( 12.48, 1.000, 0.596) FAUC( 12.56, 0.167, 0.906) + BATH( 12.60, 0.833, 3.886) FAUC( 12.63, 0.833, 0.417) FAUC( 12.66, 0.333, 0.453) FAUC( 19.16, 0.167, 1.494) + FAUC( 20.51, 1.000, 0.649) FAUC( 21.08, 0.833, 1.123) FAUC( 21.10, 0.167, 0.589) FAUC( 21.12, 0.167, 0.272) + FAUC( 21.15, 0.667, 0.747) FAUC( 21.17, 1.333, 1.721) FAUC( 21.18, 0.833, 0.389) FAUC( 21.20, 1.667, 0.946) + DWSH( 21.83, 1.833, 1.336) DWSH( 22.06, 1.833, 1.392) FAUC( 22.09, 0.167, 0.226) FAUC( 22.54, 0.167, 0.589) + FAUC( 23.18, 0.333, 0.294) FAUC( 23.93, 2.833, 1.071) +ENDDHWDAYUSE +DHWDAYUSE "4H" + FAUC( 4.71, 0.167, 0.403) FAUC( 5.30, 2.500, 1.117) FAUC( 5.43, 5.167, 1.143) FAUC( 5.52, 0.333, 0.749) + SHWR( 6.78, 5.000, 1.538) FAUC( 6.98, 6.667, 0.425) SHWR( 7.09, 8.667, 1.787) FAUC( 7.11, 2.167, 0.642) + FAUC( 7.33, 1.000, 0.662) FAUC( 7.71, 3.000, 1.181) CWSH( 7.79, 7.500, 0.868) CWSH( 8.18, 3.833, 0.880) + CWSH( 8.25, 2.833, 0.823) CWSH( 8.39, 0.833, 0.253) CWSH( 8.40, 0.667, 0.339) FAUC( 11.47, 0.500, 0.806) + CWSH( 11.52, 4.500, 0.788) FAUC( 11.85, 0.333, 1.210) FAUC( 11.92, 0.500, 0.634) CWSH( 11.95, 9.333, 0.350) + FAUC( 11.97, 0.500, 0.442) FAUC( 11.99, 1.000, 0.854) FAUC( 12.05, 0.500, 0.691) CWSH( 12.21, 0.333, 0.264) + CWSH( 12.22, 0.333, 0.287) FAUC( 12.29, 0.333, 0.461) CWSH( 12.32, 3.667, 0.776) FAUC( 12.35, 0.167, 0.979) + FAUC( 12.36, 0.333, 1.699) FAUC( 12.52, 0.833, 2.673) CWSH( 12.57, 7.667, 0.342) FAUC( 12.73, 0.167, 0.403) + CWSH( 12.80, 0.333, 0.264) CWSH( 12.81, 0.333, 0.287) FAUC( 12.82, 0.167, 0.403) FAUC( 13.46, 0.333, 1.066) + FAUC( 13.48, 0.500, 0.998) FAUC( 13.52, 1.500, 1.677) CWSH( 13.78, 3.333, 1.838) FAUC( 13.80, 1.000, 1.834) + FAUC( 14.01, 0.167, 0.403) CWSH( 14.06, 7.167, 0.846) CWSH( 14.28, 0.500, 0.443) CWSH( 14.29, 0.500, 0.481) + FAUC( 16.99, 0.167, 0.576) FAUC( 17.03, 0.333, 1.210) FAUC( 18.15, 0.167, 0.691) FAUC( 18.57, 0.167, 0.691) + FAUC( 18.85, 0.167, 0.403) FAUC( 21.04, 0.500, 0.864) FAUC( 21.07, 0.500, 1.843) FAUC( 21.60, 0.667, 1.728) + SHWR( 21.74, 10.667, 1.436) FAUC( 21.81, 1.833, 0.854) FAUC( 21.95, 3.500, 1.116) FAUC( 22.04, 0.167, 0.806) +ENDDHWDAYUSE + +// 5 person +DHWDAYUSE "5M" + FAUC( 1.15, 0.167, 0.864) FAUC( 2.02, 0.167, 0.634) FAUC( 3.14, 0.167, 0.346) FAUC( 3.16, 0.167, 0.288) + FAUC( 3.40, 0.167, 0.346) FAUC( 4.87, 0.167, 0.288) FAUC( 5.25, 0.167, 0.518) FAUC( 6.72, 0.167, 0.634) + FAUC( 6.73, 0.167, 0.576) FAUC( 6.79, 0.167, 0.979) FAUC( 6.82, 0.667, 0.878) SHWR( 6.84, 8.333, 2.000) + FAUC( 7.00, 0.167, 0.518) FAUC( 7.02, 0.833, 1.578) FAUC( 7.23, 0.333, 0.490) FAUC( 7.29, 2.333, 1.205) + FAUC( 7.37, 0.667, 1.368) FAUC( 7.40, 0.167, 0.634) FAUC( 7.40, 0.167, 0.346) FAUC( 7.41, 0.333, 1.354) + FAUC( 7.46, 0.167, 0.461) FAUC( 7.47, 0.167, 0.346) FAUC( 7.56, 0.167, 0.518) FAUC( 7.59, 0.167, 0.518) + FAUC( 7.59, 0.167, 0.403) FAUC( 7.61, 0.167, 0.403) FAUC( 7.62, 0.333, 0.461) FAUC( 7.64, 0.167, 0.691) + FAUC( 7.72, 0.167, 0.864) FAUC( 7.78, 0.333, 0.374) FAUC( 7.92, 1.167, 1.177) FAUC( 7.94, 0.833, 1.152) + FAUC( 8.04, 0.167, 0.691) FAUC( 8.05, 0.333, 0.950) FAUC( 8.21, 0.333, 0.778) FAUC( 8.25, 0.167, 0.403) + FAUC( 8.27, 0.500, 1.421) FAUC( 8.35, 1.000, 0.470) FAUC( 8.37, 0.167, 0.403) FAUC( 8.57, 0.167, 0.461) + FAUC( 8.62, 0.167, 0.346) FAUC( 8.86, 0.333, 0.864) FAUC( 8.88, 0.167, 0.403) CWSH( 8.90, 3.500, 1.326) + CWSH( 9.26, 2.000, 1.578) CWSH( 9.30, 0.667, 1.162) CWSH( 9.41, 0.500, 1.288) CWSH( 9.43, 2.167, 1.586) + FAUC( 10.04, 0.167, 0.403) FAUC( 10.11, 0.167, 0.288) FAUC( 10.13, 0.167, 0.346) FAUC( 10.18, 0.167, 0.403) + FAUC( 10.19, 0.167, 0.461) FAUC( 10.20, 0.167, 0.346) FAUC( 10.21, 0.167, 0.346) FAUC( 10.44, 0.167, 0.461) + CWSH( 10.79, 1.833, 1.044) CWSH( 10.82, 1.000, 1.334) CWSH( 10.84, 0.333, 1.292) CWSH( 10.89, 0.333, 0.944) + CWSH( 11.14, 2.333, 1.466) CWSH( 11.20, 2.833, 0.348) CWSH( 11.31, 0.500, 1.226) CWSH( 11.32, 3.000, 1.212) + FAUC( 12.67, 1.000, 1.162) FAUC( 12.99, 0.333, 1.181) FAUC( 13.01, 0.833, 1.555) FAUC( 13.07, 0.167, 0.403) + FAUC( 13.16, 0.167, 0.346) FAUC( 13.17, 0.167, 0.403) FAUC( 13.21, 0.167, 0.346) FAUC( 13.23, 0.167, 0.576) + FAUC( 13.25, 0.167, 0.403) FAUC( 13.33, 0.667, 0.994) FAUC( 13.51, 0.333, 0.922) SHWR( 13.53, 7.167, 1.909) + FAUC( 13.69, 0.167, 0.346) FAUC( 13.74, 0.167, 0.518) FAUC( 13.97, 1.000, 1.200) FAUC( 14.52, 0.500, 1.344) + FAUC( 14.90, 0.167, 0.346) FAUC( 16.57, 0.167, 1.613) FAUC( 16.64, 0.167, 0.749) FAUC( 16.83, 0.167, 0.346) + FAUC( 16.83, 0.167, 0.461) FAUC( 16.95, 0.167, 0.403) FAUC( 17.04, 0.167, 0.346) FAUC( 17.06, 0.167, 0.346) + FAUC( 17.08, 0.167, 0.403) FAUC( 17.08, 0.167, 0.346) FAUC( 17.09, 0.167, 0.691) FAUC( 17.10, 0.333, 0.374) + FAUC( 17.41, 0.167, 0.576) FAUC( 17.42, 0.167, 0.461) FAUC( 17.47, 0.167, 0.403) FAUC( 17.49, 0.500, 0.557) + FAUC( 17.54, 0.167, 0.461) FAUC( 17.56, 0.167, 0.749) FAUC( 17.69, 0.333, 1.296) FAUC( 18.08, 0.167, 0.461) + FAUC( 18.09, 0.500, 1.286) FAUC( 18.15, 0.167, 0.346) FAUC( 18.21, 0.333, 0.605) FAUC( 18.29, 0.167, 0.806) + FAUC( 18.32, 0.333, 0.403) FAUC( 18.34, 0.500, 1.402) FAUC( 18.36, 0.333, 0.691) FAUC( 18.47, 0.167, 0.346) + FAUC( 18.49, 0.167, 0.346) FAUC( 18.57, 0.667, 0.749) FAUC( 18.58, 0.167, 0.346) FAUC( 18.69, 0.167, 0.461) + FAUC( 18.90, 0.167, 0.576) FAUC( 18.92, 0.500, 0.595) FAUC( 19.01, 0.167, 0.691) FAUC( 19.04, 0.333, 0.691) + FAUC( 19.39, 1.500, 1.312) FAUC( 19.43, 0.333, 0.749) FAUC( 19.62, 0.333, 1.008) FAUC( 19.82, 0.167, 0.346) + FAUC( 19.83, 0.333, 0.432) FAUC( 19.84, 0.667, 0.490) FAUC( 19.86, 0.333, 0.518) FAUC( 19.87, 0.167, 0.346) + FAUC( 19.87, 0.333, 0.374) FAUC( 20.20, 0.500, 1.171) SHWR( 20.26, 8.333, 1.926) FAUC( 20.59, 0.167, 0.346) + FAUC( 20.60, 0.167, 0.403) FAUC( 20.63, 0.167, 0.922) FAUC( 20.69, 1.167, 1.555) FAUC( 20.70, 0.167, 1.094) + FAUC( 20.71, 0.167, 0.749) SHWR( 20.87, 12.167, 1.824) FAUC( 21.34, 0.167, 0.346) FAUC( 21.68, 0.333, 0.720) + FAUC( 21.70, 0.167, 1.094) FAUC( 21.71, 0.167, 0.403) FAUC( 21.72, 0.167, 0.518) FAUC( 21.74, 0.833, 1.567) + FAUC( 22.25, 1.000, 1.181) FAUC( 22.27, 3.167, 1.834) FAUC( 22.34, 1.167, 1.284) DWSH( 22.36, 1.833, 0.620) + FAUC( 22.36, 1.667, 0.703) DWSH( 22.49, 2.167, 0.587) FAUC( 22.50, 0.833, 0.922) FAUC( 22.61, 0.667, 0.115) + DWSH( 23.06, 2.167, 0.595) FAUC( 23.30, 0.167, 0.634) FAUC( 23.33, 0.167, 0.461) DWSH( 23.33, 2.167, 0.601) + FAUC( 23.76, 0.500, 0.768) +ENDDHWDAYUSE +DHWDAYUSE "5T" + FAUC( 1.66, 1.667, 1.242) FAUC( 1.78, 0.500, 0.516) FAUC( 9.04, 0.333, 0.666) FAUC( 9.06, 0.333, 0.387) + FAUC( 10.34, 0.500, 0.487) FAUC( 10.36, 3.167, 0.787) FAUC( 10.46, 1.667, 0.610) FAUC( 10.53, 0.167, 0.344) + FAUC( 10.54, 0.167, 0.344) FAUC( 10.79, 0.167, 0.301) FAUC( 10.80, 0.333, 0.430) FAUC( 10.94, 0.167, 0.301) + FAUC( 12.92, 0.167, 0.430) FAUC( 12.95, 0.500, 0.516) FAUC( 13.14, 0.333, 0.387) FAUC( 13.86, 0.333, 0.881) + FAUC( 13.94, 0.167, 0.859) FAUC( 14.07, 0.500, 0.945) FAUC( 14.10, 0.167, 0.344) FAUC( 14.11, 0.667, 1.085) + FAUC( 16.34, 2.500, 1.424) BATH( 17.14, 3.167, 2.514) FAUC( 17.22, 0.167, 0.387) FAUC( 17.60, 0.500, 1.003) + FAUC( 17.78, 0.500, 0.358) FAUC( 17.97, 0.333, 0.730) CWSH( 18.07, 4.667, 1.537) FAUC( 18.11, 1.167, 0.657) + FAUC( 18.17, 0.500, 0.673) FAUC( 18.19, 1.333, 0.897) FAUC( 18.28, 0.167, 0.301) FAUC( 18.41, 1.833, 1.469) + CWSH( 18.44, 3.667, 1.493) FAUC( 18.71, 0.167, 0.387) FAUC( 18.72, 0.167, 0.387) FAUC( 18.72, 0.167, 0.387) + CWSH( 18.80, 4.500, 1.320) CWSH( 18.94, 0.333, 1.111) CWSH( 18.95, 0.500, 0.728) CWSH( 19.04, 4.333, 1.379) + FAUC( 19.11, 0.167, 0.344) FAUC( 19.13, 0.167, 0.387) FAUC( 19.13, 0.333, 0.279) SHWR( 21.38, 18.667, 1.492) + FAUC( 21.77, 0.167, 0.387) FAUC( 22.34, 0.333, 0.816) FAUC( 22.44, 0.667, 0.827) FAUC( 22.54, 2.167, 1.048) + FAUC( 22.60, 3.000, 1.120) FAUC( 22.65, 0.667, 0.645) FAUC( 22.68, 1.833, 0.855) FAUC( 22.76, 0.667, 0.698) + FAUC( 22.78, 0.333, 0.580) FAUC( 23.23, 1.500, 0.793) FAUC( 23.29, 0.667, 0.945) FAUC( 23.30, 0.333, 0.730) + FAUC( 23.33, 0.833, 0.954) FAUC( 23.58, 0.833, 0.189) +ENDDHWDAYUSE +DHWDAYUSE "5W" + FAUC( 1.33, 0.167, 0.258) FAUC( 3.30, 0.167, 0.258) FAUC( 4.55, 0.167, 0.258) FAUC( 6.54, 1.000, 2.163) + FAUC( 7.24, 0.833, 0.782) FAUC( 7.33, 0.167, 0.258) FAUC( 7.36, 0.167, 0.988) FAUC( 7.37, 0.167, 0.258) + FAUC( 7.43, 0.833, 1.100) FAUC( 7.46, 1.000, 1.003) FAUC( 7.49, 0.833, 1.289) FAUC( 7.55, 0.167, 0.258) + FAUC( 7.65, 0.167, 0.516) FAUC( 7.74, 0.167, 0.516) FAUC( 8.04, 0.167, 0.258) FAUC( 8.20, 0.167, 1.246) + FAUC( 8.21, 0.167, 0.816) FAUC( 8.25, 0.833, 1.220) CWSH( 8.37, 4.500, 0.905) SHWR( 8.63, 9.500, 1.492) + FAUC( 8.65, 2.167, 0.122) FAUC( 8.73, 3.000, 0.812) CWSH( 8.86, 0.500, 0.464) FAUC( 8.87, 0.167, 0.258) + FAUC( 9.00, 0.167, 1.074) CWSH( 9.08, 4.500, 0.919) FAUC( 9.17, 0.167, 0.258) FAUC( 9.17, 0.667, 1.074) + FAUC( 9.58, 0.167, 0.344) CWSH( 9.78, 0.500, 0.539) FAUC( 9.82, 1.167, 0.663) CWSH( 9.85, 4.333, 0.910) + FAUC( 9.86, 0.167, 1.332) CWSH( 10.37, 2.500, 1.599) FAUC( 10.60, 0.167, 0.258) CWSH( 10.69, 0.667, 0.963) + CWSH( 10.70, 2.167, 1.587) FAUC( 10.76, 0.167, 0.258) FAUC( 10.82, 0.167, 1.504) FAUC( 11.03, 0.833, 0.902) + FAUC( 11.05, 1.667, 1.388) FAUC( 11.07, 0.167, 0.859) FAUC( 11.10, 3.000, 1.332) FAUC( 11.14, 0.167, 0.945) + CWSH( 11.26, 2.833, 1.613) FAUC( 11.28, 0.167, 1.160) FAUC( 11.58, 0.167, 0.258) FAUC( 11.93, 2.167, 1.269) + FAUC( 12.31, 1.167, 2.382) FAUC( 12.36, 0.833, 0.877) FAUC( 12.44, 0.167, 0.602) FAUC( 12.93, 0.167, 0.258) + FAUC( 13.74, 0.167, 0.816) FAUC( 13.76, 0.167, 0.258) FAUC( 13.78, 0.667, 0.978) FAUC( 13.84, 0.833, 1.014) + FAUC( 14.12, 0.167, 1.117) FAUC( 14.31, 0.833, 1.014) FAUC( 14.32, 0.167, 0.687) FAUC( 15.40, 0.167, 1.246) + FAUC( 15.96, 0.500, 1.103) FAUC( 15.98, 1.000, 1.232) FAUC( 16.19, 0.167, 0.730) FAUC( 16.44, 1.167, 1.099) + FAUC( 16.56, 0.500, 1.217) FAUC( 16.77, 0.167, 0.258) FAUC( 17.19, 0.833, 0.894) SHWR( 17.25, 9.500, 1.492) + FAUC( 17.46, 1.000, 0.952) FAUC( 17.53, 0.500, 1.131) FAUC( 17.55, 0.167, 0.258) FAUC( 17.92, 1.333, 1.182) + FAUC( 18.33, 0.667, 1.042) FAUC( 18.35, 1.167, 1.105) FAUC( 18.38, 0.500, 1.017) FAUC( 20.23, 0.833, 0.851) + FAUC( 20.33, 0.167, 0.387) FAUC( 22.78, 3.833, 1.168) SHWR( 22.85, 10.000, 1.492) +ENDDHWDAYUSE +DHWDAYUSE "5R" + FAUC( 6.52, 0.833, 0.533) FAUC( 6.61, 0.167, 0.258) FAUC( 6.62, 0.167, 0.301) FAUC( 6.70, 0.167, 0.301) + FAUC( 6.71, 0.333, 0.494) FAUC( 6.75, 0.333, 0.516) FAUC( 6.91, 0.167, 1.117) FAUC( 7.08, 0.500, 0.616) + FAUC( 7.19, 0.500, 1.089) FAUC( 7.29, 0.833, 0.911) FAUC( 7.32, 0.500, 0.487) FAUC( 7.34, 0.333, 0.709) + FAUC( 7.52, 0.167, 1.160) FAUC( 7.52, 0.333, 0.752) FAUC( 7.55, 1.833, 1.270) FAUC( 7.63, 0.167, 0.258) + FAUC( 8.42, 0.167, 0.301) FAUC( 8.73, 0.500, 0.945) FAUC( 8.80, 0.333, 0.666) FAUC( 8.82, 0.500, 1.332) + FAUC( 8.84, 0.167, 1.074) FAUC( 8.94, 1.500, 1.194) FAUC( 9.22, 0.167, 0.258) FAUC( 10.26, 1.333, 1.654) + FAUC( 10.44, 0.333, 0.602) FAUC( 10.85, 0.167, 0.387) FAUC( 10.87, 0.667, 0.451) FAUC( 10.88, 0.167, 1.160) + FAUC( 10.94, 0.333, 0.258) FAUC( 10.95, 0.333, 0.559) FAUC( 11.09, 0.167, 0.730) FAUC( 11.10, 0.667, 0.752) + FAUC( 11.22, 0.167, 0.301) FAUC( 11.23, 0.167, 0.387) FAUC( 11.35, 0.333, 0.580) SHWR( 15.01, 9.167, 1.492) + FAUC( 16.64, 0.167, 0.430) FAUC( 16.99, 0.333, 0.945) FAUC( 17.02, 1.333, 0.924) FAUC( 17.05, 0.667, 0.913) + FAUC( 17.20, 0.500, 0.702) FAUC( 17.66, 0.667, 0.580) FAUC( 17.76, 1.000, 0.329) FAUC( 19.27, 0.167, 0.344) + FAUC( 19.59, 0.333, 0.387) FAUC( 19.80, 0.167, 0.258) FAUC( 20.00, 0.333, 0.859) FAUC( 20.02, 1.667, 0.988) + FAUC( 20.05, 0.500, 0.716) FAUC( 20.07, 0.500, 0.444) FAUC( 20.51, 0.333, 0.838) FAUC( 20.67, 0.667, 0.806) + FAUC( 21.83, 1.333, 0.725) FAUC( 21.87, 1.333, 1.128) FAUC( 21.94, 0.500, 0.974) +ENDDHWDAYUSE +DHWDAYUSE "5F" + FAUC( 4.79, 0.167, 0.258) FAUC( 4.80, 0.333, 0.279) FAUC( 5.94, 1.000, 0.501) FAUC( 6.12, 0.167, 0.258) + BATH( 6.36, 2.000, 2.551) BATH( 6.42, 2.167, 2.716) FAUC( 6.56, 0.333, 0.322) FAUC( 6.59, 0.833, 0.928) + FAUC( 6.62, 0.333, 0.752) FAUC( 6.66, 0.167, 0.258) FAUC( 6.68, 0.333, 1.353) FAUC( 6.69, 0.167, 1.332) + FAUC( 6.69, 0.333, 2.084) FAUC( 6.70, 0.167, 1.246) FAUC( 6.71, 0.333, 1.332) FAUC( 6.73, 0.667, 0.795) + FAUC( 6.74, 0.167, 0.301) FAUC( 6.75, 0.167, 0.344) FAUC( 6.76, 1.167, 1.602) FAUC( 6.79, 0.167, 1.461) + FAUC( 6.79, 1.167, 0.921) FAUC( 6.82, 0.167, 0.344) FAUC( 6.86, 0.333, 0.881) FAUC( 6.93, 0.333, 0.924) + SHWR( 7.00, 19.667, 1.443) FAUC( 7.00, 3.500, 0.424) FAUC( 7.32, 0.333, 0.559) FAUC( 7.50, 0.167, 0.301) + FAUC( 7.75, 0.167, 0.301) FAUC( 7.90, 1.167, 0.700) FAUC( 10.28, 0.500, 0.301) FAUC( 11.49, 0.167, 0.301) + FAUC( 11.56, 0.167, 0.258) FAUC( 11.58, 1.000, 0.831) FAUC( 11.78, 0.167, 0.430) FAUC( 11.79, 0.167, 0.430) + FAUC( 12.02, 0.167, 1.074) FAUC( 12.05, 1.333, 1.214) FAUC( 12.08, 0.333, 0.773) FAUC( 13.01, 0.667, 0.430) + FAUC( 13.03, 0.167, 0.730) FAUC( 13.07, 0.167, 0.773) FAUC( 13.10, 0.167, 0.730) FAUC( 13.34, 0.167, 0.387) + FAUC( 13.35, 0.167, 0.430) FAUC( 13.46, 0.167, 0.344) FAUC( 13.68, 0.167, 0.430) FAUC( 13.69, 0.167, 0.430) + FAUC( 13.72, 0.167, 0.387) FAUC( 13.82, 0.167, 0.430) FAUC( 13.92, 0.167, 0.430) FAUC( 13.98, 0.167, 0.387) + FAUC( 13.99, 0.167, 0.430) FAUC( 14.05, 0.333, 0.301) FAUC( 14.33, 0.167, 0.387) FAUC( 14.63, 0.167, 0.387) + FAUC( 14.75, 0.167, 0.430) FAUC( 14.78, 0.167, 0.430) FAUC( 14.82, 0.167, 0.430) FAUC( 14.96, 0.167, 0.430) + FAUC( 15.16, 0.167, 0.430) FAUC( 15.24, 0.167, 0.430) FAUC( 15.26, 0.167, 0.387) FAUC( 15.30, 0.167, 0.430) + FAUC( 15.32, 0.167, 0.430) FAUC( 15.36, 0.167, 0.387) FAUC( 15.45, 0.167, 0.387) FAUC( 15.58, 0.167, 0.387) + FAUC( 15.61, 0.333, 0.301) FAUC( 15.64, 0.167, 0.430) FAUC( 15.67, 0.167, 0.430) FAUC( 15.73, 0.167, 0.387) + FAUC( 15.79, 0.167, 0.430) FAUC( 15.87, 0.167, 0.430) FAUC( 16.00, 0.167, 0.430) FAUC( 16.02, 0.167, 0.430) + FAUC( 16.20, 0.167, 0.387) FAUC( 16.31, 0.167, 0.430) FAUC( 16.56, 0.167, 0.430) FAUC( 16.72, 0.167, 0.430) + FAUC( 16.79, 0.167, 0.430) FAUC( 16.82, 0.333, 0.301) FAUC( 16.85, 0.167, 0.387) FAUC( 16.98, 0.167, 0.430) + FAUC( 17.02, 0.167, 0.430) FAUC( 17.13, 0.167, 0.430) FAUC( 17.19, 0.167, 0.430) FAUC( 17.30, 0.833, 0.464) + FAUC( 19.22, 1.000, 0.537) FAUC( 20.28, 0.333, 0.687) FAUC( 20.40, 0.667, 0.537) FAUC( 20.75, 0.500, 0.745) + FAUC( 21.59, 0.333, 0.967) FAUC( 21.64, 0.333, 0.215) FAUC( 21.65, 0.167, 0.387) FAUC( 21.65, 0.333, 0.451) + FAUC( 21.67, 2.667, 0.588) FAUC( 21.73, 1.000, 0.752) FAUC( 21.95, 2.500, 0.152) FAUC( 21.99, 2.833, 0.543) + FAUC( 22.06, 0.833, 0.584) FAUC( 22.09, 1.000, 0.867) FAUC( 23.35, 0.333, 0.709) FAUC( 23.37, 0.167, 0.430) + FAUC( 23.94, 0.333, 0.752) +ENDDHWDAYUSE +DHWDAYUSE "5S" + FAUC( 0.01, 2.167, 0.935) SHWR( 0.07, 5.000, 1.192) FAUC( 5.05, 0.167, 0.859) FAUC( 5.08, 0.167, 0.602) + FAUC( 5.21, 0.167, 0.258) FAUC( 5.23, 0.167, 0.473) FAUC( 5.26, 0.167, 0.945) FAUC( 5.28, 0.500, 1.246) + FAUC( 5.30, 0.167, 0.258) FAUC( 5.42, 1.000, 1.253) FAUC( 5.44, 0.500, 1.174) FAUC( 5.84, 0.167, 0.687) + FAUC( 7.37, 0.167, 0.258) FAUC( 7.41, 1.000, 0.888) FAUC( 7.64, 0.833, 0.722) FAUC( 7.65, 0.167, 0.988) + FAUC( 7.66, 0.167, 0.387) FAUC( 7.78, 0.167, 0.258) FAUC( 8.01, 1.167, 1.117) FAUC( 8.01, 3.333, 0.589) + FAUC( 8.05, 0.833, 0.937) FAUC( 8.18, 1.833, 1.512) FAUC( 8.66, 0.667, 1.031) FAUC( 9.42, 1.000, 2.105) + FAUC( 9.55, 1.000, 1.239) FAUC( 9.56, 0.167, 0.945) FAUC( 9.63, 0.833, 1.023) FAUC( 10.03, 0.167, 0.473) + FAUC( 10.22, 1.333, 1.031) SHWR( 10.34, 7.500, 1.492) FAUC( 10.66, 0.167, 0.473) FAUC( 10.91, 1.500, 1.069) + FAUC( 10.92, 0.500, 0.945) SHWR( 10.97, 6.167, 1.492) FAUC( 11.02, 3.333, 0.677) FAUC( 11.08, 0.167, 0.730) + FAUC( 11.10, 0.167, 0.258) FAUC( 11.15, 0.167, 0.602) FAUC( 11.26, 2.167, 0.992) FAUC( 11.35, 0.833, 0.920) + FAUC( 11.40, 0.167, 0.344) FAUC( 11.87, 0.167, 0.516) FAUC( 12.92, 0.167, 0.602) FAUC( 13.05, 0.167, 0.687) + CWSH( 13.17, 4.500, 0.988) CWSH( 13.26, 1.000, 1.434) FAUC( 13.30, 0.167, 0.344) CWSH( 13.33, 3.167, 1.424) + CWSH( 13.40, 1.833, 1.233) FAUC( 13.43, 0.167, 1.375) FAUC( 13.49, 0.333, 1.697) FAUC( 13.58, 3.833, 1.076) + SHWR( 13.65, 5.833, 1.492) FAUC( 13.80, 1.167, 1.166) FAUC( 13.83, 0.167, 0.258) FAUC( 14.13, 0.167, 0.473) + FAUC( 14.19, 0.500, 0.802) FAUC( 16.24, 0.167, 0.258) FAUC( 16.53, 0.167, 0.258) FAUC( 17.53, 3.167, 1.373) + SHWR( 17.59, 5.833, 1.492) FAUC( 17.84, 0.167, 0.344) FAUC( 18.02, 2.000, 0.720) FAUC( 18.09, 0.167, 0.344) + FAUC( 18.69, 1.000, 1.382) FAUC( 18.74, 0.500, 1.103) FAUC( 18.76, 0.500, 1.103) FAUC( 19.39, 0.667, 1.085) + FAUC( 19.79, 0.667, 1.053) FAUC( 19.84, 0.167, 0.344) FAUC( 20.08, 0.833, 1.220) FAUC( 20.35, 0.667, 0.784) + FAUC( 20.36, 0.833, 0.662) FAUC( 20.71, 0.667, 0.569) FAUC( 20.81, 0.167, 0.816) FAUC( 22.74, 1.000, 0.852) + FAUC( 22.78, 0.167, 0.516) FAUC( 22.78, 1.500, 1.079) SHWR( 23.32, 5.500, 1.492) FAUC( 23.39, 0.167, 1.074) +ENDDHWDAYUSE +DHWDAYUSE "5U" + DWSH( 0.03, 0.167, 0.754) FAUC( 0.48, 0.333, 0.344) FAUC( 7.28, 0.333, 1.225) FAUC( 7.46, 0.167, 0.215) + SHWR( 8.37, 16.833, 1.392) FAUC( 8.62, 0.167, 0.902) FAUC( 8.66, 0.167, 0.215) FAUC( 8.66, 0.167, 0.215) + FAUC( 8.69, 0.167, 0.215) FAUC( 8.79, 0.167, 0.301) FAUC( 9.30, 0.167, 0.215) SHWR( 11.37, 3.333, 1.492) + FAUC( 11.43, 0.167, 0.258) FAUC( 11.76, 0.167, 1.246) FAUC( 11.81, 0.167, 0.387) FAUC( 11.83, 0.167, 0.387) + FAUC( 11.94, 0.167, 0.387) FAUC( 12.23, 0.167, 0.258) FAUC( 12.46, 0.167, 0.301) FAUC( 12.83, 0.167, 0.301) + FAUC( 12.94, 0.500, 0.301) FAUC( 12.95, 0.167, 0.215) FAUC( 13.67, 0.167, 0.387) FAUC( 13.80, 0.500, 0.444) + FAUC( 13.81, 0.167, 0.301) FAUC( 13.82, 0.500, 0.372) FAUC( 13.86, 0.333, 0.301) FAUC( 13.91, 0.667, 0.505) + FAUC( 14.02, 0.167, 0.215) FAUC( 14.04, 0.167, 0.215) FAUC( 14.08, 0.500, 0.802) FAUC( 14.09, 0.167, 0.301) + FAUC( 14.59, 0.667, 0.763) FAUC( 14.61, 0.667, 1.225) FAUC( 14.74, 0.167, 0.215) FAUC( 14.95, 0.167, 0.215) + FAUC( 14.96, 0.167, 0.215) FAUC( 15.44, 0.167, 0.301) FAUC( 16.04, 0.167, 0.215) FAUC( 17.04, 0.167, 0.602) + FAUC( 17.05, 5.833, 1.089) FAUC( 17.17, 0.667, 1.020) FAUC( 17.33, 0.167, 0.215) FAUC( 18.16, 0.333, 0.301) + FAUC( 18.21, 2.500, 1.111) FAUC( 18.35, 0.167, 0.301) FAUC( 18.42, 0.167, 0.215) FAUC( 18.85, 0.500, 1.046) + FAUC( 18.86, 0.500, 0.917) FAUC( 18.88, 0.833, 0.911) FAUC( 19.28, 0.333, 0.344) FAUC( 19.29, 0.167, 0.602) + FAUC( 19.61, 0.167, 0.215) FAUC( 19.79, 0.167, 0.687) CWSH( 19.80, 5.000, 0.797) FAUC( 19.88, 2.500, 1.089) + CWSH( 19.94, 5.833, 0.902) FAUC( 19.99, 1.333, 0.741) CWSH( 20.05, 0.500, 0.437) FAUC( 20.07, 0.667, 1.020) + CWSH( 20.14, 0.333, 0.473) CWSH( 20.18, 4.833, 0.589) CWSH( 20.32, 0.333, 0.534) CWSH( 20.59, 5.167, 1.196) + CWSH( 20.90, 0.500, 0.733) FAUC( 20.92, 0.333, 0.752) CWSH( 20.94, 4.833, 1.191) CWSH( 21.08, 0.500, 0.695) + FAUC( 21.12, 0.167, 0.430) FAUC( 21.14, 0.167, 0.301) FAUC( 21.15, 0.167, 0.215) FAUC( 21.19, 0.167, 0.301) + FAUC( 21.19, 0.167, 0.215) FAUC( 21.20, 0.333, 0.408) FAUC( 21.21, 0.333, 1.117) FAUC( 21.23, 0.167, 0.215) + FAUC( 21.24, 0.167, 0.945) FAUC( 21.25, 0.167, 0.730) FAUC( 21.46, 0.167, 0.215) FAUC( 21.69, 0.167, 0.215) + FAUC( 23.64, 0.333, 0.924) FAUC( 23.71, 0.333, 0.365) +ENDDHWDAYUSE +DHWDAYUSE "5H" + FAUC( 5.72, 0.667, 1.149) FAUC( 5.75, 1.000, 1.110) FAUC( 5.77, 0.167, 0.258) FAUC( 5.84, 0.167, 0.344) + FAUC( 5.87, 0.167, 0.387) FAUC( 5.90, 2.167, 1.005) FAUC( 5.92, 0.167, 0.902) FAUC( 5.95, 1.333, 0.585) + FAUC( 5.96, 0.667, 1.966) FAUC( 6.16, 0.167, 0.258) FAUC( 6.16, 0.167, 0.258) FAUC( 6.17, 0.333, 1.633) + FAUC( 6.19, 0.167, 0.258) FAUC( 7.01, 0.167, 0.258) FAUC( 7.50, 0.833, 0.859) FAUC( 7.52, 0.667, 1.493) + SHWR( 8.09, 6.667, 1.492) FAUC( 8.26, 0.833, 1.126) FAUC( 8.41, 0.167, 1.246) FAUC( 8.42, 0.167, 0.258) + SHWR( 8.59, 3.833, 1.234) FAUC( 8.76, 0.167, 0.602) FAUC( 9.28, 0.167, 0.258) FAUC( 9.32, 0.167, 0.730) + FAUC( 9.33, 0.167, 0.602) FAUC( 9.78, 1.333, 1.257) FAUC( 9.82, 3.000, 0.790) FAUC( 9.86, 0.833, 0.971) + FAUC( 9.88, 0.167, 0.473) FAUC( 9.98, 0.167, 0.687) FAUC( 10.32, 0.167, 0.387) FAUC( 10.57, 0.667, 0.247) + FAUC( 10.59, 0.167, 0.258) FAUC( 10.87, 2.667, 0.615) FAUC( 10.92, 3.000, 0.816) FAUC( 11.16, 0.167, 0.258) + FAUC( 11.22, 0.167, 0.258) FAUC( 11.25, 0.667, 0.612) FAUC( 11.34, 2.333, 0.734) FAUC( 12.05, 1.500, 0.592) + FAUC( 12.21, 3.167, 0.721) FAUC( 12.29, 2.000, 0.627) FAUC( 12.38, 0.500, 1.260) FAUC( 12.40, 0.167, 0.258) + FAUC( 12.60, 1.667, 0.915) FAUC( 12.63, 0.833, 0.954) FAUC( 12.78, 0.167, 0.988) FAUC( 12.88, 1.333, 0.800) + FAUC( 12.92, 0.167, 0.344) FAUC( 13.32, 2.333, 0.746) FAUC( 14.10, 0.167, 0.258) FAUC( 14.41, 1.333, 0.956) + FAUC( 15.32, 1.000, 0.809) FAUC( 15.35, 1.333, 0.999) FAUC( 15.40, 0.167, 0.473) SHWR( 15.40, 7.000, 1.446) + FAUC( 15.53, 0.167, 0.301) FAUC( 15.61, 0.167, 0.816) CWSH( 15.63, 3.333, 0.675) CWSH( 15.95, 0.500, 0.359) + CWSH( 16.02, 3.000, 0.686) FAUC( 16.75, 0.500, 1.246) FAUC( 17.00, 0.167, 0.602) FAUC( 17.06, 0.167, 0.602) + FAUC( 18.50, 0.167, 0.387) FAUC( 18.75, 0.167, 0.687) FAUC( 18.84, 3.333, 1.433) SHWR( 19.00, 7.167, 1.492) + FAUC( 19.13, 0.667, 0.978) CWSH( 19.16, 5.500, 0.720) FAUC( 19.30, 0.667, 0.838) FAUC( 19.40, 0.167, 0.602) + FAUC( 19.48, 1.667, 1.353) FAUC( 19.49, 0.833, 0.610) FAUC( 19.51, 0.167, 0.258) CWSH( 19.54, 0.333, 0.333) + CWSH( 19.56, 5.833, 0.701) FAUC( 19.69, 1.333, 1.139) FAUC( 19.73, 0.333, 1.461) FAUC( 19.75, 0.167, 0.258) + FAUC( 20.11, 1.667, 0.924) FAUC( 21.79, 1.333, 1.638) FAUC( 22.50, 0.667, 1.010) FAUC( 22.52, 0.667, 0.978) + FAUC( 22.56, 1.333, 0.800) FAUC( 22.60, 0.833, 1.040) FAUC( 22.70, 1.333, 1.047) FAUC( 22.73, 0.167, 0.258) + SHWR( 22.94, 7.000, 1.492) FAUC( 23.31, 0.167, 0.258) +ENDDHWDAYUSE + +// 6 person +DHWDAYUSE "6M" + FAUC( 0.23, 0.167, 0.864) FAUC( 2.69, 0.333, 2.333) FAUC( 4.59, 0.167, 0.461) FAUC( 6.77, 0.167, 0.461) + FAUC( 6.78, 0.167, 0.461) SHWR( 7.47, 6.167, 1.374) SHWR( 7.48, 4.500, 2.000) FAUC( 7.60, 2.333, 0.724) + FAUC( 7.65, 1.667, 0.927) FAUC( 8.28, 0.333, 1.555) FAUC( 8.29, 1.667, 1.607) FAUC( 8.32, 1.000, 0.998) + FAUC( 8.33, 0.167, 1.325) FAUC( 8.39, 0.167, 1.094) FAUC( 8.47, 5.667, 1.835) FAUC( 8.64, 0.333, 0.778) + FAUC( 8.66, 1.667, 1.123) FAUC( 9.05, 2.333, 0.724) FAUC( 9.15, 0.500, 0.730) FAUC( 9.19, 0.167, 0.461) + FAUC( 9.24, 0.167, 0.461) FAUC( 9.28, 0.167, 0.461) FAUC( 9.29, 0.167, 0.461) FAUC( 9.32, 0.167, 0.691) + FAUC( 10.02, 0.167, 0.461) FAUC( 11.06, 0.167, 0.461) FAUC( 11.48, 0.167, 0.461) FAUC( 11.63, 0.833, 1.912) + FAUC( 11.66, 0.167, 0.461) FAUC( 11.67, 0.167, 0.691) FAUC( 12.78, 0.500, 1.920) FAUC( 12.81, 0.167, 0.461) + FAUC( 13.14, 1.167, 1.086) FAUC( 13.32, 0.667, 0.994) FAUC( 13.81, 0.167, 0.461) FAUC( 13.89, 0.167, 1.094) + FAUC( 14.04, 0.667, 0.893) FAUC( 14.06, 0.167, 0.691) FAUC( 14.07, 1.000, 1.133) FAUC( 14.27, 0.167, 0.461) + FAUC( 14.63, 0.833, 0.887) FAUC( 14.65, 0.167, 0.461) FAUC( 14.66, 0.333, 0.893) FAUC( 14.68, 3.000, 1.146) + FAUC( 14.73, 0.167, 0.979) FAUC( 14.96, 0.167, 0.691) FAUC( 15.02, 0.333, 0.778) FAUC( 15.54, 0.167, 0.461) + FAUC( 15.66, 0.167, 0.461) FAUC( 15.72, 0.167, 0.922) FAUC( 15.73, 0.167, 0.461) FAUC( 16.14, 2.000, 1.200) + FAUC( 16.18, 0.167, 0.461) FAUC( 16.37, 0.333, 0.806) FAUC( 16.39, 0.667, 1.181) FAUC( 16.43, 0.167, 0.461) + FAUC( 16.70, 0.167, 0.518) FAUC( 16.85, 1.500, 1.107) FAUC( 16.88, 0.333, 0.662) FAUC( 16.97, 0.167, 0.461) + FAUC( 16.98, 2.167, 0.864) FAUC( 17.08, 2.333, 1.197) FAUC( 17.18, 2.000, 0.898) SHWR( 17.40, 9.333, 1.295) + FAUC( 17.77, 0.167, 0.461) FAUC( 17.86, 1.000, 1.142) FAUC( 17.89, 0.167, 0.461) FAUC( 18.26, 0.167, 0.691) + FAUC( 18.29, 1.000, 1.066) FAUC( 18.32, 0.167, 0.691) FAUC( 18.34, 0.500, 0.672) FAUC( 18.37, 0.500, 0.806) + FAUC( 18.67, 0.167, 0.461) SHWR( 19.77, 7.833, 1.374) FAUC( 19.93, 1.667, 1.106) FAUC( 19.96, 0.333, 0.778) + FAUC( 19.97, 0.833, 1.187) FAUC( 20.00, 0.167, 0.461) FAUC( 20.03, 0.167, 0.749) FAUC( 20.06, 0.667, 1.109) + FAUC( 20.19, 0.167, 0.461) FAUC( 20.22, 0.167, 0.461) FAUC( 20.71, 0.500, 1.037) FAUC( 20.78, 2.000, 1.584) + FAUC( 20.79, 0.333, 1.325) FAUC( 20.86, 2.333, 2.251) FAUC( 20.99, 0.167, 0.691) FAUC( 21.01, 0.333, 1.037) + FAUC( 21.03, 0.167, 0.691) FAUC( 21.10, 0.500, 0.653) FAUC( 21.12, 1.833, 1.105) FAUC( 21.17, 2.667, 2.495) + FAUC( 21.23, 0.167, 0.461) FAUC( 21.24, 1.000, 0.883) FAUC( 21.27, 0.833, 0.657) FAUC( 21.31, 0.333, 0.374) + FAUC( 21.35, 0.667, 1.382) FAUC( 21.39, 0.667, 0.720) FAUC( 21.40, 0.167, 0.461) FAUC( 21.42, 0.500, 1.248) + SHWR( 21.45, 10.333, 1.747) FAUC( 21.64, 0.167, 0.461) FAUC( 21.81, 1.167, 1.325) FAUC( 21.87, 1.167, 1.226) + FAUC( 21.92, 1.000, 1.152) FAUC( 21.97, 0.833, 1.152) FAUC( 22.06, 0.667, 0.850) FAUC( 22.08, 3.333, 0.752) + FAUC( 22.15, 1.167, 0.823) FAUC( 22.72, 1.833, 1.890) FAUC( 22.76, 0.167, 0.461) FAUC( 22.92, 7.833, 1.139) + SHWR( 23.11, 11.000, 1.216) FAUC( 23.68, 0.167, 0.461) +ENDDHWDAYUSE +DHWDAYUSE "6T" + FAUC( 6.20, 0.167, 0.979) FAUC( 6.24, 0.167, 0.749) SHWR( 6.26, 4.833, 2.000) FAUC( 6.55, 0.167, 0.979) + FAUC( 6.58, 0.167, 0.403) FAUC( 6.62, 0.167, 0.576) FAUC( 6.67, 0.667, 1.570) FAUC( 6.72, 0.167, 0.576) + FAUC( 6.82, 0.333, 0.490) FAUC( 6.90, 0.333, 1.037) FAUC( 7.06, 0.667, 0.936) FAUC( 7.07, 0.333, 0.778) + FAUC( 7.08, 0.333, 1.238) FAUC( 7.10, 0.167, 0.403) FAUC( 7.16, 0.167, 0.403) FAUC( 7.17, 0.167, 0.576) + FAUC( 7.31, 0.167, 0.576) FAUC( 7.42, 0.167, 0.403) FAUC( 7.46, 0.167, 0.576) FAUC( 7.53, 0.333, 0.576) + FAUC( 7.67, 0.167, 0.979) FAUC( 7.71, 0.500, 0.768) SHWR( 7.91, 3.667, 2.000) SHWR( 8.20, 9.833, 2.000) + FAUC( 8.34, 0.500, 1.459) FAUC( 8.96, 0.167, 0.403) FAUC( 12.46, 2.500, 1.490) CWSH( 12.48, 1.000, 6.066) + CWSH( 12.50, 0.667, 4.160) CWSH( 12.52, 0.500, 5.096) CWSH( 12.53, 0.500, 2.525) FAUC( 12.55, 0.667, 1.238) + FAUC( 12.56, 0.500, 1.152) FAUC( 12.60, 0.333, 0.950) FAUC( 12.64, 0.333, 0.576) FAUC( 12.73, 0.167, 0.576) + CWSH( 12.87, 1.500, 3.382) CWSH( 12.91, 0.333, 2.140) CWSH( 12.92, 0.333, 1.699) FAUC( 12.98, 2.667, 1.346) + FAUC( 13.07, 0.333, 0.605) FAUC( 13.08, 0.167, 0.749) CWSH( 13.09, 2.333, 2.456) CWSH( 13.14, 0.167, 3.397) + FAUC( 13.20, 0.167, 0.979) FAUC( 14.24, 0.667, 1.051) FAUC( 14.28, 0.500, 1.152) FAUC( 14.31, 0.167, 0.576) + FAUC( 14.33, 0.167, 0.576) FAUC( 14.34, 0.333, 0.662) FAUC( 14.35, 0.333, 0.662) FAUC( 14.37, 0.500, 0.902) + FAUC( 14.39, 0.333, 0.864) FAUC( 14.41, 0.667, 0.835) FAUC( 15.06, 0.167, 0.576) FAUC( 16.69, 0.333, 1.613) + FAUC( 16.75, 0.167, 0.576) FAUC( 16.76, 0.833, 0.956) FAUC( 16.79, 0.333, 1.555) FAUC( 16.93, 0.500, 0.826) + FAUC( 17.27, 0.333, 0.576) FAUC( 17.70, 0.167, 1.901) FAUC( 17.91, 0.167, 0.403) FAUC( 17.95, 0.333, 0.662) + FAUC( 17.95, 0.833, 1.221) FAUC( 17.98, 0.500, 0.710) FAUC( 18.03, 0.667, 1.051) FAUC( 18.20, 0.167, 0.403) + FAUC( 18.26, 0.167, 0.576) FAUC( 18.30, 0.167, 0.979) FAUC( 18.32, 0.167, 0.979) FAUC( 18.33, 0.167, 0.576) + FAUC( 18.48, 0.333, 1.814) FAUC( 18.55, 1.833, 1.843) FAUC( 18.60, 0.500, 1.709) FAUC( 18.63, 0.167, 1.037) + FAUC( 18.64, 1.667, 1.244) FAUC( 18.67, 0.167, 1.325) FAUC( 18.68, 1.333, 1.699) FAUC( 18.70, 0.833, 1.682) + FAUC( 18.72, 0.333, 1.152) DWSH( 18.92, 1.667, 1.542) DWSH( 19.00, 1.500, 1.620) FAUC( 19.77, 0.167, 0.749) + FAUC( 19.78, 0.833, 1.290) FAUC( 19.97, 0.833, 1.152) FAUC( 19.99, 0.833, 1.636) FAUC( 19.99, 0.500, 0.902) + FAUC( 20.02, 0.500, 0.826) FAUC( 20.04, 0.333, 1.152) FAUC( 20.07, 1.500, 1.523) FAUC( 20.10, 0.500, 0.576) + FAUC( 20.12, 0.167, 0.403) FAUC( 20.20, 0.167, 0.403) FAUC( 20.28, 0.167, 0.403) FAUC( 20.39, 0.167, 0.403) + CWSH( 20.40, 1.000, 4.249) FAUC( 20.40, 0.167, 1.152) CWSH( 20.42, 1.500, 3.320) CWSH( 20.44, 0.667, 2.049) + CWSH( 20.47, 1.000, 1.324) CWSH( 20.49, 0.333, 1.366) CWSH( 20.56, 0.167, 1.655) CWSH( 20.60, 1.167, 5.566) + FAUC( 20.60, 0.167, 1.152) CWSH( 20.65, 1.500, 3.814) CWSH( 20.72, 0.167, 2.613) FAUC( 21.05, 0.167, 0.403) + FAUC( 21.12, 0.167, 0.979) FAUC( 21.13, 0.167, 0.403) FAUC( 21.21, 0.167, 0.749) FAUC( 21.25, 0.167, 0.403) + FAUC( 21.46, 0.167, 0.806) FAUC( 22.06, 0.167, 0.576) FAUC( 23.57, 0.500, 0.864) +ENDDHWDAYUSE +DHWDAYUSE "6W" + FAUC( 0.20, 6.833, 0.016) FAUC( 1.22, 2.167, 0.026) FAUC( 1.64, 0.333, 0.086) FAUC( 1.65, 0.333, 0.086) + FAUC( 1.69, 0.333, 0.086) FAUC( 2.01, 0.167, 0.129) FAUC( 2.06, 9.167, 0.016) FAUC( 2.23, 2.000, 0.025) + FAUC( 2.52, 3.833, 0.015) FAUC( 2.59, 6.000, 0.017) FAUC( 4.63, 7.333, 0.015) FAUC( 5.00, 1.667, 2.075) + FAUC( 5.50, 0.333, 0.215) FAUC( 5.51, 8.000, 0.019) FAUC( 5.64, 0.333, 0.537) FAUC( 5.68, 0.500, 0.544) + FAUC( 5.69, 1.833, 0.031) FAUC( 5.74, 6.333, 0.025) FAUC( 5.85, 0.167, 0.430) FAUC( 6.11, 0.167, 0.559) + FAUC( 6.12, 1.833, 1.531) FAUC( 6.24, 0.167, 0.215) FAUC( 6.24, 0.167, 0.129) FAUC( 6.25, 0.167, 0.559) + FAUC( 6.25, 4.167, 0.021) FAUC( 6.32, 0.667, 0.430) FAUC( 6.33, 0.167, 0.773) FAUC( 6.33, 0.167, 0.172) + BATH( 6.35, 10.000, 1.775) FAUC( 6.51, 2.167, 0.053) FAUC( 6.55, 0.333, 0.859) FAUC( 6.56, 0.167, 0.129) + FAUC( 6.56, 0.500, 0.587) FAUC( 6.58, 0.333, 0.344) FAUC( 6.58, 0.333, 0.107) FAUC( 6.59, 0.667, 0.473) + FAUC( 6.60, 0.333, 0.086) FAUC( 6.61, 0.167, 0.687) FAUC( 6.61, 0.333, 0.172) FAUC( 6.62, 0.167, 1.074) + FAUC( 6.63, 0.500, 0.773) FAUC( 6.64, 2.333, 0.025) FAUC( 6.79, 0.333, 0.580) FAUC( 6.80, 0.167, 0.687) + FAUC( 6.82, 1.167, 2.369) FAUC( 6.84, 0.167, 0.301) FAUC( 6.84, 4.833, 0.019) FAUC( 6.92, 0.167, 0.215) + FAUC( 6.93, 2.000, 0.032) DWSH( 6.96, 2.000, 0.112) FAUC( 6.99, 3.167, 0.020) FAUC( 7.04, 0.167, 0.730) + FAUC( 7.05, 1.333, 0.038) FAUC( 7.08, 0.167, 0.129) FAUC( 7.10, 0.667, 0.344) FAUC( 7.12, 0.333, 0.129) + FAUC( 7.12, 0.333, 0.559) FAUC( 7.13, 0.167, 0.129) FAUC( 7.15, 0.333, 0.107) FAUC( 7.19, 1.333, 0.940) + FAUC( 7.21, 0.333, 0.967) FAUC( 7.23, 0.167, 0.172) FAUC( 7.23, 0.667, 0.773) FAUC( 7.24, 1.000, 0.057) + FAUC( 7.26, 0.333, 0.107) FAUC( 7.27, 0.167, 0.129) SHWR( 7.29, 17.500, 1.471) FAUC( 7.64, 0.333, 0.730) + FAUC( 7.64, 0.333, 0.193) FAUC( 7.65, 0.500, 0.100) FAUC( 7.66, 0.333, 0.924) FAUC( 7.66, 0.167, 0.129) + FAUC( 7.67, 0.167, 0.773) FAUC( 7.69, 1.333, 0.516) FAUC( 7.74, 4.667, 0.021) FAUC( 7.85, 1.833, 0.035) + FAUC( 7.88, 0.333, 0.086) FAUC( 7.89, 0.167, 0.129) FAUC( 8.05, 2.000, 1.719) FAUC( 8.31, 0.500, 0.401) + FAUC( 8.33, 0.500, 0.401) FAUC( 8.34, 0.333, 0.687) FAUC( 8.35, 0.167, 0.129) FAUC( 8.46, 0.833, 0.060) + FAUC( 8.57, 0.833, 0.060) FAUC( 8.59, 0.500, 0.745) FAUC( 8.60, 0.167, 0.129) FAUC( 8.61, 0.167, 0.172) + FAUC( 8.61, 0.833, 0.619) FAUC( 8.63, 0.333, 0.086) FAUC( 8.66, 0.833, 1.195) FAUC( 8.67, 3.667, 0.031) + FAUC( 8.81, 5.667, 0.018) FAUC( 8.92, 0.167, 0.172) FAUC( 8.93, 0.500, 0.530) FAUC( 8.94, 0.167, 0.129) + FAUC( 8.98, 0.333, 0.086) FAUC( 9.03, 0.500, 0.201) FAUC( 9.05, 0.333, 0.086) FAUC( 9.06, 0.500, 0.057) + FAUC( 9.07, 3.167, 0.708) FAUC( 9.17, 0.833, 0.421) FAUC( 9.20, 0.333, 0.473) FAUC( 9.21, 0.167, 0.172) + FAUC( 9.21, 0.333, 0.258) FAUC( 9.22, 4.833, 1.848) FAUC( 9.31, 0.167, 0.344) FAUC( 9.33, 0.333, 0.236) + FAUC( 9.34, 0.167, 0.172) FAUC( 9.34, 2.167, 0.023) FAUC( 9.39, 0.333, 0.107) FAUC( 9.42, 0.167, 0.129) + FAUC( 9.43, 0.167, 0.172) FAUC( 9.44, 0.167, 0.215) FAUC( 9.44, 1.167, 0.031) FAUC( 9.46, 0.500, 0.358) + FAUC( 9.47, 0.167, 0.172) FAUC( 9.47, 0.500, 0.057) FAUC( 9.50, 0.333, 0.516) FAUC( 9.57, 0.333, 1.461) + FAUC( 9.58, 1.167, 0.037) FAUC( 9.60, 0.333, 1.482) FAUC( 9.89, 0.167, 0.129) FAUC( 9.93, 0.333, 0.150) + FAUC( 10.04, 0.333, 1.805) FAUC( 10.37, 0.167, 0.430) FAUC( 10.42, 0.167, 2.492) FAUC( 10.42, 1.167, 0.061) + FAUC( 10.44, 0.167, 0.215) FAUC( 10.44, 0.167, 0.172) FAUC( 10.45, 0.333, 0.387) FAUC( 10.46, 1.167, 0.847) + FAUC( 10.48, 6.667, 0.031) FAUC( 10.59, 1.667, 0.030) FAUC( 10.64, 0.333, 1.568) FAUC( 10.66, 0.333, 1.611) + FAUC( 10.74, 1.667, 1.568) FAUC( 10.77, 0.167, 0.172) FAUC( 10.77, 3.000, 0.033) FAUC( 10.85, 0.167, 0.129) + FAUC( 10.88, 1.000, 1.533) FAUC( 11.26, 1.667, 0.039) FAUC( 11.29, 0.500, 0.086) FAUC( 11.35, 4.500, 0.024) + FAUC( 11.46, 0.833, 0.060) FAUC( 11.48, 2.167, 0.030) FAUC( 11.62, 0.333, 0.086) FAUC( 11.62, 0.333, 1.439) + FAUC( 11.65, 0.333, 1.525) FAUC( 11.65, 1.167, 0.018) FAUC( 11.80, 0.333, 0.086) FAUC( 11.84, 1.500, 0.368) + FAUC( 11.86, 0.333, 0.107) FAUC( 11.88, 0.167, 0.172) FAUC( 12.13, 1.000, 0.057) FAUC( 12.17, 2.000, 0.043) + FAUC( 12.23, 2.333, 0.034) FAUC( 12.32, 0.667, 0.806) FAUC( 12.33, 0.333, 0.301) FAUC( 12.34, 0.333, 0.086) + FAUC( 12.34, 0.167, 0.516) FAUC( 12.37, 0.833, 0.928) FAUC( 12.41, 0.167, 0.129) FAUC( 12.43, 0.167, 0.129) + FAUC( 12.46, 0.167, 0.172) FAUC( 12.47, 1.000, 0.036) FAUC( 12.49, 0.500, 1.389) FAUC( 12.51, 0.833, 1.057) + FAUC( 12.55, 1.000, 0.945) FAUC( 12.64, 0.333, 0.387) FAUC( 12.98, 6.000, 0.018) FAUC( 13.08, 0.167, 0.129) + FAUC( 13.09, 0.167, 0.129) FAUC( 13.13, 0.333, 0.086) FAUC( 13.34, 0.333, 1.031) FAUC( 13.34, 3.333, 0.024) + FAUC( 13.44, 0.167, 0.215) FAUC( 13.47, 8.000, 0.018) FAUC( 13.63, 2.500, 0.034) FAUC( 13.67, 0.333, 0.301) + FAUC( 13.74, 5.500, 0.021) FAUC( 13.84, 0.167, 0.387) FAUC( 13.85, 0.500, 0.286) FAUC( 13.98, 0.333, 0.258) + FAUC( 14.03, 0.333, 0.430) FAUC( 14.03, 4.667, 0.017) FAUC( 14.11, 0.167, 0.344) FAUC( 14.11, 0.167, 0.172) + FAUC( 14.11, 0.167, 0.387) FAUC( 14.18, 0.667, 0.440) FAUC( 14.21, 6.000, 0.024) FAUC( 14.31, 0.500, 1.074) + FAUC( 14.36, 0.333, 0.365) FAUC( 14.41, 1.167, 0.061) FAUC( 14.42, 0.833, 0.335) FAUC( 14.96, 0.167, 0.172) + FAUC( 15.11, 0.167, 0.129) FAUC( 15.21, 0.833, 0.593) FAUC( 15.23, 0.500, 0.329) FAUC( 15.45, 0.167, 0.172) + FAUC( 15.53, 1.000, 0.859) FAUC( 15.55, 0.333, 0.258) FAUC( 15.56, 2.000, 0.039) FAUC( 15.59, 0.167, 0.816) + FAUC( 15.62, 0.500, 0.573) FAUC( 15.63, 0.500, 0.430) FAUC( 15.64, 0.167, 0.687) FAUC( 15.65, 0.167, 0.172) + FAUC( 15.65, 0.167, 0.730) FAUC( 15.66, 0.333, 0.451) FAUC( 15.67, 0.500, 1.003) FAUC( 15.68, 0.167, 0.172) + FAUC( 15.68, 0.167, 0.301) FAUC( 15.69, 0.667, 0.301) FAUC( 15.76, 0.500, 0.201) FAUC( 15.79, 1.167, 0.037) + FAUC( 15.81, 0.333, 0.559) FAUC( 15.82, 1.833, 0.047) FAUC( 15.87, 0.667, 0.623) FAUC( 15.89, 0.333, 0.301) + FAUC( 15.90, 0.833, 0.034) DWSH( 15.91, 1.667, 0.145) FAUC( 15.99, 1.000, 0.043) FAUC( 16.02, 0.167, 0.215) + FAUC( 16.03, 0.833, 0.043) FAUC( 16.12, 0.500, 0.358) FAUC( 16.14, 0.167, 0.945) FAUC( 16.16, 0.667, 0.054) + FAUC( 16.18, 0.500, 0.072) FAUC( 16.19, 1.000, 0.036) FAUC( 16.23, 0.500, 0.086) FAUC( 16.36, 0.167, 0.730) + FAUC( 16.36, 0.167, 0.172) FAUC( 16.37, 0.333, 0.322) FAUC( 16.38, 1.500, 1.852) FAUC( 16.48, 2.000, 0.043) + FAUC( 16.52, 0.500, 0.401) FAUC( 16.99, 0.167, 0.687) FAUC( 16.99, 0.333, 0.150) FAUC( 17.00, 0.167, 0.387) + FAUC( 17.00, 0.167, 0.945) FAUC( 17.01, 1.333, 0.043) FAUC( 17.04, 0.167, 0.516) FAUC( 17.17, 6.000, 0.023) + FAUC( 17.27, 0.167, 0.215) FAUC( 17.30, 0.667, 0.795) FAUC( 17.61, 0.167, 0.516) FAUC( 17.61, 8.833, 0.016) + FAUC( 17.76, 0.167, 0.258) FAUC( 17.76, 0.167, 0.129) FAUC( 17.76, 0.333, 0.430) FAUC( 17.77, 0.500, 0.158) + FAUC( 17.77, 0.333, 0.408) FAUC( 17.84, 0.167, 0.129) FAUC( 17.94, 0.167, 0.215) FAUC( 18.11, 1.500, 0.525) + FAUC( 18.14, 0.333, 1.031) FAUC( 18.27, 2.000, 0.061) FAUC( 18.37, 0.333, 0.086) FAUC( 18.38, 0.500, 0.115) + FAUC( 18.39, 3.500, 0.029) FAUC( 18.49, 1.167, 1.166) FAUC( 18.51, 0.167, 0.172) FAUC( 18.52, 1.833, 0.035) + FAUC( 18.58, 5.167, 0.022) FAUC( 18.69, 0.667, 0.086) FAUC( 18.77, 0.667, 0.827) FAUC( 18.78, 0.333, 0.107) + FAUC( 18.79, 0.167, 0.215) DWSH( 18.81, 1.500, 0.136) FAUC( 18.83, 0.333, 0.107) FAUC( 18.84, 0.167, 0.730) + FAUC( 19.03, 1.333, 0.032) FAUC( 19.06, 0.333, 0.086) FAUC( 19.07, 1.667, 0.043) FAUC( 19.13, 3.833, 0.024) + FAUC( 19.19, 1.167, 1.393) FAUC( 19.23, 0.500, 0.831) FAUC( 19.24, 0.333, 0.773) FAUC( 19.27, 0.167, 0.258) + FAUC( 19.32, 2.167, 0.033) FAUC( 19.48, 0.167, 0.516) FAUC( 19.48, 1.500, 0.048) FAUC( 19.51, 1.167, 0.037) + FAUC( 19.54, 0.333, 0.645) FAUC( 19.56, 0.333, 0.107) FAUC( 19.56, 0.333, 1.031) FAUC( 19.59, 1.833, 0.043) + FAUC( 19.63, 1.833, 0.180) FAUC( 19.66, 1.667, 1.100) FAUC( 19.67, 1.000, 1.139) FAUC( 19.69, 5.333, 0.027) + FAUC( 19.78, 0.333, 0.623) FAUC( 19.85, 0.500, 0.716) FAUC( 19.91, 0.500, 0.673) FAUC( 19.99, 0.167, 0.430) + FAUC( 19.99, 6.000, 0.021) FAUC( 20.09, 0.667, 0.290) FAUC( 20.11, 0.333, 0.322) FAUC( 20.16, 0.167, 0.430) + FAUC( 20.16, 0.333, 0.537) DWSH( 20.18, 1.667, 0.111) FAUC( 20.61, 0.500, 0.501) FAUC( 20.61, 0.333, 0.129) + FAUC( 20.62, 0.500, 0.430) FAUC( 20.63, 0.333, 0.150) FAUC( 20.64, 0.333, 0.086) FAUC( 20.65, 0.167, 0.602) + FAUC( 20.65, 4.667, 0.015) FAUC( 20.73, 0.833, 0.954) SHWR( 21.08, 6.833, 1.373) FAUC( 21.21, 0.167, 0.430) + FAUC( 21.23, 5.167, 0.018) FAUC( 21.34, 0.167, 0.215) FAUC( 21.34, 0.167, 0.129) FAUC( 21.35, 5.500, 0.030) + FAUC( 21.46, 5.833, 0.017) FAUC( 21.56, 0.333, 0.537) FAUC( 22.09, 0.167, 0.301) FAUC( 22.12, 1.000, 1.561) + FAUC( 22.14, 0.167, 0.129) FAUC( 22.14, 0.500, 0.458) FAUC( 22.16, 0.167, 0.258) FAUC( 22.16, 0.167, 0.172) + FAUC( 22.16, 1.000, 1.661) FAUC( 22.52, 3.667, 0.018) +ENDDHWDAYUSE +DHWDAYUSE "6R" + FAUC( 8.16, 0.167, 0.321) FAUC( 8.18, 0.167, 0.375) FAUC( 17.79, 0.667, 0.803) +ENDDHWDAYUSE +DHWDAYUSE "6F" + FAUC( 0.02, 0.167, 0.430) FAUC( 1.07, 0.333, 0.967) FAUC( 8.50, 0.167, 0.559) FAUC( 8.58, 0.333, 1.439) + FAUC( 9.19, 0.333, 0.859) FAUC( 9.70, 0.167, 0.215) CWSH( 9.98, 4.667, 0.952) FAUC( 10.05, 0.167, 1.332) + CWSH( 10.29, 4.167, 0.982) CWSH( 10.51, 4.000, 1.030) SHWR( 10.62, 3.500, 1.492) SHWR( 10.84, 11.333, 1.492) + FAUC( 10.85, 0.500, 1.475) FAUC( 10.91, 0.500, 0.917) FAUC( 11.07, 0.333, 0.258) FAUC( 11.09, 0.500, 0.673) + FAUC( 11.26, 0.167, 0.344) FAUC( 11.49, 2.333, 0.077) FAUC( 12.16, 0.167, 0.215) FAUC( 12.56, 0.167, 0.215) + FAUC( 12.65, 0.167, 0.215) CWSH( 12.81, 3.500, 1.251) CWSH( 13.11, 3.167, 1.298) CWSH( 13.31, 3.167, 1.314) + FAUC( 13.53, 0.167, 0.258) FAUC( 13.59, 0.167, 0.559) FAUC( 13.60, 0.333, 1.139) FAUC( 13.66, 0.333, 1.439) + FAUC( 14.16, 0.167, 0.602) FAUC( 14.17, 0.333, 1.053) FAUC( 14.18, 0.333, 0.473) FAUC( 14.80, 0.167, 0.902) + CWSH( 14.82, 2.167, 2.029) CWSH( 15.05, 0.500, 1.605) CWSH( 15.10, 2.167, 1.725) CWSH( 15.23, 2.167, 1.714) + CWSH( 15.81, 10.000, 0.678) CWSH( 16.10, 2.667, 0.983) FAUC( 16.25, 0.167, 1.160) CWSH( 16.29, 3.333, 0.975) + FAUC( 16.38, 1.167, 0.313) FAUC( 16.84, 1.167, 0.289) FAUC( 16.92, 1.167, 0.301) SHWR( 17.10, 7.667, 1.084) + FAUC( 17.71, 1.833, 0.273) FAUC( 18.29, 0.333, 0.816) FAUC( 18.35, 0.500, 1.776) FAUC( 18.62, 0.167, 0.258) + FAUC( 18.97, 0.333, 0.236) FAUC( 19.00, 0.167, 0.988) FAUC( 19.15, 0.167, 0.215) FAUC( 19.16, 0.167, 0.645) + FAUC( 19.39, 0.333, 1.977) FAUC( 19.41, 0.333, 0.430) FAUC( 20.04, 0.167, 0.215) FAUC( 20.07, 2.167, 0.922) + FAUC( 20.09, 0.333, 0.752) FAUC( 20.45, 0.333, 0.924) FAUC( 20.75, 0.500, 0.501) FAUC( 20.79, 0.167, 1.203) + FAUC( 21.07, 0.333, 1.160) SHWR( 21.25, 3.667, 1.492) FAUC( 21.71, 0.167, 1.762) FAUC( 21.86, 0.500, 1.046) + FAUC( 21.87, 0.333, 1.525) FAUC( 22.11, 0.167, 0.215) FAUC( 22.58, 0.333, 0.988) SHWR( 22.69, 5.000, 1.492) + FAUC( 22.84, 0.667, 0.870) FAUC( 22.88, 0.167, 0.730) FAUC( 23.23, 0.167, 0.258) FAUC( 23.26, 0.167, 0.215) + FAUC( 23.61, 0.167, 0.258) +ENDDHWDAYUSE +DHWDAYUSE "6S" + FAUC( 0.26, 0.333, 1.225) FAUC( 8.27, 1.833, 0.410) FAUC( 8.30, 5.833, 0.411) FAUC( 8.96, 0.167, 0.387) + FAUC( 9.19, 2.833, 0.763) FAUC( 9.25, 6.833, 0.812) FAUC( 9.46, 0.500, 0.616) FAUC( 9.47, 0.167, 0.344) + FAUC( 9.47, 0.167, 0.859) FAUC( 9.50, 1.000, 0.337) FAUC( 9.51, 0.333, 1.203) FAUC( 9.52, 2.333, 1.044) + FAUC( 9.74, 0.333, 0.838) FAUC( 9.79, 0.167, 0.344) FAUC( 9.87, 0.167, 0.816) FAUC( 9.89, 0.167, 0.344) + FAUC( 9.90, 0.167, 0.516) FAUC( 9.92, 0.167, 0.301) FAUC( 9.94, 0.167, 0.387) FAUC( 10.18, 0.333, 0.687) + FAUC( 10.36, 6.333, 1.261) FAUC( 10.48, 1.333, 0.376) FAUC( 10.59, 1.500, 0.692) FAUC( 10.62, 0.333, 0.687) + FAUC( 10.63, 1.000, 0.716) FAUC( 10.68, 1.667, 0.726) FAUC( 10.73, 1.667, 0.851) FAUC( 10.83, 1.833, 0.727) + FAUC( 10.87, 2.667, 0.765) FAUC( 10.93, 1.333, 0.854) FAUC( 11.26, 0.667, 0.569) FAUC( 11.29, 0.833, 0.473) + FAUC( 11.52, 3.000, 0.463) FAUC( 11.62, 1.500, 0.716) SHWR( 11.64, 9.667, 0.684) SHWR( 11.64, 9.833, 1.372) + FAUC( 12.08, 0.167, 0.258) FAUC( 12.12, 3.167, 0.328) FAUC( 16.17, 1.500, 1.399) FAUC( 16.17, 0.333, 0.365) + FAUC( 16.18, 0.833, 2.294) FAUC( 17.06, 0.167, 0.387) FAUC( 17.06, 1.500, 1.461) FAUC( 17.06, 1.500, 0.955) + FAUC( 17.22, 1.000, 0.723) FAUC( 18.02, 0.167, 0.430) FAUC( 18.08, 0.167, 0.344) FAUC( 18.15, 0.333, 1.160) + FAUC( 18.32, 0.667, 0.397) FAUC( 18.33, 0.500, 0.659) FAUC( 18.53, 0.333, 0.430) FAUC( 18.94, 0.833, 0.533) + FAUC( 19.02, 0.333, 1.139) FAUC( 19.03, 0.500, 1.260) FAUC( 19.08, 0.167, 0.258) FAUC( 19.11, 0.500, 0.687) + FAUC( 19.12, 0.500, 0.716) FAUC( 19.14, 0.167, 0.816) FAUC( 19.15, 0.167, 0.473) FAUC( 19.18, 0.167, 0.344) + FAUC( 19.93, 0.500, 0.272) FAUC( 19.97, 0.833, 0.438) FAUC( 19.98, 0.167, 1.203) FAUC( 20.00, 0.333, 1.139) + FAUC( 20.03, 0.500, 0.845) FAUC( 20.49, 0.333, 0.279) FAUC( 20.52, 0.167, 0.258) CWSH( 21.00, 2.167, 2.641) + CWSH( 21.38, 0.333, 1.957) CWSH( 21.42, 2.000, 2.732) FAUC( 21.46, 2.167, 0.889) FAUC( 21.51, 0.167, 1.074) + CWSH( 21.52, 0.667, 1.216) FAUC( 21.55, 0.833, 0.705) FAUC( 21.58, 0.333, 0.430) FAUC( 21.60, 0.833, 0.404) + FAUC( 21.61, 0.167, 0.258) FAUC( 21.64, 1.667, 0.498) FAUC( 21.70, 0.167, 0.387) FAUC( 21.72, 3.000, 0.489) + FAUC( 21.79, 0.500, 0.759) FAUC( 21.81, 0.167, 0.473) FAUC( 21.82, 0.333, 0.838) FAUC( 21.84, 1.167, 0.503) + FAUC( 21.87, 1.333, 0.473) FAUC( 21.90, 0.500, 0.874) SHWR( 21.91, 7.500, 1.444) SHWR( 22.03, 5.333, 1.428) + FAUC( 22.65, 0.667, 0.376) FAUC( 22.73, 5.833, 0.861) FAUC( 22.83, 0.500, 0.730) FAUC( 22.84, 0.333, 1.096) + FAUC( 22.87, 0.333, 0.473) FAUC( 22.88, 1.333, 0.859) FAUC( 22.90, 0.167, 0.687) FAUC( 23.01, 4.167, 0.442) + FAUC( 23.09, 2.000, 1.131) FAUC( 23.12, 0.500, 0.902) +ENDDHWDAYUSE +DHWDAYUSE "6U" + FAUC( 0.59, 0.333, 0.666) FAUC( 2.66, 0.333, 0.666) FAUC( 6.08, 0.167, 1.203) FAUC( 6.97, 0.167, 0.258) + FAUC( 6.98, 0.333, 0.881) FAUC( 7.03, 0.167, 0.301) SHWR( 7.04, 8.000, 1.492) FAUC( 7.19, 0.167, 0.387) + FAUC( 7.21, 0.167, 0.301) FAUC( 7.25, 0.333, 0.709) FAUC( 7.43, 0.167, 1.160) FAUC( 7.53, 0.167, 0.258) + FAUC( 7.60, 0.167, 0.258) FAUC( 7.82, 0.333, 0.473) FAUC( 8.52, 0.167, 0.645) FAUC( 8.80, 0.167, 0.258) + FAUC( 9.02, 0.333, 1.203) FAUC( 9.30, 0.667, 1.429) FAUC( 9.99, 0.167, 0.258) FAUC( 10.12, 2.167, 1.904) + FAUC( 10.23, 0.333, 0.816) FAUC( 10.26, 0.833, 0.756) FAUC( 10.44, 0.167, 0.516) FAUC( 10.83, 0.500, 0.544) + FAUC( 10.86, 0.167, 0.258) FAUC( 11.17, 0.333, 0.408) FAUC( 11.29, 0.500, 1.962) FAUC( 11.31, 0.333, 1.160) + FAUC( 11.33, 0.333, 0.494) FAUC( 11.34, 0.167, 1.332) FAUC( 11.35, 0.333, 0.859) FAUC( 11.37, 0.667, 1.010) + FAUC( 11.45, 0.333, 1.053) FAUC( 11.55, 0.500, 0.802) FAUC( 11.58, 0.333, 0.408) FAUC( 11.59, 0.167, 0.430) + FAUC( 11.62, 1.000, 0.931) FAUC( 11.65, 0.333, 0.387) FAUC( 11.67, 0.333, 0.430) FAUC( 11.68, 0.333, 1.074) + FAUC( 11.76, 1.167, 0.798) FAUC( 11.95, 0.500, 1.303) FAUC( 12.00, 0.167, 0.301) FAUC( 12.18, 0.667, 0.634) + FAUC( 12.24, 0.667, 0.709) FAUC( 12.32, 0.167, 0.902) FAUC( 12.35, 0.500, 0.773) FAUC( 12.37, 0.167, 0.773) + FAUC( 12.38, 0.500, 1.475) FAUC( 12.41, 0.167, 0.816) DWSH( 12.45, 0.833, 0.651) DWSH( 12.53, 1.333, 0.541) + FAUC( 12.53, 0.333, 0.408) FAUC( 12.55, 0.167, 0.387) FAUC( 12.56, 0.333, 0.387) DWSH( 12.60, 1.167, 0.600) + FAUC( 12.60, 0.167, 0.215) DWSH( 12.66, 1.000, 0.585) FAUC( 12.66, 0.833, 0.473) DWSH( 12.75, 1.167, 0.582) + FAUC( 12.75, 0.333, 0.537) DWSH( 13.11, 0.833, 0.539) FAUC( 13.11, 0.333, 0.645) FAUC( 13.16, 0.833, 0.670) + DWSH( 13.17, 1.167, 0.549) DWSH( 13.24, 1.167, 0.585) FAUC( 13.29, 0.500, 1.031) FAUC( 13.30, 0.333, 1.547) + FAUC( 13.32, 0.167, 0.559) FAUC( 13.33, 0.333, 1.010) FAUC( 13.49, 0.167, 0.387) FAUC( 13.53, 0.500, 0.931) + FAUC( 13.68, 0.167, 0.258) FAUC( 13.70, 0.333, 0.559) FAUC( 13.75, 0.167, 0.473) FAUC( 13.77, 0.500, 1.160) + FAUC( 13.80, 0.667, 2.933) FAUC( 13.95, 1.333, 0.795) FAUC( 14.08, 1.333, 0.956) FAUC( 14.28, 0.833, 2.191) + FAUC( 14.29, 0.667, 2.621) FAUC( 14.30, 0.500, 2.979) FAUC( 14.34, 0.167, 0.387) FAUC( 14.40, 0.500, 0.859) + FAUC( 14.76, 0.500, 0.802) FAUC( 14.82, 1.000, 0.917) FAUC( 14.86, 0.333, 0.773) FAUC( 14.88, 1.667, 1.590) + FAUC( 14.91, 0.333, 3.008) SHWR( 14.93, 8.500, 1.063) FAUC( 15.31, 0.167, 0.301) SHWR( 17.03, 12.833, 1.296) + FAUC( 17.24, 0.167, 1.719) FAUC( 17.30, 0.333, 0.537) FAUC( 17.57, 0.500, 0.430) FAUC( 17.83, 0.167, 1.074) + FAUC( 17.87, 0.167, 0.902) CWSH( 18.52, 3.167, 1.757) CWSH( 18.81, 1.333, 1.306) CWSH( 18.84, 3.667, 1.458) + FAUC( 18.92, 0.333, 0.666) FAUC( 18.92, 0.167, 0.430) FAUC( 19.32, 0.500, 0.444) FAUC( 23.08, 0.667, 0.473) + FAUC( 23.15, 0.667, 0.634) FAUC( 23.18, 0.167, 0.645) +ENDDHWDAYUSE +DHWDAYUSE "6H" + SHWR( 0.04, 4.167, 1.515) FAUC( 0.19, 0.167, 1.313) FAUC( 0.24, 0.333, 0.770) FAUC( 0.25, 0.167, 1.313) + FAUC( 0.27, 0.167, 0.272) FAUC( 0.50, 1.000, 0.860) FAUC( 0.58, 0.167, 0.272) FAUC( 0.59, 0.167, 0.679) + FAUC( 0.62, 0.500, 1.464) FAUC( 0.64, 0.333, 0.521) FAUC( 0.70, 0.167, 0.407) FAUC( 0.72, 0.167, 0.860) + FAUC( 0.83, 0.333, 0.385) FAUC( 1.86, 2.500, 1.132) FAUC( 3.01, 0.833, 0.063) FAUC( 3.13, 0.167, 0.272) + FAUC( 3.26, 3.000, 0.023) FAUC( 5.23, 0.333, 0.815) FAUC( 5.35, 1.833, 1.276) FAUC( 5.38, 1.833, 0.033) + FAUC( 5.41, 0.167, 0.770) FAUC( 5.48, 2.333, 1.132) FAUC( 8.15, 0.500, 1.434) FAUC( 10.29, 3.667, 1.159) + FAUC( 10.38, 0.167, 0.589) FAUC( 10.63, 3.500, 0.964) FAUC( 10.85, 2.333, 1.032) FAUC( 10.88, 0.667, 2.581) + FAUC( 10.91, 0.167, 0.589) FAUC( 10.94, 0.667, 1.936) FAUC( 12.36, 0.167, 1.041) FAUC( 12.45, 1.000, 0.045) + FAUC( 12.47, 0.167, 0.407) SHWR( 12.71, 11.333, 1.572) FAUC( 12.99, 0.500, 1.434) FAUC( 13.15, 0.167, 0.453) + FAUC( 13.17, 0.333, 0.815) FAUC( 13.54, 0.667, 0.770) FAUC( 13.55, 0.167, 1.313) FAUC( 13.56, 0.333, 0.815) + FAUC( 13.56, 0.167, 0.407) CWSH( 13.64, 6.500, 0.830) FAUC( 13.75, 1.333, 0.074) FAUC( 13.78, 4.500, 0.543) + SHWR( 13.82, 1.833, 1.572) FAUC( 13.86, 0.333, 0.860) CWSH( 13.91, 15.500, 0.450) FAUC( 13.91, 5.833, 0.463) + FAUC( 14.01, 0.333, 0.249) FAUC( 14.03, 2.000, 1.034) FAUC( 14.11, 0.333, 0.475) CWSH( 14.26, 0.333, 0.361) + CWSH( 14.27, 0.167, 0.036) CWSH( 14.27, 0.500, 0.307) FAUC( 14.38, 0.333, 0.475) FAUC( 14.61, 0.167, 0.453) + FAUC( 15.08, 0.667, 1.200) FAUC( 15.82, 1.667, 2.966) FAUC( 15.91, 0.167, 0.272) FAUC( 16.02, 0.333, 0.951) + FAUC( 16.04, 2.333, 1.090) FAUC( 16.09, 0.333, 0.521) FAUC( 16.14, 0.167, 1.132) FAUC( 16.24, 0.833, 0.598) + FAUC( 16.26, 0.667, 0.860) FAUC( 16.27, 0.333, 0.475) FAUC( 16.29, 0.167, 0.770) FAUC( 16.29, 0.500, 0.830) + FAUC( 16.31, 0.333, 0.770) FAUC( 16.32, 0.500, 0.860) FAUC( 16.33, 0.333, 0.521) FAUC( 16.34, 4.167, 0.020) + FAUC( 16.49, 0.833, 0.063) FAUC( 16.50, 0.167, 0.407) FAUC( 17.36, 1.000, 2.422) FAUC( 17.39, 0.167, 0.453) + FAUC( 17.41, 0.333, 0.521) FAUC( 18.07, 0.667, 0.906) FAUC( 18.19, 0.667, 0.860) FAUC( 19.80, 2.000, 1.490) + FAUC( 19.85, 0.333, 0.996) FAUC( 20.19, 0.333, 0.815) FAUC( 20.26, 10.667, 0.966) FAUC( 20.46, 7.167, 0.594) + FAUC( 20.62, 0.500, 1.464) FAUC( 21.03, 0.333, 0.566) FAUC( 21.08, 0.167, 0.589) FAUC( 21.09, 0.167, 0.453) + FAUC( 21.11, 0.833, 0.743) FAUC( 21.15, 0.833, 0.706) SHWR( 21.31, 6.000, 1.572) FAUC( 21.44, 0.167, 0.272) + FAUC( 21.49, 0.333, 0.521) FAUC( 22.38, 0.333, 0.430) FAUC( 22.39, 1.667, 1.263) FAUC( 22.43, 0.667, 1.053) + FAUC( 22.44, 0.333, 0.996) FAUC( 22.47, 0.333, 0.996) FAUC( 22.59, 0.500, 1.373) FAUC( 22.70, 0.333, 0.543) + FAUC( 22.71, 0.333, 0.340) FAUC( 22.75, 0.167, 0.272) SHWR( 22.77, 4.833, 1.572) +ENDDHWDAYUSE + +#define SF_RECIRCDC hourval( \ + 1.0, 0.5, 0.6, 0.6, 1.2, 2.4, 4.5, 5.7, \ + 5.4, 4.5, 3.7, 2.8, 2.5, 2.3, 2.1, 1.9, \ + 2.8, 3.2, 3.3, 3.1, 2.7, 2.5, 2.3, 1.5 ) + +DHWSYS "DS1" + wsDayUse = DHW4BR + wsElecMtr = MtrElec + wsTUse = 130 + wsSDLM = 1. + wsWF = .9 // waste factor (1=std waste, .9=recirc credit) + wsParElec = SF_RECIRCDC + wsWHHwMtr = DHWMtrWH1 + + DHWHEATER HPWH + whType = SmallStorage + whHeatSrc = ASHPX + whASHPType = GE2014StdMode + whASHPSrcT = $tdbO + +ENDDHWSYS + +DHWSYS DS2 COPY DS1 wsWHHwMtr = DHWMtrWH2 +ALTER DHWSYS DS2 ALTER DHWHEATER HPWH whASHPType = SANCO2_83 whASHPSrcT=$tDbO+1. +ENDDHWSYS + +DELETE REPORT EB + +REPORT rpType=MTR rpMeter=MtrElec rpFreq=Month + +REPORT WMREP1 rpType=DHWMTR rpDHWMeter=DHWMtrWH1 rpFreq=Month +REPORT WMREP2 COPY WMREP1 rpDHWMeter=DHWMtrWH2 + + +#undef BATH + +#define DHWCOLS( s) \ + Reportcol colVal=@DHWSYS[s].tInlet colHead="Tinlet" colWid=6 colDec=1 \ + Reportcol colVal=@DHWSYS[s].WHUse.Total colHead="FxUseHot" colWid=6 colDec=1 \ + Reportcol colVal=@DHWSYS[s].WHUse.Total colHead="WHUse" colWid=6 colDec=1 \ + Reportcol colVal=@DHWSYS[s].FxUseMix.Total colHead="Total" colWid=6 colDec=3 \ + Reportcol colVal=@DHWSYS[s].FxUseMix.Unknown colHead="Unknown" colWid=6 colDec=3 \ + Reportcol colVal=@DHWSYS[s].FxUseMix.Faucet colHead="Faucet" colWid=6 colDec=3 \ + Reportcol colVal=@DHWSYS[s].FxUseMix.Shower colHead="Shower" colWid=6 colDec=3 \ + Reportcol colVal=@DHWSYS[s].FxUseMix.Bath colHead="Bath" colWid=6 colDec=3 \ + Reportcol colVal=@DHWSYS[s].FxUseMix.CWashr colHead="CWashr" colWid=6 colDec=3 \ + Reportcol colVal=@DHWSYS[s].FxUseMix.DWashr colHead="DWashr" colWid=6 colDec=3 + + +REPORT DHWREP1 rpType=UDT rpFreq=Hour rpDayBeg=mar 10 rpDayEnd=mar 15 rpcpl=-1 + Reportcol colVal=$hour colHead="Hr" colWid=2 colDec=0 + Reportcol colVal=$tDbO colHead="Tout" colWid=4 colDec=1 + Reportcol DayCol1 colVal= DHW4BR colHead="Day" colWid=4 + DHWCOLS("DS1") + +REPORT DHWREP2 LIKE DHWREP1 + Reportcol colVal=$hour colHead="Hr" colWid=2 colDec=0 + Reportcol colVal=$tDbO colHead="Tout" colWid=4 colDec=1 + Reportcol colVal= DHW4BR colHead="Day" colWid=4 + DHWCOLS(2) + +REPORT rpType=DHWMTR rpDHWMeter=DHWMtrWH1 rpFreq=Day rpDayBeg=mar 10 rpDayEnd=mar 15 +REPORT rpType=DHWMTR rpDHWMeter=DHWMtrWH2 rpFreq=Day rpDayBeg=mar 10 rpDayEnd=mar 15 + +METER MtrElec +DHWMETER DHWMtrWH1 +DHWMETER DHWMtrWH2 + + +RUN + +UNSET wfName +wfName = "CA_BLUE-CANYON-AP_725845S_STYP20.epw" + +// change string expression to float expression +ALTER REPORTCOL DayCol1 colHead="TSqRt" colWid=5 colVal=sqrt( $tDbO) + +ALTER REPORT DHWREP2 rpTitle = "Blue Canyon" + +RUN + +$EOF \ No newline at end of file diff --git a/test/ref/commands.rep b/test/ref/commands.rep new file mode 100644 index 000000000..0a49b137b --- /dev/null +++ b/test/ref/commands.rep @@ -0,0 +1,3096 @@ + + +Monthly Energy Balance, Sum of Zones + + Mon Tair WBair Cond InfS Slr IgnS Mass Izone MechS BalS InfL IgnL IzoneL AirL MechL BalL +---- ----- ----- ------ ------ ----- ----- ------ ------ ------ ---- ------ ----- ------ ------ ------ ---- + Jan 65.08 54.23 0 0 0 0 -3.133 -.0001 3.133 0 0 0 -0.000 .00001 0 0 + Feb 65.63 54.43 0 0 0 0 -1.802 0 1.802 0 0 0 0 0 0 0 + Mar 67.02 54.99 0 0 0 0 -0.921 0 0.921 0 0 0 0 0 0 0 + Apr 67.80 55.30 0 0 0 0 -0.238 0 0.238 0 0 0 0 0 0 0 + May 69.54 56.00 0 0 0 0 1.349 0 -1.349 0 0 0 0 0 0 0 + Jun 70.75 56.45 0 0 0 0 2.419 0 -2.419 0 0 0 0 0 0 0 + Jul 71.14 56.60 0 0 0 0 2.958 -0.000 -2.958 0 0 0 0 0 0 0 + Aug 70.93 56.52 0 0 0 0 2.522 0 -2.522 0 0 0 0 0 0 0 + Sep 70.50 56.37 0 0 0 0 1.888 0 -1.888 0 0 0 0 0 0 0 + Oct 68.45 55.58 0 0 0 0 0.137 0 -0.137 0 0 0 0 0 0 0 + Nov 65.41 54.36 0 0 0 0 -2.007 -0.000 2.007 0 0 0 0 0 0 0 + Dec 65.10 54.23 0 0 0 0 -3.101 -0.000 3.101 0 0 0 0 0 0 0 + + Yr 68.11 55.44 0 0 0 0 0.0707 -.0001 -.0706 0 0 0 0 0 0 0 + + + +Monthly Energy Balance, zone "Z1" + + Mon Tair WBair Cond InfS Slr IgnS Mass Izone MechS BalS InfL IgnL IzoneL AirL MechL BalL +---- ----- ----- ------ ------ ----- ----- ------ ------ ------ ---- ------ ----- ------ ------ ------ ---- + Jan 65.14 54.26 0 0 0 0 -2.065 0 2.065 0 0 0 0 0 0 0 + Feb 66.03 54.61 0 0 0 0 -1.188 0 1.188 0 0 0 0 0 0 0 + Mar 67.37 55.15 0 0 0 0 -0.628 0 0.628 0 0 0 0 0 0 0 + Apr 68.30 55.52 0 0 0 0 -0.139 0 0.139 0 0 0 0 0 0 0 + May 70.46 56.36 0 0 0 0 0.873 -0.000 -0.873 0 0 0 0 0 0 0 + Jun 72.06 56.95 0 0 0 0 1.574 -0.000 -1.574 0 0 0 0 0 0 0 + Jul 72.61 57.15 0 0 0 0 1.917 -0.000 -1.917 0 0 0 0 0 0 0 + Aug 72.27 57.03 0 0 0 0 1.628 -0.000 -1.628 0 0 0 0 0 0 0 + Sep 71.68 56.81 0 0 0 0 1.211 -0.000 -1.211 0 0 0 0 0 0 0 + Oct 68.99 55.79 0 0 0 0 0.0812 0 -.0812 0 0 0 0 0 0 0 + Nov 65.66 54.46 0 0 0 0 -1.325 0 1.325 0 0 0 0 0 0 0 + Dec 65.18 54.26 0 0 0 0 -2.047 0 2.047 0 0 0 0 0 0 0 + + Yr 68.81 55.73 0 0 0 0 -0.107 -.0001 0.107 0 0 0 0 0 0 0 + + + +Monthly Energy Balance, zone "Z2" + + Mon Tair WBair Cond InfS Slr IgnS Mass Izone MechS BalS InfL IgnL IzoneL AirL MechL BalL +---- ----- ----- ------ ------ ----- ----- ------ ------ ------ ---- ------ ----- ------ ------ ------ ---- + Jan 65.01 54.19 0 0 0 0 -1.068 -.0001 1.068 0 0 0 -0.000 .00001 0 0 + Feb 65.24 54.25 0 0 0 0 -0.614 0 0.614 0 0 0 0 0 0 0 + Mar 66.67 54.83 0 0 0 0 -0.294 0 0.294 0 0 0 0 0 0 0 + Apr 67.30 55.09 0 0 0 0 -.0982 .00001 0.0982 0 0 0 0 0 0 0 + May 68.63 55.62 0 0 0 0 0.476 .00001 -0.476 0 0 0 0 0 0 0 + Jun 69.44 55.95 0 0 0 0 0.844 .00001 -0.844 0 0 0 0 0 0 0 + Jul 69.67 56.04 0 0 0 0 1.040 0 -1.040 0 0 0 0 0 0 0 + Aug 69.60 56.01 0 0 0 0 0.894 .00001 -0.894 0 0 0 0 0 0 0 + Sep 69.32 55.94 0 0 0 0 0.677 0 -0.677 0 0 0 0 0 0 0 + Oct 67.91 55.37 0 0 0 0 0.0560 0 -.0560 0 0 0 0 0 0 0 + Nov 65.16 54.26 0 0 0 0 -0.682 -0.000 0.682 0 0 0 0 0 0 0 + Dec 65.02 54.21 0 0 0 0 -1.054 -0.000 1.054 0 0 0 0 0 0 0 + + Yr 67.41 55.15 0 0 0 0 0.178 -.0001 -0.178 0 0 0 0 0 0 0 + + + +Hourly Energy Balance, zone "Z1", Wed 10-Jul + + Hr Tair WBair Cond InfS Slr IgnS Mass Izone MechS BalS InfL IgnL IzoneL AirL MechL BalL +---- ----- ----- ------ ------ ----- ----- ------ ------ ------ ---- ------ ----- ------ ------ ------ ---- + 1 74.00 57.67 0 0 0 0 .00049 0 -.0005 0 0 0 0 0 0 0 + 2 73.95 57.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 73.70 57.56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 73.21 57.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 72.59 57.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 72.08 56.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 71.95 56.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 8 72.21 57.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 9 72.84 57.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 10 73.74 57.57 0 0 0 0 .00055 0 -.0006 0 0 0 0 0 0 0 + 11 74.00 57.67 0 0 0 0 .00352 0 -.0035 0 0 0 0 0 0 0 + 12 74.00 57.67 0 0 0 0 .00465 0 -.0046 0 0 0 0 0 0 0 + 13 74.00 57.67 0 0 0 0 .00581 0 -.0058 0 0 0 0 0 0 0 + 14 74.00 57.67 0 0 0 0 .00736 0 -.0074 0 0 0 0 0 0 0 + 15 74.00 57.67 0 0 0 0 .00955 0 -.0095 0 0 0 0 0 0 0 + 16 74.00 57.67 0 0 0 0 0.0117 0 -.0117 0 0 0 0 0 0 0 + 17 74.00 57.67 0 0 0 0 0.0133 0 -.0133 0 0 0 0 0 0 0 + 18 74.00 57.67 0 0 0 0 0.0140 0 -.0140 0 0 0 0 0 0 0 + 19 74.00 57.67 0 0 0 0 0.0130 0 -.0130 0 0 0 0 0 0 0 + 20 74.00 57.67 0 0 0 0 .00997 0 -.0100 0 0 0 0 0 0 0 + 21 74.00 57.67 0 0 0 0 .00679 0 -.0068 0 0 0 0 0 0 0 + 22 74.00 57.67 0 0 0 0 .00460 0 -.0046 0 0 0 0 0 0 0 + 23 74.00 57.67 0 0 0 0 .00313 0 -.0031 0 0 0 0 0 0 0 + 24 74.00 57.67 0 0 0 0 .00208 0 -.0021 0 0 0 0 0 0 0 + + Day 73.59 57.52 0 0 0 0 0.110 0 -0.110 0 0 0 0 0 0 0 + + + +Hourly Energy Balance, zone "Z2", Wed 10-Jul + + Hr Tair WBair Cond InfS Slr IgnS Mass Izone MechS BalS InfL IgnL IzoneL AirL MechL BalL +---- ----- ----- ------ ------ ----- ----- ------ ------ ------ ---- ------ ----- ------ ------ ------ ---- + 1 70.00 56.16 0 0 0 0 .00015 0 -.0001 0 0 0 0 0 0 0 + 2 70.00 56.16 0 0 0 0 .00003 0 -0.000 0 0 0 0 0 0 0 + 3 69.94 56.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 69.68 56.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 69.34 55.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 69.47 55.96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 70.00 56.16 0 0 0 0 .00235 0 -.0024 0 0 0 0 0 0 0 + 8 70.00 56.16 0 0 0 0 .00357 0 -.0036 0 0 0 0 0 0 0 + 9 70.00 56.16 0 0 0 0 .00382 0 -.0038 0 0 0 0 0 0 0 + 10 70.00 56.16 0 0 0 0 .00401 0 -.0040 0 0 0 0 0 0 0 + 11 70.00 56.16 0 0 0 0 .00406 0 -.0041 0 0 0 0 0 0 0 + 12 70.00 56.16 0 0 0 0 .00406 0 -.0041 0 0 0 0 0 0 0 + 13 70.00 56.16 0 0 0 0 .00410 0 -.0041 0 0 0 0 0 0 0 + 14 70.00 56.16 0 0 0 0 .00433 0 -.0043 0 0 0 0 0 0 0 + 15 70.00 56.16 0 0 0 0 .00438 0 -.0044 0 0 0 0 0 0 0 + 16 70.00 56.16 0 0 0 0 .00430 0 -.0043 0 0 0 0 0 0 0 + 17 70.00 56.16 0 0 0 0 .00420 0 -.0042 0 0 0 0 0 0 0 + 18 70.00 56.16 0 0 0 0 .00402 0 -.0040 0 0 0 0 0 0 0 + 19 70.00 56.16 0 0 0 0 .00360 0 -.0036 0 0 0 0 0 0 0 + 20 70.00 56.16 0 0 0 0 .00269 0 -.0027 0 0 0 0 0 0 0 + 21 70.00 56.16 0 0 0 0 .00221 0 -.0022 0 0 0 0 0 0 0 + 22 70.00 56.16 0 0 0 0 .00174 0 -.0017 0 0 0 0 0 0 0 + 23 70.00 56.16 0 0 0 0 .00139 0 -.0014 0 0 0 0 0 0 0 + 24 70.00 56.16 0 0 0 0 .00108 0 -.0011 0 0 0 0 0 0 0 + + Day 69.93 56.14 0 0 0 0 0.0601 0 -.0601 0 0 0 0 0 0 0 + + + +! Log for Run 001: + +! CSE 0.918.0+command-tests.6fabc4d3.2 for Win32 console + + + +Input for Run 001: + + // commands.cse + // test object manipulation + // CLEAR, DEFTYPE, USETYPE, LIKE, COPY, UNSET + +# #define INABSORP 0.9 +# #define ABSORP 0.8 +# #define SURFMODEL FD +# #define WINH 4 +# #define WINW 3 +# #define OHDPTH 2 +# #define COOLTEMP 75 + + CLEAR // CLEAR when empty + + elevation = 1000 + + repHdrL="Command Test" + repHdrR="" + WfName="CTZ12S13B.CSW" + BEGDay=Jan 1 // + ENDDay=Dec 31 // + ebTolHour=.001 ebTolDay=.001 ebTolMon=.001 + Jan1DOW=Tue + wuDays=30 // + nSubSteps=10 // + skyModel=anisotropic // + WindF=.7 + bldgAzm=0.0 //don't adjust surface azimuths + DT=NO //No daylight savings per BESTEST p.9 + + DELETE HOLIDAY "New Year's Day" + DELETE HOLIDAY "M L King Day" + DELETE HOLIDAY "President's Day" + DELETE HOLIDAY "Memorial Day" + DELETE HOLIDAY "Fourth of July" + DELETE HOLIDAY "Labor Day" + DELETE HOLIDAY "Columbus Day" + DELETE HOLIDAY "Veterans Day" + DELETE HOLIDAY "Thanksgiving" + DELETE HOLIDAY "Christmas" + + //------ MATERIALS section for lightweight case ------ + MATERIAL "Plasterboard" matCond=0.09243 matSpHt=0.2008 matDens=59.375 + MATERIAL "FiberQuilt" matCond=0.02311 matSpHt=0.2008 matDens=0.75 + MATERIAL "WoodSiding" matCond=0.08088 matSpHt=0.2151 matDens=33.125 + MATERIAL "Ins0" matCond=0.01 matSpHt=0 matDens=0 + MATERIAL "SunWallMat" matCond=0.295 matSpHt=0.239 matDens=87.399 + + //------ MATERIALS section for heavyweight case ------ + MATERIAL "ConcreteBlock" matCond=0.2946 matSpHt=0.239 matDens=87.5 + MATERIAL "FoamInsul" matCond=0.02311 matSpHt=0.3346 matDens=0.625 + MATERIAL "ConcreteSlab" matCond=0.6528 matSpHt=0.239 matDens=87.5 + MATERIAL "Mass0_Ins" MatCond = 0.02 matSpHt=0 matDens = 0 + + //Revised materials 120114 BAW +# #define RCQ 1.0 + MATERIAL "NCeilIns" matCond=0.025/RCQ matCondCT=.0042 matSpHt=0.2 matDens=0.7 // + MATERIAL "NR21" matCond=(5.5/(12.*21.))/RCQ matSpHt=.2 matDens=0.7 matThk=5.5/12. // Lower density from 2009 HOF 26.6 + MATERIAL "NR13" matCond=(3.5/(12.*13.))/RCQ matSpHt=.2 matDens=0.7 matThk=3.5/12. // Lower density from 2009 HOF 26.6 + MATERIAL "NFoam" matCond=1./(48) matSpHt=.35 matDens=1.5 // R4 from 2009 HOF 26.6 + MATERIAL "NGypbd" matCond=1.1/12 matSpHt=0.27 matDens=40 // 2009 HOF 26.6 + MATERIAL "NOSB" matCond=0.5/(0.68*12) matSpHt=.45 matDens=41. // 2009 HOF 26.6 k=thick/R + MATERIAL "NSoftWood" matCond=0.98/12 matSpHt=.39 matDens=35. // 2009 HOF 26.6 Douglas fir/larch + MATERIAL "TileGap" matCond=0.75/(0.85*12.) matSpHt=.24 matDens=0.075 matThk=0.75/12. // 2009 HOF 26.3 90 deg, down, E=.82 + MATERIAL "ConcTile" matCond=1 matSpHt=.2 matDens=120 matThk=1./12. // 2008 RACM Table R3-10 + + + + // ----- CONSTRUCTION section for lightweight case ----- + + CONSTRUCTION lw_wall + layer lrThk=0.03937 + lrMat="Plasterboard" + layer lrThk=0.2165 + lrMat="FiberQuilt" + layer lrThk=0.02953 lrMat="WoodSiding" + + CONSTRUCTION mass0 + layer lrThk = .333 lrMat = mass0_Ins + + CONSTRUCTION light + layer lrThk = .333 lrMat = mass0_Ins + layer lrThk = .1 lrMat = FoamInsul + + CONSTRUCTION foam_wall + layer lrThk = .1 lrMat = FoamInsul + + CONSTRUCTION conc_wall + layer lrThk = .1 lrMat = ConcreteSlab + + + MATERIAL "TimberFloor" matCond=0.08088 matSpHt=0.2868 matDens=40.625 + + CONSTRUCTION lw_floor + layer lrThk=0.08202 lrMat="TimberFloor" + layer lrThk=.12 lrMat="TimberFloor" + + + CONSTRUCTION roofcon + layer lrThk=0.03937 lrMat="Plasterboard" + layer lrThk=0.3668 lrMat="FiberQuilt" + layer lrThk=0.06234 lrMat="WoodSiding" + + CONSTRUCTION sunwall + layer lrThk=0.656 + lrMat="SunWallMat" + + // ----- CONSTRUCTION section for heavyweight case ----- + + CONSTRUCTION hw_wall + layer lrThk=0.3281 + lrMat="ConcreteBlock" + layer lrThk=1/12 + lrMat="FoamInsul" + layer lrThk=0.02953 lrMat="WoodSiding" + + CONSTRUCTION hw_floor + layer lrThk=0.2625 + lrMat="ConcreteSlab" + layer lrThk=3.304 + lrMat="Ins0" + + CONSTRUCTION CFrm2x4 // 3.5" + Layer lrMat="NGypbd" lrThk=0.5/12. + Layer lrMat="NSoftWood" lrThk=3.5/12. // 2x4 joist + Layer lrMat="NCeilIns" lrThk=(9.794251-3.5)/12. //insulation above the joist + + + + // ----- CONSTRUCTION section for R 1000 high resistance test case --- + + CONSTRUCTION styro + layer lrThk=23 lrMat="FoamInsul" + + IZXFER H341 izNVTYPE = AirNetExt izZN1 = Z2 izALo = 2 izHD = 24. izNVEff = 1 + IZXFER Z1Z2 izNVTYPE = AirNetIZ izZN1 = Z2 izZN2 = Z1 izALo = 1 izHD = 3. + + DEFTYPE SURFACE WALL + sfType=Wall + sfModel=SURFMODEL + sfArea=400 + sfAzm=0 + sfExH = 1.2 + sfCon=mass0 + sfExAbs=ABSORP + sfInAbs=INABSORP + sfInHcModel = UNIFIED + sfExHcModel = UNIFIED + + DEFTYPE SURFACE "IntWall" USETYPE WALL sfExCnd=ADJZN sfAdjZn = "Z2" + + ZONE Z1 + znModel = CZM + + znArea=400 + znVol=3200 + znSC=0 //shades always open + znAzm=0 + infAC=0 + znCair=1000 + znHcFrcF = .23 + znEaveZ = 10 + + infShld = 4 + + znTH = 65 + znTD = 68 + znTC = 74 + + znQMxH = 200000 + znQMxC = -200000 + + SURFACE WallN1 USETYPE WALL sfAzm = 0 sfExH = 1.3 + SURFACE WallS1 USETYPE WALL sfAzm = 180 sfCon = CFrm2x4 sfExHcLChar = 18 + SURFACE WallW1 USETYPE WALL sfAzm = 270 sfCon = lw_floor + SURFACE WallIZ USETYPE IntWall sfAzm = 270 sfTilt=85 sfCon = CFrm2x4 + + SURFACE Clg1 + sfType=Ceiling + sfModel=SURFMODEL + sfArea=400 + sfAzm=0 + sfTilt = 15 + sfCon=mass0 + sfExAbs=ABSORP + sfInAbs=INABSORP + sfInHcModel = UNIFIED + sfExHcModel = UNIFIED + + ZONE Z2 + znModel = CZM + + znArea=400 + znVol=3200 + znSC=0 //shades always open + znAzm=0 + infAC=0 + znCair=1000 + znFloorZ = 2 + + znTH = 65 znTD = 68 + znTC = 70 + + + infShld = 4 + infStories = 3 + + znQMxH = 200000 + znQMxC = -200000 + + SURFACE WallN2 USETYPE WALL sfAzm = 0 + SURFACE WallE2 USETYPE WALL sfAzm = 90 // sfCon = CFrm2x4 + SURFACE WallS2 USETYPE WALL sfAzm = 180 sfCon = CFrm2x4 + + SURFACE Clg2 + sfType=Ceiling + sfModel=SURFMODEL + sfArea=400 + sfAzm=0 + sfTilt = 20 + sfCon=mass0 + sfExAbs=ABSORP + sfInAbs=INABSORP + sfInHcModel = UNIFIED + sfExHcModel = UNIFIED + + + //--------- REPORTS ------------ + REPORT rpType=ZEB rpZone=Z1 rpFreq=Month + REPORT rpType=ZEB rpZone=Z2 rpFreq=Month + REPORT rpType=ZEB rpZone=Z1 rpDayBeg=Jul 10 rpDayEnd= Jul 10 rpFreq=Hour + REPORT rpType=ZEB rpZone=Z2 rpDayBeg=Jul 10 rpDayEnd= Jul 10 rpFreq=Hour + + RUN + + + +Monthly Energy Balance, Sum of Zones + + Mon Tair WBair Cond InfS Slr IgnS Mass Izone MechS BalS InfL IgnL IzoneL AirL MechL BalL +---- ----- ----- ------ ------ ----- ----- ------ ------ ------ ---- ------ ----- ------ ------ ------ ---- + Jan 65.08 54.23 0 0 0 0 -3.133 -.0001 3.133 0 0 0 -0.000 .00001 0 0 + Feb 65.63 54.43 0 0 0 0 -1.802 0 1.802 0 0 0 0 0 0 0 + Mar 67.02 54.99 0 0 0 0 -0.921 0 0.921 0 0 0 0 0 0 0 + Apr 67.80 55.30 0 0 0 0 -0.238 0 0.238 0 0 0 0 0 0 0 + May 69.54 56.00 0 0 0 0 1.349 0 -1.349 0 0 0 0 0 0 0 + Jun 70.75 56.45 0 0 0 0 2.419 0 -2.419 0 0 0 0 0 0 0 + Jul 71.14 56.60 0 0 0 0 2.958 -0.000 -2.958 0 0 0 0 0 0 0 + Aug 70.93 56.52 0 0 0 0 2.522 0 -2.522 0 0 0 0 0 0 0 + Sep 70.50 56.37 0 0 0 0 1.888 0 -1.888 0 0 0 0 0 0 0 + Oct 68.45 55.58 0 0 0 0 0.137 0 -0.137 0 0 0 0 0 0 0 + Nov 65.41 54.36 0 0 0 0 -2.007 -0.000 2.007 0 0 0 0 0 0 0 + Dec 65.10 54.23 0 0 0 0 -3.101 -0.000 3.101 0 0 0 0 0 0 0 + + Yr 68.11 55.44 0 0 0 0 0.0707 -.0001 -.0706 0 0 0 0 0 0 0 + + + +Monthly Energy Balance, zone "Z1" + + Mon Tair WBair Cond InfS Slr IgnS Mass Izone MechS BalS InfL IgnL IzoneL AirL MechL BalL +---- ----- ----- ------ ------ ----- ----- ------ ------ ------ ---- ------ ----- ------ ------ ------ ---- + Jan 65.14 54.26 0 0 0 0 -2.065 0 2.065 0 0 0 0 0 0 0 + Feb 66.03 54.61 0 0 0 0 -1.188 0 1.188 0 0 0 0 0 0 0 + Mar 67.37 55.15 0 0 0 0 -0.628 0 0.628 0 0 0 0 0 0 0 + Apr 68.30 55.52 0 0 0 0 -0.139 0 0.139 0 0 0 0 0 0 0 + May 70.46 56.36 0 0 0 0 0.873 -0.000 -0.873 0 0 0 0 0 0 0 + Jun 72.06 56.95 0 0 0 0 1.574 -0.000 -1.574 0 0 0 0 0 0 0 + Jul 72.61 57.15 0 0 0 0 1.917 -0.000 -1.917 0 0 0 0 0 0 0 + Aug 72.27 57.03 0 0 0 0 1.628 -0.000 -1.628 0 0 0 0 0 0 0 + Sep 71.68 56.81 0 0 0 0 1.211 -0.000 -1.211 0 0 0 0 0 0 0 + Oct 68.99 55.79 0 0 0 0 0.0812 0 -.0812 0 0 0 0 0 0 0 + Nov 65.66 54.46 0 0 0 0 -1.325 0 1.325 0 0 0 0 0 0 0 + Dec 65.18 54.26 0 0 0 0 -2.047 0 2.047 0 0 0 0 0 0 0 + + Yr 68.81 55.73 0 0 0 0 -0.107 -.0001 0.107 0 0 0 0 0 0 0 + + + +Monthly Energy Balance, zone "Z2" + + Mon Tair WBair Cond InfS Slr IgnS Mass Izone MechS BalS InfL IgnL IzoneL AirL MechL BalL +---- ----- ----- ------ ------ ----- ----- ------ ------ ------ ---- ------ ----- ------ ------ ------ ---- + Jan 65.01 54.19 0 0 0 0 -1.068 -.0001 1.068 0 0 0 -0.000 .00001 0 0 + Feb 65.24 54.25 0 0 0 0 -0.614 0 0.614 0 0 0 0 0 0 0 + Mar 66.67 54.83 0 0 0 0 -0.294 0 0.294 0 0 0 0 0 0 0 + Apr 67.30 55.09 0 0 0 0 -.0982 .00001 0.0982 0 0 0 0 0 0 0 + May 68.63 55.62 0 0 0 0 0.476 .00001 -0.476 0 0 0 0 0 0 0 + Jun 69.44 55.95 0 0 0 0 0.844 .00001 -0.844 0 0 0 0 0 0 0 + Jul 69.67 56.04 0 0 0 0 1.040 0 -1.040 0 0 0 0 0 0 0 + Aug 69.60 56.01 0 0 0 0 0.894 .00001 -0.894 0 0 0 0 0 0 0 + Sep 69.32 55.94 0 0 0 0 0.677 0 -0.677 0 0 0 0 0 0 0 + Oct 67.91 55.37 0 0 0 0 0.0560 0 -.0560 0 0 0 0 0 0 0 + Nov 65.16 54.26 0 0 0 0 -0.682 -0.000 0.682 0 0 0 0 0 0 0 + Dec 65.02 54.21 0 0 0 0 -1.054 -0.000 1.054 0 0 0 0 0 0 0 + + Yr 67.41 55.15 0 0 0 0 0.178 -.0001 -0.178 0 0 0 0 0 0 0 + + + +Hourly Energy Balance, zone "Z1", Wed 10-Jul + + Hr Tair WBair Cond InfS Slr IgnS Mass Izone MechS BalS InfL IgnL IzoneL AirL MechL BalL +---- ----- ----- ------ ------ ----- ----- ------ ------ ------ ---- ------ ----- ------ ------ ------ ---- + 1 74.00 57.67 0 0 0 0 .00049 0 -.0005 0 0 0 0 0 0 0 + 2 73.95 57.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 73.70 57.56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 73.21 57.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 72.59 57.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 72.08 56.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 71.95 56.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 8 72.21 57.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 9 72.84 57.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 10 73.74 57.57 0 0 0 0 .00055 0 -.0006 0 0 0 0 0 0 0 + 11 74.00 57.67 0 0 0 0 .00352 0 -.0035 0 0 0 0 0 0 0 + 12 74.00 57.67 0 0 0 0 .00465 0 -.0046 0 0 0 0 0 0 0 + 13 74.00 57.67 0 0 0 0 .00581 0 -.0058 0 0 0 0 0 0 0 + 14 74.00 57.67 0 0 0 0 .00736 0 -.0074 0 0 0 0 0 0 0 + 15 74.00 57.67 0 0 0 0 .00955 0 -.0095 0 0 0 0 0 0 0 + 16 74.00 57.67 0 0 0 0 0.0117 0 -.0117 0 0 0 0 0 0 0 + 17 74.00 57.67 0 0 0 0 0.0133 0 -.0133 0 0 0 0 0 0 0 + 18 74.00 57.67 0 0 0 0 0.0140 0 -.0140 0 0 0 0 0 0 0 + 19 74.00 57.67 0 0 0 0 0.0130 0 -.0130 0 0 0 0 0 0 0 + 20 74.00 57.67 0 0 0 0 .00997 0 -.0100 0 0 0 0 0 0 0 + 21 74.00 57.67 0 0 0 0 .00679 0 -.0068 0 0 0 0 0 0 0 + 22 74.00 57.67 0 0 0 0 .00460 0 -.0046 0 0 0 0 0 0 0 + 23 74.00 57.67 0 0 0 0 .00313 0 -.0031 0 0 0 0 0 0 0 + 24 74.00 57.67 0 0 0 0 .00208 0 -.0021 0 0 0 0 0 0 0 + + Day 73.59 57.52 0 0 0 0 0.110 0 -0.110 0 0 0 0 0 0 0 + + + +Hourly Energy Balance, zone "Z2", Wed 10-Jul + + Hr Tair WBair Cond InfS Slr IgnS Mass Izone MechS BalS InfL IgnL IzoneL AirL MechL BalL +---- ----- ----- ------ ------ ----- ----- ------ ------ ------ ---- ------ ----- ------ ------ ------ ---- + 1 70.00 56.16 0 0 0 0 .00015 0 -.0001 0 0 0 0 0 0 0 + 2 70.00 56.16 0 0 0 0 .00003 0 -0.000 0 0 0 0 0 0 0 + 3 69.94 56.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 69.68 56.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 69.34 55.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 69.47 55.96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 70.00 56.16 0 0 0 0 .00235 0 -.0024 0 0 0 0 0 0 0 + 8 70.00 56.16 0 0 0 0 .00357 0 -.0036 0 0 0 0 0 0 0 + 9 70.00 56.16 0 0 0 0 .00382 0 -.0038 0 0 0 0 0 0 0 + 10 70.00 56.16 0 0 0 0 .00401 0 -.0040 0 0 0 0 0 0 0 + 11 70.00 56.16 0 0 0 0 .00406 0 -.0041 0 0 0 0 0 0 0 + 12 70.00 56.16 0 0 0 0 .00406 0 -.0041 0 0 0 0 0 0 0 + 13 70.00 56.16 0 0 0 0 .00410 0 -.0041 0 0 0 0 0 0 0 + 14 70.00 56.16 0 0 0 0 .00433 0 -.0043 0 0 0 0 0 0 0 + 15 70.00 56.16 0 0 0 0 .00438 0 -.0044 0 0 0 0 0 0 0 + 16 70.00 56.16 0 0 0 0 .00430 0 -.0043 0 0 0 0 0 0 0 + 17 70.00 56.16 0 0 0 0 .00420 0 -.0042 0 0 0 0 0 0 0 + 18 70.00 56.16 0 0 0 0 .00402 0 -.0040 0 0 0 0 0 0 0 + 19 70.00 56.16 0 0 0 0 .00360 0 -.0036 0 0 0 0 0 0 0 + 20 70.00 56.16 0 0 0 0 .00269 0 -.0027 0 0 0 0 0 0 0 + 21 70.00 56.16 0 0 0 0 .00221 0 -.0022 0 0 0 0 0 0 0 + 22 70.00 56.16 0 0 0 0 .00174 0 -.0017 0 0 0 0 0 0 0 + 23 70.00 56.16 0 0 0 0 .00139 0 -.0014 0 0 0 0 0 0 0 + 24 70.00 56.16 0 0 0 0 .00108 0 -.0011 0 0 0 0 0 0 0 + + Day 69.93 56.14 0 0 0 0 0.0601 0 -.0601 0 0 0 0 0 0 0 + + + +! Log for Run 002: + +! CSE 0.918.0+command-tests.6fabc4d3.2 for Win32 console + + + +Input for Run 002: + + + CLEAR + + elevation = 1000 + + repHdrL="Command Test" + repHdrR="" + WfName="CTZ12S13B.CSW" + BEGDay=Jan 1 // + ENDDay=Dec 31 // + ebTolHour=.001 ebTolDay=.001 ebTolMon=.001 + Jan1DOW=Tue + wuDays=30 // + nSubSteps=10 // + skyModel=anisotropic // + WindF=.7 + bldgAzm=0.0 //don't adjust surface azimuths + DT=NO //No daylight savings per BESTEST p.9 + + DELETE HOLIDAY "New Year's Day" //No holidays per BESTEST p.9 + DELETE HOLIDAY "M L King Day" + DELETE HOLIDAY "President's Day" + DELETE HOLIDAY "Memorial Day" + DELETE HOLIDAY "Fourth of July" + DELETE HOLIDAY "Labor Day" + DELETE HOLIDAY "Columbus Day" + DELETE HOLIDAY "Veterans Day" + DELETE HOLIDAY "Thanksgiving" + DELETE HOLIDAY "Christmas" + + //------ MATERIALS section for lightweight case ------ + MATERIAL "Plasterboard" matCond=0.09243 matSpHt=0.2008 matDens=59.375 + MATERIAL "FiberQuilt" matCond=0.02311 matSpHt=0.2008 matDens=0.75 + MATERIAL "WoodSiding" matCond=0.08088 matSpHt=0.2151 matDens=33.125 + MATERIAL "Ins0" matCond=0.01 matSpHt=0 matDens=0 + MATERIAL "SunWallMat" matCond=0.295 matSpHt=0.239 matDens=87.399 + + //------ MATERIALS section for heavyweight case ------ + MATERIAL "ConcreteBlock" matCond=0.2946 matSpHt=0.239 matDens=87.5 + MATERIAL "FoamInsul" matCond=0.02311 matSpHt=0.3346 matDens=0.625 + MATERIAL "ConcreteSlab" matCond=0.6528 matSpHt=0.239 matDens=87.5 + MATERIAL "Mass0_Ins" MatCond = 0.02 matSpHt=0 matDens = 0 + + //Revised materials 120114 BAW +# #define RCQ 1.0 + MATERIAL "NCeilIns" matCond=0.025/RCQ matCondCT=.0042 matSpHt=0.2 matDens=0.7 // + MATERIAL "NR21" matCond=(5.5/(12.*21.))/RCQ matSpHt=.2 matDens=0.7 matThk=5.5/12. // Lower density from 2009 HOF 26.6 + MATERIAL "NR13" matCond=(3.5/(12.*13.))/RCQ matSpHt=.2 matDens=0.7 matThk=3.5/12. // Lower density from 2009 HOF 26.6 + MATERIAL "NFoam" matCond=1./(48) matSpHt=.35 matDens=1.5 // R4 from 2009 HOF 26.6 + MATERIAL "NGypbd" matCond=1.1/12 matSpHt=0.27 matDens=40 // 2009 HOF 26.6 + MATERIAL "NOSB" matCond=0.5/(0.68*12) matSpHt=.45 matDens=41. // 2009 HOF 26.6 k=thick/R + MATERIAL "NSoftWood" matCond=0.98/12 matSpHt=.39 matDens=35. // 2009 HOF 26.6 Douglas fir/larch + MATERIAL "TileGap" matCond=0.75/(0.85*12.) matSpHt=.24 matDens=0.075 matThk=0.75/12. // 2009 HOF 26.3 90 deg, down, E=.82 + MATERIAL "ConcTile" matCond=1 matSpHt=.2 matDens=120 matThk=1./12. // 2008 RACM Table R3-10 + + + + // ----- CONSTRUCTION section for lightweight case ----- + + CONSTRUCTION lw_wall + layer lrThk=0.03937 + lrMat="Plasterboard" + layer lrThk=0.2165 + lrMat="FiberQuilt" + layer lrThk=0.02953 lrMat="WoodSiding" + + CONSTRUCTION mass0 + layer lrThk = .333 lrMat = mass0_Ins + + CONSTRUCTION light + layer lrThk = .333 lrMat = mass0_Ins + layer lrThk = .1 lrMat = FoamInsul + + CONSTRUCTION foam_wall + layer lrThk = .1 lrMat = FoamInsul + + CONSTRUCTION conc_wall + layer lrThk = .1 lrMat = ConcreteSlab + + + MATERIAL "TimberFloor" matCond=0.08088 matSpHt=0.2868 matDens=40.625 + + CONSTRUCTION lw_floor + layer lrThk=0.08202 lrMat="TimberFloor" + layer lrThk=.12 lrMat="TimberFloor" + + + CONSTRUCTION roofcon + layer lrThk=0.03937 lrMat="Plasterboard" + layer lrThk=0.3668 lrMat="FiberQuilt" + layer lrThk=0.06234 lrMat="WoodSiding" + + CONSTRUCTION sunwall + layer lrThk=0.656 + lrMat="SunWallMat" + + // ----- CONSTRUCTION section for heavyweight case ----- + + CONSTRUCTION hw_wall + layer lrThk=0.3281 + lrMat="ConcreteBlock" + layer lrThk=1/12 + lrMat="FoamInsul" + layer lrThk=0.02953 lrMat="WoodSiding" + + CONSTRUCTION hw_floor + layer lrThk=0.2625 + lrMat="ConcreteSlab" + layer lrThk=3.304 + lrMat="Ins0" + + CONSTRUCTION CFrm2x4 // 3.5" + Layer lrMat="NGypbd" lrThk=0.5/12. + Layer lrMat="NSoftWood" lrThk=3.5/12. // 2x4 joist + Layer lrMat="NCeilIns" lrThk=(9.794251-3.5)/12. //insulation above the joist + + + + // ----- CONSTRUCTION section for R 1000 high resistance test case --- + + CONSTRUCTION styro + layer lrThk=23 lrMat="FoamInsul" + + IZXFER H341 izNVTYPE = AirNetExt izZN1 = Z2 izALo = 2 izHD = 24. izNVEff = 1 + IZXFER Z1Z2 izNVTYPE = AirNetIZ izZN1 = Z2 izZN2 = Z1 izALo = 1 izHD = 3. + + DEFTYPE SURFACE WALL + sfType=Wall + sfModel=SURFMODEL + sfArea=400 + sfAzm=0 + sfExH = 1.2 + sfCon=mass0 + sfExAbs=ABSORP + sfInAbs=INABSORP + sfInHcModel = UNIFIED + sfExHcModel = UNIFIED + + DEFTYPE SURFACE "IntWall" USETYPE WALL sfExCnd=ADJZN sfAdjZn = "Z2" + + ZONE Z1 + znModel = CZM + + znArea=400 + znVol=3200 + znSC=0 //shades always open + znAzm=0 + infAC=0 + znCair=1000 + znHcFrcF = .23 + znEaveZ = 10 + + infShld = 4 + + znTH = 65 + znTD = 68 + znTC = 74 + + znQMxH = 200000 + znQMxC = -200000 + + SURFACE WallN1 USETYPE WALL sfAzm = 0 sfExH = 1.3 + SURFACE WallS1 USETYPE WALL sfAzm = 180 sfCon = CFrm2x4 sfExHcLChar = 18 + SURFACE WallW1 USETYPE WALL sfAzm = 270 sfCon = lw_floor + SURFACE WallIZ1 USETYPE IntWall sfAzm = 270 sfTilt=85 sfCon = CFrm2x4 + + SURFACE Clg1 + sfType=Ceiling + sfModel=SURFMODEL + sfArea=400 + sfAzm=0 + sfTilt = 15 + sfCon=mass0 + sfExAbs=ABSORP + sfInAbs=INABSORP + sfInHcModel = UNIFIED + sfExHcModel = UNIFIED + + ZONE Z2 + znModel = CZM + + znArea=400 + znVol=3200 + znSC=0 //shades always open + znAzm=0 + infAC=0 + znCair=1000 + znFloorZ = 2 + + znTH = 65 znTD = 68 + znTC = 70 + + + infShld = 4 + infStories = 3 + + znQMxH = 200000 + znQMxC = -200000 + + SURFACE WallN2 USETYPE WALL sfAzm = 0 + SURFACE WallE2 USETYPE WALL sfAzm = 90 // sfCon = CFrm2x4 + SURFACE WallS2 USETYPE WALL sfAzm = 180 sfCon = CFrm2x4 + + SURFACE Clg2 + sfType=Ceiling + sfModel=SURFMODEL + sfArea=400 + sfAzm=0 + sfTilt = 20 + sfCon=mass0 + sfExAbs=ABSORP + sfInAbs=INABSORP + sfInHcModel = UNIFIED + sfExHcModel = UNIFIED + + + //--------- REPORTS ------------ + REPORT Z1BMon rpType=ZEB rpZone=Z1 rpFreq=Month + REPORT Z2BMon rpType=ZEB rpZone=Z2 rpFreq=Month + REPORT Z1BHr rpType=ZEB rpZone=Z1 rpDayBeg=Jul 10 rpDayEnd= Jul 10 rpFreq=Hour + REPORT Z2Bhr rpType=ZEB rpZone=Z2 rpDayBeg=Jul 10 rpDayEnd= Jul 10 rpFreq=Hour + + RUN + + + +Monthly Energy Balance, Sum of Zones + + Mon Tair WBair Cond InfS Slr IgnS Mass Izone MechS BalS InfL IgnL IzoneL AirL MechL BalL +---- ----- ----- ------ ------ ----- ----- ------ ------ ------ ---- ------ ----- ------ ------ ------ ---- + Jan 65.01 54.20 0 0 0 0 -1.062 -.0001 1.062 0 0 0 -0.000 .00001 0 0 + Feb 65.24 54.26 0 0 0 0 -0.617 0 0.617 0 0 0 0 0 0 0 + Mar 66.67 54.83 0 0 0 0 -0.298 0 0.298 0 0 0 0 0 0 0 + Apr 67.28 55.07 0 0 0 0 -0.108 0 0.108 0 0 0 0 0 0 0 + May 68.57 55.58 0 0 0 0 0.455 0 -0.455 0 0 0 0 0 0 0 + Jun 69.38 55.91 0 0 0 0 0.813 0 -0.813 0 0 0 0 0 0 0 + Jul 69.62 56.02 0 0 0 0 1.003 0 -1.003 0 0 0 0 0 0 0 + Aug 69.54 55.98 0 0 0 0 0.860 0 -0.860 0 0 0 0 0 0 0 + Sep 69.26 55.90 0 0 0 0 0.649 0 -0.649 0 0 0 0 0 0 0 + Oct 67.86 55.36 0 0 0 0 0.0454 0 -.0454 0 0 0 0 0 0 0 + Nov 65.16 54.28 0 0 0 0 -0.683 -0.000 0.683 0 0 0 0 0 0 0 + Dec 65.02 54.22 0 0 0 0 -1.049 0 1.049 0 0 0 0 0 0 0 + + Yr 67.38 55.13 0 0 0 0 .00903 -.0001 -.0089 0 0 0 0 0 0 0 + + + +Monthly Energy Balance, zone "Z2" + + Mon Tair WBair Cond InfS Slr IgnS Mass Izone MechS BalS InfL IgnL IzoneL AirL MechL BalL +---- ----- ----- ------ ------ ----- ----- ------ ------ ------ ---- ------ ----- ------ ------ ------ ---- + Jan 65.01 54.20 0 0 0 0 -1.062 -.0001 1.062 0 0 0 -0.000 .00001 0 0 + Feb 65.24 54.26 0 0 0 0 -0.617 0 0.617 0 0 0 0 0 0 0 + Mar 66.67 54.83 0 0 0 0 -0.298 0 0.298 0 0 0 0 0 0 0 + Apr 67.28 55.07 0 0 0 0 -0.108 0 0.108 0 0 0 0 0 0 0 + May 68.57 55.58 0 0 0 0 0.455 0 -0.455 0 0 0 0 0 0 0 + Jun 69.38 55.91 0 0 0 0 0.813 0 -0.813 0 0 0 0 0 0 0 + Jul 69.62 56.02 0 0 0 0 1.003 0 -1.003 0 0 0 0 0 0 0 + Aug 69.54 55.98 0 0 0 0 0.860 0 -0.860 0 0 0 0 0 0 0 + Sep 69.26 55.90 0 0 0 0 0.649 0 -0.649 0 0 0 0 0 0 0 + Oct 67.86 55.36 0 0 0 0 0.0454 0 -.0454 0 0 0 0 0 0 0 + Nov 65.16 54.28 0 0 0 0 -0.683 -0.000 0.683 0 0 0 0 0 0 0 + Dec 65.02 54.22 0 0 0 0 -1.049 0 1.049 0 0 0 0 0 0 0 + + Yr 67.38 55.13 0 0 0 0 .00903 -.0001 -.0089 0 0 0 0 0 0 0 + + + +Hourly Energy Balance, zone "Z2", Wed 10-Jul + + Hr Tair WBair Cond InfS Slr IgnS Mass Izone MechS BalS InfL IgnL IzoneL AirL MechL BalL +---- ----- ----- ------ ------ ----- ----- ------ ------ ------ ---- ------ ----- ------ ------ ------ ---- + 1 70.00 56.15 0 0 0 0 .00010 0 -.0001 0 0 0 0 0 0 0 + 2 69.97 56.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 69.87 56.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 69.59 56.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 69.23 55.86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 69.32 55.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 69.98 56.15 0 0 0 0 .00202 0 -.0020 0 0 0 0 0 0 0 + 8 70.00 56.15 0 0 0 0 .00348 0 -.0035 0 0 0 0 0 0 0 + 9 70.00 56.15 0 0 0 0 .00373 0 -.0037 0 0 0 0 0 0 0 + 10 70.00 56.15 0 0 0 0 .00393 0 -.0039 0 0 0 0 0 0 0 + 11 70.00 56.15 0 0 0 0 .00399 0 -.0040 0 0 0 0 0 0 0 + 12 70.00 56.15 0 0 0 0 .00398 0 -.0040 0 0 0 0 0 0 0 + 13 70.00 56.15 0 0 0 0 .00403 0 -.0040 0 0 0 0 0 0 0 + 14 70.00 56.15 0 0 0 0 .00426 0 -.0043 0 0 0 0 0 0 0 + 15 70.00 56.15 0 0 0 0 .00430 0 -.0043 0 0 0 0 0 0 0 + 16 70.00 56.15 0 0 0 0 .00423 0 -.0042 0 0 0 0 0 0 0 + 17 70.00 56.15 0 0 0 0 .00413 0 -.0041 0 0 0 0 0 0 0 + 18 70.00 56.15 0 0 0 0 .00395 0 -.0040 0 0 0 0 0 0 0 + 19 70.00 56.15 0 0 0 0 .00353 0 -.0035 0 0 0 0 0 0 0 + 20 70.00 56.15 0 0 0 0 .00263 0 -.0026 0 0 0 0 0 0 0 + 21 70.00 56.15 0 0 0 0 .00215 0 -.0021 0 0 0 0 0 0 0 + 22 70.00 56.15 0 0 0 0 .00167 0 -.0017 0 0 0 0 0 0 0 + 23 70.00 56.15 0 0 0 0 .00132 0 -.0013 0 0 0 0 0 0 0 + 24 70.00 56.15 0 0 0 0 .00101 0 -.0010 0 0 0 0 0 0 0 + + Day 69.91 56.12 0 0 0 0 0.0584 0 -.0584 0 0 0 0 0 0 0 + + + +! Log for Run 003: + +! CSE 0.918.0+command-tests.6fabc4d3.2 for Win32 console + + + +Input for Run 003: + + + // delete Z1 and refs to it + DELETE ZONE Z1 + DELETE REPORT Z1BMon + DELETE REPORT Z1BHr + DELETE IZXFER Z1Z2 + + RUN + + + +Monthly Energy Balance, Sum of Zones + + Mon Tair WBair Cond InfS Slr IgnS Mass Izone MechS BalS InfL IgnL IzoneL AirL MechL BalL +---- ----- ----- ------ ------ ----- ----- ------ ------ ------ ---- ------ ----- ------ ------ ------ ---- + Jan 65.01 54.20 0 0 0 0 -2.124 -.0001 2.124 0 0 0 -0.000 .00001 0 0 + Feb 65.24 54.28 0 0 0 0 -1.234 0 1.234 0 0 0 0 0 0 0 + Mar 66.67 54.85 0 0 0 0 -0.596 0 0.596 0 0 0 0 0 0 0 + Apr 67.28 55.09 0 0 0 0 -0.216 0 0.216 0 0 0 0 0 0 0 + May 68.57 55.61 0 0 0 0 0.910 0 -0.910 0 0 0 0 0 0 0 + Jun 69.38 55.94 0 0 0 0 1.626 0 -1.626 0 0 0 0 0 0 0 + Jul 69.62 56.03 0 0 0 0 2.005 0 -2.005 0 0 0 0 0 0 0 + Aug 69.54 56.00 0 0 0 0 1.720 0 -1.720 0 0 0 .00001 -0.000 0 0 + Sep 69.26 55.91 0 0 0 0 1.299 0 -1.299 0 0 0 0 0 0 0 + Oct 67.86 55.36 0 0 0 0 0.0908 -0.000 -.0908 0 0 0 0 0 0 0 + Nov 65.16 54.29 0 0 0 0 -1.365 -0.000 1.365 0 0 0 0 0 0 0 + Dec 65.02 54.24 0 0 0 0 -2.097 -0.000 2.097 0 0 0 0 0 0 0 + + Yr 67.38 55.15 0 0 0 0 0.0181 -.0001 -.0180 0 0 0 .00001 -0.000 0 0 + + + +Monthly Energy Balance, zone "Z2" + + Mon Tair WBair Cond InfS Slr IgnS Mass Izone MechS BalS InfL IgnL IzoneL AirL MechL BalL +---- ----- ----- ------ ------ ----- ----- ------ ------ ------ ---- ------ ----- ------ ------ ------ ---- + Jan 65.01 54.20 0 0 0 0 -1.062 -.0001 1.062 0 0 0 -0.000 .00001 0 0 + Feb 65.24 54.26 0 0 0 0 -0.617 0 0.617 0 0 0 0 0 0 0 + Mar 66.67 54.83 0 0 0 0 -0.298 0 0.298 0 0 0 0 0 0 0 + Apr 67.28 55.07 0 0 0 0 -0.108 0 0.108 0 0 0 0 0 0 0 + May 68.57 55.58 0 0 0 0 0.455 0 -0.455 0 0 0 0 0 0 0 + Jun 69.38 55.91 0 0 0 0 0.813 0 -0.813 0 0 0 0 0 0 0 + Jul 69.62 56.02 0 0 0 0 1.003 0 -1.003 0 0 0 0 0 0 0 + Aug 69.54 55.98 0 0 0 0 0.860 0 -0.860 0 0 0 0 0 0 0 + Sep 69.26 55.90 0 0 0 0 0.649 0 -0.649 0 0 0 0 0 0 0 + Oct 67.86 55.36 0 0 0 0 0.0454 0 -.0454 0 0 0 0 0 0 0 + Nov 65.16 54.28 0 0 0 0 -0.683 -0.000 0.683 0 0 0 0 0 0 0 + Dec 65.02 54.23 0 0 0 0 -1.049 -0.000 1.049 0 0 0 0 0 0 0 + + Yr 67.38 55.14 0 0 0 0 .00903 -.0001 -.0089 0 0 0 0 0 0 0 + + + +Hourly Energy Balance, zone "Z2", Wed 10-Jul + + Hr Tair WBair Cond InfS Slr IgnS Mass Izone MechS BalS InfL IgnL IzoneL AirL MechL BalL +---- ----- ----- ------ ------ ----- ----- ------ ------ ------ ---- ------ ----- ------ ------ ------ ---- + 1 70.00 56.15 0 0 0 0 .00010 0 -.0001 0 0 0 0 0 0 0 + 2 69.97 56.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 69.87 56.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 69.59 56.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 69.23 55.86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 69.32 55.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 69.98 56.15 0 0 0 0 .00202 0 -.0020 0 0 0 0 0 0 0 + 8 70.00 56.15 0 0 0 0 .00348 0 -.0035 0 0 0 0 0 0 0 + 9 70.00 56.15 0 0 0 0 .00373 0 -.0037 0 0 0 0 0 0 0 + 10 70.00 56.15 0 0 0 0 .00393 0 -.0039 0 0 0 0 0 0 0 + 11 70.00 56.15 0 0 0 0 .00399 0 -.0040 0 0 0 0 0 0 0 + 12 70.00 56.15 0 0 0 0 .00398 0 -.0040 0 0 0 0 0 0 0 + 13 70.00 56.15 0 0 0 0 .00403 0 -.0040 0 0 0 0 0 0 0 + 14 70.00 56.15 0 0 0 0 .00426 0 -.0043 0 0 0 0 0 0 0 + 15 70.00 56.15 0 0 0 0 .00430 0 -.0043 0 0 0 0 0 0 0 + 16 70.00 56.15 0 0 0 0 .00423 0 -.0042 0 0 0 0 0 0 0 + 17 70.00 56.15 0 0 0 0 .00413 0 -.0041 0 0 0 0 0 0 0 + 18 70.00 56.15 0 0 0 0 .00395 0 -.0040 0 0 0 0 0 0 0 + 19 70.00 56.15 0 0 0 0 .00353 0 -.0035 0 0 0 0 0 0 0 + 20 70.00 56.15 0 0 0 0 .00263 0 -.0026 0 0 0 0 0 0 0 + 21 70.00 56.15 0 0 0 0 .00215 0 -.0021 0 0 0 0 0 0 0 + 22 70.00 56.15 0 0 0 0 .00167 0 -.0017 0 0 0 0 0 0 0 + 23 70.00 56.15 0 0 0 0 .00132 0 -.0013 0 0 0 0 0 0 0 + 24 70.00 56.15 0 0 0 0 .00101 0 -.0010 0 0 0 0 0 0 0 + + Day 69.91 56.12 0 0 0 0 0.0584 0 -.0584 0 0 0 0 0 0 0 + + + +Monthly Energy Balance, zone "Z3" + + Mon Tair WBair Cond InfS Slr IgnS Mass Izone MechS BalS InfL IgnL IzoneL AirL MechL BalL +---- ----- ----- ------ ------ ----- ----- ------ ------ ------ ---- ------ ----- ------ ------ ------ ---- + Jan 65.01 54.21 0 0 0 0 -1.062 -0.000 1.062 0 0 0 0 0 0 0 + Feb 65.24 54.30 0 0 0 0 -0.617 0 0.617 0 0 0 0 0 0 0 + Mar 66.67 54.87 0 0 0 0 -0.298 0 0.298 0 0 0 0 0 0 0 + Apr 67.28 55.12 0 0 0 0 -0.108 0 0.108 0 0 0 0 0 0 0 + May 68.57 55.63 0 0 0 0 0.455 0 -0.455 0 0 0 0 0 0 0 + Jun 69.38 55.96 0 0 0 0 0.813 0 -0.813 0 0 0 0 0 0 0 + Jul 69.62 56.05 0 0 0 0 1.003 0 -1.003 0 0 0 0 0 0 0 + Aug 69.54 56.02 0 0 0 0 0.860 0 -0.860 0 0 0 0 0 0 0 + Sep 69.26 55.92 0 0 0 0 0.649 0 -0.649 0 0 0 0 0 0 0 + Oct 67.86 55.37 0 0 0 0 0.0454 0 -.0454 0 0 0 0 0 0 0 + Nov 65.16 54.29 0 0 0 0 -0.683 0 0.683 0 0 0 0 0 0 0 + Dec 65.02 54.24 0 0 0 0 -1.049 0 1.049 0 0 0 0 0 0 0 + + Yr 67.38 55.17 0 0 0 0 .00905 -0.000 -.0090 0 0 0 0 0 0 0 + + + +Hourly Energy Balance, zone "Z3", Wed 10-Jul + + Hr Tair WBair Cond InfS Slr IgnS Mass Izone MechS BalS InfL IgnL IzoneL AirL MechL BalL +---- ----- ----- ------ ------ ----- ----- ------ ------ ------ ---- ------ ----- ------ ------ ------ ---- + 1 70.00 56.19 0 0 0 0 .00010 0 -.0001 0 0 0 0 0 0 0 + 2 69.97 56.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 69.87 56.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 69.59 56.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 69.23 55.90 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 69.32 55.93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 69.98 56.18 0 0 0 0 .00202 0 -.0020 0 0 0 0 0 0 0 + 8 70.00 56.19 0 0 0 0 .00348 0 -.0035 0 0 0 0 0 0 0 + 9 70.00 56.19 0 0 0 0 .00373 0 -.0037 0 0 0 0 0 0 0 + 10 70.00 56.19 0 0 0 0 .00393 0 -.0039 0 0 0 0 0 0 0 + 11 70.00 56.19 0 0 0 0 .00399 0 -.0040 0 0 0 0 0 0 0 + 12 70.00 56.19 0 0 0 0 .00398 0 -.0040 0 0 0 0 0 0 0 + 13 70.00 56.19 0 0 0 0 .00403 0 -.0040 0 0 0 0 0 0 0 + 14 70.00 56.19 0 0 0 0 .00426 0 -.0043 0 0 0 0 0 0 0 + 15 70.00 56.19 0 0 0 0 .00430 0 -.0043 0 0 0 0 0 0 0 + 16 70.00 56.19 0 0 0 0 .00423 0 -.0042 0 0 0 0 0 0 0 + 17 70.00 56.19 0 0 0 0 .00413 0 -.0041 0 0 0 0 0 0 0 + 18 70.00 56.19 0 0 0 0 .00395 0 -.0040 0 0 0 0 0 0 0 + 19 70.00 56.19 0 0 0 0 .00353 0 -.0035 0 0 0 0 0 0 0 + 20 70.00 56.19 0 0 0 0 .00263 0 -.0026 0 0 0 0 0 0 0 + 21 70.00 56.19 0 0 0 0 .00215 0 -.0021 0 0 0 0 0 0 0 + 22 70.00 56.19 0 0 0 0 .00167 0 -.0017 0 0 0 0 0 0 0 + 23 70.00 56.19 0 0 0 0 .00132 0 -.0013 0 0 0 0 0 0 0 + 24 70.00 56.19 0 0 0 0 .00101 0 -.0010 0 0 0 0 0 0 0 + + Day 69.91 56.16 0 0 0 0 0.0584 0 -.0584 0 0 0 0 0 0 0 + + + +! Log for Run 004: + +! CSE 0.918.0+command-tests.6fabc4d3.2 for Win32 console + + + +Input for Run 004: + + + ZONE Z3 COPY Z2 + IZXFER H34X izNVTYPE = AirNetExt izZN1 = Z3 izALo = 2 izHD = 24. izNVEff = .3 + + REPORT Z3BMon LIKE Z2BMon rpZone=Z3 + REPORT Z3BHr LIKE Z2BHr rpZone=Z3 + + RUN + + + +Monthly Energy Use, meter "MtrElec" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Jan 0.664 0 0 0 0.554 0.110 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Feb 0.556 0 0 0 0.501 0.0553 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Mar 0.553 0 0 0 0.498 0.0551 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Apr 0.541 0 0 0 0.455 0.0858 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +May 0.479 0 0 0 0.432 0.0470 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Jun 0.461 0 0 0 0.404 0.0566 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Jul 0.420 0 0 0 0.377 0.0437 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Aug 0.405 0 0 0 0.371 0.0335 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Sep 0.421 0 0 0 0.390 0.0317 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Oct 0.431 0 0 0 0.400 0.0312 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Nov 0.516 0 0 0 0.472 0.0443 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Dec 0.625 0 0 0 0.511 0.114 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + +Yr 6.072 0 0 0 5.364 0.709 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + + + +Monthly Hot Water Use, DHW meter "DHWMtrWH1" + +Mon Total Unknown Faucet Shower Bath CWashr DWashr +--- ------- ------- ------- ------- ------- ------- ------- +Jan 1089.94 0 441.646 506.588 14.446 94.957 32.300 +Feb 946.178 0 319.048 438.372 52.146 90.496 46.115 +Mar 1074.32 0 372.221 528.594 31.617 105.520 36.363 +Apr 1015.30 0 402.605 476.635 46.477 69.576 20.012 +May 980.948 0 434.538 394.492 41.397 84.635 25.887 +Jun 1033.79 0 423.658 453.197 50.668 71.251 35.020 +Jul 967.550 0 392.861 422.801 37.228 79.605 35.056 +Aug 939.469 0 371.223 406.160 59.686 71.252 31.148 +Sep 981.256 0 411.122 434.128 25.922 84.061 26.023 +Oct 914.817 0 331.300 432.926 42.888 80.172 27.532 +Nov 1016.76 0 397.092 450.554 22.232 99.085 47.798 +Dec 978.468 0 378.561 438.829 37.266 94.959 28.853 + +Yr 11938.8 0 4675.88 5383.28 461.973 1025.57 392.105 + + + +Monthly Hot Water Use, DHW meter "DHWMtrWH2" + +Mon Total Unknown Faucet Shower Bath CWashr DWashr +--- ------- ------- ------- ------- ------- ------- ------- +Jan 1089.94 0 441.646 506.588 14.446 94.957 32.300 +Feb 946.178 0 319.048 438.372 52.146 90.496 46.115 +Mar 1074.32 0 372.221 528.594 31.617 105.520 36.363 +Apr 1015.30 0 402.605 476.635 46.477 69.576 20.012 +May 980.948 0 434.538 394.492 41.397 84.635 25.887 +Jun 1033.79 0 423.658 453.197 50.668 71.251 35.020 +Jul 967.550 0 392.861 422.801 37.228 79.605 35.056 +Aug 939.469 0 371.223 406.160 59.686 71.252 31.148 +Sep 981.256 0 411.122 434.128 25.922 84.061 26.023 +Oct 914.817 0 331.300 432.926 42.888 80.172 27.532 +Nov 1016.76 0 397.092 450.554 22.232 99.085 47.798 +Dec 978.468 0 378.561 438.829 37.266 94.959 28.853 + +Yr 11938.8 0 4675.88 5383.28 461.973 1025.57 392.105 + + + +Hourly DHWREP1 Report, Tue 10-Mar + + Hr Tout Day Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ---- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 61.0 5T 53.4 0 0 0 0 0 0 0 0 0 + 2 60.8 5T 53.7 1.0 1.0 2.096 0 2.096 0 0 0 0 + 3 60.1 5T 53.7 0 0 0 0 0 0 0 0 0 + 4 59.7 5T 53.7 0 0 0 0 0 0 0 0 0 + 5 57.0 5T 53.7 0 0 0 0 0 0 0 0 0 + 6 56.7 5T 53.7 0 0 0 0 0 0 0 0 0 + 7 53.8 5T 53.7 0 0 0 0 0 0 0 0 0 + 8 64.9 5T 53.7 0 0 0 0 0 0 0 0 0 + 9 68.4 5T 53.7 0 0 0 0 0 0 0 0 0 + 10 59.5 5T 53.7 0.2 0.2 0.316 0 0.316 0 0 0 0 + 11 63.1 5T 53.7 1.9 1.9 3.700 0 3.700 0 0 0 0 + 12 67.1 5T 53.7 0 0 0 0 0 0 0 0 0 + 13 68.5 5T 53.7 0.1 0.1 0.297 0 0.297 0 0 0 0 + 14 69.1 5T 53.7 0.3 0.3 0.509 0 0.509 0 0 0 0 + 15 70.3 5T 53.7 0.6 0.6 1.128 0 1.128 0 0 0 0 + 16 67.8 5T 53.7 0 0 0 0 0 0 0 0 0 + 17 67.3 5T 53.7 1.6 1.6 3.204 0 3.204 0 0 0 0 + 18 66.4 5T 53.7 5.3 5.3 8.055 0 0.889 0 7.166 0 0 + 19 65.8 5T 53.7 6.6 6.6 24.034 0 4.712 0 0 19.322 0 + 20 63.7 5T 53.7 1.4 1.4 6.169 0 0.193 0 0 5.975 0 + 21 60.8 5T 53.7 0 0 0 0 0 0 0 0 0 + 22 58.8 5T 53.7 16.9 16.9 25.124 0 0.0582 25.066 0 0 0 + 23 56.8 5T 53.7 4.1 4.1 8.199 0 8.199 0 0 0 0 + 24 54.9 5T 53.7 1.4 1.4 2.714 0 2.714 0 0 0 0 + + +Hourly DHWREP1 Report, Wed 11-Mar + + Hr Tout Day Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ---- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 53.2 1W 53.7 0 0 0 0 0 0 0 0 0 + 2 57.4 1W 53.8 0 0 0 0 0 0 0 0 0 + 3 55.8 1W 53.8 0 0 0 0 0 0 0 0 0 + 4 51.1 1W 53.8 0 0 0 0 0 0 0 0 0 + 5 50.9 1W 53.8 0 0 0 0 0 0 0 0 0 + 6 53.2 1W 53.8 0.2 0.2 0.408 0 0.408 0 0 0 0 + 7 52.5 1W 53.8 0 0 0 0 0 0 0 0 0 + 8 50.2 1W 53.8 3.1 3.1 4.783 0 0.496 4.287 0 0 0 + 9 51.4 1W 53.8 7.3 7.3 11.386 0 2.174 9.212 0 0 0 + 10 54.5 1W 53.8 4.6 4.6 16.255 0 3.606 0 0 12.649 0 + 11 58.5 1W 53.8 0.3 0.3 0.550 0 0.550 0 0 0 0 + 12 64.8 1W 53.8 0.2 0.2 0.306 0 0.306 0 0 0 0 + 13 69.1 1W 53.8 0.1 0.1 0.204 0 0.204 0 0 0 0 + 14 72.3 1W 53.8 0.07 0.07 0.150 0 0.150 0 0 0 0 + 15 75.0 1W 53.8 0 0 0 0 0 0 0 0 0 + 16 72.0 1W 53.8 0.06 0.06 0.123 0 0.123 0 0 0 0 + 17 71.8 1W 53.8 0.02 0.02 0.0409 0 0.0409 0 0 0 0 + 18 70.9 1W 53.8 0.1 0.1 0.225 0 0.225 0 0 0 0 + 19 69.8 1W 53.8 0.06 0.06 0.123 0 0.123 0 0 0 0 + 20 68.2 1W 53.8 0.02 0.02 0.0409 0 0.0409 0 0 0 0 + 21 62.4 1W 53.8 3.7 3.7 5.696 0 0.801 4.894 0 0 0 + 22 64.2 1W 53.8 0.4 0.4 0.822 0 0.822 0 0 0 0 + 23 58.6 1W 53.8 0 0 0 0 0 0 0 0 0 + 24 55.8 1W 53.8 0 0 0 0 0 0 0 0 0 + + +Hourly DHWREP1 Report, Thu 12-Mar + + Hr Tout Day Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ---- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 55.2 5R 53.8 0 0 0 0 0 0 0 0 0 + 2 57.0 5R 54.0 0 0 0 0 0 0 0 0 0 + 3 57.0 5R 54.0 0 0 0 0 0 0 0 0 0 + 4 56.8 5R 54.0 0 0 0 0 0 0 0 0 0 + 5 55.8 5R 54.0 0 0 0 0 0 0 0 0 0 + 6 53.8 5R 54.0 0 0 0 0 0 0 0 0 0 + 7 53.2 5R 54.0 0.5 0.5 0.999 0 0.999 0 0 0 0 + 8 51.8 5R 54.0 2.2 2.2 4.415 0 4.415 0 0 0 0 + 9 55.4 5R 54.0 1.5 1.5 3.043 0 3.043 0 0 0 0 + 10 63.3 5R 54.0 0.02 0.02 0.0388 0 0.0388 0 0 0 0 + 11 66.6 5R 54.0 1.5 1.5 2.913 0 2.913 0 0 0 0 + 12 73.4 5R 54.0 0.4 0.4 0.838 0 0.838 0 0 0 0 + 13 76.1 5R 54.0 0 0 0 0 0 0 0 0 0 + 14 75.9 5R 54.0 0 0 0 0 0 0 0 0 0 + 15 75.9 5R 54.0 0 0 0 0 0 0 0 0 0 + 16 75.7 5R 54.0 8.3 8.3 12.309 0 0 12.309 0 0 0 + 17 74.8 5R 54.0 0.2 0.2 0.348 0 0.348 0 0 0 0 + 18 73.9 5R 54.0 1.3 1.3 2.617 0 2.617 0 0 0 0 + 19 72.7 5R 54.0 0 0 0 0 0 0 0 0 0 + 20 69.6 5R 54.0 0.1 0.1 0.206 0 0.206 0 0 0 0 + 21 66.4 5R 54.0 1.5 1.5 2.997 0 2.997 0 0 0 0 + 22 61.7 5R 54.0 1.3 1.3 2.661 0 2.661 0 0 0 0 + 23 58.6 5R 54.0 0 0 0 0 0 0 0 0 0 + 24 56.1 5R 54.0 0 0 0 0 0 0 0 0 0 + + +Hourly DHWREP1 Report, Fri 13-Mar + + Hr Tout Day Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ---- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 56.5 4F 54.0 0 0 0 0 0 0 0 0 0 + 2 51.6 4F 54.2 0 0 0 0 0 0 0 0 0 + 3 48.7 4F 54.2 0 0 0 0 0 0 0 0 0 + 4 58.6 4F 54.2 0.02 0.02 0.0340 0 0.0340 0 0 0 0 + 5 54.3 4F 54.2 0.2 0.2 0.442 0 0.442 0 0 0 0 + 6 48.0 4F 54.2 0 0 0 0 0 0 0 0 0 + 7 48.0 4F 54.2 0 0 0 0 0 0 0 0 0 + 8 53.1 4F 54.2 10.4 10.4 15.758 0 0.666 15.092 0 0 0 + 9 58.3 4F 54.2 0 0 0 0 0 0 0 0 0 + 10 61.5 4F 54.2 0 0 0 0 0 0 0 0 0 + 11 66.4 4F 54.2 0 0 0 0 0 0 0 0 0 + 12 71.4 4F 54.2 0 0 0 0 0 0 0 0 0 + 13 74.3 4F 54.2 0.02 0.02 0.0409 0 0.0409 0 0 0 0 + 14 74.1 4F 54.2 6.7 6.7 10.285 0 1.325 8.960 0 0 0 + 15 76.1 4F 54.2 0 0 0 0 0 0 0 0 0 + 16 76.8 4F 54.2 0 0 0 0 0 0 0 0 0 + 17 76.5 4F 54.2 0 0 0 0 0 0 0 0 0 + 18 75.4 4F 54.2 0 0 0 0 0 0 0 0 0 + 19 74.5 4F 54.2 4.6 4.6 6.806 0 0 0 6.806 0 0 + 20 70.5 4F 54.2 3.2 3.2 6.403 0 6.403 0 0 0 0 + 21 66.4 4F 54.2 0 0 0 0 0 0 0 0 0 + 22 61.7 4F 54.2 0.7 0.7 1.459 0 1.459 0 0 0 0 + 23 58.6 4F 54.2 0 0 0 0 0 0 0 0 0 + 24 55.6 4F 54.2 0 0 0 0 0 0 0 0 0 + + +Hourly DHWREP1 Report, Sat 14-Mar + + Hr Tout Day Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ---- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 52.9 4S 54.2 0.4 0.4 1.956 0 0 0 0 1.956 0 + 2 52.0 4S 54.3 0 0 0 0 0 0 0 0 0 + 3 52.0 4S 54.3 0 0 0 0 0 0 0 0 0 + 4 52.0 4S 54.3 0 0 0 0 0 0 0 0 0 + 5 51.8 4S 54.3 0 0 0 0 0 0 0 0 0 + 6 50.9 4S 54.3 0 0 0 0 0 0 0 0 0 + 7 50.2 4S 54.3 0 0 0 0 0 0 0 0 0 + 8 51.3 4S 54.3 0 0 0 0 0 0 0 0 0 + 9 52.2 4S 54.3 11.1 11.1 16.727 0 0.693 16.034 0 0 0 + 10 54.5 4S 54.3 0.5 0.5 1.013 0 1.013 0 0 0 0 + 11 58.3 4S 54.3 1.1 1.1 2.192 0 2.192 0 0 0 0 + 12 76.3 4S 54.3 0 0 0 0 0 0 0 0 0 + 13 75.9 4S 54.3 0 0 0 0 0 0 0 0 0 + 14 67.5 4S 54.3 0.06 0.06 0.116 0 0.116 0 0 0 0 + 15 72.1 4S 54.3 6.1 6.1 9.222 0 0.733 8.489 0 0 0 + 16 73.9 4S 54.3 15.2 15.2 22.637 0 0 22.637 0 0 0 + 17 74.1 4S 54.3 0 0 0 0 0 0 0 0 0 + 18 73.9 4S 54.3 0 0 0 0 0 0 0 0 0 + 19 73.6 4S 54.3 0.7 0.7 3.164 0 0.129 0 0 3.035 0 + 20 70.2 4S 54.3 4.4 4.4 14.266 0 4.652 0 0 9.614 0 + 21 62.6 4S 54.3 1.6 1.6 3.293 0 3.293 0 0 0 0 + 22 59.9 4S 54.3 0 0 0 0 0 0 0 0 0 + 23 57.4 4S 54.3 3.1 3.1 6.234 0 6.234 0 0 0 0 + 24 54.0 4S 54.3 3.7 3.7 13.452 0 2.758 0 0 10.695 0 + + +Hourly DHWREP1 Report, Sun 15-Mar + + Hr Tout Day Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ---- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 53.8 5U 54.3 0.2 0.2 0.229 0 0.103 0 0 0 0.126 + 2 52.7 5U 54.4 0 0 0 0 0 0 0 0 0 + 3 50.0 5U 54.4 0 0 0 0 0 0 0 0 0 + 4 50.2 5U 54.4 0 0 0 0 0 0 0 0 0 + 5 50.9 5U 54.4 0 0 0 0 0 0 0 0 0 + 6 50.4 5U 54.4 0 0 0 0 0 0 0 0 0 + 7 52.9 5U 54.4 0 0 0 0 0 0 0 0 0 + 8 52.5 5U 54.4 0.2 0.2 0.399 0 0.399 0 0 0 0 + 9 56.5 5U 54.4 14.3 14.3 21.366 0 0.278 21.088 0 0 0 + 10 61.5 5U 54.4 0.02 0.02 0.0323 0 0.0323 0 0 0 0 + 11 65.3 5U 54.4 0 0 0 0 0 0 0 0 0 + 12 76.3 5U 54.4 3.2 3.2 4.876 0 0.401 4.476 0 0 0 + 13 80.8 5U 54.4 0.1 0.1 0.297 0 0.297 0 0 0 0 + 14 75.4 5U 54.4 0.4 0.4 0.864 0 0.864 0 0 0 0 + 15 78.3 5U 54.4 0.9 0.9 1.761 0 1.761 0 0 0 0 + 16 79.2 5U 54.4 0.02 0.02 0.0452 0 0.0452 0 0 0 0 + 17 79.7 5U 54.4 0.02 0.02 0.0323 0 0.0323 0 0 0 0 + 18 79.5 5U 54.4 3.2 3.2 6.452 0 6.452 0 0 0 0 + 19 78.4 5U 54.4 2.1 2.1 4.234 0 4.234 0 0 0 0 + 20 73.4 5U 54.4 3.2 3.2 10.456 0 3.224 0 0 7.232 0 + 21 69.3 5U 54.4 4.2 4.2 17.531 0 1.282 0 0 16.248 0 + 22 63.5 5U 54.4 0.9 0.9 2.841 0 1.025 0 0 1.816 0 + 23 59.7 5U 54.4 0 0 0 0 0 0 0 0 0 + 24 57.0 5U 54.4 0.2 0.2 0.386 0 0.386 0 0 0 0 + + + +Hourly DHWREP2 Report, Tue 10-Mar + + Hr Tout Day Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ---- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 61.0 5T 53.4 0 0 0 0 0 0 0 0 0 + 2 60.8 5T 53.7 1.0 1.0 2.096 0 2.096 0 0 0 0 + 3 60.1 5T 53.7 0 0 0 0 0 0 0 0 0 + 4 59.7 5T 53.7 0 0 0 0 0 0 0 0 0 + 5 57.0 5T 53.7 0 0 0 0 0 0 0 0 0 + 6 56.7 5T 53.7 0 0 0 0 0 0 0 0 0 + 7 53.8 5T 53.7 0 0 0 0 0 0 0 0 0 + 8 64.9 5T 53.7 0 0 0 0 0 0 0 0 0 + 9 68.4 5T 53.7 0 0 0 0 0 0 0 0 0 + 10 59.5 5T 53.7 0.2 0.2 0.316 0 0.316 0 0 0 0 + 11 63.1 5T 53.7 1.9 1.9 3.700 0 3.700 0 0 0 0 + 12 67.1 5T 53.7 0 0 0 0 0 0 0 0 0 + 13 68.5 5T 53.7 0.1 0.1 0.297 0 0.297 0 0 0 0 + 14 69.1 5T 53.7 0.3 0.3 0.509 0 0.509 0 0 0 0 + 15 70.3 5T 53.7 0.6 0.6 1.128 0 1.128 0 0 0 0 + 16 67.8 5T 53.7 0 0 0 0 0 0 0 0 0 + 17 67.3 5T 53.7 1.6 1.6 3.204 0 3.204 0 0 0 0 + 18 66.4 5T 53.7 5.3 5.3 8.055 0 0.889 0 7.166 0 0 + 19 65.8 5T 53.7 6.6 6.6 24.034 0 4.712 0 0 19.322 0 + 20 63.7 5T 53.7 1.4 1.4 6.169 0 0.193 0 0 5.975 0 + 21 60.8 5T 53.7 0 0 0 0 0 0 0 0 0 + 22 58.8 5T 53.7 16.9 16.9 25.124 0 0.0582 25.066 0 0 0 + 23 56.8 5T 53.7 4.1 4.1 8.199 0 8.199 0 0 0 0 + 24 54.9 5T 53.7 1.4 1.4 2.714 0 2.714 0 0 0 0 + + +Hourly DHWREP2 Report, Wed 11-Mar + + Hr Tout Day Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ---- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 53.2 1W 53.7 0 0 0 0 0 0 0 0 0 + 2 57.4 1W 53.8 0 0 0 0 0 0 0 0 0 + 3 55.8 1W 53.8 0 0 0 0 0 0 0 0 0 + 4 51.1 1W 53.8 0 0 0 0 0 0 0 0 0 + 5 50.9 1W 53.8 0 0 0 0 0 0 0 0 0 + 6 53.2 1W 53.8 0.2 0.2 0.408 0 0.408 0 0 0 0 + 7 52.5 1W 53.8 0 0 0 0 0 0 0 0 0 + 8 50.2 1W 53.8 3.1 3.1 4.783 0 0.496 4.287 0 0 0 + 9 51.4 1W 53.8 7.3 7.3 11.386 0 2.174 9.212 0 0 0 + 10 54.5 1W 53.8 4.6 4.6 16.255 0 3.606 0 0 12.649 0 + 11 58.5 1W 53.8 0.3 0.3 0.550 0 0.550 0 0 0 0 + 12 64.8 1W 53.8 0.2 0.2 0.306 0 0.306 0 0 0 0 + 13 69.1 1W 53.8 0.1 0.1 0.204 0 0.204 0 0 0 0 + 14 72.3 1W 53.8 0.07 0.07 0.150 0 0.150 0 0 0 0 + 15 75.0 1W 53.8 0 0 0 0 0 0 0 0 0 + 16 72.0 1W 53.8 0.06 0.06 0.123 0 0.123 0 0 0 0 + 17 71.8 1W 53.8 0.02 0.02 0.0409 0 0.0409 0 0 0 0 + 18 70.9 1W 53.8 0.1 0.1 0.225 0 0.225 0 0 0 0 + 19 69.8 1W 53.8 0.06 0.06 0.123 0 0.123 0 0 0 0 + 20 68.2 1W 53.8 0.02 0.02 0.0409 0 0.0409 0 0 0 0 + 21 62.4 1W 53.8 3.7 3.7 5.696 0 0.801 4.894 0 0 0 + 22 64.2 1W 53.8 0.4 0.4 0.822 0 0.822 0 0 0 0 + 23 58.6 1W 53.8 0 0 0 0 0 0 0 0 0 + 24 55.8 1W 53.8 0 0 0 0 0 0 0 0 0 + + +Hourly DHWREP2 Report, Thu 12-Mar + + Hr Tout Day Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ---- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 55.2 5R 53.8 0 0 0 0 0 0 0 0 0 + 2 57.0 5R 54.0 0 0 0 0 0 0 0 0 0 + 3 57.0 5R 54.0 0 0 0 0 0 0 0 0 0 + 4 56.8 5R 54.0 0 0 0 0 0 0 0 0 0 + 5 55.8 5R 54.0 0 0 0 0 0 0 0 0 0 + 6 53.8 5R 54.0 0 0 0 0 0 0 0 0 0 + 7 53.2 5R 54.0 0.5 0.5 0.999 0 0.999 0 0 0 0 + 8 51.8 5R 54.0 2.2 2.2 4.415 0 4.415 0 0 0 0 + 9 55.4 5R 54.0 1.5 1.5 3.043 0 3.043 0 0 0 0 + 10 63.3 5R 54.0 0.02 0.02 0.0388 0 0.0388 0 0 0 0 + 11 66.6 5R 54.0 1.5 1.5 2.913 0 2.913 0 0 0 0 + 12 73.4 5R 54.0 0.4 0.4 0.838 0 0.838 0 0 0 0 + 13 76.1 5R 54.0 0 0 0 0 0 0 0 0 0 + 14 75.9 5R 54.0 0 0 0 0 0 0 0 0 0 + 15 75.9 5R 54.0 0 0 0 0 0 0 0 0 0 + 16 75.7 5R 54.0 8.3 8.3 12.309 0 0 12.309 0 0 0 + 17 74.8 5R 54.0 0.2 0.2 0.348 0 0.348 0 0 0 0 + 18 73.9 5R 54.0 1.3 1.3 2.617 0 2.617 0 0 0 0 + 19 72.7 5R 54.0 0 0 0 0 0 0 0 0 0 + 20 69.6 5R 54.0 0.1 0.1 0.206 0 0.206 0 0 0 0 + 21 66.4 5R 54.0 1.5 1.5 2.997 0 2.997 0 0 0 0 + 22 61.7 5R 54.0 1.3 1.3 2.661 0 2.661 0 0 0 0 + 23 58.6 5R 54.0 0 0 0 0 0 0 0 0 0 + 24 56.1 5R 54.0 0 0 0 0 0 0 0 0 0 + + +Hourly DHWREP2 Report, Fri 13-Mar + + Hr Tout Day Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ---- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 56.5 4F 54.0 0 0 0 0 0 0 0 0 0 + 2 51.6 4F 54.2 0 0 0 0 0 0 0 0 0 + 3 48.7 4F 54.2 0 0 0 0 0 0 0 0 0 + 4 58.6 4F 54.2 0.02 0.02 0.0340 0 0.0340 0 0 0 0 + 5 54.3 4F 54.2 0.2 0.2 0.442 0 0.442 0 0 0 0 + 6 48.0 4F 54.2 0 0 0 0 0 0 0 0 0 + 7 48.0 4F 54.2 0 0 0 0 0 0 0 0 0 + 8 53.1 4F 54.2 10.4 10.4 15.758 0 0.666 15.092 0 0 0 + 9 58.3 4F 54.2 0 0 0 0 0 0 0 0 0 + 10 61.5 4F 54.2 0 0 0 0 0 0 0 0 0 + 11 66.4 4F 54.2 0 0 0 0 0 0 0 0 0 + 12 71.4 4F 54.2 0 0 0 0 0 0 0 0 0 + 13 74.3 4F 54.2 0.02 0.02 0.0409 0 0.0409 0 0 0 0 + 14 74.1 4F 54.2 6.7 6.7 10.285 0 1.325 8.960 0 0 0 + 15 76.1 4F 54.2 0 0 0 0 0 0 0 0 0 + 16 76.8 4F 54.2 0 0 0 0 0 0 0 0 0 + 17 76.5 4F 54.2 0 0 0 0 0 0 0 0 0 + 18 75.4 4F 54.2 0 0 0 0 0 0 0 0 0 + 19 74.5 4F 54.2 4.6 4.6 6.806 0 0 0 6.806 0 0 + 20 70.5 4F 54.2 3.2 3.2 6.403 0 6.403 0 0 0 0 + 21 66.4 4F 54.2 0 0 0 0 0 0 0 0 0 + 22 61.7 4F 54.2 0.7 0.7 1.459 0 1.459 0 0 0 0 + 23 58.6 4F 54.2 0 0 0 0 0 0 0 0 0 + 24 55.6 4F 54.2 0 0 0 0 0 0 0 0 0 + + +Hourly DHWREP2 Report, Sat 14-Mar + + Hr Tout Day Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ---- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 52.9 4S 54.2 0.4 0.4 1.956 0 0 0 0 1.956 0 + 2 52.0 4S 54.3 0 0 0 0 0 0 0 0 0 + 3 52.0 4S 54.3 0 0 0 0 0 0 0 0 0 + 4 52.0 4S 54.3 0 0 0 0 0 0 0 0 0 + 5 51.8 4S 54.3 0 0 0 0 0 0 0 0 0 + 6 50.9 4S 54.3 0 0 0 0 0 0 0 0 0 + 7 50.2 4S 54.3 0 0 0 0 0 0 0 0 0 + 8 51.3 4S 54.3 0 0 0 0 0 0 0 0 0 + 9 52.2 4S 54.3 11.1 11.1 16.727 0 0.693 16.034 0 0 0 + 10 54.5 4S 54.3 0.5 0.5 1.013 0 1.013 0 0 0 0 + 11 58.3 4S 54.3 1.1 1.1 2.192 0 2.192 0 0 0 0 + 12 76.3 4S 54.3 0 0 0 0 0 0 0 0 0 + 13 75.9 4S 54.3 0 0 0 0 0 0 0 0 0 + 14 67.5 4S 54.3 0.06 0.06 0.116 0 0.116 0 0 0 0 + 15 72.1 4S 54.3 6.1 6.1 9.222 0 0.733 8.489 0 0 0 + 16 73.9 4S 54.3 15.2 15.2 22.637 0 0 22.637 0 0 0 + 17 74.1 4S 54.3 0 0 0 0 0 0 0 0 0 + 18 73.9 4S 54.3 0 0 0 0 0 0 0 0 0 + 19 73.6 4S 54.3 0.7 0.7 3.164 0 0.129 0 0 3.035 0 + 20 70.2 4S 54.3 4.4 4.4 14.266 0 4.652 0 0 9.614 0 + 21 62.6 4S 54.3 1.6 1.6 3.293 0 3.293 0 0 0 0 + 22 59.9 4S 54.3 0 0 0 0 0 0 0 0 0 + 23 57.4 4S 54.3 3.1 3.1 6.234 0 6.234 0 0 0 0 + 24 54.0 4S 54.3 3.7 3.7 13.452 0 2.758 0 0 10.695 0 + + +Hourly DHWREP2 Report, Sun 15-Mar + + Hr Tout Day Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ---- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 53.8 5U 54.3 0.2 0.2 0.229 0 0.103 0 0 0 0.126 + 2 52.7 5U 54.4 0 0 0 0 0 0 0 0 0 + 3 50.0 5U 54.4 0 0 0 0 0 0 0 0 0 + 4 50.2 5U 54.4 0 0 0 0 0 0 0 0 0 + 5 50.9 5U 54.4 0 0 0 0 0 0 0 0 0 + 6 50.4 5U 54.4 0 0 0 0 0 0 0 0 0 + 7 52.9 5U 54.4 0 0 0 0 0 0 0 0 0 + 8 52.5 5U 54.4 0.2 0.2 0.399 0 0.399 0 0 0 0 + 9 56.5 5U 54.4 14.3 14.3 21.366 0 0.278 21.088 0 0 0 + 10 61.5 5U 54.4 0.02 0.02 0.0323 0 0.0323 0 0 0 0 + 11 65.3 5U 54.4 0 0 0 0 0 0 0 0 0 + 12 76.3 5U 54.4 3.2 3.2 4.876 0 0.401 4.476 0 0 0 + 13 80.8 5U 54.4 0.1 0.1 0.297 0 0.297 0 0 0 0 + 14 75.4 5U 54.4 0.4 0.4 0.864 0 0.864 0 0 0 0 + 15 78.3 5U 54.4 0.9 0.9 1.761 0 1.761 0 0 0 0 + 16 79.2 5U 54.4 0.02 0.02 0.0452 0 0.0452 0 0 0 0 + 17 79.7 5U 54.4 0.02 0.02 0.0323 0 0.0323 0 0 0 0 + 18 79.5 5U 54.4 3.2 3.2 6.452 0 6.452 0 0 0 0 + 19 78.4 5U 54.4 2.1 2.1 4.234 0 4.234 0 0 0 0 + 20 73.4 5U 54.4 3.2 3.2 10.456 0 3.224 0 0 7.232 0 + 21 69.3 5U 54.4 4.2 4.2 17.531 0 1.282 0 0 16.248 0 + 22 63.5 5U 54.4 0.9 0.9 2.841 0 1.025 0 0 1.816 0 + 23 59.7 5U 54.4 0 0 0 0 0 0 0 0 0 + 24 57.0 5U 54.4 0.2 0.2 0.386 0 0.386 0 0 0 0 + + + +Daily Hot Water Use, DHW meter "DHWMtrWH1", Mar + +Day Total Unknown Faucet Shower Bath CWashr DWashr +--- ------- ------- ------- ------- ------- ------- ------- + 10 41.251 0 14.008 16.858 4.819 5.565 0 + 11 20.173 0 5.034 12.356 0 2.783 0 + 12 18.799 0 10.538 8.261 0 0 0 + 13 25.868 0 5.185 16.121 4.562 0 0 + 14 48.052 0 10.906 31.580 0 5.566 0 + 15 33.205 0 10.408 17.106 0 5.565 0.126 + + + +Daily Hot Water Use, DHW meter "DHWMtrWH2", Mar + +Day Total Unknown Faucet Shower Bath CWashr DWashr +--- ------- ------- ------- ------- ------- ------- ------- + 10 41.251 0 14.008 16.858 4.819 5.565 0 + 11 20.173 0 5.034 12.356 0 2.783 0 + 12 18.799 0 10.538 8.261 0 0 0 + 13 25.868 0 5.185 16.121 4.562 0 0 + 14 48.052 0 10.906 31.580 0 5.566 0 + 15 33.205 0 10.408 17.106 0 5.565 0.126 + + + +! Log for Run 005: + +! CSE 0.918.0+command-tests.6fabc4d3.2 for Win32 console + + + +Input for Run 005: + + + CLEAR + + // Dual DHWSYS case + // Tests COPY with subobjects and string expression + + wfName = "SACRAMENTO-EXECUTIVE_STYP20.epw" // use different weather file + + + //365 day DHW Profile +# #define DHW4BR choose1($dayofyear,"5H","3F","2S","3U","3M","4T","5W","5R","3F","2S","4U","6M","6T","3W","2R","2F","2S","3U","3H","4T","5W","1R","1F","2S","3U","6M","2T","5W","4R","2F","5S",\ +# "2U","4M","5T","3W","3R","3F","4S","2U","4M","5T","2W","3R","2F","2S","6U","3H","2T","3W","2R","5F","4S","4U","4M","4T","2W","5R","5F","4S","1U","1M","3T","3W","1R","3F","2S","2U","6M",\ +# "5T","1W","5R","4F","4S","5U","3M","6T","2W","5R","6F","4S","2U","4M","4T","4W","5R","3F","4S","5U","4M","3H","4W","4R","4F","6S","4U","2M","2T","4W","4R","3F","3S","4U","3M","2T","1W",\ +# "5R","5F","5S","3U","6M","4T","3W","5R","4F","2S","3U","1M","3T","5W","2R","2F","2S","2U","4M","2T","6W","3R","2F","1S","4U","4M","4T","4W","3R","2F","2S","4U","6M","2T","2W","3R","2F",\ +# "2S","3U","5H","2T","2W","4R","4F","6S","2U","6M","2T","4W","2R","3F","1S","4U","2M","1T","3W","2R","2F","3S","3U","2M","3T","5W","4R","5F","6S","4U","3M","4T","4W","4R","5F","3S","6U",\ +# "5M","4T","4W","2R","4H","1S","4U","6M","2T","5W","4R","4F","2S","2U","3M","2T","1W","2R","2F","4S","2U","6M","2T","4W","2R","4F","3S","1U","4M","6T","1W","4R","5F","3S","2U","4M","1T",\ +# "4W","4R","2F","1S","2U","2M","4T","2W","2R","5F","2S","5U","4M","5T","6W","6R","3F","4S","5U","3M","3T","2W","4R","5F","4S","1U","4M","5T","6W","2R","6F","4S","2U","6H","4T","1W","5R",\ +# "2F","6S","5U","4M","2T","2W","4R","3F","4S","2U","4M","3T","5W","5R","2F","5S","3U","1M","4T","4W","3R","2F","4S","4U","2M","1T","4W","4R","2F","3S","4U","3M","3T","3W","4R","4F","4S",\ +# "2U","4M","4T","5W","2R","2F","4S","3U","1M","3T","2W","2R","4F","4S","3U","6M","3T","4W","2R","3F","5S","5U","5M","6T","1H","2R","3F","2S","2U","2M","1T","4W","2R","2F","3S","6U","2M",\ +# "2T","2W","4H","2H","4S","5U","4M","1T","4W","4R","2F","1S","4U","2M","3T","4W","2R","2F","6S","5U","3M","6T","2W","1R","3F","2S","2U","2M","5T","2W","4R","3H","2S","5U","3M","4T","2W","4R") + + // project parameters +# #define ShwrFLOWF 1 +# #define ShwrDRAINHREFF 0 +# #define CwshHOTF 0.22 +# #define CwshUSEF 1 +# #define FaucHOTF 0.5 +# #define FaucFlowF 1 +# #define BathFLOWF 1 +# #define BathDRAINHREFF 0 +# #define DwshFLOWF 1 + + // define macros for each end use (with specific parameters exposed) +# #define SHWR( s, d, f) \ +# DHWUSE wuHWEndUse="Shower" wuStart=s wuDuration=d wuFlow=f*ShwrFLOWF wuTemp=105 wuHeatRecEF=ShwrDRAINHREFF + +# #define CWSH( s, d, f) \ +# DHWUSE wuHWEndUse="CWashr" wuStart=s wuDuration=d wuFlow=f*CwshUSEF wuHotF=CwshHOTF + +# #define FAUC( s, d, f) \ +# DHWUSE wuHWEndUse="Faucet" wuStart=s wuDuration=d wuFlow=f*FaucFLOWF wuHotF=FaucHOTF + +# #define BATH( s, d, f) \ +# DHWUSE wuHWEndUse="Bath" wuStart=s wuDuration=d wuFlow=f*BathFLOWF wuTemp=105 wuHeatRecEF=BathDRAINHREFF + +# #define DWSH( s, d, f) \ +# DHWUSE wuHWEndUse="DWashr" wuStart=s wuDuration=d wuFlow=f*DwshFLOWF + //============================================================================================= + + // 1 person + DHWDAYUSE "1M" + FAUC( 6.92, 0.333, 0.836) SHWR( 7.20, 17.833, 1.149) FAUC( 7.56, 1.000, 0.189) FAUC( 10.82, 0.167, 0.590) + FAUC( 10.82, 4.667, 0.896) FAUC( 11.56, 0.667, 0.812) FAUC( 11.75, 0.500, 0.886) FAUC( 12.09, 0.833, 0.482) + FAUC( 12.13, 1.500, 2.515) FAUC( 12.16, 0.500, 1.542) SHWR( 12.18, 3.333, 1.708) FAUC( 12.45, 0.167, 0.935) + FAUC( 12.47, 5.667, 0.027) FAUC( 12.60, 0.333, 0.787) FAUC( 12.99, 0.500, 0.590) FAUC( 13.01, 0.167, 0.836) + FAUC( 13.02, 0.167, 0.886) FAUC( 13.54, 5.000, 0.759) FAUC( 13.65, 0.333, 1.009) FAUC( 14.55, 0.167, 0.443) + FAUC( 16.81, 0.167, 0.984) FAUC( 16.94, 0.167, 1.870) FAUC( 16.98, 0.500, 1.804) FAUC( 17.26, 0.833, 0.059) + FAUC( 17.29, 0.333, 0.541) FAUC( 17.45, 0.333, 0.664) FAUC( 17.71, 0.333, 0.467) FAUC( 18.01, 1.833, 1.167) + FAUC( 18.06, 0.833, 0.649) FAUC( 18.15, 0.667, 0.726) FAUC( 18.62, 1.500, 0.968) FAUC( 18.74, 0.333, 0.812) + FAUC( 20.41, 0.333, 0.344) FAUC( 20.50, 1.333, 1.144) FAUC( 20.53, 3.833, 1.219) FAUC( 20.61, 0.333, 0.640) + FAUC( 21.27, 0.667, 0.996) FAUC( 21.30, 0.333, 0.836) + ENDDHWDAYUSE + DHWDAYUSE "1T" + FAUC( 7.35, 1.500, 1.050) FAUC( 7.53, 2.167, 0.136) FAUC( 7.79, 1.167, 0.555) FAUC( 7.93, 1.500, 2.045) + FAUC( 8.21, 0.167, 0.787) FAUC( 8.33, 0.333, 1.304) FAUC( 8.36, 3.333, 1.237) FAUC( 8.46, 0.167, 0.541) + FAUC( 8.48, 0.833, 0.610) FAUC( 18.45, 0.500, 1.443) FAUC( 19.64, 0.333, 0.394) FAUC( 19.67, 0.167, 0.443) + FAUC( 20.02, 0.167, 0.295) SHWR( 20.96, 7.333, 1.708) FAUC( 21.12, 0.167, 0.492) FAUC( 21.40, 1.000, 0.484) + ENDDHWDAYUSE + DHWDAYUSE "1W" + FAUC( 5.24, 1.167, 0.388) FAUC( 7.04, 0.667, 0.657) SHWR( 7.50, 3.167, 1.504) FAUC( 7.82, 0.167, 0.407) + FAUC( 7.83, 0.167, 0.272) FAUC( 8.18, 1.000, 0.815) FAUC( 8.32, 0.167, 0.272) FAUC( 8.33, 1.667, 0.489) + SHWR( 8.36, 7.667, 1.335) FAUC( 8.59, 0.500, 0.724) FAUC( 8.75, 0.167, 0.453) FAUC( 8.76, 0.167, 0.272) + FAUC( 8.82, 0.167, 0.272) FAUC( 8.87, 0.333, 0.498) FAUC( 8.90, 0.167, 0.272) FAUC( 9.00, 0.167, 0.272) + FAUC( 9.03, 0.167, 0.272) CWSH( 9.08, 6.833, 0.595) FAUC( 9.27, 0.167, 0.407) FAUC( 9.28, 0.167, 0.407) + CWSH( 9.35, 5.667, 0.695) CWSH( 9.51, 0.333, 0.512) CWSH( 9.52, 0.500, 0.362) FAUC( 9.55, 0.167, 0.272) + CWSH( 9.61, 5.667, 0.697) FAUC( 9.73, 0.333, 0.340) CWSH( 9.77, 0.333, 0.506) CWSH( 9.78, 0.500, 0.350) + FAUC( 9.80, 4.167, 0.831) FAUC( 9.89, 0.333, 0.475) FAUC( 10.20, 0.500, 0.498) FAUC( 10.23, 0.333, 0.407) + FAUC( 10.55, 0.333, 0.679) FAUC( 11.91, 1.000, 0.340) FAUC( 12.14, 0.167, 0.272) FAUC( 12.76, 0.167, 0.272) + FAUC( 12.85, 0.167, 0.272) FAUC( 12.93, 0.167, 0.272) FAUC( 12.94, 0.167, 0.272) FAUC( 13.79, 0.167, 0.453) + FAUC( 13.82, 0.167, 0.272) FAUC( 13.84, 0.167, 0.272) FAUC( 15.31, 0.167, 0.272) FAUC( 15.70, 0.167, 0.272) + FAUC( 15.73, 0.167, 0.272) FAUC( 16.00, 0.167, 0.272) FAUC( 17.56, 0.167, 0.272) FAUC( 17.57, 0.167, 0.407) + FAUC( 17.85, 0.167, 0.272) FAUC( 17.87, 0.167, 0.272) FAUC( 17.98, 0.167, 0.272) FAUC( 18.61, 0.167, 0.272) + FAUC( 18.77, 0.167, 0.272) FAUC( 18.80, 0.167, 0.272) FAUC( 19.15, 0.167, 0.272) FAUC( 20.43, 0.833, 0.924) + FAUC( 20.47, 0.333, 0.362) SHWR( 20.48, 3.667, 1.483) FAUC( 21.16, 0.500, 0.634) FAUC( 21.17, 0.167, 0.407) + FAUC( 21.70, 1.167, 0.453) + ENDDHWDAYUSE + DHWDAYUSE "1R" + FAUC( 0.85, 0.167, 0.407) FAUC( 0.87, 0.167, 0.543) FAUC( 1.15, 0.167, 0.453) FAUC( 8.83, 0.167, 0.407) + CWSH( 8.90, 4.000, 1.030) FAUC( 9.30, 0.167, 0.407) FAUC( 9.34, 0.167, 0.407) CWSH( 9.64, 3.000, 1.352) + CWSH( 9.70, 0.167, 0.922) CWSH( 9.72, 0.167, 1.424) CWSH( 9.88, 3.000, 1.303) CWSH( 9.93, 0.167, 1.047) + FAUC( 13.40, 0.667, 1.109) FAUC( 13.42, 0.167, 0.679) FAUC( 13.43, 0.167, 0.543) FAUC( 13.51, 0.333, 0.860) + FAUC( 13.53, 0.667, 0.872) FAUC( 17.62, 0.167, 0.407) FAUC( 19.24, 0.167, 0.407) FAUC( 19.39, 0.167, 0.543) + FAUC( 20.93, 0.167, 0.407) FAUC( 23.10, 1.000, 0.347) FAUC( 23.50, 0.333, 1.087) + ENDDHWDAYUSE + DHWDAYUSE "1F" + FAUC( 6.59, 0.500, 0.724) FAUC( 6.66, 0.833, 0.896) FAUC( 6.68, 0.333, 0.860) FAUC( 6.75, 0.500, 0.936) + FAUC( 6.76, 0.167, 0.589) FAUC( 6.81, 0.500, 0.830) FAUC( 6.83, 0.167, 0.770) FAUC( 7.25, 0.667, 0.849) + FAUC( 7.55, 0.167, 0.407) FAUC( 9.71, 0.167, 0.407) DWSH( 9.77, 1.333, 0.453) FAUC( 15.76, 0.167, 0.589) + DWSH( 15.78, 1.333, 0.456) FAUC( 16.96, 0.167, 0.407) FAUC( 17.03, 0.167, 0.407) FAUC( 17.36, 4.333, 0.038) + FAUC( 17.44, 0.667, 0.826) FAUC( 17.90, 1.167, 0.815) FAUC( 18.00, 1.500, 0.971) FAUC( 18.34, 3.500, 0.923) + FAUC( 18.41, 0.167, 0.589) FAUC( 20.04, 0.333, 0.679) FAUC( 21.69, 0.167, 1.766) FAUC( 21.70, 0.167, 1.721) + FAUC( 21.76, 0.167, 1.721) FAUC( 21.90, 0.333, 1.743) FAUC( 21.93, 0.167, 0.770) FAUC( 22.12, 0.500, 0.906) + FAUC( 22.23, 0.167, 0.407) FAUC( 22.38, 0.167, 0.407) + ENDDHWDAYUSE + DHWDAYUSE "1S" + FAUC( 0.78, 0.167, 0.738) FAUC( 1.15, 0.167, 0.344) FAUC( 1.31, 0.667, 1.058) FAUC( 9.33, 0.500, 0.886) + FAUC( 10.21, 0.667, 0.775) SHWR( 10.23, 11.333, 1.066) FAUC( 10.45, 0.333, 0.713) FAUC( 10.55, 0.333, 0.713) + FAUC( 10.97, 0.500, 0.722) SHWR( 11.77, 4.167, 1.708) FAUC( 11.84, 2.500, 0.030) FAUC( 11.88, 1.667, 1.899) + FAUC( 12.07, 0.167, 0.738) FAUC( 12.09, 0.500, 1.050) FAUC( 12.11, 0.500, 0.787) FAUC( 12.29, 2.833, 0.917) + FAUC( 12.37, 1.000, 0.139) FAUC( 12.47, 0.167, 0.295) FAUC( 12.53, 0.167, 0.246) FAUC( 12.60, 0.167, 0.344) + FAUC( 12.86, 0.333, 0.148) FAUC( 13.35, 1.333, 1.181) FAUC( 14.13, 0.833, 1.171) FAUC( 14.44, 0.167, 0.246) + FAUC( 17.61, 0.333, 0.394) FAUC( 17.90, 0.333, 0.221) FAUC( 18.71, 1.333, 0.978) FAUC( 19.00, 0.500, 0.246) + FAUC( 19.50, 0.167, 0.640) FAUC( 19.92, 0.833, 1.053) FAUC( 20.86, 0.333, 0.148) FAUC( 21.12, 1.500, 0.979) + FAUC( 21.15, 0.167, 0.246) FAUC( 21.17, 0.833, 0.463) FAUC( 21.17, 0.333, 0.812) FAUC( 21.19, 0.500, 0.623) + FAUC( 21.20, 0.667, 0.566) FAUC( 21.54, 0.333, 0.664) FAUC( 21.55, 1.000, 0.886) FAUC( 21.56, 0.500, 0.672) + FAUC( 21.66, 0.167, 0.886) FAUC( 21.68, 0.167, 0.246) FAUC( 21.69, 0.167, 0.394) FAUC( 21.78, 1.000, 0.205) + FAUC( 22.89, 0.667, 0.738) FAUC( 23.03, 0.167, 0.295) + ENDDHWDAYUSE + DHWDAYUSE "1U" + FAUC( 7.44, 0.833, 1.259) FAUC( 7.45, 0.167, 0.226) FAUC( 7.46, 0.167, 0.226) FAUC( 7.46, 0.167, 0.453) + FAUC( 7.49, 5.667, 0.037) FAUC( 7.71, 0.167, 0.770) FAUC( 7.91, 0.333, 1.630) CWSH( 8.06, 3.000, 1.946) + CWSH( 8.25, 0.667, 0.928) CWSH( 8.31, 4.667, 1.200) CWSH( 8.49, 0.500, 1.190) FAUC( 9.05, 0.167, 0.634) + FAUC( 9.31, 1.000, 0.755) FAUC( 9.44, 0.167, 0.679) FAUC( 10.32, 0.333, 0.136) FAUC( 10.58, 0.167, 0.317) + FAUC( 12.39, 0.667, 0.623) FAUC( 12.42, 0.167, 0.815) FAUC( 12.54, 0.167, 0.317) FAUC( 12.85, 1.333, 0.577) + FAUC( 12.91, 0.833, 0.444) FAUC( 12.93, 7.500, 0.023) FAUC( 13.11, 0.667, 1.494) FAUC( 13.12, 0.167, 0.272) + FAUC( 13.12, 0.333, 0.136) FAUC( 13.22, 0.167, 0.407) FAUC( 13.34, 0.333, 1.313) FAUC( 13.40, 0.500, 0.347) + FAUC( 13.43, 0.833, 0.860) FAUC( 13.44, 0.167, 0.226) FAUC( 13.44, 0.167, 0.453) FAUC( 13.45, 4.500, 0.029) + FAUC( 13.54, 0.333, 0.521) FAUC( 13.54, 0.167, 0.226) FAUC( 15.95, 0.167, 0.226) FAUC( 15.95, 0.167, 0.815) + FAUC( 15.98, 1.167, 0.576) FAUC( 18.00, 0.500, 0.755) FAUC( 18.02, 0.333, 0.657) FAUC( 18.06, 0.167, 0.543) + SHWR( 18.60, 5.500, 1.529) FAUC( 18.72, 2.833, 0.061) FAUC( 18.80, 5.333, 0.027) FAUC( 18.89, 0.167, 0.272) + FAUC( 19.05, 0.833, 0.643) FAUC( 21.49, 0.167, 0.317) FAUC( 22.37, 1.000, 0.106) + ENDDHWDAYUSE + DHWDAYUSE "1H" + FAUC( 0.16, 0.333, 0.988) FAUC( 1.44, 0.167, 0.473) FAUC( 6.55, 0.333, 1.332) FAUC( 6.63, 0.167, 0.215) + FAUC( 8.50, 0.500, 1.160) FAUC( 8.57, 0.167, 0.473) CWSH( 8.80, 3.500, 1.148) FAUC( 8.85, 0.167, 1.160) + FAUC( 8.86, 2.833, 2.315) FAUC( 8.97, 0.833, 0.962) FAUC( 9.01, 2.167, 1.894) CWSH( 9.09, 0.500, 0.560) + CWSH( 9.13, 3.333, 0.996) CWSH( 9.25, 0.333, 1.275) FAUC( 9.29, 0.333, 0.816) CWSH( 9.48, 4.000, 1.152) + FAUC( 9.86, 0.167, 0.687) FAUC( 13.01, 0.167, 0.215) FAUC( 13.04, 0.167, 0.215) FAUC( 14.62, 0.333, 0.301) + FAUC( 14.64, 0.167, 0.473) FAUC( 15.41, 0.500, 1.490) FAUC( 15.43, 0.167, 0.215) FAUC( 15.48, 0.333, 1.934) + FAUC( 16.71, 0.500, 1.719) FAUC( 16.75, 0.333, 0.516) FAUC( 19.75, 0.500, 1.561) FAUC( 19.82, 0.167, 0.473) + FAUC( 20.22, 0.167, 1.891) SHWR( 22.22, 7.000, 1.314) FAUC( 22.42, 0.167, 0.945) + ENDDHWDAYUSE + + // 2 person + DHWDAYUSE "2M" + FAUC( 1.03, 0.167, 0.645) FAUC( 2.09, 0.167, 0.258) FAUC( 2.10, 0.167, 0.258) FAUC( 2.13, 0.167, 0.730) + SHWR( 4.16, 8.500, 1.354) FAUC( 6.88, 0.167, 0.945) FAUC( 6.91, 0.667, 0.666) FAUC( 7.01, 1.333, 0.591) + FAUC( 7.19, 2.167, 0.678) FAUC( 7.58, 1.667, 0.382) FAUC( 7.64, 4.167, 0.323) FAUC( 7.87, 0.167, 0.516) + SHWR( 7.98, 5.167, 1.393) FAUC( 8.45, 2.000, 0.630) SHWR( 8.75, 4.833, 1.492) FAUC( 8.78, 1.000, 0.730) + FAUC( 9.28, 0.500, 0.602) FAUC( 9.32, 0.500, 0.816) FAUC( 9.62, 0.500, 0.816) FAUC( 9.65, 0.167, 0.516) + FAUC( 9.70, 0.333, 0.408) FAUC( 9.79, 0.167, 1.117) FAUC( 9.94, 2.167, 1.210) FAUC( 10.01, 1.667, 1.478) + FAUC( 10.04, 0.500, 1.046) FAUC( 10.09, 0.167, 0.258) FAUC( 10.09, 0.167, 0.816) FAUC( 10.11, 0.167, 0.344) + FAUC( 10.20, 0.167, 0.687) FAUC( 10.21, 0.333, 0.709) FAUC( 10.34, 0.167, 0.258) FAUC( 10.36, 0.167, 0.387) + FAUC( 10.38, 0.333, 0.838) FAUC( 10.64, 0.167, 0.215) FAUC( 10.66, 0.167, 0.344) FAUC( 10.66, 2.500, 1.444) + FAUC( 10.71, 0.500, 0.745) FAUC( 10.86, 0.167, 0.258) FAUC( 11.88, 0.333, 1.074) FAUC( 13.56, 0.500, 0.773) + FAUC( 13.77, 0.167, 0.559) FAUC( 14.13, 0.833, 2.664) FAUC( 14.85, 1.333, 2.143) SHWR( 15.08, 4.833, 1.492) + FAUC( 15.29, 0.167, 0.258) FAUC( 15.68, 0.333, 0.344) FAUC( 16.98, 0.333, 0.537) FAUC( 17.04, 0.500, 1.332) + FAUC( 17.06, 0.500, 0.859) FAUC( 17.53, 0.167, 0.945) FAUC( 17.56, 0.167, 0.816) FAUC( 17.95, 2.000, 1.851) + FAUC( 18.07, 1.667, 1.259) BATH( 18.10, 2.500, 3.584) FAUC( 18.30, 0.333, 0.902) FAUC( 18.58, 0.333, 0.924) + FAUC( 19.11, 0.167, 0.945) FAUC( 19.60, 0.167, 0.473) FAUC( 20.16, 2.667, 0.811) FAUC( 20.52, 1.833, 1.148) + FAUC( 20.56, 0.500, 0.816) FAUC( 20.57, 0.167, 0.344) CWSH( 21.09, 4.333, 1.267) CWSH( 21.37, 2.167, 0.870) + CWSH( 21.41, 1.333, 0.837) CWSH( 21.48, 4.500, 0.924) FAUC( 23.08, 1.167, 1.891) + ENDDHWDAYUSE + DHWDAYUSE "2T" + SHWR( 7.19, 4.333, 1.492) SHWR( 7.35, 5.000, 0.865) SHWR( 7.44, 7.000, 0.818) FAUC( 7.74, 1.000, 0.952) + FAUC( 7.78, 0.667, 0.902) FAUC( 8.16, 0.667, 0.602) FAUC( 8.25, 1.167, 0.933) FAUC( 8.30, 4.000, 1.212) + FAUC( 8.35, 1.000, 0.938) CWSH( 9.62, 3.667, 1.373) CWSH( 9.89, 3.500, 0.869) CWSH( 10.02, 5.333, 0.858) + FAUC( 12.24, 1.333, 0.886) FAUC( 12.27, 1.833, 0.930) FAUC( 12.56, 0.333, 0.602) FAUC( 12.72, 0.667, 0.687) + FAUC( 12.74, 0.333, 0.580) FAUC( 12.78, 0.333, 0.645) FAUC( 12.84, 1.667, 0.894) FAUC( 12.89, 2.167, 0.876) + FAUC( 12.92, 0.167, 0.387) FAUC( 12.95, 0.333, 0.537) FAUC( 13.77, 1.333, 0.440) FAUC( 14.09, 0.333, 0.365) + FAUC( 14.17, 0.500, 0.645) FAUC( 14.21, 0.833, 0.920) FAUC( 14.48, 1.167, 0.687) FAUC( 14.73, 0.500, 0.859) + FAUC( 14.74, 0.500, 0.573) FAUC( 16.56, 0.333, 0.859) FAUC( 19.84, 0.167, 0.258) FAUC( 21.38, 0.333, 0.580) + FAUC( 22.20, 1.333, 0.859) FAUC( 23.16, 1.167, 0.939) FAUC( 23.18, 0.833, 0.954) + ENDDHWDAYUSE + DHWDAYUSE "2W" + FAUC( 6.28, 8.000, 0.513) FAUC( 6.31, 0.500, 1.031) SHWR( 6.42, 7.333, 1.076) FAUC( 6.64, 0.333, 0.537) + FAUC( 6.90, 0.667, 0.752) FAUC( 7.50, 0.833, 0.859) FAUC( 7.54, 0.500, 0.702) FAUC( 7.55, 0.167, 0.043) + FAUC( 7.80, 2.833, 0.437) FAUC( 7.93, 0.333, 0.322) FAUC( 7.95, 0.333, 0.172) FAUC( 8.01, 0.333, 0.838) + FAUC( 8.11, 0.333, 0.666) FAUC( 8.36, 0.500, 0.659) FAUC( 8.37, 0.333, 0.193) FAUC( 8.95, 0.500, 0.329) + FAUC( 9.26, 0.333, 0.537) FAUC( 9.27, 0.500, 0.401) FAUC( 9.33, 0.333, 0.107) SHWR( 11.12, 5.167, 1.492) + FAUC( 11.88, 0.167, 0.043) FAUC( 12.06, 0.333, 0.945) FAUC( 12.13, 0.333, 0.666) FAUC( 12.25, 0.500, 0.687) + FAUC( 12.62, 0.667, 0.806) CWSH( 12.66, 3.833, 1.070) FAUC( 12.79, 1.333, 0.854) CWSH( 13.02, 0.333, 0.177) + CWSH( 13.03, 0.667, 0.097) CWSH( 13.08, 4.833, 0.868) FAUC( 13.11, 1.500, 0.578) CWSH( 13.26, 0.333, 0.153) + CWSH( 13.27, 0.167, 0.032) CWSH( 13.27, 0.167, 0.499) CWSH( 13.36, 4.833, 0.847) FAUC( 14.17, 0.333, 0.902) + FAUC( 15.23, 0.333, 0.945) FAUC( 15.55, 0.333, 0.559) FAUC( 15.75, 0.500, 1.117) FAUC( 15.94, 0.500, 0.100) + FAUC( 17.99, 0.333, 1.010) FAUC( 17.99, 1.167, 0.049) FAUC( 18.05, 0.333, 0.107) FAUC( 18.06, 0.333, 0.666) + FAUC( 18.11, 1.167, 0.933) FAUC( 18.22, 0.333, 0.451) FAUC( 18.25, 0.333, 0.129) FAUC( 18.25, 0.333, 0.086) + FAUC( 18.27, 0.333, 0.172) FAUC( 18.29, 0.333, 0.301) FAUC( 18.34, 0.333, 0.086) FAUC( 18.37, 0.333, 0.687) + FAUC( 18.63, 0.667, 0.451) FAUC( 18.95, 0.667, 1.031) FAUC( 18.97, 2.667, 0.918) FAUC( 19.01, 0.167, 0.043) + FAUC( 19.02, 0.167, 0.043) FAUC( 19.05, 1.667, 1.001) FAUC( 19.10, 0.500, 0.960) FAUC( 19.11, 0.167, 0.043) + FAUC( 19.11, 1.167, 0.872) FAUC( 19.19, 0.500, 0.802) FAUC( 19.20, 0.167, 0.043) FAUC( 19.23, 0.333, 0.430) + FAUC( 19.24, 1.500, 1.394) FAUC( 20.04, 1.167, 0.405) FAUC( 20.45, 2.500, 0.444) SHWR( 20.58, 10.667, 1.099) + FAUC( 21.11, 0.333, 0.408) FAUC( 21.23, 0.167, 0.043) FAUC( 21.23, 0.333, 0.279) FAUC( 21.24, 0.167, 0.043) + FAUC( 21.37, 0.833, 0.636) FAUC( 22.19, 0.833, 0.069) + ENDDHWDAYUSE + DHWDAYUSE "2R" + FAUC( 17.91, 0.333, 0.679) FAUC( 18.64, 0.167, 0.362) FAUC( 18.65, 0.333, 0.272) FAUC( 18.66, 0.333, 0.589) + FAUC( 18.75, 0.167, 0.362) DWSH( 19.16, 18.167, 0.129) DWSH( 19.56, 0.833, 0.798) DWSH( 20.06, 0.833, 0.758) + DWSH( 20.17, 1.000, 0.684) DWSH( 20.29, 1.000, 0.684) FAUC( 20.56, 0.167, 0.634) FAUC( 20.59, 0.167, 0.498) + FAUC( 20.60, 0.333, 0.407) FAUC( 20.63, 0.500, 0.770) FAUC( 21.27, 0.333, 0.453) FAUC( 21.34, 0.667, 0.668) + FAUC( 22.80, 0.333, 0.770) + ENDDHWDAYUSE + DHWDAYUSE "2F" + FAUC( 6.87, 0.167, 1.132) FAUC( 7.10, 0.500, 0.785) FAUC( 7.84, 0.333, 0.770) FAUC( 7.89, 0.333, 0.362) + FAUC( 8.31, 0.500, 1.207) FAUC( 8.80, 0.500, 1.041) FAUC( 8.82, 1.000, 1.170) FAUC( 8.84, 1.167, 0.737) + FAUC( 8.88, 4.000, 1.079) FAUC( 8.97, 1.000, 0.581) FAUC( 8.99, 1.000, 0.860) FAUC( 9.01, 1.333, 1.098) + SHWR( 9.22, 8.500, 1.120) FAUC( 9.55, 0.500, 0.423) FAUC( 9.79, 0.167, 0.317) FAUC( 10.01, 0.167, 0.407) + FAUC( 10.11, 0.167, 1.539) FAUC( 10.12, 0.667, 1.324) FAUC( 12.19, 0.167, 0.407) FAUC( 12.90, 1.000, 1.079) + FAUC( 13.22, 0.167, 1.132) FAUC( 13.22, 1.000, 1.117) FAUC( 16.15, 0.167, 0.407) FAUC( 16.89, 0.333, 1.268) + FAUC( 18.59, 0.500, 0.830) FAUC( 18.64, 0.333, 0.996) FAUC( 18.73, 0.833, 0.643) FAUC( 19.95, 0.167, 0.543) + CWSH( 20.37, 1.667, 0.908) CWSH( 20.56, 1.667, 0.902) CWSH( 20.73, 1.667, 0.876) CWSH( 20.78, 0.333, 0.673) + FAUC( 21.07, 3.000, 0.765) FAUC( 21.16, 0.167, 0.407) CWSH( 21.19, 1.500, 0.977) CWSH( 21.33, 1.667, 0.873) + FAUC( 21.55, 0.333, 1.404) + ENDDHWDAYUSE + DHWDAYUSE "2S" + FAUC( 5.93, 0.500, 1.000) FAUC( 5.94, 0.167, 0.197) SHWR( 7.60, 10.333, 1.104) FAUC( 7.90, 0.333, 1.033) + FAUC( 8.01, 0.333, 0.148) FAUC( 8.02, 0.167, 0.295) FAUC( 8.43, 0.333, 0.566) FAUC( 8.44, 0.167, 0.492) + FAUC( 8.44, 0.167, 0.197) FAUC( 8.72, 0.500, 0.656) FAUC( 9.12, 0.167, 0.443) FAUC( 9.15, 0.333, 2.952) + FAUC( 9.16, 1.333, 0.886) FAUC( 9.17, 0.833, 1.014) FAUC( 9.19, 1.167, 1.139) FAUC( 9.31, 0.167, 0.640) + FAUC( 9.31, 1.167, 0.865) FAUC( 9.32, 0.667, 1.710) FAUC( 9.35, 0.167, 1.132) FAUC( 9.36, 0.333, 1.353) + FAUC( 9.36, 0.167, 0.197) FAUC( 9.62, 0.667, 1.722) FAUC( 9.66, 2.000, 1.447) FAUC( 9.74, 0.167, 0.492) + FAUC( 9.79, 0.333, 0.418) CWSH( 9.84, 3.667, 1.540) FAUC( 9.97, 0.167, 0.443) CWSH( 10.10, 1.167, 1.398) + CWSH( 10.13, 3.500, 1.535) CWSH( 10.38, 3.667, 1.554) FAUC( 10.49, 3.167, 0.026) CWSH( 10.63, 1.167, 1.372) + CWSH( 10.67, 3.500, 1.529) FAUC( 11.03, 0.167, 0.541) FAUC( 11.03, 0.167, 0.197) FAUC( 11.06, 0.167, 0.197) + FAUC( 11.87, 2.333, 1.030) FAUC( 11.92, 0.167, 0.443) FAUC( 12.21, 0.167, 0.492) FAUC( 12.37, 0.167, 0.197) + FAUC( 12.49, 0.167, 0.492) FAUC( 12.49, 1.333, 0.990) FAUC( 12.55, 0.500, 0.558) FAUC( 12.57, 0.333, 1.205) + FAUC( 12.65, 0.167, 1.033) FAUC( 14.76, 0.167, 0.197) FAUC( 15.69, 0.167, 0.640) FAUC( 16.32, 0.500, 0.148) + FAUC( 16.57, 0.167, 1.427) FAUC( 16.59, 0.333, 0.787) SHWR( 17.01, 10.000, 1.050) FAUC( 17.20, 0.167, 0.197) + FAUC( 17.20, 0.333, 0.935) FAUC( 17.21, 0.333, 0.197) FAUC( 17.24, 0.833, 1.328) FAUC( 17.30, 0.500, 0.656) + FAUC( 17.33, 0.333, 1.451) FAUC( 17.39, 0.167, 0.492) FAUC( 17.55, 0.167, 0.443) FAUC( 17.63, 0.167, 0.836) + FAUC( 17.89, 0.333, 1.353) FAUC( 17.91, 0.167, 0.443) FAUC( 18.00, 4.500, 0.745) FAUC( 18.10, 0.333, 0.467) + FAUC( 18.45, 0.167, 0.197) FAUC( 18.45, 0.333, 0.615) FAUC( 18.52, 0.333, 0.886) FAUC( 18.69, 5.833, 0.018) + FAUC( 18.78, 0.333, 0.787) FAUC( 18.79, 0.167, 0.197) FAUC( 18.80, 0.333, 0.148) FAUC( 18.83, 0.333, 0.271) + FAUC( 18.83, 0.167, 0.197) FAUC( 18.84, 0.333, 0.787) FAUC( 18.86, 0.167, 0.197) FAUC( 18.87, 0.333, 0.517) + FAUC( 18.87, 0.333, 0.148) FAUC( 18.92, 0.333, 0.615) FAUC( 19.09, 0.333, 0.566) FAUC( 19.16, 2.833, 0.049) + FAUC( 19.67, 0.333, 0.148) FAUC( 19.88, 0.167, 0.295) FAUC( 20.93, 0.167, 0.443) + ENDDHWDAYUSE + DHWDAYUSE "2U" + FAUC( 1.96, 0.333, 0.362) FAUC( 5.36, 0.333, 0.362) FAUC( 8.97, 0.500, 1.222) FAUC( 8.99, 0.167, 1.087) + FAUC( 9.51, 0.167, 0.362) FAUC( 10.02, 0.667, 1.053) FAUC( 10.08, 0.333, 0.906) FAUC( 11.28, 1.333, 1.166) + FAUC( 11.39, 1.167, 1.041) FAUC( 11.67, 0.500, 1.585) FAUC( 11.69, 1.667, 0.471) FAUC( 11.69, 1.167, 0.783) + FAUC( 11.72, 2.667, 1.231) DWSH( 11.79, 1.833, 0.284) DWSH( 11.93, 2.000, 0.273) DWSH( 12.07, 1.667, 0.294) + FAUC( 12.15, 0.333, 0.543) FAUC( 12.17, 0.333, 0.724) DWSH( 12.38, 1.500, 0.314) DWSH( 12.47, 1.667, 0.293) + FAUC( 14.29, 0.167, 1.449) FAUC( 14.62, 0.500, 0.483) FAUC( 15.22, 0.667, 1.551) FAUC( 15.25, 0.667, 1.189) + FAUC( 15.28, 0.667, 1.189) FAUC( 15.48, 0.667, 1.143) FAUC( 15.55, 0.500, 1.222) FAUC( 15.63, 0.667, 1.279) + FAUC( 17.25, 0.333, 0.362) FAUC( 17.59, 0.333, 0.362) FAUC( 17.61, 0.167, 1.087) FAUC( 17.82, 0.167, 0.724) + FAUC( 18.05, 0.500, 0.724) FAUC( 18.17, 0.833, 0.815) FAUC( 18.42, 0.333, 0.906) FAUC( 18.55, 0.500, 0.860) + FAUC( 18.60, 1.167, 0.834) FAUC( 18.63, 0.500, 0.724) FAUC( 18.70, 0.667, 1.460) FAUC( 21.32, 0.833, 0.951) + FAUC( 21.83, 0.167, 0.724) SHWR( 23.50, 8.333, 1.572) FAUC( 23.61, 0.167, 0.362) FAUC( 23.70, 0.500, 0.770) + FAUC( 23.72, 0.167, 0.724) + ENDDHWDAYUSE + DHWDAYUSE "2H" + FAUC( 4.45, 0.167, 0.226) SHWR( 7.70, 2.833, 1.470) FAUC( 7.79, 0.667, 0.509) SHWR( 8.08, 4.833, 1.260) + FAUC( 8.51, 0.500, 0.257) FAUC( 9.26, 1.000, 0.060) FAUC( 9.44, 2.833, 0.312) FAUC( 9.84, 1.667, 0.503) + FAUC( 10.16, 1.500, 0.397) FAUC( 10.19, 1.167, 0.679) FAUC( 10.25, 0.333, 0.566) CWSH( 10.35, 1.500, 1.854) + FAUC( 10.69, 0.833, 1.041) CWSH( 10.77, 2.000, 1.380) FAUC( 10.84, 0.333, 0.249) CWSH( 11.06, 2.333, 1.686) + CWSH( 11.36, 2.500, 1.270) FAUC( 11.57, 0.333, 0.385) FAUC( 11.58, 0.500, 0.890) FAUC( 14.82, 0.500, 0.241) + FAUC( 14.84, 0.500, 0.377) FAUC( 14.92, 2.500, 0.121) SHWR( 16.97, 5.000, 1.528) FAUC( 17.03, 0.833, 1.141) + FAUC( 18.45, 3.333, 0.690) FAUC( 18.51, 2.333, 0.899) FAUC( 18.60, 0.833, 0.987) FAUC( 20.34, 0.333, 1.336) + FAUC( 21.05, 0.500, 0.890) FAUC( 21.06, 1.833, 1.227) FAUC( 21.12, 1.333, 1.426) FAUC( 21.22, 2.667, 0.192) + FAUC( 21.58, 1.333, 0.832) FAUC( 21.71, 0.500, 0.694) FAUC( 21.92, 0.500, 0.574) + ENDDHWDAYUSE + + // 3 person + DHWDAYUSE "3M" + FAUC( 5.86, 0.333, 0.214) FAUC( 5.88, 0.667, 0.642) FAUC( 5.90, 0.500, 0.571) FAUC( 6.01, 0.333, 0.589) + FAUC( 6.02, 1.333, 1.144) FAUC( 6.60, 0.500, 0.393) FAUC( 7.48, 0.167, 0.856) SHWR( 7.70, 18.167, 1.859) + FAUC( 8.08, 0.167, 0.803) FAUC( 8.16, 0.500, 0.410) FAUC( 8.29, 0.667, 1.071) FAUC( 8.31, 0.500, 1.178) + FAUC( 8.56, 1.000, 0.384) FAUC( 8.97, 2.000, 1.610) FAUC( 9.06, 3.167, 1.812) BATH( 9.16, 4.167, 3.105) + FAUC( 9.89, 0.167, 1.124) FAUC( 9.89, 1.000, 0.517) FAUC( 9.92, 0.167, 0.482) FAUC( 9.93, 1.000, 0.901) + FAUC( 9.95, 0.333, 0.428) FAUC( 10.27, 2.500, 2.338) FAUC( 10.84, 0.333, 0.883) FAUC( 10.85, 0.333, 0.616) + FAUC( 10.88, 0.167, 0.321) FAUC( 10.91, 0.167, 0.696) FAUC( 10.91, 0.333, 0.776) FAUC( 10.93, 0.500, 0.517) + FAUC( 10.98, 0.667, 0.683) FAUC( 11.00, 0.333, 0.509) SHWR( 12.36, 6.833, 1.859) FAUC( 12.38, 2.167, 1.503) + FAUC( 12.61, 2.000, 0.990) FAUC( 12.83, 0.167, 0.482) FAUC( 14.84, 0.167, 0.749) FAUC( 15.02, 0.333, 0.187) + FAUC( 15.32, 0.333, 0.214) FAUC( 16.35, 0.167, 0.749) FAUC( 16.36, 0.333, 0.642) FAUC( 16.37, 0.667, 0.856) + FAUC( 16.62, 1.500, 0.803) FAUC( 16.66, 0.167, 0.428) FAUC( 17.25, 0.167, 0.428) FAUC( 17.85, 0.333, 0.856) + FAUC( 18.58, 0.167, 0.482) FAUC( 19.63, 0.167, 1.017) FAUC( 19.79, 0.167, 0.375) FAUC( 20.08, 0.167, 1.071) + FAUC( 20.15, 0.333, 0.268) FAUC( 20.48, 0.333, 0.509) FAUC( 21.02, 1.000, 0.687) FAUC( 21.04, 0.500, 0.589) + FAUC( 22.12, 0.667, 0.629) FAUC( 22.16, 0.167, 0.482) FAUC( 22.43, 0.500, 1.035) FAUC( 22.56, 0.167, 0.589) + ENDDHWDAYUSE + DHWDAYUSE "3T" + SHWR( 6.54, 4.667, 1.417) FAUC( 6.70, 4.500, 0.441) FAUC( 6.93, 0.167, 0.226) FAUC( 7.13, 0.167, 0.226) + FAUC( 7.58, 1.000, 1.011) FAUC( 8.11, 0.167, 0.634) CWSH( 8.13, 4.833, 0.993) FAUC( 8.31, 0.167, 0.498) + FAUC( 8.33, 0.167, 0.634) FAUC( 8.34, 0.167, 0.770) FAUC( 8.34, 0.833, 1.032) CWSH( 8.40, 2.667, 1.008) + CWSH( 8.50, 5.167, 0.940) CWSH( 8.65, 0.500, 0.617) FAUC( 9.40, 0.333, 2.400) FAUC( 9.42, 0.500, 1.253) + FAUC( 9.46, 0.500, 0.785) FAUC( 9.47, 1.333, 1.364) FAUC( 9.51, 1.500, 1.036) FAUC( 9.51, 0.500, 0.468) + FAUC( 9.66, 1.667, 1.272) FAUC( 9.71, 0.333, 0.385) FAUC( 9.82, 0.333, 0.430) FAUC( 9.83, 0.167, 0.226) + FAUC( 10.68, 0.167, 0.770) FAUC( 10.70, 0.667, 0.668) FAUC( 10.72, 0.333, 0.430) FAUC( 10.74, 0.500, 0.468) + FAUC( 10.75, 1.000, 0.551) FAUC( 10.77, 0.333, 0.475) FAUC( 10.93, 0.333, 0.815) FAUC( 10.98, 0.333, 1.064) + FAUC( 11.16, 0.167, 0.543) FAUC( 11.35, 0.333, 0.521) FAUC( 11.49, 0.167, 0.724) FAUC( 12.66, 0.333, 0.543) + FAUC( 13.34, 0.167, 0.317) FAUC( 13.35, 0.167, 0.226) FAUC( 13.37, 0.167, 0.226) FAUC( 13.53, 0.500, 0.634) + FAUC( 13.59, 0.167, 0.543) FAUC( 13.59, 0.667, 0.804) FAUC( 14.49, 0.167, 0.770) FAUC( 14.85, 0.167, 0.226) + FAUC( 14.88, 1.167, 0.828) FAUC( 15.01, 0.333, 0.317) FAUC( 15.03, 0.167, 0.407) FAUC( 15.04, 0.167, 0.453) + FAUC( 15.09, 0.167, 0.226) FAUC( 15.17, 0.167, 0.543) FAUC( 15.94, 0.333, 0.860) FAUC( 15.95, 0.833, 0.643) + FAUC( 15.97, 0.167, 0.453) FAUC( 15.99, 0.500, 0.679) FAUC( 16.01, 0.333, 0.634) FAUC( 16.01, 0.333, 0.385) + FAUC( 16.02, 0.500, 0.543) FAUC( 16.04, 0.333, 0.543) FAUC( 16.04, 0.500, 0.498) FAUC( 16.34, 0.167, 0.317) + FAUC( 16.53, 0.167, 0.453) FAUC( 16.71, 0.500, 0.604) SHWR( 17.60, 4.500, 1.572) FAUC( 17.86, 0.333, 1.064) + SHWR( 17.89, 3.500, 1.383) FAUC( 18.08, 0.167, 0.634) FAUC( 18.11, 0.333, 0.475) FAUC( 18.12, 0.167, 0.724) + FAUC( 18.19, 3.500, 0.407) SHWR( 19.24, 4.500, 1.411) FAUC( 19.46, 0.333, 0.226) FAUC( 19.47, 0.167, 0.226) + FAUC( 19.50, 0.333, 0.702) FAUC( 19.51, 0.333, 0.475) FAUC( 19.51, 0.333, 0.430) FAUC( 19.52, 0.167, 0.724) + FAUC( 19.90, 0.667, 0.781) FAUC( 20.50, 0.500, 0.664) + ENDDHWDAYUSE + DHWDAYUSE "3W" + SHWR( 6.57, 12.667, 1.172) FAUC( 6.84, 0.167, 0.535) FAUC( 6.87, 0.667, 1.057) FAUC( 7.05, 0.167, 0.642) + FAUC( 8.26, 0.167, 0.642) FAUC( 8.44, 0.833, 0.974) FAUC( 8.46, 0.167, 0.642) SHWR( 8.86, 8.667, 1.859) + FAUC( 9.09, 0.333, 0.509) FAUC( 13.18, 0.333, 0.562) FAUC( 13.26, 0.500, 1.374) FAUC( 13.32, 0.833, 1.777) + CWSH( 13.34, 5.333, 1.176) CWSH( 13.62, 5.000, 1.163) CWSH( 13.80, 0.333, 0.767) CWSH( 13.81, 0.500, 0.610) + CWSH( 16.98, 4.500, 1.369) CWSH( 17.25, 5.167, 1.146) FAUC( 17.37, 0.333, 0.776) CWSH( 17.43, 0.333, 0.773) + CWSH( 17.44, 0.500, 0.625) FAUC( 18.51, 0.333, 0.562) FAUC( 18.57, 0.500, 0.517) FAUC( 18.59, 0.333, 0.937) + FAUC( 18.63, 0.333, 0.375) FAUC( 18.78, 0.333, 1.178) FAUC( 18.83, 0.167, 1.017) FAUC( 18.95, 0.333, 0.509) + FAUC( 19.27, 0.667, 1.017) FAUC( 19.33, 1.000, 0.919) FAUC( 19.35, 0.333, 0.616) FAUC( 19.39, 0.667, 1.606) + FAUC( 19.41, 1.333, 1.506) FAUC( 19.41, 0.333, 0.616) FAUC( 19.42, 0.333, 1.445) FAUC( 19.44, 0.167, 0.535) + FAUC( 19.46, 0.333, 0.509) FAUC( 19.47, 1.833, 1.217) FAUC( 19.51, 0.333, 0.616) FAUC( 19.53, 0.667, 1.111) + FAUC( 19.55, 0.667, 0.937) FAUC( 19.63, 0.167, 0.428) SHWR( 19.66, 11.500, 1.013) FAUC( 19.98, 0.500, 0.928) + FAUC( 20.01, 0.333, 0.509) FAUC( 20.14, 0.167, 0.910) FAUC( 21.09, 0.167, 0.910) FAUC( 22.95, 0.333, 0.375) + FAUC( 22.96, 0.333, 1.552) FAUC( 23.01, 2.167, 0.791) FAUC( 23.47, 0.333, 0.455) + ENDDHWDAYUSE + DHWDAYUSE "3R" + FAUC( 0.04, 0.167, 0.836) FAUC( 0.16, 0.667, 0.873) FAUC( 0.17, 0.167, 0.295) FAUC( 0.21, 0.833, 0.216) + FAUC( 1.09, 0.333, 1.156) FAUC( 1.10, 0.500, 0.836) FAUC( 1.11, 0.500, 0.492) FAUC( 1.12, 0.167, 1.132) + FAUC( 1.15, 0.167, 0.394) FAUC( 4.71, 1.333, 0.363) FAUC( 5.35, 0.500, 0.508) FAUC( 5.46, 1.500, 1.028) + FAUC( 5.59, 0.167, 0.246) FAUC( 5.63, 0.500, 0.836) FAUC( 5.71, 0.167, 0.246) FAUC( 5.72, 0.667, 0.787) + FAUC( 5.99, 0.167, 0.246) FAUC( 6.03, 0.167, 0.836) FAUC( 9.54, 0.167, 0.394) FAUC( 9.86, 0.167, 0.935) + FAUC( 11.92, 0.167, 0.344) FAUC( 11.94, 0.167, 0.590) FAUC( 11.96, 0.167, 0.492) FAUC( 13.16, 0.833, 1.151) + FAUC( 13.18, 0.500, 0.344) FAUC( 13.19, 0.333, 0.787) FAUC( 13.54, 1.000, 1.246) FAUC( 13.57, 0.500, 1.214) + FAUC( 13.58, 0.333, 0.369) FAUC( 14.21, 0.333, 0.197) FAUC( 14.31, 0.167, 0.738) FAUC( 17.62, 0.167, 0.492) + FAUC( 17.96, 0.500, 0.623) FAUC( 18.11, 0.333, 0.394) FAUC( 18.20, 0.333, 0.221) FAUC( 18.65, 0.500, 0.262) + FAUC( 18.69, 0.167, 0.344) FAUC( 18.71, 0.167, 0.443) FAUC( 18.78, 0.333, 0.197) FAUC( 18.84, 1.833, 0.743) + FAUC( 18.87, 0.333, 0.763) FAUC( 18.87, 0.500, 0.836) FAUC( 18.88, 0.667, 0.566) FAUC( 18.90, 0.500, 0.853) + FAUC( 18.91, 0.333, 0.148) FAUC( 18.92, 1.167, 1.265) FAUC( 18.94, 0.667, 0.640) FAUC( 18.96, 0.167, 1.378) + FAUC( 18.98, 1.000, 1.427) FAUC( 19.01, 0.333, 0.713) FAUC( 19.15, 0.500, 0.443) FAUC( 19.84, 0.333, 0.148) + FAUC( 21.07, 0.333, 1.058) FAUC( 21.15, 0.500, 0.705) CWSH( 21.17, 2.000, 1.977) CWSH( 21.21, 0.500, 1.022) + CWSH( 21.23, 0.500, 1.755) CWSH( 21.25, 0.833, 1.080) CWSH( 21.27, 0.667, 1.766) CWSH( 21.28, 0.667, 1.349) + CWSH( 21.34, 0.167, 0.800) CWSH( 21.40, 1.000, 1.999) FAUC( 21.41, 0.667, 2.362) CWSH( 21.45, 0.667, 1.133) + CWSH( 21.60, 0.500, 1.355) CWSH( 21.62, 0.500, 1.533) CWSH( 21.67, 0.667, 0.919) CWSH( 21.70, 2.167, 1.018) + CWSH( 21.77, 2.167, 0.515) CWSH( 21.78, 1.000, 0.846) CWSH( 21.84, 0.667, 0.950) CWSH( 21.85, 1.000, 0.877) + CWSH( 21.88, 0.833, 0.872) CWSH( 21.92, 1.667, 1.087) CWSH( 21.98, 3.333, 0.976) CWSH( 22.16, 0.500, 1.132) + ENDDHWDAYUSE + DHWDAYUSE "3F" + FAUC( 5.65, 0.833, 0.894) FAUC( 5.95, 0.167, 0.602) FAUC( 7.67, 0.833, 0.619) FAUC( 7.72, 0.500, 1.575) + FAUC( 7.83, 0.167, 2.363) FAUC( 7.84, 0.167, 2.320) FAUC( 8.53, 0.167, 0.215) FAUC( 8.56, 0.167, 0.344) + FAUC( 8.58, 0.167, 0.301) FAUC( 9.55, 2.833, 0.361) FAUC( 9.59, 0.333, 1.912) FAUC( 9.67, 0.833, 0.799) + FAUC( 9.85, 0.333, 0.258) FAUC( 9.89, 0.167, 0.430) FAUC( 10.22, 0.167, 0.344) FAUC( 10.24, 0.500, 1.117) + FAUC( 10.34, 0.167, 0.859) FAUC( 10.49, 0.167, 0.516) FAUC( 10.54, 0.333, 2.105) FAUC( 10.55, 0.500, 1.418) + FAUC( 10.57, 0.500, 1.461) FAUC( 10.66, 0.167, 1.031) FAUC( 11.03, 0.167, 0.258) FAUC( 13.36, 0.167, 0.258) + FAUC( 13.74, 0.833, 1.126) FAUC( 13.77, 0.167, 0.215) FAUC( 14.17, 0.167, 0.258) FAUC( 14.29, 2.667, 1.815) + FAUC( 14.35, 0.167, 0.773) FAUC( 14.39, 0.167, 0.387) FAUC( 14.49, 0.333, 1.096) FAUC( 14.58, 0.167, 0.215) + FAUC( 14.96, 0.167, 0.387) FAUC( 15.05, 0.333, 0.451) FAUC( 18.11, 0.500, 1.404) FAUC( 19.30, 0.167, 0.387) + FAUC( 19.34, 1.000, 0.881) FAUC( 20.01, 0.500, 1.776) FAUC( 20.14, 1.500, 0.878) FAUC( 20.18, 0.333, 0.344) + FAUC( 20.19, 0.500, 0.186) FAUC( 20.42, 0.333, 0.408) FAUC( 20.43, 0.833, 1.143) FAUC( 20.58, 0.167, 0.602) + FAUC( 20.67, 0.333, 2.277) FAUC( 20.87, 0.333, 0.602) FAUC( 20.94, 0.333, 0.430) FAUC( 20.94, 0.500, 0.358) + FAUC( 20.97, 0.167, 0.344) FAUC( 20.99, 0.667, 1.128) FAUC( 21.01, 0.667, 0.881) FAUC( 21.03, 0.167, 0.215) + DWSH( 21.05, 3.500, 0.564) FAUC( 21.12, 0.167, 1.160) DWSH( 21.16, 1.667, 0.560) DWSH( 21.32, 1.667, 0.535) + DWSH( 21.61, 0.667, 0.475) DWSH( 21.64, 1.667, 0.532) FAUC( 22.13, 0.333, 0.666) FAUC( 22.46, 0.167, 0.215) + FAUC( 22.90, 1.833, 0.523) FAUC( 22.91, 0.333, 1.289) FAUC( 23.19, 0.167, 0.945) + ENDDHWDAYUSE + DHWDAYUSE "3S" + FAUC( 1.25, 0.167, 0.301) FAUC( 1.30, 0.167, 0.387) FAUC( 2.46, 0.333, 0.129) FAUC( 2.53, 0.167, 0.516) + FAUC( 2.63, 0.167, 0.473) FAUC( 4.85, 0.167, 0.215) FAUC( 4.86, 0.167, 0.215) FAUC( 5.04, 0.167, 0.301) + FAUC( 5.37, 0.667, 1.558) FAUC( 6.18, 1.667, 0.812) FAUC( 6.86, 0.833, 0.696) FAUC( 6.91, 1.000, 0.874) + FAUC( 6.92, 0.333, 1.568) FAUC( 6.93, 2.167, 1.382) FAUC( 6.94, 1.000, 0.981) FAUC( 6.97, 1.500, 1.461) + FAUC( 7.00, 0.500, 1.432) FAUC( 7.02, 0.167, 0.344) FAUC( 7.10, 0.167, 0.258) FAUC( 7.41, 0.333, 0.301) + FAUC( 7.42, 0.167, 0.258) FAUC( 7.43, 0.333, 0.172) FAUC( 8.18, 0.167, 0.387) FAUC( 8.38, 0.167, 0.215) + FAUC( 8.39, 0.167, 0.215) FAUC( 8.40, 0.333, 0.494) FAUC( 8.50, 0.500, 0.559) FAUC( 8.54, 0.167, 0.301) + FAUC( 8.59, 0.167, 0.602) FAUC( 8.60, 0.333, 0.150) FAUC( 8.62, 0.167, 0.258) FAUC( 8.63, 0.167, 0.258) + FAUC( 8.64, 1.000, 0.852) FAUC( 8.68, 1.167, 0.792) FAUC( 8.97, 0.333, 0.580) FAUC( 8.98, 0.167, 0.945) + FAUC( 9.47, 0.167, 0.215) SHWR( 9.48, 10.000, 0.699) FAUC( 9.69, 0.333, 0.666) FAUC( 9.71, 0.167, 0.344) + FAUC( 9.83, 0.167, 0.215) FAUC( 9.86, 0.333, 0.494) FAUC( 10.13, 0.500, 0.100) FAUC( 10.18, 0.167, 0.387) + FAUC( 10.20, 0.167, 0.215) FAUC( 10.24, 0.500, 1.547) FAUC( 10.27, 0.167, 0.344) FAUC( 10.38, 0.667, 0.408) + FAUC( 10.41, 0.333, 0.430) FAUC( 10.43, 0.167, 0.215) FAUC( 10.55, 0.167, 0.387) FAUC( 10.65, 0.333, 0.645) + FAUC( 10.67, 0.167, 0.387) FAUC( 10.71, 0.333, 0.580) FAUC( 10.75, 0.833, 0.902) FAUC( 11.51, 0.500, 0.458) + CWSH( 11.56, 18.667, 0.339) FAUC( 11.58, 0.833, 1.057) FAUC( 11.62, 0.667, 0.483) FAUC( 11.63, 0.333, 0.602) + FAUC( 11.64, 0.833, 0.344) FAUC( 11.87, 0.167, 0.301) FAUC( 11.88, 0.167, 0.301) FAUC( 11.89, 0.167, 0.387) + FAUC( 11.90, 0.167, 0.344) FAUC( 11.91, 0.333, 0.193) FAUC( 11.92, 0.167, 0.344) FAUC( 11.93, 0.167, 0.387) + FAUC( 11.94, 0.167, 0.344) FAUC( 11.95, 0.167, 0.258) FAUC( 11.96, 0.167, 0.215) FAUC( 11.97, 0.167, 0.344) + FAUC( 11.98, 0.167, 0.301) FAUC( 11.98, 0.167, 0.215) FAUC( 12.00, 0.167, 0.344) CWSH( 12.00, 1.000, 0.330) + CWSH( 12.03, 17.833, 0.336) FAUC( 12.05, 0.333, 0.236) FAUC( 12.12, 0.667, 0.290) FAUC( 12.15, 0.333, 0.172) + FAUC( 12.33, 0.167, 0.215) FAUC( 12.46, 0.333, 0.795) FAUC( 12.55, 0.167, 0.516) FAUC( 12.55, 0.167, 0.215) + FAUC( 12.78, 0.333, 0.645) FAUC( 14.35, 0.167, 0.258) FAUC( 14.35, 1.333, 1.246) FAUC( 14.35, 0.667, 1.343) + FAUC( 14.37, 0.667, 0.773) FAUC( 14.43, 0.167, 0.258) FAUC( 14.45, 0.167, 0.258) FAUC( 14.46, 0.333, 0.344) + FAUC( 14.47, 0.333, 0.623) FAUC( 15.15, 0.167, 0.473) FAUC( 15.15, 0.167, 0.258) FAUC( 16.58, 0.333, 0.150) + FAUC( 16.60, 0.167, 0.215) FAUC( 17.37, 0.167, 0.301) FAUC( 17.44, 0.167, 0.215) FAUC( 17.45, 0.167, 0.215) + FAUC( 17.48, 0.167, 0.344) FAUC( 17.51, 0.333, 0.752) FAUC( 17.52, 0.167, 0.215) FAUC( 17.59, 0.167, 0.215) + FAUC( 17.59, 2.167, 0.684) FAUC( 17.65, 0.833, 1.074) FAUC( 17.70, 0.500, 1.977) FAUC( 17.71, 0.667, 0.064) + FAUC( 17.79, 0.167, 0.301) FAUC( 17.82, 0.167, 0.301) FAUC( 17.83, 0.167, 0.301) FAUC( 17.83, 0.167, 0.215) + FAUC( 17.84, 0.500, 0.430) FAUC( 17.87, 0.500, 0.372) FAUC( 17.88, 0.167, 0.344) FAUC( 17.89, 0.333, 0.193) + FAUC( 17.90, 0.167, 0.344) FAUC( 18.10, 0.167, 0.344) FAUC( 18.12, 0.167, 0.301) FAUC( 18.13, 0.833, 0.722) + FAUC( 18.18, 0.167, 0.387) FAUC( 18.19, 0.167, 0.602) FAUC( 18.21, 0.167, 0.387) FAUC( 18.21, 0.167, 0.602) + FAUC( 18.22, 0.333, 0.494) FAUC( 18.23, 0.167, 0.258) FAUC( 18.24, 0.167, 0.301) FAUC( 18.25, 0.167, 0.215) + FAUC( 18.28, 0.167, 0.215) FAUC( 18.30, 0.167, 0.215) FAUC( 18.33, 0.167, 0.215) FAUC( 18.35, 0.167, 0.344) + FAUC( 18.36, 0.167, 0.387) FAUC( 18.37, 0.833, 0.421) FAUC( 18.38, 0.167, 0.773) FAUC( 18.38, 0.167, 0.258) + FAUC( 18.42, 0.167, 0.301) FAUC( 18.43, 0.167, 0.301) FAUC( 18.48, 0.500, 0.458) FAUC( 18.49, 0.167, 0.258) + FAUC( 18.89, 0.167, 0.215) FAUC( 18.90, 1.167, 1.086) FAUC( 18.93, 0.167, 0.215) FAUC( 18.94, 0.167, 0.301) + FAUC( 19.30, 0.500, 0.458) FAUC( 19.40, 0.167, 0.945) FAUC( 19.41, 0.833, 0.730) FAUC( 19.44, 1.000, 0.931) + FAUC( 19.47, 0.667, 0.677) FAUC( 19.48, 0.333, 0.172) SHWR( 19.78, 15.333, 0.727) FAUC( 20.07, 0.167, 0.258) + FAUC( 20.45, 0.500, 0.716) FAUC( 20.47, 0.500, 0.716) FAUC( 20.51, 0.333, 0.730) FAUC( 20.76, 0.167, 0.301) + FAUC( 21.00, 0.167, 0.387) FAUC( 21.00, 0.167, 0.387) FAUC( 21.03, 0.167, 0.344) FAUC( 22.22, 0.167, 0.215) + FAUC( 22.23, 0.167, 0.387) FAUC( 22.23, 0.333, 0.301) FAUC( 22.24, 0.167, 0.387) FAUC( 22.25, 0.167, 0.430) + FAUC( 22.26, 0.167, 0.387) FAUC( 22.27, 0.333, 0.193) FAUC( 22.28, 0.167, 0.215) FAUC( 22.28, 0.167, 0.344) + FAUC( 22.29, 0.167, 0.387) FAUC( 22.30, 0.167, 0.430) FAUC( 22.31, 0.167, 0.473) FAUC( 22.32, 0.333, 0.193) + FAUC( 22.33, 0.167, 0.387) FAUC( 22.37, 0.333, 0.516) FAUC( 22.38, 0.167, 0.344) FAUC( 22.40, 0.167, 0.988) + FAUC( 22.41, 0.167, 0.387) FAUC( 22.42, 0.833, 1.057) FAUC( 22.44, 0.333, 0.301) BATH( 22.45, 3.833, 2.269) + FAUC( 22.52, 0.167, 0.258) FAUC( 22.53, 0.167, 0.215) FAUC( 22.63, 0.500, 0.473) + ENDDHWDAYUSE + DHWDAYUSE "3U" + FAUC( 0.02, 0.333, 0.521) FAUC( 6.56, 0.333, 0.475) FAUC( 9.51, 0.333, 0.724) FAUC( 9.58, 0.167, 1.268) + FAUC( 9.62, 0.167, 0.996) FAUC( 9.67, 0.500, 1.554) FAUC( 9.77, 0.333, 1.290) FAUC( 9.93, 0.167, 0.317) + FAUC( 10.01, 0.333, 1.517) SHWR( 10.27, 10.833, 1.572) FAUC( 10.75, 0.167, 0.589) SHWR( 10.98, 5.667, 1.572) + FAUC( 11.09, 0.500, 0.634) FAUC( 11.14, 0.167, 0.407) FAUC( 11.40, 3.000, 1.326) FAUC( 11.43, 1.333, 0.826) + FAUC( 11.47, 0.333, 0.430) FAUC( 11.49, 0.167, 0.407) FAUC( 11.53, 0.833, 0.688) FAUC( 11.55, 0.500, 0.438) + CWSH( 14.73, 2.833, 1.455) CWSH( 15.13, 5.000, 0.811) CWSH( 15.31, 0.500, 0.450) CWSH( 15.32, 0.333, 0.623) + CWSH( 15.41, 5.000, 0.808) FAUC( 15.71, 0.167, 0.407) FAUC( 15.97, 0.833, 0.380) FAUC( 17.18, 0.333, 0.724) + FAUC( 17.22, 0.167, 0.860) FAUC( 19.68, 1.667, 0.724) FAUC( 19.71, 0.667, 0.690) FAUC( 19.73, 0.500, 0.770) + FAUC( 19.76, 0.333, 0.566) FAUC( 19.78, 0.167, 0.589) FAUC( 19.88, 0.167, 0.679) FAUC( 22.72, 0.500, 0.619) + FAUC( 23.06, 2.333, 0.744) FAUC( 23.14, 0.833, 0.806) + ENDDHWDAYUSE + DHWDAYUSE "3H" + FAUC( 7.64, 0.500, 0.558) FAUC( 7.65, 1.000, 1.170) FAUC( 7.69, 0.167, 0.407) FAUC( 7.71, 0.167, 0.407) + FAUC( 7.75, 0.167, 0.362) FAUC( 7.76, 0.167, 0.226) FAUC( 7.79, 0.167, 0.498) FAUC( 7.83, 0.167, 0.226) + FAUC( 7.87, 0.167, 0.543) FAUC( 7.95, 0.167, 0.906) FAUC( 7.95, 0.167, 0.226) FAUC( 7.97, 0.167, 0.272) + FAUC( 8.04, 0.500, 2.098) FAUC( 8.51, 0.167, 0.906) FAUC( 8.73, 0.167, 0.226) FAUC( 8.79, 0.167, 1.041) + FAUC( 8.88, 0.167, 0.362) FAUC( 9.02, 0.333, 0.136) FAUC( 9.25, 0.333, 0.340) FAUC( 9.45, 0.167, 0.226) + FAUC( 9.71, 0.167, 0.362) FAUC( 9.96, 2.167, 1.303) FAUC( 10.00, 1.833, 1.280) FAUC( 10.02, 0.500, 0.785) + FAUC( 10.03, 0.500, 1.192) DWSH( 10.09, 1.000, 1.708) DWSH( 10.16, 0.833, 1.941) DWSH( 10.23, 1.000, 1.674) + SHWR( 10.30, 7.167, 1.167) CWSH( 10.49, 4.500, 1.250) CWSH( 10.87, 4.167, 1.273) DWSH( 10.90, 0.833, 0.395) + DWSH( 10.96, 0.833, 0.452) DWSH( 11.03, 1.000, 0.369) CWSH( 11.04, 0.333, 0.987) CWSH( 11.05, 0.333, 0.948) + FAUC( 11.21, 0.500, 0.634) FAUC( 11.30, 0.500, 0.860) FAUC( 11.77, 0.833, 1.087) FAUC( 11.79, 0.833, 0.969) + FAUC( 11.80, 1.500, 0.035) FAUC( 11.83, 0.833, 1.014) FAUC( 11.84, 2.167, 0.031) FAUC( 11.88, 0.167, 0.498) + FAUC( 11.93, 0.833, 1.123) FAUC( 11.96, 1.000, 1.087) FAUC( 11.98, 0.167, 0.226) FAUC( 11.98, 0.167, 1.313) + FAUC( 11.99, 0.167, 0.226) FAUC( 12.02, 0.167, 0.226) FAUC( 12.05, 1.333, 1.205) FAUC( 12.10, 0.167, 0.272) + FAUC( 12.12, 0.167, 0.498) FAUC( 12.41, 0.833, 1.023) FAUC( 12.45, 0.333, 0.951) CWSH( 12.64, 2.167, 2.446) + FAUC( 12.67, 0.667, 1.687) CWSH( 12.78, 2.167, 2.716) CWSH( 12.91, 0.500, 1.502) CWSH( 12.92, 0.500, 1.431) + CWSH( 13.04, 4.500, 1.366) CWSH( 13.41, 4.167, 1.382) FAUC( 13.47, 0.500, 1.011) CWSH( 13.58, 0.333, 1.151) + CWSH( 13.59, 0.333, 1.080) FAUC( 13.74, 0.333, 0.634) FAUC( 17.04, 0.167, 0.226) FAUC( 19.50, 0.333, 0.634) + SHWR( 19.54, 12.833, 1.264) FAUC( 21.13, 0.333, 0.272) FAUC( 21.60, 0.167, 0.226) FAUC( 21.60, 0.833, 0.254) + ENDDHWDAYUSE + + // 4 person + DHWDAYUSE "4M" + SHWR( 0.61, 5.667, 1.572) FAUC( 1.25, 0.167, 0.860) FAUC( 1.29, 0.667, 0.589) FAUC( 1.96, 0.167, 0.272) + FAUC( 7.67, 0.833, 3.287) FAUC( 7.70, 0.500, 2.686) FAUC( 7.71, 1.000, 3.720) FAUC( 7.75, 0.333, 1.630) + BATH( 7.77, 2.500, 4.858) FAUC( 7.89, 0.333, 0.815) FAUC( 8.05, 0.167, 0.362) FAUC( 8.25, 1.333, 0.894) + FAUC( 8.28, 0.167, 0.498) FAUC( 8.69, 1.000, 1.117) FAUC( 8.89, 0.667, 1.053) FAUC( 9.34, 0.333, 0.906) + SHWR( 9.60, 9.000, 1.572) FAUC( 9.71, 0.333, 0.611) FAUC( 9.90, 0.667, 0.996) FAUC( 9.91, 0.167, 1.041) + FAUC( 10.08, 0.333, 0.385) FAUC( 10.12, 0.500, 1.177) FAUC( 10.14, 0.167, 0.407) FAUC( 10.18, 0.333, 0.883) + FAUC( 10.21, 0.667, 0.419) FAUC( 10.23, 0.333, 1.064) FAUC( 10.28, 0.333, 2.264) FAUC( 10.28, 0.167, 1.811) + FAUC( 10.55, 0.500, 0.951) FAUC( 10.75, 0.667, 1.268) FAUC( 11.46, 0.500, 1.162) FAUC( 11.72, 0.167, 0.498) + FAUC( 12.32, 0.500, 1.026) FAUC( 12.57, 0.167, 0.724) FAUC( 12.71, 0.167, 0.498) FAUC( 12.72, 0.333, 0.838) + FAUC( 13.15, 0.500, 1.072) FAUC( 13.83, 0.333, 0.951) FAUC( 14.76, 0.333, 0.928) FAUC( 14.78, 0.500, 0.709) + FAUC( 14.95, 0.333, 0.883) CWSH( 15.04, 2.500, 1.421) CWSH( 15.08, 0.500, 1.182) CWSH( 15.11, 1.000, 0.643) + CWSH( 15.30, 0.333, 0.539) FAUC( 15.39, 0.167, 0.543) CWSH( 15.51, 1.667, 2.096) CWSH( 15.62, 0.167, 0.763) + CWSH( 15.65, 0.333, 0.696) CWSH( 15.71, 1.667, 2.083) CWSH( 15.81, 0.333, 1.077) FAUC( 16.23, 0.167, 1.177) + FAUC( 16.44, 0.333, 0.521) FAUC( 16.47, 0.500, 0.785) FAUC( 16.58, 0.333, 0.973) FAUC( 16.83, 0.167, 0.543) + FAUC( 17.02, 0.167, 0.679) FAUC( 17.25, 0.167, 0.407) SHWR( 18.76, 9.167, 1.572) FAUC( 19.31, 0.167, 0.543) + FAUC( 19.49, 0.667, 1.064) FAUC( 19.84, 0.167, 0.226) FAUC( 19.90, 0.167, 0.498) FAUC( 20.11, 1.500, 0.895) + FAUC( 20.38, 1.167, 1.177) FAUC( 20.83, 0.167, 1.177) FAUC( 20.88, 0.500, 0.981) FAUC( 21.37, 0.500, 0.981) + FAUC( 21.38, 0.500, 0.860) FAUC( 21.66, 0.833, 1.078) FAUC( 21.72, 0.333, 0.521) FAUC( 21.77, 0.167, 0.453) + FAUC( 21.80, 0.333, 0.883) FAUC( 21.87, 0.167, 0.272) FAUC( 21.94, 0.167, 0.498) FAUC( 22.29, 0.667, 0.951) + DWSH( 22.34, 1.667, 0.994) FAUC( 22.34, 1.500, 0.966) FAUC( 22.37, 0.500, 1.162) DWSH( 22.57, 1.833, 0.935) + FAUC( 22.68, 0.167, 0.498) FAUC( 22.69, 0.667, 0.894) DWSH( 22.80, 1.667, 0.977) FAUC( 23.22, 0.167, 0.272) + FAUC( 23.45, 0.167, 0.996) + ENDDHWDAYUSE + DHWDAYUSE "4T" + FAUC( 5.82, 0.333, 0.967) FAUC( 5.85, 0.500, 0.988) FAUC( 6.28, 0.667, 1.418) FAUC( 6.30, 0.833, 0.687) + FAUC( 6.33, 0.167, 0.387) FAUC( 6.41, 1.000, 0.874) CWSH( 8.23, 5.167, 1.019) CWSH( 8.70, 6.833, 0.997) + FAUC( 8.72, 4.333, 0.464) CWSH( 8.91, 0.333, 0.805) CWSH( 8.92, 0.333, 0.900) FAUC( 9.18, 0.333, 1.010) + FAUC( 9.33, 0.333, 0.301) FAUC( 9.47, 0.500, 0.745) FAUC( 9.60, 0.333, 1.074) FAUC( 9.89, 0.167, 0.516) + FAUC( 9.97, 0.167, 0.516) FAUC( 10.26, 0.167, 0.387) FAUC( 10.29, 0.500, 1.074) FAUC( 10.36, 0.167, 0.301) + FAUC( 10.40, 0.333, 0.559) FAUC( 10.45, 0.500, 0.702) FAUC( 11.02, 0.167, 0.215) FAUC( 11.03, 0.333, 1.096) + FAUC( 11.08, 0.167, 0.687) FAUC( 11.47, 0.167, 0.301) FAUC( 11.74, 0.333, 0.494) FAUC( 11.78, 0.167, 0.602) + FAUC( 12.31, 0.333, 1.010) FAUC( 12.38, 0.167, 0.387) FAUC( 12.41, 0.333, 1.117) FAUC( 12.50, 0.167, 0.215) + FAUC( 12.75, 0.167, 0.215) FAUC( 12.93, 0.667, 0.559) FAUC( 13.04, 0.167, 0.430) FAUC( 13.77, 0.333, 0.602) + FAUC( 14.03, 0.333, 1.117) FAUC( 14.10, 0.333, 1.203) FAUC( 14.47, 0.333, 1.117) FAUC( 14.54, 0.333, 1.160) + FAUC( 14.69, 0.333, 0.365) FAUC( 14.72, 0.167, 0.344) FAUC( 15.39, 0.333, 0.258) FAUC( 17.29, 0.833, 0.765) + FAUC( 17.36, 0.333, 0.365) FAUC( 17.77, 0.167, 0.730) FAUC( 17.84, 0.500, 1.189) FAUC( 18.07, 0.333, 0.473) + FAUC( 18.07, 0.500, 0.816) FAUC( 18.12, 0.333, 0.215) SHWR( 18.27, 7.167, 1.159) FAUC( 18.46, 0.500, 0.888) + FAUC( 18.47, 0.333, 0.645) FAUC( 18.52, 0.333, 0.365) FAUC( 18.54, 1.333, 0.532) FAUC( 18.62, 0.500, 0.602) + FAUC( 18.69, 1.333, 0.585) SHWR( 18.72, 7.500, 0.966) FAUC( 18.75, 0.833, 0.292) FAUC( 18.78, 0.333, 0.193) + FAUC( 18.79, 1.167, 0.381) SHWR( 19.22, 8.333, 0.833) FAUC( 19.61, 0.833, 0.920) FAUC( 19.63, 0.167, 1.504) + FAUC( 19.98, 0.167, 1.031) FAUC( 19.99, 0.167, 0.215) FAUC( 20.05, 0.167, 0.215) FAUC( 20.05, 0.500, 0.816) + FAUC( 20.06, 0.167, 0.301) FAUC( 20.08, 0.667, 0.816) FAUC( 20.11, 0.333, 0.258) FAUC( 20.13, 0.167, 0.258) + FAUC( 20.14, 0.500, 0.530) FAUC( 20.15, 0.500, 0.415) FAUC( 20.18, 0.333, 0.408) FAUC( 20.21, 0.167, 0.516) + FAUC( 20.35, 0.167, 0.730) FAUC( 20.37, 0.167, 0.816) FAUC( 20.53, 0.333, 0.559) FAUC( 20.60, 0.333, 0.559) + FAUC( 20.67, 0.167, 0.301) FAUC( 20.68, 0.500, 0.874) FAUC( 20.70, 0.333, 0.516) FAUC( 20.94, 0.500, 1.146) + FAUC( 20.98, 0.167, 0.516) FAUC( 21.00, 0.667, 1.063) FAUC( 21.30, 0.167, 0.430) FAUC( 21.31, 0.167, 0.215) + FAUC( 21.33, 0.500, 1.318) FAUC( 21.38, 0.667, 0.580) FAUC( 21.52, 0.833, 0.808) FAUC( 21.58, 0.167, 0.430) + FAUC( 21.59, 0.167, 0.730) FAUC( 21.65, 0.667, 0.784) FAUC( 21.68, 1.333, 0.548) SHWR( 21.89, 11.667, 0.994) + FAUC( 22.18, 0.167, 0.430) FAUC( 23.68, 0.500, 0.501) + ENDDHWDAYUSE + DHWDAYUSE "4W" + FAUC( 0.89, 0.167, 0.246) FAUC( 1.02, 0.167, 0.246) FAUC( 1.04, 0.167, 0.246) FAUC( 1.05, 0.167, 0.344) + FAUC( 1.05, 0.167, 0.246) FAUC( 1.43, 0.167, 0.492) FAUC( 2.34, 0.167, 0.246) FAUC( 3.18, 0.167, 0.935) + FAUC( 4.05, 0.167, 0.836) FAUC( 4.19, 0.167, 0.344) FAUC( 4.81, 0.167, 1.033) FAUC( 4.93, 0.167, 0.344) + FAUC( 6.33, 0.500, 0.886) FAUC( 6.35, 0.333, 1.451) FAUC( 6.38, 0.167, 0.344) FAUC( 6.39, 0.167, 0.344) + FAUC( 6.39, 0.167, 0.344) FAUC( 6.40, 0.167, 0.246) FAUC( 6.41, 0.167, 0.344) FAUC( 6.45, 0.167, 0.246) + FAUC( 6.46, 0.167, 0.246) SHWR( 6.94, 8.167, 1.708) FAUC( 7.11, 0.167, 0.246) FAUC( 7.13, 0.333, 0.246) + FAUC( 7.17, 0.667, 0.357) FAUC( 7.19, 0.167, 0.246) FAUC( 7.23, 0.167, 1.722) FAUC( 7.27, 0.500, 0.836) + FAUC( 7.30, 0.167, 0.492) FAUC( 7.36, 0.167, 0.344) FAUC( 7.37, 0.167, 0.246) FAUC( 7.52, 0.167, 0.443) + FAUC( 7.53, 0.167, 1.033) FAUC( 7.53, 0.167, 1.427) FAUC( 7.54, 0.500, 2.214) FAUC( 7.57, 0.167, 0.246) + FAUC( 7.59, 0.167, 0.590) FAUC( 7.66, 0.167, 1.821) FAUC( 7.70, 0.333, 1.378) FAUC( 7.72, 0.333, 0.443) + FAUC( 7.74, 0.167, 0.492) FAUC( 7.78, 0.167, 0.590) FAUC( 7.79, 0.333, 0.246) FAUC( 7.81, 0.167, 0.492) + FAUC( 7.82, 0.167, 0.344) FAUC( 7.84, 0.333, 1.009) FAUC( 7.85, 0.167, 0.246) FAUC( 7.85, 0.500, 0.508) + FAUC( 7.87, 0.167, 0.689) FAUC( 7.88, 0.333, 0.812) FAUC( 7.90, 0.167, 0.443) FAUC( 7.90, 0.167, 1.624) + FAUC( 7.90, 4.333, 0.691) FAUC( 7.98, 0.167, 0.492) SHWR( 7.99, 4.000, 1.708) FAUC( 8.01, 0.333, 0.812) + FAUC( 8.06, 0.333, 0.295) FAUC( 8.07, 0.167, 0.246) FAUC( 8.13, 0.167, 0.295) FAUC( 8.22, 0.167, 2.313) + FAUC( 8.38, 0.167, 0.590) SHWR( 8.51, 4.667, 1.708) FAUC( 8.56, 0.333, 1.107) CWSH( 8.59, 1.167, 10.843) + FAUC( 8.59, 0.333, 1.747) CWSH( 8.62, 4.667, 1.225) FAUC( 8.70, 0.167, 1.427) FAUC( 8.70, 0.167, 0.344) + FAUC( 8.71, 0.500, 1.739) FAUC( 8.72, 0.333, 0.517) FAUC( 8.73, 0.333, 0.344) FAUC( 8.74, 0.167, 0.935) + FAUC( 8.75, 0.167, 1.624) FAUC( 8.76, 0.167, 1.427) FAUC( 8.77, 0.167, 1.082) FAUC( 8.78, 0.167, 1.033) + FAUC( 8.78, 0.167, 0.935) FAUC( 8.79, 0.167, 0.492) FAUC( 8.79, 0.167, 0.935) FAUC( 8.80, 0.167, 1.181) + FAUC( 8.81, 0.167, 0.492) FAUC( 8.81, 0.167, 0.443) FAUC( 8.82, 0.167, 0.689) FAUC( 8.82, 0.167, 0.344) + FAUC( 8.83, 0.167, 0.787) FAUC( 8.84, 0.167, 0.246) FAUC( 8.84, 0.167, 0.443) FAUC( 8.85, 0.167, 0.443) + FAUC( 8.86, 0.167, 0.344) FAUC( 8.86, 0.167, 0.492) FAUC( 8.87, 0.167, 0.492) FAUC( 8.87, 0.167, 0.443) + FAUC( 8.88, 0.167, 0.443) FAUC( 8.88, 0.167, 0.492) FAUC( 8.90, 0.167, 0.246) FAUC( 8.92, 0.167, 0.590) + CWSH( 8.92, 0.500, 0.419) CWSH( 8.94, 0.333, 0.589) FAUC( 8.95, 0.167, 0.492) FAUC( 8.96, 0.167, 0.492) + FAUC( 8.96, 0.167, 0.689) FAUC( 8.97, 0.167, 0.689) CWSH( 8.97, 10.167, 0.595) FAUC( 9.15, 0.167, 0.344) + FAUC( 9.15, 0.167, 0.246) FAUC( 9.16, 0.167, 0.344) FAUC( 9.18, 0.167, 0.344) FAUC( 9.19, 0.333, 0.295) + FAUC( 9.19, 0.167, 2.903) FAUC( 9.20, 0.167, 0.443) FAUC( 9.21, 0.167, 0.590) FAUC( 9.21, 0.167, 0.344) + CWSH( 9.22, 0.667, 0.397) CWSH( 9.23, 0.500, 0.424) FAUC( 9.27, 0.167, 0.443) FAUC( 9.27, 0.167, 0.246) + FAUC( 9.31, 0.167, 0.344) FAUC( 9.32, 0.167, 0.246) FAUC( 9.41, 0.167, 1.870) FAUC( 9.44, 0.167, 0.246) + FAUC( 9.51, 0.167, 0.344) FAUC( 9.51, 0.167, 0.492) FAUC( 9.71, 0.167, 0.246) FAUC( 9.87, 0.167, 0.443) + FAUC( 10.72, 0.167, 0.295) FAUC( 11.35, 0.167, 0.492) FAUC( 11.38, 0.167, 1.033) FAUC( 11.92, 0.167, 1.279) + FAUC( 11.94, 0.167, 0.394) FAUC( 12.73, 0.167, 0.787) FAUC( 12.85, 0.167, 0.344) FAUC( 13.01, 0.167, 0.246) + FAUC( 13.10, 0.167, 1.378) FAUC( 13.42, 0.167, 0.394) FAUC( 13.42, 0.167, 0.344) FAUC( 13.43, 0.167, 0.443) + FAUC( 13.60, 0.167, 0.344) FAUC( 13.70, 0.333, 0.738) FAUC( 13.74, 0.167, 0.836) FAUC( 13.76, 0.333, 0.541) + FAUC( 13.79, 0.167, 0.590) FAUC( 14.06, 0.333, 0.467) FAUC( 14.44, 0.333, 0.910) FAUC( 14.79, 0.167, 0.394) + FAUC( 16.24, 0.667, 1.304) FAUC( 16.76, 0.167, 0.344) FAUC( 17.08, 0.167, 0.590) FAUC( 17.38, 0.167, 0.246) + FAUC( 17.92, 0.167, 0.344) FAUC( 17.93, 0.167, 0.443) FAUC( 17.93, 0.167, 0.443) FAUC( 17.99, 0.167, 0.246) + FAUC( 18.00, 0.167, 1.082) FAUC( 18.01, 0.167, 0.246) FAUC( 18.02, 0.167, 0.246) FAUC( 18.02, 0.167, 0.246) + FAUC( 18.04, 0.167, 0.443) FAUC( 18.04, 0.167, 0.246) FAUC( 18.05, 0.167, 0.443) FAUC( 18.05, 0.167, 0.246) + FAUC( 18.06, 0.167, 0.246) FAUC( 18.07, 0.167, 0.344) FAUC( 18.07, 0.167, 0.246) FAUC( 18.08, 0.167, 0.443) + FAUC( 18.09, 0.167, 0.590) FAUC( 18.09, 0.167, 0.787) FAUC( 18.10, 0.167, 0.935) FAUC( 18.15, 0.167, 0.689) + FAUC( 18.33, 0.167, 0.295) FAUC( 18.34, 0.167, 0.344) FAUC( 18.38, 0.167, 0.689) FAUC( 18.39, 0.167, 0.689) + FAUC( 18.40, 0.167, 0.394) FAUC( 18.41, 0.167, 0.935) FAUC( 18.42, 0.167, 0.935) FAUC( 18.42, 0.167, 0.246) + FAUC( 18.43, 0.167, 0.295) FAUC( 18.44, 0.167, 0.246) FAUC( 18.45, 0.167, 0.246) FAUC( 18.46, 0.167, 0.344) + FAUC( 18.47, 0.167, 0.443) FAUC( 18.48, 0.167, 0.246) FAUC( 18.50, 0.167, 0.246) FAUC( 18.52, 0.167, 0.246) + FAUC( 18.56, 0.167, 0.295) FAUC( 18.57, 0.167, 0.246) FAUC( 18.62, 0.167, 0.344) FAUC( 18.79, 0.167, 0.246) + FAUC( 18.79, 0.167, 1.525) FAUC( 18.85, 0.167, 1.082) FAUC( 18.86, 0.167, 0.443) FAUC( 18.91, 0.333, 0.344) + FAUC( 19.04, 0.167, 0.344) FAUC( 19.07, 0.167, 0.344) FAUC( 19.16, 0.167, 1.230) FAUC( 19.17, 0.167, 0.344) + FAUC( 19.17, 0.167, 0.246) FAUC( 19.18, 0.167, 0.443) FAUC( 19.18, 0.167, 0.344) FAUC( 19.20, 0.167, 0.344) + FAUC( 19.20, 0.167, 0.246) FAUC( 19.21, 0.167, 0.344) FAUC( 19.21, 0.167, 0.836) FAUC( 19.22, 0.167, 0.344) + FAUC( 19.22, 0.167, 0.443) FAUC( 19.25, 0.167, 0.394) FAUC( 19.26, 0.167, 0.443) FAUC( 19.27, 0.167, 0.344) + FAUC( 19.27, 0.167, 0.935) FAUC( 19.28, 1.000, 0.623) FAUC( 19.30, 0.167, 0.344) SHWR( 20.13, 6.667, 1.708) + FAUC( 20.25, 0.333, 0.246) FAUC( 20.30, 0.167, 0.590) FAUC( 20.34, 0.167, 0.590) FAUC( 20.42, 0.167, 0.295) + FAUC( 20.53, 0.167, 0.246) FAUC( 20.64, 0.500, 0.279) FAUC( 20.65, 0.167, 0.443) FAUC( 21.18, 0.167, 1.722) + FAUC( 21.24, 0.167, 0.590) CWSH( 21.26, 2.500, 1.878) CWSH( 21.44, 2.333, 1.014) FAUC( 21.48, 0.167, 0.246) + CWSH( 21.53, 0.333, 0.766) CWSH( 21.54, 0.333, 0.860) CWSH( 21.60, 4.167, 1.075) FAUC( 21.73, 0.167, 0.246) + CWSH( 21.77, 0.333, 0.825) CWSH( 21.78, 0.333, 0.884) FAUC( 21.80, 0.167, 0.246) FAUC( 21.93, 0.167, 0.443) + FAUC( 21.94, 0.167, 0.492) FAUC( 21.94, 1.333, 0.861) FAUC( 21.96, 0.167, 1.279) FAUC( 21.97, 0.333, 0.418) + FAUC( 21.99, 0.667, 0.664) FAUC( 22.01, 0.167, 1.033) FAUC( 22.02, 0.167, 0.787) FAUC( 22.02, 0.333, 0.713) + FAUC( 22.03, 0.167, 0.590) FAUC( 22.04, 0.167, 0.344) FAUC( 22.05, 0.167, 1.082) FAUC( 22.06, 0.167, 1.033) + FAUC( 22.07, 0.167, 2.116) FAUC( 22.07, 0.167, 2.067) FAUC( 22.08, 0.167, 0.836) FAUC( 22.12, 0.167, 0.443) + FAUC( 22.12, 0.167, 0.344) FAUC( 22.13, 0.167, 0.344) FAUC( 22.13, 0.167, 0.246) FAUC( 22.14, 0.167, 0.246) + FAUC( 22.15, 0.167, 0.344) FAUC( 22.16, 0.167, 0.246) FAUC( 22.16, 0.167, 0.344) FAUC( 22.17, 0.167, 0.295) + FAUC( 22.18, 0.167, 0.246) FAUC( 22.19, 0.167, 0.246) FAUC( 22.19, 0.167, 0.492) FAUC( 22.20, 0.167, 0.246) + FAUC( 22.20, 0.167, 0.246) FAUC( 22.21, 0.167, 0.344) FAUC( 22.61, 0.167, 0.787) FAUC( 22.75, 0.167, 0.344) + FAUC( 23.23, 0.167, 0.246) FAUC( 23.45, 0.333, 0.640) + ENDDHWDAYUSE + DHWDAYUSE "4R" + FAUC( 5.88, 1.333, 0.333) FAUC( 5.92, 0.333, 0.215) FAUC( 5.97, 0.167, 0.215) FAUC( 5.99, 0.333, 0.451) + FAUC( 6.02, 1.000, 0.666) FAUC( 6.35, 0.167, 0.258) FAUC( 6.37, 0.167, 0.516) SHWR( 6.43, 8.833, 1.166) + SHWR( 6.72, 6.833, 1.169) FAUC( 8.16, 0.333, 0.430) FAUC( 8.20, 0.167, 0.516) FAUC( 8.26, 0.167, 0.215) + FAUC( 8.29, 0.167, 0.430) FAUC( 14.54, 0.167, 0.215) FAUC( 14.59, 0.333, 0.902) FAUC( 15.15, 1.833, 1.102) + FAUC( 16.67, 0.333, 0.709) FAUC( 16.68, 0.333, 0.623) FAUC( 16.72, 0.167, 0.258) FAUC( 18.85, 0.167, 0.773) + FAUC( 18.95, 3.000, 1.241) FAUC( 19.20, 0.167, 0.516) FAUC( 19.31, 0.167, 0.258) FAUC( 19.33, 3.500, 1.191) + FAUC( 19.41, 0.500, 0.401) FAUC( 19.43, 0.167, 0.258) FAUC( 19.44, 0.167, 0.602) FAUC( 19.49, 0.167, 0.301) + FAUC( 19.50, 0.333, 0.709) FAUC( 19.53, 4.000, 0.881) FAUC( 20.03, 0.167, 0.430) FAUC( 20.07, 0.167, 0.945) + FAUC( 20.46, 0.167, 0.301) FAUC( 20.47, 0.333, 0.430) FAUC( 20.49, 0.167, 0.215) FAUC( 20.65, 1.167, 1.117) + FAUC( 20.91, 0.500, 1.060) FAUC( 20.92, 0.167, 0.301) FAUC( 21.64, 0.167, 0.215) + ENDDHWDAYUSE + DHWDAYUSE "4F" + FAUC( 3.70, 0.167, 0.226) FAUC( 4.25, 0.167, 0.860) FAUC( 4.26, 0.167, 0.407) FAUC( 4.27, 0.333, 0.838) + SHWR( 7.12, 10.667, 1.572) FAUC( 7.36, 1.333, 0.555) FAUC( 12.97, 0.167, 0.272) FAUC( 13.00, 1.500, 0.936) + SHWR( 13.40, 6.333, 1.572) FAUC( 13.91, 0.167, 0.407) BATH( 18.94, 2.000, 3.781) FAUC( 19.18, 0.167, 0.498) + FAUC( 19.18, 4.500, 1.125) FAUC( 19.27, 0.667, 0.962) FAUC( 19.31, 1.167, 0.931) FAUC( 19.33, 0.333, 0.724) + FAUC( 21.81, 1.333, 0.945) FAUC( 21.92, 0.333, 1.087) + ENDDHWDAYUSE + DHWDAYUSE "4S" + SHWR( 8.47, 11.333, 1.572) FAUC( 8.52, 1.000, 0.770) FAUC( 9.98, 3.333, 0.844) FAUC( 10.41, 1.000, 0.574) + FAUC( 10.69, 0.167, 1.041) FAUC( 13.21, 0.167, 0.226) FAUC( 13.21, 0.167, 0.543) FAUC( 14.80, 0.333, 1.041) + FAUC( 14.81, 2.167, 0.028) FAUC( 14.84, 0.500, 0.815) SHWR( 14.91, 22.000, 1.572) CWSH( 18.71, 1.833, 1.030) + CWSH( 18.76, 0.333, 0.841) CWSH( 18.85, 0.167, 0.156) FAUC( 18.85, 0.167, 0.860) CWSH( 18.96, 0.667, 1.261) + CWSH( 19.02, 0.667, 0.739) CWSH( 19.03, 2.000, 1.323) FAUC( 19.13, 0.167, 0.272) CWSH( 19.15, 2.833, 1.165) + FAUC( 19.22, 0.167, 0.272) CWSH( 19.32, 0.167, 0.778) CWSH( 19.32, 2.333, 1.305) FAUC( 19.41, 0.167, 0.272) + FAUC( 19.44, 0.167, 0.543) FAUC( 19.79, 4.167, 0.994) FAUC( 19.91, 0.667, 0.724) FAUC( 19.98, 0.333, 0.951) + FAUC( 20.05, 0.167, 0.407) FAUC( 20.71, 3.500, 1.026) FAUC( 22.09, 0.333, 0.362) FAUC( 22.11, 0.333, 0.792) + FAUC( 22.14, 2.333, 0.986) FAUC( 22.19, 1.333, 0.696) FAUC( 22.23, 1.000, 0.928) FAUC( 22.27, 0.167, 0.226) + FAUC( 22.29, 0.167, 0.226) FAUC( 22.29, 0.667, 0.770) FAUC( 22.33, 0.500, 0.951) FAUC( 22.59, 0.167, 0.996) + FAUC( 22.63, 1.167, 0.990) CWSH( 23.40, 2.000, 1.415) CWSH( 23.45, 0.333, 0.512) FAUC( 23.61, 0.167, 0.272) + FAUC( 23.63, 1.667, 1.136) CWSH( 23.67, 0.500, 1.333) CWSH( 23.73, 0.167, 0.800) CWSH( 23.74, 1.833, 1.352) + FAUC( 23.80, 1.500, 0.750) CWSH( 23.85, 2.500, 1.073) CWSH( 23.98, 0.167, 0.800) CWSH( 23.98, 2.667, 1.333) + ENDDHWDAYUSE + DHWDAYUSE "4U" + FAUC( 1.16, 0.167, 0.272) FAUC( 1.22, 1.167, 0.640) FAUC( 1.25, 1.333, 0.560) FAUC( 8.54, 1.000, 0.792) + FAUC( 8.57, 0.500, 0.890) FAUC( 8.58, 0.667, 1.189) FAUC( 8.60, 0.500, 0.785) FAUC( 8.61, 0.167, 0.589) + FAUC( 9.02, 1.667, 1.127) FAUC( 9.10, 0.500, 0.785) FAUC( 9.11, 0.500, 0.287) FAUC( 9.25, 0.167, 0.906) + FAUC( 9.33, 2.000, 0.939) FAUC( 9.36, 3.000, 0.888) FAUC( 9.42, 0.833, 1.005) FAUC( 9.52, 0.333, 0.294) + FAUC( 9.79, 0.500, 0.890) FAUC( 9.99, 3.167, 1.168) CWSH( 10.14, 5.000, 0.861) CWSH( 10.52, 0.167, 0.319) + CWSH( 10.53, 0.167, 0.564) CWSH( 10.58, 4.833, 0.827) CWSH( 10.76, 0.167, 0.319) CWSH( 10.77, 0.333, 0.282) + FAUC( 10.81, 0.333, 0.883) FAUC( 10.82, 0.667, 0.781) CWSH( 10.86, 4.667, 0.868) FAUC( 11.11, 0.333, 0.747) + FAUC( 11.29, 1.167, 0.724) FAUC( 11.30, 0.500, 0.679) FAUC( 11.32, 0.333, 0.747) FAUC( 11.64, 0.333, 0.294) + FAUC( 11.71, 0.167, 0.272) FAUC( 12.10, 0.500, 0.392) SHWR( 12.23, 6.667, 1.572) BATH( 12.44, 2.167, 3.534) + FAUC( 12.46, 0.500, 0.604) FAUC( 12.48, 0.333, 0.747) FAUC( 12.48, 1.000, 0.596) FAUC( 12.56, 0.167, 0.906) + BATH( 12.60, 0.833, 3.886) FAUC( 12.63, 0.833, 0.417) FAUC( 12.66, 0.333, 0.453) FAUC( 19.16, 0.167, 1.494) + FAUC( 20.51, 1.000, 0.649) FAUC( 21.08, 0.833, 1.123) FAUC( 21.10, 0.167, 0.589) FAUC( 21.12, 0.167, 0.272) + FAUC( 21.15, 0.667, 0.747) FAUC( 21.17, 1.333, 1.721) FAUC( 21.18, 0.833, 0.389) FAUC( 21.20, 1.667, 0.946) + DWSH( 21.83, 1.833, 1.336) DWSH( 22.06, 1.833, 1.392) FAUC( 22.09, 0.167, 0.226) FAUC( 22.54, 0.167, 0.589) + FAUC( 23.18, 0.333, 0.294) FAUC( 23.93, 2.833, 1.071) + ENDDHWDAYUSE + DHWDAYUSE "4H" + FAUC( 4.71, 0.167, 0.403) FAUC( 5.30, 2.500, 1.117) FAUC( 5.43, 5.167, 1.143) FAUC( 5.52, 0.333, 0.749) + SHWR( 6.78, 5.000, 1.538) FAUC( 6.98, 6.667, 0.425) SHWR( 7.09, 8.667, 1.787) FAUC( 7.11, 2.167, 0.642) + FAUC( 7.33, 1.000, 0.662) FAUC( 7.71, 3.000, 1.181) CWSH( 7.79, 7.500, 0.868) CWSH( 8.18, 3.833, 0.880) + CWSH( 8.25, 2.833, 0.823) CWSH( 8.39, 0.833, 0.253) CWSH( 8.40, 0.667, 0.339) FAUC( 11.47, 0.500, 0.806) + CWSH( 11.52, 4.500, 0.788) FAUC( 11.85, 0.333, 1.210) FAUC( 11.92, 0.500, 0.634) CWSH( 11.95, 9.333, 0.350) + FAUC( 11.97, 0.500, 0.442) FAUC( 11.99, 1.000, 0.854) FAUC( 12.05, 0.500, 0.691) CWSH( 12.21, 0.333, 0.264) + CWSH( 12.22, 0.333, 0.287) FAUC( 12.29, 0.333, 0.461) CWSH( 12.32, 3.667, 0.776) FAUC( 12.35, 0.167, 0.979) + FAUC( 12.36, 0.333, 1.699) FAUC( 12.52, 0.833, 2.673) CWSH( 12.57, 7.667, 0.342) FAUC( 12.73, 0.167, 0.403) + CWSH( 12.80, 0.333, 0.264) CWSH( 12.81, 0.333, 0.287) FAUC( 12.82, 0.167, 0.403) FAUC( 13.46, 0.333, 1.066) + FAUC( 13.48, 0.500, 0.998) FAUC( 13.52, 1.500, 1.677) CWSH( 13.78, 3.333, 1.838) FAUC( 13.80, 1.000, 1.834) + FAUC( 14.01, 0.167, 0.403) CWSH( 14.06, 7.167, 0.846) CWSH( 14.28, 0.500, 0.443) CWSH( 14.29, 0.500, 0.481) + FAUC( 16.99, 0.167, 0.576) FAUC( 17.03, 0.333, 1.210) FAUC( 18.15, 0.167, 0.691) FAUC( 18.57, 0.167, 0.691) + FAUC( 18.85, 0.167, 0.403) FAUC( 21.04, 0.500, 0.864) FAUC( 21.07, 0.500, 1.843) FAUC( 21.60, 0.667, 1.728) + SHWR( 21.74, 10.667, 1.436) FAUC( 21.81, 1.833, 0.854) FAUC( 21.95, 3.500, 1.116) FAUC( 22.04, 0.167, 0.806) + ENDDHWDAYUSE + + // 5 person + DHWDAYUSE "5M" + FAUC( 1.15, 0.167, 0.864) FAUC( 2.02, 0.167, 0.634) FAUC( 3.14, 0.167, 0.346) FAUC( 3.16, 0.167, 0.288) + FAUC( 3.40, 0.167, 0.346) FAUC( 4.87, 0.167, 0.288) FAUC( 5.25, 0.167, 0.518) FAUC( 6.72, 0.167, 0.634) + FAUC( 6.73, 0.167, 0.576) FAUC( 6.79, 0.167, 0.979) FAUC( 6.82, 0.667, 0.878) SHWR( 6.84, 8.333, 2.000) + FAUC( 7.00, 0.167, 0.518) FAUC( 7.02, 0.833, 1.578) FAUC( 7.23, 0.333, 0.490) FAUC( 7.29, 2.333, 1.205) + FAUC( 7.37, 0.667, 1.368) FAUC( 7.40, 0.167, 0.634) FAUC( 7.40, 0.167, 0.346) FAUC( 7.41, 0.333, 1.354) + FAUC( 7.46, 0.167, 0.461) FAUC( 7.47, 0.167, 0.346) FAUC( 7.56, 0.167, 0.518) FAUC( 7.59, 0.167, 0.518) + FAUC( 7.59, 0.167, 0.403) FAUC( 7.61, 0.167, 0.403) FAUC( 7.62, 0.333, 0.461) FAUC( 7.64, 0.167, 0.691) + FAUC( 7.72, 0.167, 0.864) FAUC( 7.78, 0.333, 0.374) FAUC( 7.92, 1.167, 1.177) FAUC( 7.94, 0.833, 1.152) + FAUC( 8.04, 0.167, 0.691) FAUC( 8.05, 0.333, 0.950) FAUC( 8.21, 0.333, 0.778) FAUC( 8.25, 0.167, 0.403) + FAUC( 8.27, 0.500, 1.421) FAUC( 8.35, 1.000, 0.470) FAUC( 8.37, 0.167, 0.403) FAUC( 8.57, 0.167, 0.461) + FAUC( 8.62, 0.167, 0.346) FAUC( 8.86, 0.333, 0.864) FAUC( 8.88, 0.167, 0.403) CWSH( 8.90, 3.500, 1.326) + CWSH( 9.26, 2.000, 1.578) CWSH( 9.30, 0.667, 1.162) CWSH( 9.41, 0.500, 1.288) CWSH( 9.43, 2.167, 1.586) + FAUC( 10.04, 0.167, 0.403) FAUC( 10.11, 0.167, 0.288) FAUC( 10.13, 0.167, 0.346) FAUC( 10.18, 0.167, 0.403) + FAUC( 10.19, 0.167, 0.461) FAUC( 10.20, 0.167, 0.346) FAUC( 10.21, 0.167, 0.346) FAUC( 10.44, 0.167, 0.461) + CWSH( 10.79, 1.833, 1.044) CWSH( 10.82, 1.000, 1.334) CWSH( 10.84, 0.333, 1.292) CWSH( 10.89, 0.333, 0.944) + CWSH( 11.14, 2.333, 1.466) CWSH( 11.20, 2.833, 0.348) CWSH( 11.31, 0.500, 1.226) CWSH( 11.32, 3.000, 1.212) + FAUC( 12.67, 1.000, 1.162) FAUC( 12.99, 0.333, 1.181) FAUC( 13.01, 0.833, 1.555) FAUC( 13.07, 0.167, 0.403) + FAUC( 13.16, 0.167, 0.346) FAUC( 13.17, 0.167, 0.403) FAUC( 13.21, 0.167, 0.346) FAUC( 13.23, 0.167, 0.576) + FAUC( 13.25, 0.167, 0.403) FAUC( 13.33, 0.667, 0.994) FAUC( 13.51, 0.333, 0.922) SHWR( 13.53, 7.167, 1.909) + FAUC( 13.69, 0.167, 0.346) FAUC( 13.74, 0.167, 0.518) FAUC( 13.97, 1.000, 1.200) FAUC( 14.52, 0.500, 1.344) + FAUC( 14.90, 0.167, 0.346) FAUC( 16.57, 0.167, 1.613) FAUC( 16.64, 0.167, 0.749) FAUC( 16.83, 0.167, 0.346) + FAUC( 16.83, 0.167, 0.461) FAUC( 16.95, 0.167, 0.403) FAUC( 17.04, 0.167, 0.346) FAUC( 17.06, 0.167, 0.346) + FAUC( 17.08, 0.167, 0.403) FAUC( 17.08, 0.167, 0.346) FAUC( 17.09, 0.167, 0.691) FAUC( 17.10, 0.333, 0.374) + FAUC( 17.41, 0.167, 0.576) FAUC( 17.42, 0.167, 0.461) FAUC( 17.47, 0.167, 0.403) FAUC( 17.49, 0.500, 0.557) + FAUC( 17.54, 0.167, 0.461) FAUC( 17.56, 0.167, 0.749) FAUC( 17.69, 0.333, 1.296) FAUC( 18.08, 0.167, 0.461) + FAUC( 18.09, 0.500, 1.286) FAUC( 18.15, 0.167, 0.346) FAUC( 18.21, 0.333, 0.605) FAUC( 18.29, 0.167, 0.806) + FAUC( 18.32, 0.333, 0.403) FAUC( 18.34, 0.500, 1.402) FAUC( 18.36, 0.333, 0.691) FAUC( 18.47, 0.167, 0.346) + FAUC( 18.49, 0.167, 0.346) FAUC( 18.57, 0.667, 0.749) FAUC( 18.58, 0.167, 0.346) FAUC( 18.69, 0.167, 0.461) + FAUC( 18.90, 0.167, 0.576) FAUC( 18.92, 0.500, 0.595) FAUC( 19.01, 0.167, 0.691) FAUC( 19.04, 0.333, 0.691) + FAUC( 19.39, 1.500, 1.312) FAUC( 19.43, 0.333, 0.749) FAUC( 19.62, 0.333, 1.008) FAUC( 19.82, 0.167, 0.346) + FAUC( 19.83, 0.333, 0.432) FAUC( 19.84, 0.667, 0.490) FAUC( 19.86, 0.333, 0.518) FAUC( 19.87, 0.167, 0.346) + FAUC( 19.87, 0.333, 0.374) FAUC( 20.20, 0.500, 1.171) SHWR( 20.26, 8.333, 1.926) FAUC( 20.59, 0.167, 0.346) + FAUC( 20.60, 0.167, 0.403) FAUC( 20.63, 0.167, 0.922) FAUC( 20.69, 1.167, 1.555) FAUC( 20.70, 0.167, 1.094) + FAUC( 20.71, 0.167, 0.749) SHWR( 20.87, 12.167, 1.824) FAUC( 21.34, 0.167, 0.346) FAUC( 21.68, 0.333, 0.720) + FAUC( 21.70, 0.167, 1.094) FAUC( 21.71, 0.167, 0.403) FAUC( 21.72, 0.167, 0.518) FAUC( 21.74, 0.833, 1.567) + FAUC( 22.25, 1.000, 1.181) FAUC( 22.27, 3.167, 1.834) FAUC( 22.34, 1.167, 1.284) DWSH( 22.36, 1.833, 0.620) + FAUC( 22.36, 1.667, 0.703) DWSH( 22.49, 2.167, 0.587) FAUC( 22.50, 0.833, 0.922) FAUC( 22.61, 0.667, 0.115) + DWSH( 23.06, 2.167, 0.595) FAUC( 23.30, 0.167, 0.634) FAUC( 23.33, 0.167, 0.461) DWSH( 23.33, 2.167, 0.601) + FAUC( 23.76, 0.500, 0.768) + ENDDHWDAYUSE + DHWDAYUSE "5T" + FAUC( 1.66, 1.667, 1.242) FAUC( 1.78, 0.500, 0.516) FAUC( 9.04, 0.333, 0.666) FAUC( 9.06, 0.333, 0.387) + FAUC( 10.34, 0.500, 0.487) FAUC( 10.36, 3.167, 0.787) FAUC( 10.46, 1.667, 0.610) FAUC( 10.53, 0.167, 0.344) + FAUC( 10.54, 0.167, 0.344) FAUC( 10.79, 0.167, 0.301) FAUC( 10.80, 0.333, 0.430) FAUC( 10.94, 0.167, 0.301) + FAUC( 12.92, 0.167, 0.430) FAUC( 12.95, 0.500, 0.516) FAUC( 13.14, 0.333, 0.387) FAUC( 13.86, 0.333, 0.881) + FAUC( 13.94, 0.167, 0.859) FAUC( 14.07, 0.500, 0.945) FAUC( 14.10, 0.167, 0.344) FAUC( 14.11, 0.667, 1.085) + FAUC( 16.34, 2.500, 1.424) BATH( 17.14, 3.167, 2.514) FAUC( 17.22, 0.167, 0.387) FAUC( 17.60, 0.500, 1.003) + FAUC( 17.78, 0.500, 0.358) FAUC( 17.97, 0.333, 0.730) CWSH( 18.07, 4.667, 1.537) FAUC( 18.11, 1.167, 0.657) + FAUC( 18.17, 0.500, 0.673) FAUC( 18.19, 1.333, 0.897) FAUC( 18.28, 0.167, 0.301) FAUC( 18.41, 1.833, 1.469) + CWSH( 18.44, 3.667, 1.493) FAUC( 18.71, 0.167, 0.387) FAUC( 18.72, 0.167, 0.387) FAUC( 18.72, 0.167, 0.387) + CWSH( 18.80, 4.500, 1.320) CWSH( 18.94, 0.333, 1.111) CWSH( 18.95, 0.500, 0.728) CWSH( 19.04, 4.333, 1.379) + FAUC( 19.11, 0.167, 0.344) FAUC( 19.13, 0.167, 0.387) FAUC( 19.13, 0.333, 0.279) SHWR( 21.38, 18.667, 1.492) + FAUC( 21.77, 0.167, 0.387) FAUC( 22.34, 0.333, 0.816) FAUC( 22.44, 0.667, 0.827) FAUC( 22.54, 2.167, 1.048) + FAUC( 22.60, 3.000, 1.120) FAUC( 22.65, 0.667, 0.645) FAUC( 22.68, 1.833, 0.855) FAUC( 22.76, 0.667, 0.698) + FAUC( 22.78, 0.333, 0.580) FAUC( 23.23, 1.500, 0.793) FAUC( 23.29, 0.667, 0.945) FAUC( 23.30, 0.333, 0.730) + FAUC( 23.33, 0.833, 0.954) FAUC( 23.58, 0.833, 0.189) + ENDDHWDAYUSE + DHWDAYUSE "5W" + FAUC( 1.33, 0.167, 0.258) FAUC( 3.30, 0.167, 0.258) FAUC( 4.55, 0.167, 0.258) FAUC( 6.54, 1.000, 2.163) + FAUC( 7.24, 0.833, 0.782) FAUC( 7.33, 0.167, 0.258) FAUC( 7.36, 0.167, 0.988) FAUC( 7.37, 0.167, 0.258) + FAUC( 7.43, 0.833, 1.100) FAUC( 7.46, 1.000, 1.003) FAUC( 7.49, 0.833, 1.289) FAUC( 7.55, 0.167, 0.258) + FAUC( 7.65, 0.167, 0.516) FAUC( 7.74, 0.167, 0.516) FAUC( 8.04, 0.167, 0.258) FAUC( 8.20, 0.167, 1.246) + FAUC( 8.21, 0.167, 0.816) FAUC( 8.25, 0.833, 1.220) CWSH( 8.37, 4.500, 0.905) SHWR( 8.63, 9.500, 1.492) + FAUC( 8.65, 2.167, 0.122) FAUC( 8.73, 3.000, 0.812) CWSH( 8.86, 0.500, 0.464) FAUC( 8.87, 0.167, 0.258) + FAUC( 9.00, 0.167, 1.074) CWSH( 9.08, 4.500, 0.919) FAUC( 9.17, 0.167, 0.258) FAUC( 9.17, 0.667, 1.074) + FAUC( 9.58, 0.167, 0.344) CWSH( 9.78, 0.500, 0.539) FAUC( 9.82, 1.167, 0.663) CWSH( 9.85, 4.333, 0.910) + FAUC( 9.86, 0.167, 1.332) CWSH( 10.37, 2.500, 1.599) FAUC( 10.60, 0.167, 0.258) CWSH( 10.69, 0.667, 0.963) + CWSH( 10.70, 2.167, 1.587) FAUC( 10.76, 0.167, 0.258) FAUC( 10.82, 0.167, 1.504) FAUC( 11.03, 0.833, 0.902) + FAUC( 11.05, 1.667, 1.388) FAUC( 11.07, 0.167, 0.859) FAUC( 11.10, 3.000, 1.332) FAUC( 11.14, 0.167, 0.945) + CWSH( 11.26, 2.833, 1.613) FAUC( 11.28, 0.167, 1.160) FAUC( 11.58, 0.167, 0.258) FAUC( 11.93, 2.167, 1.269) + FAUC( 12.31, 1.167, 2.382) FAUC( 12.36, 0.833, 0.877) FAUC( 12.44, 0.167, 0.602) FAUC( 12.93, 0.167, 0.258) + FAUC( 13.74, 0.167, 0.816) FAUC( 13.76, 0.167, 0.258) FAUC( 13.78, 0.667, 0.978) FAUC( 13.84, 0.833, 1.014) + FAUC( 14.12, 0.167, 1.117) FAUC( 14.31, 0.833, 1.014) FAUC( 14.32, 0.167, 0.687) FAUC( 15.40, 0.167, 1.246) + FAUC( 15.96, 0.500, 1.103) FAUC( 15.98, 1.000, 1.232) FAUC( 16.19, 0.167, 0.730) FAUC( 16.44, 1.167, 1.099) + FAUC( 16.56, 0.500, 1.217) FAUC( 16.77, 0.167, 0.258) FAUC( 17.19, 0.833, 0.894) SHWR( 17.25, 9.500, 1.492) + FAUC( 17.46, 1.000, 0.952) FAUC( 17.53, 0.500, 1.131) FAUC( 17.55, 0.167, 0.258) FAUC( 17.92, 1.333, 1.182) + FAUC( 18.33, 0.667, 1.042) FAUC( 18.35, 1.167, 1.105) FAUC( 18.38, 0.500, 1.017) FAUC( 20.23, 0.833, 0.851) + FAUC( 20.33, 0.167, 0.387) FAUC( 22.78, 3.833, 1.168) SHWR( 22.85, 10.000, 1.492) + ENDDHWDAYUSE + DHWDAYUSE "5R" + FAUC( 6.52, 0.833, 0.533) FAUC( 6.61, 0.167, 0.258) FAUC( 6.62, 0.167, 0.301) FAUC( 6.70, 0.167, 0.301) + FAUC( 6.71, 0.333, 0.494) FAUC( 6.75, 0.333, 0.516) FAUC( 6.91, 0.167, 1.117) FAUC( 7.08, 0.500, 0.616) + FAUC( 7.19, 0.500, 1.089) FAUC( 7.29, 0.833, 0.911) FAUC( 7.32, 0.500, 0.487) FAUC( 7.34, 0.333, 0.709) + FAUC( 7.52, 0.167, 1.160) FAUC( 7.52, 0.333, 0.752) FAUC( 7.55, 1.833, 1.270) FAUC( 7.63, 0.167, 0.258) + FAUC( 8.42, 0.167, 0.301) FAUC( 8.73, 0.500, 0.945) FAUC( 8.80, 0.333, 0.666) FAUC( 8.82, 0.500, 1.332) + FAUC( 8.84, 0.167, 1.074) FAUC( 8.94, 1.500, 1.194) FAUC( 9.22, 0.167, 0.258) FAUC( 10.26, 1.333, 1.654) + FAUC( 10.44, 0.333, 0.602) FAUC( 10.85, 0.167, 0.387) FAUC( 10.87, 0.667, 0.451) FAUC( 10.88, 0.167, 1.160) + FAUC( 10.94, 0.333, 0.258) FAUC( 10.95, 0.333, 0.559) FAUC( 11.09, 0.167, 0.730) FAUC( 11.10, 0.667, 0.752) + FAUC( 11.22, 0.167, 0.301) FAUC( 11.23, 0.167, 0.387) FAUC( 11.35, 0.333, 0.580) SHWR( 15.01, 9.167, 1.492) + FAUC( 16.64, 0.167, 0.430) FAUC( 16.99, 0.333, 0.945) FAUC( 17.02, 1.333, 0.924) FAUC( 17.05, 0.667, 0.913) + FAUC( 17.20, 0.500, 0.702) FAUC( 17.66, 0.667, 0.580) FAUC( 17.76, 1.000, 0.329) FAUC( 19.27, 0.167, 0.344) + FAUC( 19.59, 0.333, 0.387) FAUC( 19.80, 0.167, 0.258) FAUC( 20.00, 0.333, 0.859) FAUC( 20.02, 1.667, 0.988) + FAUC( 20.05, 0.500, 0.716) FAUC( 20.07, 0.500, 0.444) FAUC( 20.51, 0.333, 0.838) FAUC( 20.67, 0.667, 0.806) + FAUC( 21.83, 1.333, 0.725) FAUC( 21.87, 1.333, 1.128) FAUC( 21.94, 0.500, 0.974) + ENDDHWDAYUSE + DHWDAYUSE "5F" + FAUC( 4.79, 0.167, 0.258) FAUC( 4.80, 0.333, 0.279) FAUC( 5.94, 1.000, 0.501) FAUC( 6.12, 0.167, 0.258) + BATH( 6.36, 2.000, 2.551) BATH( 6.42, 2.167, 2.716) FAUC( 6.56, 0.333, 0.322) FAUC( 6.59, 0.833, 0.928) + FAUC( 6.62, 0.333, 0.752) FAUC( 6.66, 0.167, 0.258) FAUC( 6.68, 0.333, 1.353) FAUC( 6.69, 0.167, 1.332) + FAUC( 6.69, 0.333, 2.084) FAUC( 6.70, 0.167, 1.246) FAUC( 6.71, 0.333, 1.332) FAUC( 6.73, 0.667, 0.795) + FAUC( 6.74, 0.167, 0.301) FAUC( 6.75, 0.167, 0.344) FAUC( 6.76, 1.167, 1.602) FAUC( 6.79, 0.167, 1.461) + FAUC( 6.79, 1.167, 0.921) FAUC( 6.82, 0.167, 0.344) FAUC( 6.86, 0.333, 0.881) FAUC( 6.93, 0.333, 0.924) + SHWR( 7.00, 19.667, 1.443) FAUC( 7.00, 3.500, 0.424) FAUC( 7.32, 0.333, 0.559) FAUC( 7.50, 0.167, 0.301) + FAUC( 7.75, 0.167, 0.301) FAUC( 7.90, 1.167, 0.700) FAUC( 10.28, 0.500, 0.301) FAUC( 11.49, 0.167, 0.301) + FAUC( 11.56, 0.167, 0.258) FAUC( 11.58, 1.000, 0.831) FAUC( 11.78, 0.167, 0.430) FAUC( 11.79, 0.167, 0.430) + FAUC( 12.02, 0.167, 1.074) FAUC( 12.05, 1.333, 1.214) FAUC( 12.08, 0.333, 0.773) FAUC( 13.01, 0.667, 0.430) + FAUC( 13.03, 0.167, 0.730) FAUC( 13.07, 0.167, 0.773) FAUC( 13.10, 0.167, 0.730) FAUC( 13.34, 0.167, 0.387) + FAUC( 13.35, 0.167, 0.430) FAUC( 13.46, 0.167, 0.344) FAUC( 13.68, 0.167, 0.430) FAUC( 13.69, 0.167, 0.430) + FAUC( 13.72, 0.167, 0.387) FAUC( 13.82, 0.167, 0.430) FAUC( 13.92, 0.167, 0.430) FAUC( 13.98, 0.167, 0.387) + FAUC( 13.99, 0.167, 0.430) FAUC( 14.05, 0.333, 0.301) FAUC( 14.33, 0.167, 0.387) FAUC( 14.63, 0.167, 0.387) + FAUC( 14.75, 0.167, 0.430) FAUC( 14.78, 0.167, 0.430) FAUC( 14.82, 0.167, 0.430) FAUC( 14.96, 0.167, 0.430) + FAUC( 15.16, 0.167, 0.430) FAUC( 15.24, 0.167, 0.430) FAUC( 15.26, 0.167, 0.387) FAUC( 15.30, 0.167, 0.430) + FAUC( 15.32, 0.167, 0.430) FAUC( 15.36, 0.167, 0.387) FAUC( 15.45, 0.167, 0.387) FAUC( 15.58, 0.167, 0.387) + FAUC( 15.61, 0.333, 0.301) FAUC( 15.64, 0.167, 0.430) FAUC( 15.67, 0.167, 0.430) FAUC( 15.73, 0.167, 0.387) + FAUC( 15.79, 0.167, 0.430) FAUC( 15.87, 0.167, 0.430) FAUC( 16.00, 0.167, 0.430) FAUC( 16.02, 0.167, 0.430) + FAUC( 16.20, 0.167, 0.387) FAUC( 16.31, 0.167, 0.430) FAUC( 16.56, 0.167, 0.430) FAUC( 16.72, 0.167, 0.430) + FAUC( 16.79, 0.167, 0.430) FAUC( 16.82, 0.333, 0.301) FAUC( 16.85, 0.167, 0.387) FAUC( 16.98, 0.167, 0.430) + FAUC( 17.02, 0.167, 0.430) FAUC( 17.13, 0.167, 0.430) FAUC( 17.19, 0.167, 0.430) FAUC( 17.30, 0.833, 0.464) + FAUC( 19.22, 1.000, 0.537) FAUC( 20.28, 0.333, 0.687) FAUC( 20.40, 0.667, 0.537) FAUC( 20.75, 0.500, 0.745) + FAUC( 21.59, 0.333, 0.967) FAUC( 21.64, 0.333, 0.215) FAUC( 21.65, 0.167, 0.387) FAUC( 21.65, 0.333, 0.451) + FAUC( 21.67, 2.667, 0.588) FAUC( 21.73, 1.000, 0.752) FAUC( 21.95, 2.500, 0.152) FAUC( 21.99, 2.833, 0.543) + FAUC( 22.06, 0.833, 0.584) FAUC( 22.09, 1.000, 0.867) FAUC( 23.35, 0.333, 0.709) FAUC( 23.37, 0.167, 0.430) + FAUC( 23.94, 0.333, 0.752) + ENDDHWDAYUSE + DHWDAYUSE "5S" + FAUC( 0.01, 2.167, 0.935) SHWR( 0.07, 5.000, 1.192) FAUC( 5.05, 0.167, 0.859) FAUC( 5.08, 0.167, 0.602) + FAUC( 5.21, 0.167, 0.258) FAUC( 5.23, 0.167, 0.473) FAUC( 5.26, 0.167, 0.945) FAUC( 5.28, 0.500, 1.246) + FAUC( 5.30, 0.167, 0.258) FAUC( 5.42, 1.000, 1.253) FAUC( 5.44, 0.500, 1.174) FAUC( 5.84, 0.167, 0.687) + FAUC( 7.37, 0.167, 0.258) FAUC( 7.41, 1.000, 0.888) FAUC( 7.64, 0.833, 0.722) FAUC( 7.65, 0.167, 0.988) + FAUC( 7.66, 0.167, 0.387) FAUC( 7.78, 0.167, 0.258) FAUC( 8.01, 1.167, 1.117) FAUC( 8.01, 3.333, 0.589) + FAUC( 8.05, 0.833, 0.937) FAUC( 8.18, 1.833, 1.512) FAUC( 8.66, 0.667, 1.031) FAUC( 9.42, 1.000, 2.105) + FAUC( 9.55, 1.000, 1.239) FAUC( 9.56, 0.167, 0.945) FAUC( 9.63, 0.833, 1.023) FAUC( 10.03, 0.167, 0.473) + FAUC( 10.22, 1.333, 1.031) SHWR( 10.34, 7.500, 1.492) FAUC( 10.66, 0.167, 0.473) FAUC( 10.91, 1.500, 1.069) + FAUC( 10.92, 0.500, 0.945) SHWR( 10.97, 6.167, 1.492) FAUC( 11.02, 3.333, 0.677) FAUC( 11.08, 0.167, 0.730) + FAUC( 11.10, 0.167, 0.258) FAUC( 11.15, 0.167, 0.602) FAUC( 11.26, 2.167, 0.992) FAUC( 11.35, 0.833, 0.920) + FAUC( 11.40, 0.167, 0.344) FAUC( 11.87, 0.167, 0.516) FAUC( 12.92, 0.167, 0.602) FAUC( 13.05, 0.167, 0.687) + CWSH( 13.17, 4.500, 0.988) CWSH( 13.26, 1.000, 1.434) FAUC( 13.30, 0.167, 0.344) CWSH( 13.33, 3.167, 1.424) + CWSH( 13.40, 1.833, 1.233) FAUC( 13.43, 0.167, 1.375) FAUC( 13.49, 0.333, 1.697) FAUC( 13.58, 3.833, 1.076) + SHWR( 13.65, 5.833, 1.492) FAUC( 13.80, 1.167, 1.166) FAUC( 13.83, 0.167, 0.258) FAUC( 14.13, 0.167, 0.473) + FAUC( 14.19, 0.500, 0.802) FAUC( 16.24, 0.167, 0.258) FAUC( 16.53, 0.167, 0.258) FAUC( 17.53, 3.167, 1.373) + SHWR( 17.59, 5.833, 1.492) FAUC( 17.84, 0.167, 0.344) FAUC( 18.02, 2.000, 0.720) FAUC( 18.09, 0.167, 0.344) + FAUC( 18.69, 1.000, 1.382) FAUC( 18.74, 0.500, 1.103) FAUC( 18.76, 0.500, 1.103) FAUC( 19.39, 0.667, 1.085) + FAUC( 19.79, 0.667, 1.053) FAUC( 19.84, 0.167, 0.344) FAUC( 20.08, 0.833, 1.220) FAUC( 20.35, 0.667, 0.784) + FAUC( 20.36, 0.833, 0.662) FAUC( 20.71, 0.667, 0.569) FAUC( 20.81, 0.167, 0.816) FAUC( 22.74, 1.000, 0.852) + FAUC( 22.78, 0.167, 0.516) FAUC( 22.78, 1.500, 1.079) SHWR( 23.32, 5.500, 1.492) FAUC( 23.39, 0.167, 1.074) + ENDDHWDAYUSE + DHWDAYUSE "5U" + DWSH( 0.03, 0.167, 0.754) FAUC( 0.48, 0.333, 0.344) FAUC( 7.28, 0.333, 1.225) FAUC( 7.46, 0.167, 0.215) + SHWR( 8.37, 16.833, 1.392) FAUC( 8.62, 0.167, 0.902) FAUC( 8.66, 0.167, 0.215) FAUC( 8.66, 0.167, 0.215) + FAUC( 8.69, 0.167, 0.215) FAUC( 8.79, 0.167, 0.301) FAUC( 9.30, 0.167, 0.215) SHWR( 11.37, 3.333, 1.492) + FAUC( 11.43, 0.167, 0.258) FAUC( 11.76, 0.167, 1.246) FAUC( 11.81, 0.167, 0.387) FAUC( 11.83, 0.167, 0.387) + FAUC( 11.94, 0.167, 0.387) FAUC( 12.23, 0.167, 0.258) FAUC( 12.46, 0.167, 0.301) FAUC( 12.83, 0.167, 0.301) + FAUC( 12.94, 0.500, 0.301) FAUC( 12.95, 0.167, 0.215) FAUC( 13.67, 0.167, 0.387) FAUC( 13.80, 0.500, 0.444) + FAUC( 13.81, 0.167, 0.301) FAUC( 13.82, 0.500, 0.372) FAUC( 13.86, 0.333, 0.301) FAUC( 13.91, 0.667, 0.505) + FAUC( 14.02, 0.167, 0.215) FAUC( 14.04, 0.167, 0.215) FAUC( 14.08, 0.500, 0.802) FAUC( 14.09, 0.167, 0.301) + FAUC( 14.59, 0.667, 0.763) FAUC( 14.61, 0.667, 1.225) FAUC( 14.74, 0.167, 0.215) FAUC( 14.95, 0.167, 0.215) + FAUC( 14.96, 0.167, 0.215) FAUC( 15.44, 0.167, 0.301) FAUC( 16.04, 0.167, 0.215) FAUC( 17.04, 0.167, 0.602) + FAUC( 17.05, 5.833, 1.089) FAUC( 17.17, 0.667, 1.020) FAUC( 17.33, 0.167, 0.215) FAUC( 18.16, 0.333, 0.301) + FAUC( 18.21, 2.500, 1.111) FAUC( 18.35, 0.167, 0.301) FAUC( 18.42, 0.167, 0.215) FAUC( 18.85, 0.500, 1.046) + FAUC( 18.86, 0.500, 0.917) FAUC( 18.88, 0.833, 0.911) FAUC( 19.28, 0.333, 0.344) FAUC( 19.29, 0.167, 0.602) + FAUC( 19.61, 0.167, 0.215) FAUC( 19.79, 0.167, 0.687) CWSH( 19.80, 5.000, 0.797) FAUC( 19.88, 2.500, 1.089) + CWSH( 19.94, 5.833, 0.902) FAUC( 19.99, 1.333, 0.741) CWSH( 20.05, 0.500, 0.437) FAUC( 20.07, 0.667, 1.020) + CWSH( 20.14, 0.333, 0.473) CWSH( 20.18, 4.833, 0.589) CWSH( 20.32, 0.333, 0.534) CWSH( 20.59, 5.167, 1.196) + CWSH( 20.90, 0.500, 0.733) FAUC( 20.92, 0.333, 0.752) CWSH( 20.94, 4.833, 1.191) CWSH( 21.08, 0.500, 0.695) + FAUC( 21.12, 0.167, 0.430) FAUC( 21.14, 0.167, 0.301) FAUC( 21.15, 0.167, 0.215) FAUC( 21.19, 0.167, 0.301) + FAUC( 21.19, 0.167, 0.215) FAUC( 21.20, 0.333, 0.408) FAUC( 21.21, 0.333, 1.117) FAUC( 21.23, 0.167, 0.215) + FAUC( 21.24, 0.167, 0.945) FAUC( 21.25, 0.167, 0.730) FAUC( 21.46, 0.167, 0.215) FAUC( 21.69, 0.167, 0.215) + FAUC( 23.64, 0.333, 0.924) FAUC( 23.71, 0.333, 0.365) + ENDDHWDAYUSE + DHWDAYUSE "5H" + FAUC( 5.72, 0.667, 1.149) FAUC( 5.75, 1.000, 1.110) FAUC( 5.77, 0.167, 0.258) FAUC( 5.84, 0.167, 0.344) + FAUC( 5.87, 0.167, 0.387) FAUC( 5.90, 2.167, 1.005) FAUC( 5.92, 0.167, 0.902) FAUC( 5.95, 1.333, 0.585) + FAUC( 5.96, 0.667, 1.966) FAUC( 6.16, 0.167, 0.258) FAUC( 6.16, 0.167, 0.258) FAUC( 6.17, 0.333, 1.633) + FAUC( 6.19, 0.167, 0.258) FAUC( 7.01, 0.167, 0.258) FAUC( 7.50, 0.833, 0.859) FAUC( 7.52, 0.667, 1.493) + SHWR( 8.09, 6.667, 1.492) FAUC( 8.26, 0.833, 1.126) FAUC( 8.41, 0.167, 1.246) FAUC( 8.42, 0.167, 0.258) + SHWR( 8.59, 3.833, 1.234) FAUC( 8.76, 0.167, 0.602) FAUC( 9.28, 0.167, 0.258) FAUC( 9.32, 0.167, 0.730) + FAUC( 9.33, 0.167, 0.602) FAUC( 9.78, 1.333, 1.257) FAUC( 9.82, 3.000, 0.790) FAUC( 9.86, 0.833, 0.971) + FAUC( 9.88, 0.167, 0.473) FAUC( 9.98, 0.167, 0.687) FAUC( 10.32, 0.167, 0.387) FAUC( 10.57, 0.667, 0.247) + FAUC( 10.59, 0.167, 0.258) FAUC( 10.87, 2.667, 0.615) FAUC( 10.92, 3.000, 0.816) FAUC( 11.16, 0.167, 0.258) + FAUC( 11.22, 0.167, 0.258) FAUC( 11.25, 0.667, 0.612) FAUC( 11.34, 2.333, 0.734) FAUC( 12.05, 1.500, 0.592) + FAUC( 12.21, 3.167, 0.721) FAUC( 12.29, 2.000, 0.627) FAUC( 12.38, 0.500, 1.260) FAUC( 12.40, 0.167, 0.258) + FAUC( 12.60, 1.667, 0.915) FAUC( 12.63, 0.833, 0.954) FAUC( 12.78, 0.167, 0.988) FAUC( 12.88, 1.333, 0.800) + FAUC( 12.92, 0.167, 0.344) FAUC( 13.32, 2.333, 0.746) FAUC( 14.10, 0.167, 0.258) FAUC( 14.41, 1.333, 0.956) + FAUC( 15.32, 1.000, 0.809) FAUC( 15.35, 1.333, 0.999) FAUC( 15.40, 0.167, 0.473) SHWR( 15.40, 7.000, 1.446) + FAUC( 15.53, 0.167, 0.301) FAUC( 15.61, 0.167, 0.816) CWSH( 15.63, 3.333, 0.675) CWSH( 15.95, 0.500, 0.359) + CWSH( 16.02, 3.000, 0.686) FAUC( 16.75, 0.500, 1.246) FAUC( 17.00, 0.167, 0.602) FAUC( 17.06, 0.167, 0.602) + FAUC( 18.50, 0.167, 0.387) FAUC( 18.75, 0.167, 0.687) FAUC( 18.84, 3.333, 1.433) SHWR( 19.00, 7.167, 1.492) + FAUC( 19.13, 0.667, 0.978) CWSH( 19.16, 5.500, 0.720) FAUC( 19.30, 0.667, 0.838) FAUC( 19.40, 0.167, 0.602) + FAUC( 19.48, 1.667, 1.353) FAUC( 19.49, 0.833, 0.610) FAUC( 19.51, 0.167, 0.258) CWSH( 19.54, 0.333, 0.333) + CWSH( 19.56, 5.833, 0.701) FAUC( 19.69, 1.333, 1.139) FAUC( 19.73, 0.333, 1.461) FAUC( 19.75, 0.167, 0.258) + FAUC( 20.11, 1.667, 0.924) FAUC( 21.79, 1.333, 1.638) FAUC( 22.50, 0.667, 1.010) FAUC( 22.52, 0.667, 0.978) + FAUC( 22.56, 1.333, 0.800) FAUC( 22.60, 0.833, 1.040) FAUC( 22.70, 1.333, 1.047) FAUC( 22.73, 0.167, 0.258) + SHWR( 22.94, 7.000, 1.492) FAUC( 23.31, 0.167, 0.258) + ENDDHWDAYUSE + + // 6 person + DHWDAYUSE "6M" + FAUC( 0.23, 0.167, 0.864) FAUC( 2.69, 0.333, 2.333) FAUC( 4.59, 0.167, 0.461) FAUC( 6.77, 0.167, 0.461) + FAUC( 6.78, 0.167, 0.461) SHWR( 7.47, 6.167, 1.374) SHWR( 7.48, 4.500, 2.000) FAUC( 7.60, 2.333, 0.724) + FAUC( 7.65, 1.667, 0.927) FAUC( 8.28, 0.333, 1.555) FAUC( 8.29, 1.667, 1.607) FAUC( 8.32, 1.000, 0.998) + FAUC( 8.33, 0.167, 1.325) FAUC( 8.39, 0.167, 1.094) FAUC( 8.47, 5.667, 1.835) FAUC( 8.64, 0.333, 0.778) + FAUC( 8.66, 1.667, 1.123) FAUC( 9.05, 2.333, 0.724) FAUC( 9.15, 0.500, 0.730) FAUC( 9.19, 0.167, 0.461) + FAUC( 9.24, 0.167, 0.461) FAUC( 9.28, 0.167, 0.461) FAUC( 9.29, 0.167, 0.461) FAUC( 9.32, 0.167, 0.691) + FAUC( 10.02, 0.167, 0.461) FAUC( 11.06, 0.167, 0.461) FAUC( 11.48, 0.167, 0.461) FAUC( 11.63, 0.833, 1.912) + FAUC( 11.66, 0.167, 0.461) FAUC( 11.67, 0.167, 0.691) FAUC( 12.78, 0.500, 1.920) FAUC( 12.81, 0.167, 0.461) + FAUC( 13.14, 1.167, 1.086) FAUC( 13.32, 0.667, 0.994) FAUC( 13.81, 0.167, 0.461) FAUC( 13.89, 0.167, 1.094) + FAUC( 14.04, 0.667, 0.893) FAUC( 14.06, 0.167, 0.691) FAUC( 14.07, 1.000, 1.133) FAUC( 14.27, 0.167, 0.461) + FAUC( 14.63, 0.833, 0.887) FAUC( 14.65, 0.167, 0.461) FAUC( 14.66, 0.333, 0.893) FAUC( 14.68, 3.000, 1.146) + FAUC( 14.73, 0.167, 0.979) FAUC( 14.96, 0.167, 0.691) FAUC( 15.02, 0.333, 0.778) FAUC( 15.54, 0.167, 0.461) + FAUC( 15.66, 0.167, 0.461) FAUC( 15.72, 0.167, 0.922) FAUC( 15.73, 0.167, 0.461) FAUC( 16.14, 2.000, 1.200) + FAUC( 16.18, 0.167, 0.461) FAUC( 16.37, 0.333, 0.806) FAUC( 16.39, 0.667, 1.181) FAUC( 16.43, 0.167, 0.461) + FAUC( 16.70, 0.167, 0.518) FAUC( 16.85, 1.500, 1.107) FAUC( 16.88, 0.333, 0.662) FAUC( 16.97, 0.167, 0.461) + FAUC( 16.98, 2.167, 0.864) FAUC( 17.08, 2.333, 1.197) FAUC( 17.18, 2.000, 0.898) SHWR( 17.40, 9.333, 1.295) + FAUC( 17.77, 0.167, 0.461) FAUC( 17.86, 1.000, 1.142) FAUC( 17.89, 0.167, 0.461) FAUC( 18.26, 0.167, 0.691) + FAUC( 18.29, 1.000, 1.066) FAUC( 18.32, 0.167, 0.691) FAUC( 18.34, 0.500, 0.672) FAUC( 18.37, 0.500, 0.806) + FAUC( 18.67, 0.167, 0.461) SHWR( 19.77, 7.833, 1.374) FAUC( 19.93, 1.667, 1.106) FAUC( 19.96, 0.333, 0.778) + FAUC( 19.97, 0.833, 1.187) FAUC( 20.00, 0.167, 0.461) FAUC( 20.03, 0.167, 0.749) FAUC( 20.06, 0.667, 1.109) + FAUC( 20.19, 0.167, 0.461) FAUC( 20.22, 0.167, 0.461) FAUC( 20.71, 0.500, 1.037) FAUC( 20.78, 2.000, 1.584) + FAUC( 20.79, 0.333, 1.325) FAUC( 20.86, 2.333, 2.251) FAUC( 20.99, 0.167, 0.691) FAUC( 21.01, 0.333, 1.037) + FAUC( 21.03, 0.167, 0.691) FAUC( 21.10, 0.500, 0.653) FAUC( 21.12, 1.833, 1.105) FAUC( 21.17, 2.667, 2.495) + FAUC( 21.23, 0.167, 0.461) FAUC( 21.24, 1.000, 0.883) FAUC( 21.27, 0.833, 0.657) FAUC( 21.31, 0.333, 0.374) + FAUC( 21.35, 0.667, 1.382) FAUC( 21.39, 0.667, 0.720) FAUC( 21.40, 0.167, 0.461) FAUC( 21.42, 0.500, 1.248) + SHWR( 21.45, 10.333, 1.747) FAUC( 21.64, 0.167, 0.461) FAUC( 21.81, 1.167, 1.325) FAUC( 21.87, 1.167, 1.226) + FAUC( 21.92, 1.000, 1.152) FAUC( 21.97, 0.833, 1.152) FAUC( 22.06, 0.667, 0.850) FAUC( 22.08, 3.333, 0.752) + FAUC( 22.15, 1.167, 0.823) FAUC( 22.72, 1.833, 1.890) FAUC( 22.76, 0.167, 0.461) FAUC( 22.92, 7.833, 1.139) + SHWR( 23.11, 11.000, 1.216) FAUC( 23.68, 0.167, 0.461) + ENDDHWDAYUSE + DHWDAYUSE "6T" + FAUC( 6.20, 0.167, 0.979) FAUC( 6.24, 0.167, 0.749) SHWR( 6.26, 4.833, 2.000) FAUC( 6.55, 0.167, 0.979) + FAUC( 6.58, 0.167, 0.403) FAUC( 6.62, 0.167, 0.576) FAUC( 6.67, 0.667, 1.570) FAUC( 6.72, 0.167, 0.576) + FAUC( 6.82, 0.333, 0.490) FAUC( 6.90, 0.333, 1.037) FAUC( 7.06, 0.667, 0.936) FAUC( 7.07, 0.333, 0.778) + FAUC( 7.08, 0.333, 1.238) FAUC( 7.10, 0.167, 0.403) FAUC( 7.16, 0.167, 0.403) FAUC( 7.17, 0.167, 0.576) + FAUC( 7.31, 0.167, 0.576) FAUC( 7.42, 0.167, 0.403) FAUC( 7.46, 0.167, 0.576) FAUC( 7.53, 0.333, 0.576) + FAUC( 7.67, 0.167, 0.979) FAUC( 7.71, 0.500, 0.768) SHWR( 7.91, 3.667, 2.000) SHWR( 8.20, 9.833, 2.000) + FAUC( 8.34, 0.500, 1.459) FAUC( 8.96, 0.167, 0.403) FAUC( 12.46, 2.500, 1.490) CWSH( 12.48, 1.000, 6.066) + CWSH( 12.50, 0.667, 4.160) CWSH( 12.52, 0.500, 5.096) CWSH( 12.53, 0.500, 2.525) FAUC( 12.55, 0.667, 1.238) + FAUC( 12.56, 0.500, 1.152) FAUC( 12.60, 0.333, 0.950) FAUC( 12.64, 0.333, 0.576) FAUC( 12.73, 0.167, 0.576) + CWSH( 12.87, 1.500, 3.382) CWSH( 12.91, 0.333, 2.140) CWSH( 12.92, 0.333, 1.699) FAUC( 12.98, 2.667, 1.346) + FAUC( 13.07, 0.333, 0.605) FAUC( 13.08, 0.167, 0.749) CWSH( 13.09, 2.333, 2.456) CWSH( 13.14, 0.167, 3.397) + FAUC( 13.20, 0.167, 0.979) FAUC( 14.24, 0.667, 1.051) FAUC( 14.28, 0.500, 1.152) FAUC( 14.31, 0.167, 0.576) + FAUC( 14.33, 0.167, 0.576) FAUC( 14.34, 0.333, 0.662) FAUC( 14.35, 0.333, 0.662) FAUC( 14.37, 0.500, 0.902) + FAUC( 14.39, 0.333, 0.864) FAUC( 14.41, 0.667, 0.835) FAUC( 15.06, 0.167, 0.576) FAUC( 16.69, 0.333, 1.613) + FAUC( 16.75, 0.167, 0.576) FAUC( 16.76, 0.833, 0.956) FAUC( 16.79, 0.333, 1.555) FAUC( 16.93, 0.500, 0.826) + FAUC( 17.27, 0.333, 0.576) FAUC( 17.70, 0.167, 1.901) FAUC( 17.91, 0.167, 0.403) FAUC( 17.95, 0.333, 0.662) + FAUC( 17.95, 0.833, 1.221) FAUC( 17.98, 0.500, 0.710) FAUC( 18.03, 0.667, 1.051) FAUC( 18.20, 0.167, 0.403) + FAUC( 18.26, 0.167, 0.576) FAUC( 18.30, 0.167, 0.979) FAUC( 18.32, 0.167, 0.979) FAUC( 18.33, 0.167, 0.576) + FAUC( 18.48, 0.333, 1.814) FAUC( 18.55, 1.833, 1.843) FAUC( 18.60, 0.500, 1.709) FAUC( 18.63, 0.167, 1.037) + FAUC( 18.64, 1.667, 1.244) FAUC( 18.67, 0.167, 1.325) FAUC( 18.68, 1.333, 1.699) FAUC( 18.70, 0.833, 1.682) + FAUC( 18.72, 0.333, 1.152) DWSH( 18.92, 1.667, 1.542) DWSH( 19.00, 1.500, 1.620) FAUC( 19.77, 0.167, 0.749) + FAUC( 19.78, 0.833, 1.290) FAUC( 19.97, 0.833, 1.152) FAUC( 19.99, 0.833, 1.636) FAUC( 19.99, 0.500, 0.902) + FAUC( 20.02, 0.500, 0.826) FAUC( 20.04, 0.333, 1.152) FAUC( 20.07, 1.500, 1.523) FAUC( 20.10, 0.500, 0.576) + FAUC( 20.12, 0.167, 0.403) FAUC( 20.20, 0.167, 0.403) FAUC( 20.28, 0.167, 0.403) FAUC( 20.39, 0.167, 0.403) + CWSH( 20.40, 1.000, 4.249) FAUC( 20.40, 0.167, 1.152) CWSH( 20.42, 1.500, 3.320) CWSH( 20.44, 0.667, 2.049) + CWSH( 20.47, 1.000, 1.324) CWSH( 20.49, 0.333, 1.366) CWSH( 20.56, 0.167, 1.655) CWSH( 20.60, 1.167, 5.566) + FAUC( 20.60, 0.167, 1.152) CWSH( 20.65, 1.500, 3.814) CWSH( 20.72, 0.167, 2.613) FAUC( 21.05, 0.167, 0.403) + FAUC( 21.12, 0.167, 0.979) FAUC( 21.13, 0.167, 0.403) FAUC( 21.21, 0.167, 0.749) FAUC( 21.25, 0.167, 0.403) + FAUC( 21.46, 0.167, 0.806) FAUC( 22.06, 0.167, 0.576) FAUC( 23.57, 0.500, 0.864) + ENDDHWDAYUSE + DHWDAYUSE "6W" + FAUC( 0.20, 6.833, 0.016) FAUC( 1.22, 2.167, 0.026) FAUC( 1.64, 0.333, 0.086) FAUC( 1.65, 0.333, 0.086) + FAUC( 1.69, 0.333, 0.086) FAUC( 2.01, 0.167, 0.129) FAUC( 2.06, 9.167, 0.016) FAUC( 2.23, 2.000, 0.025) + FAUC( 2.52, 3.833, 0.015) FAUC( 2.59, 6.000, 0.017) FAUC( 4.63, 7.333, 0.015) FAUC( 5.00, 1.667, 2.075) + FAUC( 5.50, 0.333, 0.215) FAUC( 5.51, 8.000, 0.019) FAUC( 5.64, 0.333, 0.537) FAUC( 5.68, 0.500, 0.544) + FAUC( 5.69, 1.833, 0.031) FAUC( 5.74, 6.333, 0.025) FAUC( 5.85, 0.167, 0.430) FAUC( 6.11, 0.167, 0.559) + FAUC( 6.12, 1.833, 1.531) FAUC( 6.24, 0.167, 0.215) FAUC( 6.24, 0.167, 0.129) FAUC( 6.25, 0.167, 0.559) + FAUC( 6.25, 4.167, 0.021) FAUC( 6.32, 0.667, 0.430) FAUC( 6.33, 0.167, 0.773) FAUC( 6.33, 0.167, 0.172) + BATH( 6.35, 10.000, 1.775) FAUC( 6.51, 2.167, 0.053) FAUC( 6.55, 0.333, 0.859) FAUC( 6.56, 0.167, 0.129) + FAUC( 6.56, 0.500, 0.587) FAUC( 6.58, 0.333, 0.344) FAUC( 6.58, 0.333, 0.107) FAUC( 6.59, 0.667, 0.473) + FAUC( 6.60, 0.333, 0.086) FAUC( 6.61, 0.167, 0.687) FAUC( 6.61, 0.333, 0.172) FAUC( 6.62, 0.167, 1.074) + FAUC( 6.63, 0.500, 0.773) FAUC( 6.64, 2.333, 0.025) FAUC( 6.79, 0.333, 0.580) FAUC( 6.80, 0.167, 0.687) + FAUC( 6.82, 1.167, 2.369) FAUC( 6.84, 0.167, 0.301) FAUC( 6.84, 4.833, 0.019) FAUC( 6.92, 0.167, 0.215) + FAUC( 6.93, 2.000, 0.032) DWSH( 6.96, 2.000, 0.112) FAUC( 6.99, 3.167, 0.020) FAUC( 7.04, 0.167, 0.730) + FAUC( 7.05, 1.333, 0.038) FAUC( 7.08, 0.167, 0.129) FAUC( 7.10, 0.667, 0.344) FAUC( 7.12, 0.333, 0.129) + FAUC( 7.12, 0.333, 0.559) FAUC( 7.13, 0.167, 0.129) FAUC( 7.15, 0.333, 0.107) FAUC( 7.19, 1.333, 0.940) + FAUC( 7.21, 0.333, 0.967) FAUC( 7.23, 0.167, 0.172) FAUC( 7.23, 0.667, 0.773) FAUC( 7.24, 1.000, 0.057) + FAUC( 7.26, 0.333, 0.107) FAUC( 7.27, 0.167, 0.129) SHWR( 7.29, 17.500, 1.471) FAUC( 7.64, 0.333, 0.730) + FAUC( 7.64, 0.333, 0.193) FAUC( 7.65, 0.500, 0.100) FAUC( 7.66, 0.333, 0.924) FAUC( 7.66, 0.167, 0.129) + FAUC( 7.67, 0.167, 0.773) FAUC( 7.69, 1.333, 0.516) FAUC( 7.74, 4.667, 0.021) FAUC( 7.85, 1.833, 0.035) + FAUC( 7.88, 0.333, 0.086) FAUC( 7.89, 0.167, 0.129) FAUC( 8.05, 2.000, 1.719) FAUC( 8.31, 0.500, 0.401) + FAUC( 8.33, 0.500, 0.401) FAUC( 8.34, 0.333, 0.687) FAUC( 8.35, 0.167, 0.129) FAUC( 8.46, 0.833, 0.060) + FAUC( 8.57, 0.833, 0.060) FAUC( 8.59, 0.500, 0.745) FAUC( 8.60, 0.167, 0.129) FAUC( 8.61, 0.167, 0.172) + FAUC( 8.61, 0.833, 0.619) FAUC( 8.63, 0.333, 0.086) FAUC( 8.66, 0.833, 1.195) FAUC( 8.67, 3.667, 0.031) + FAUC( 8.81, 5.667, 0.018) FAUC( 8.92, 0.167, 0.172) FAUC( 8.93, 0.500, 0.530) FAUC( 8.94, 0.167, 0.129) + FAUC( 8.98, 0.333, 0.086) FAUC( 9.03, 0.500, 0.201) FAUC( 9.05, 0.333, 0.086) FAUC( 9.06, 0.500, 0.057) + FAUC( 9.07, 3.167, 0.708) FAUC( 9.17, 0.833, 0.421) FAUC( 9.20, 0.333, 0.473) FAUC( 9.21, 0.167, 0.172) + FAUC( 9.21, 0.333, 0.258) FAUC( 9.22, 4.833, 1.848) FAUC( 9.31, 0.167, 0.344) FAUC( 9.33, 0.333, 0.236) + FAUC( 9.34, 0.167, 0.172) FAUC( 9.34, 2.167, 0.023) FAUC( 9.39, 0.333, 0.107) FAUC( 9.42, 0.167, 0.129) + FAUC( 9.43, 0.167, 0.172) FAUC( 9.44, 0.167, 0.215) FAUC( 9.44, 1.167, 0.031) FAUC( 9.46, 0.500, 0.358) + FAUC( 9.47, 0.167, 0.172) FAUC( 9.47, 0.500, 0.057) FAUC( 9.50, 0.333, 0.516) FAUC( 9.57, 0.333, 1.461) + FAUC( 9.58, 1.167, 0.037) FAUC( 9.60, 0.333, 1.482) FAUC( 9.89, 0.167, 0.129) FAUC( 9.93, 0.333, 0.150) + FAUC( 10.04, 0.333, 1.805) FAUC( 10.37, 0.167, 0.430) FAUC( 10.42, 0.167, 2.492) FAUC( 10.42, 1.167, 0.061) + FAUC( 10.44, 0.167, 0.215) FAUC( 10.44, 0.167, 0.172) FAUC( 10.45, 0.333, 0.387) FAUC( 10.46, 1.167, 0.847) + FAUC( 10.48, 6.667, 0.031) FAUC( 10.59, 1.667, 0.030) FAUC( 10.64, 0.333, 1.568) FAUC( 10.66, 0.333, 1.611) + FAUC( 10.74, 1.667, 1.568) FAUC( 10.77, 0.167, 0.172) FAUC( 10.77, 3.000, 0.033) FAUC( 10.85, 0.167, 0.129) + FAUC( 10.88, 1.000, 1.533) FAUC( 11.26, 1.667, 0.039) FAUC( 11.29, 0.500, 0.086) FAUC( 11.35, 4.500, 0.024) + FAUC( 11.46, 0.833, 0.060) FAUC( 11.48, 2.167, 0.030) FAUC( 11.62, 0.333, 0.086) FAUC( 11.62, 0.333, 1.439) + FAUC( 11.65, 0.333, 1.525) FAUC( 11.65, 1.167, 0.018) FAUC( 11.80, 0.333, 0.086) FAUC( 11.84, 1.500, 0.368) + FAUC( 11.86, 0.333, 0.107) FAUC( 11.88, 0.167, 0.172) FAUC( 12.13, 1.000, 0.057) FAUC( 12.17, 2.000, 0.043) + FAUC( 12.23, 2.333, 0.034) FAUC( 12.32, 0.667, 0.806) FAUC( 12.33, 0.333, 0.301) FAUC( 12.34, 0.333, 0.086) + FAUC( 12.34, 0.167, 0.516) FAUC( 12.37, 0.833, 0.928) FAUC( 12.41, 0.167, 0.129) FAUC( 12.43, 0.167, 0.129) + FAUC( 12.46, 0.167, 0.172) FAUC( 12.47, 1.000, 0.036) FAUC( 12.49, 0.500, 1.389) FAUC( 12.51, 0.833, 1.057) + FAUC( 12.55, 1.000, 0.945) FAUC( 12.64, 0.333, 0.387) FAUC( 12.98, 6.000, 0.018) FAUC( 13.08, 0.167, 0.129) + FAUC( 13.09, 0.167, 0.129) FAUC( 13.13, 0.333, 0.086) FAUC( 13.34, 0.333, 1.031) FAUC( 13.34, 3.333, 0.024) + FAUC( 13.44, 0.167, 0.215) FAUC( 13.47, 8.000, 0.018) FAUC( 13.63, 2.500, 0.034) FAUC( 13.67, 0.333, 0.301) + FAUC( 13.74, 5.500, 0.021) FAUC( 13.84, 0.167, 0.387) FAUC( 13.85, 0.500, 0.286) FAUC( 13.98, 0.333, 0.258) + FAUC( 14.03, 0.333, 0.430) FAUC( 14.03, 4.667, 0.017) FAUC( 14.11, 0.167, 0.344) FAUC( 14.11, 0.167, 0.172) + FAUC( 14.11, 0.167, 0.387) FAUC( 14.18, 0.667, 0.440) FAUC( 14.21, 6.000, 0.024) FAUC( 14.31, 0.500, 1.074) + FAUC( 14.36, 0.333, 0.365) FAUC( 14.41, 1.167, 0.061) FAUC( 14.42, 0.833, 0.335) FAUC( 14.96, 0.167, 0.172) + FAUC( 15.11, 0.167, 0.129) FAUC( 15.21, 0.833, 0.593) FAUC( 15.23, 0.500, 0.329) FAUC( 15.45, 0.167, 0.172) + FAUC( 15.53, 1.000, 0.859) FAUC( 15.55, 0.333, 0.258) FAUC( 15.56, 2.000, 0.039) FAUC( 15.59, 0.167, 0.816) + FAUC( 15.62, 0.500, 0.573) FAUC( 15.63, 0.500, 0.430) FAUC( 15.64, 0.167, 0.687) FAUC( 15.65, 0.167, 0.172) + FAUC( 15.65, 0.167, 0.730) FAUC( 15.66, 0.333, 0.451) FAUC( 15.67, 0.500, 1.003) FAUC( 15.68, 0.167, 0.172) + FAUC( 15.68, 0.167, 0.301) FAUC( 15.69, 0.667, 0.301) FAUC( 15.76, 0.500, 0.201) FAUC( 15.79, 1.167, 0.037) + FAUC( 15.81, 0.333, 0.559) FAUC( 15.82, 1.833, 0.047) FAUC( 15.87, 0.667, 0.623) FAUC( 15.89, 0.333, 0.301) + FAUC( 15.90, 0.833, 0.034) DWSH( 15.91, 1.667, 0.145) FAUC( 15.99, 1.000, 0.043) FAUC( 16.02, 0.167, 0.215) + FAUC( 16.03, 0.833, 0.043) FAUC( 16.12, 0.500, 0.358) FAUC( 16.14, 0.167, 0.945) FAUC( 16.16, 0.667, 0.054) + FAUC( 16.18, 0.500, 0.072) FAUC( 16.19, 1.000, 0.036) FAUC( 16.23, 0.500, 0.086) FAUC( 16.36, 0.167, 0.730) + FAUC( 16.36, 0.167, 0.172) FAUC( 16.37, 0.333, 0.322) FAUC( 16.38, 1.500, 1.852) FAUC( 16.48, 2.000, 0.043) + FAUC( 16.52, 0.500, 0.401) FAUC( 16.99, 0.167, 0.687) FAUC( 16.99, 0.333, 0.150) FAUC( 17.00, 0.167, 0.387) + FAUC( 17.00, 0.167, 0.945) FAUC( 17.01, 1.333, 0.043) FAUC( 17.04, 0.167, 0.516) FAUC( 17.17, 6.000, 0.023) + FAUC( 17.27, 0.167, 0.215) FAUC( 17.30, 0.667, 0.795) FAUC( 17.61, 0.167, 0.516) FAUC( 17.61, 8.833, 0.016) + FAUC( 17.76, 0.167, 0.258) FAUC( 17.76, 0.167, 0.129) FAUC( 17.76, 0.333, 0.430) FAUC( 17.77, 0.500, 0.158) + FAUC( 17.77, 0.333, 0.408) FAUC( 17.84, 0.167, 0.129) FAUC( 17.94, 0.167, 0.215) FAUC( 18.11, 1.500, 0.525) + FAUC( 18.14, 0.333, 1.031) FAUC( 18.27, 2.000, 0.061) FAUC( 18.37, 0.333, 0.086) FAUC( 18.38, 0.500, 0.115) + FAUC( 18.39, 3.500, 0.029) FAUC( 18.49, 1.167, 1.166) FAUC( 18.51, 0.167, 0.172) FAUC( 18.52, 1.833, 0.035) + FAUC( 18.58, 5.167, 0.022) FAUC( 18.69, 0.667, 0.086) FAUC( 18.77, 0.667, 0.827) FAUC( 18.78, 0.333, 0.107) + FAUC( 18.79, 0.167, 0.215) DWSH( 18.81, 1.500, 0.136) FAUC( 18.83, 0.333, 0.107) FAUC( 18.84, 0.167, 0.730) + FAUC( 19.03, 1.333, 0.032) FAUC( 19.06, 0.333, 0.086) FAUC( 19.07, 1.667, 0.043) FAUC( 19.13, 3.833, 0.024) + FAUC( 19.19, 1.167, 1.393) FAUC( 19.23, 0.500, 0.831) FAUC( 19.24, 0.333, 0.773) FAUC( 19.27, 0.167, 0.258) + FAUC( 19.32, 2.167, 0.033) FAUC( 19.48, 0.167, 0.516) FAUC( 19.48, 1.500, 0.048) FAUC( 19.51, 1.167, 0.037) + FAUC( 19.54, 0.333, 0.645) FAUC( 19.56, 0.333, 0.107) FAUC( 19.56, 0.333, 1.031) FAUC( 19.59, 1.833, 0.043) + FAUC( 19.63, 1.833, 0.180) FAUC( 19.66, 1.667, 1.100) FAUC( 19.67, 1.000, 1.139) FAUC( 19.69, 5.333, 0.027) + FAUC( 19.78, 0.333, 0.623) FAUC( 19.85, 0.500, 0.716) FAUC( 19.91, 0.500, 0.673) FAUC( 19.99, 0.167, 0.430) + FAUC( 19.99, 6.000, 0.021) FAUC( 20.09, 0.667, 0.290) FAUC( 20.11, 0.333, 0.322) FAUC( 20.16, 0.167, 0.430) + FAUC( 20.16, 0.333, 0.537) DWSH( 20.18, 1.667, 0.111) FAUC( 20.61, 0.500, 0.501) FAUC( 20.61, 0.333, 0.129) + FAUC( 20.62, 0.500, 0.430) FAUC( 20.63, 0.333, 0.150) FAUC( 20.64, 0.333, 0.086) FAUC( 20.65, 0.167, 0.602) + FAUC( 20.65, 4.667, 0.015) FAUC( 20.73, 0.833, 0.954) SHWR( 21.08, 6.833, 1.373) FAUC( 21.21, 0.167, 0.430) + FAUC( 21.23, 5.167, 0.018) FAUC( 21.34, 0.167, 0.215) FAUC( 21.34, 0.167, 0.129) FAUC( 21.35, 5.500, 0.030) + FAUC( 21.46, 5.833, 0.017) FAUC( 21.56, 0.333, 0.537) FAUC( 22.09, 0.167, 0.301) FAUC( 22.12, 1.000, 1.561) + FAUC( 22.14, 0.167, 0.129) FAUC( 22.14, 0.500, 0.458) FAUC( 22.16, 0.167, 0.258) FAUC( 22.16, 0.167, 0.172) + FAUC( 22.16, 1.000, 1.661) FAUC( 22.52, 3.667, 0.018) + ENDDHWDAYUSE + DHWDAYUSE "6R" + FAUC( 8.16, 0.167, 0.321) FAUC( 8.18, 0.167, 0.375) FAUC( 17.79, 0.667, 0.803) + ENDDHWDAYUSE + DHWDAYUSE "6F" + FAUC( 0.02, 0.167, 0.430) FAUC( 1.07, 0.333, 0.967) FAUC( 8.50, 0.167, 0.559) FAUC( 8.58, 0.333, 1.439) + FAUC( 9.19, 0.333, 0.859) FAUC( 9.70, 0.167, 0.215) CWSH( 9.98, 4.667, 0.952) FAUC( 10.05, 0.167, 1.332) + CWSH( 10.29, 4.167, 0.982) CWSH( 10.51, 4.000, 1.030) SHWR( 10.62, 3.500, 1.492) SHWR( 10.84, 11.333, 1.492) + FAUC( 10.85, 0.500, 1.475) FAUC( 10.91, 0.500, 0.917) FAUC( 11.07, 0.333, 0.258) FAUC( 11.09, 0.500, 0.673) + FAUC( 11.26, 0.167, 0.344) FAUC( 11.49, 2.333, 0.077) FAUC( 12.16, 0.167, 0.215) FAUC( 12.56, 0.167, 0.215) + FAUC( 12.65, 0.167, 0.215) CWSH( 12.81, 3.500, 1.251) CWSH( 13.11, 3.167, 1.298) CWSH( 13.31, 3.167, 1.314) + FAUC( 13.53, 0.167, 0.258) FAUC( 13.59, 0.167, 0.559) FAUC( 13.60, 0.333, 1.139) FAUC( 13.66, 0.333, 1.439) + FAUC( 14.16, 0.167, 0.602) FAUC( 14.17, 0.333, 1.053) FAUC( 14.18, 0.333, 0.473) FAUC( 14.80, 0.167, 0.902) + CWSH( 14.82, 2.167, 2.029) CWSH( 15.05, 0.500, 1.605) CWSH( 15.10, 2.167, 1.725) CWSH( 15.23, 2.167, 1.714) + CWSH( 15.81, 10.000, 0.678) CWSH( 16.10, 2.667, 0.983) FAUC( 16.25, 0.167, 1.160) CWSH( 16.29, 3.333, 0.975) + FAUC( 16.38, 1.167, 0.313) FAUC( 16.84, 1.167, 0.289) FAUC( 16.92, 1.167, 0.301) SHWR( 17.10, 7.667, 1.084) + FAUC( 17.71, 1.833, 0.273) FAUC( 18.29, 0.333, 0.816) FAUC( 18.35, 0.500, 1.776) FAUC( 18.62, 0.167, 0.258) + FAUC( 18.97, 0.333, 0.236) FAUC( 19.00, 0.167, 0.988) FAUC( 19.15, 0.167, 0.215) FAUC( 19.16, 0.167, 0.645) + FAUC( 19.39, 0.333, 1.977) FAUC( 19.41, 0.333, 0.430) FAUC( 20.04, 0.167, 0.215) FAUC( 20.07, 2.167, 0.922) + FAUC( 20.09, 0.333, 0.752) FAUC( 20.45, 0.333, 0.924) FAUC( 20.75, 0.500, 0.501) FAUC( 20.79, 0.167, 1.203) + FAUC( 21.07, 0.333, 1.160) SHWR( 21.25, 3.667, 1.492) FAUC( 21.71, 0.167, 1.762) FAUC( 21.86, 0.500, 1.046) + FAUC( 21.87, 0.333, 1.525) FAUC( 22.11, 0.167, 0.215) FAUC( 22.58, 0.333, 0.988) SHWR( 22.69, 5.000, 1.492) + FAUC( 22.84, 0.667, 0.870) FAUC( 22.88, 0.167, 0.730) FAUC( 23.23, 0.167, 0.258) FAUC( 23.26, 0.167, 0.215) + FAUC( 23.61, 0.167, 0.258) + ENDDHWDAYUSE + DHWDAYUSE "6S" + FAUC( 0.26, 0.333, 1.225) FAUC( 8.27, 1.833, 0.410) FAUC( 8.30, 5.833, 0.411) FAUC( 8.96, 0.167, 0.387) + FAUC( 9.19, 2.833, 0.763) FAUC( 9.25, 6.833, 0.812) FAUC( 9.46, 0.500, 0.616) FAUC( 9.47, 0.167, 0.344) + FAUC( 9.47, 0.167, 0.859) FAUC( 9.50, 1.000, 0.337) FAUC( 9.51, 0.333, 1.203) FAUC( 9.52, 2.333, 1.044) + FAUC( 9.74, 0.333, 0.838) FAUC( 9.79, 0.167, 0.344) FAUC( 9.87, 0.167, 0.816) FAUC( 9.89, 0.167, 0.344) + FAUC( 9.90, 0.167, 0.516) FAUC( 9.92, 0.167, 0.301) FAUC( 9.94, 0.167, 0.387) FAUC( 10.18, 0.333, 0.687) + FAUC( 10.36, 6.333, 1.261) FAUC( 10.48, 1.333, 0.376) FAUC( 10.59, 1.500, 0.692) FAUC( 10.62, 0.333, 0.687) + FAUC( 10.63, 1.000, 0.716) FAUC( 10.68, 1.667, 0.726) FAUC( 10.73, 1.667, 0.851) FAUC( 10.83, 1.833, 0.727) + FAUC( 10.87, 2.667, 0.765) FAUC( 10.93, 1.333, 0.854) FAUC( 11.26, 0.667, 0.569) FAUC( 11.29, 0.833, 0.473) + FAUC( 11.52, 3.000, 0.463) FAUC( 11.62, 1.500, 0.716) SHWR( 11.64, 9.667, 0.684) SHWR( 11.64, 9.833, 1.372) + FAUC( 12.08, 0.167, 0.258) FAUC( 12.12, 3.167, 0.328) FAUC( 16.17, 1.500, 1.399) FAUC( 16.17, 0.333, 0.365) + FAUC( 16.18, 0.833, 2.294) FAUC( 17.06, 0.167, 0.387) FAUC( 17.06, 1.500, 1.461) FAUC( 17.06, 1.500, 0.955) + FAUC( 17.22, 1.000, 0.723) FAUC( 18.02, 0.167, 0.430) FAUC( 18.08, 0.167, 0.344) FAUC( 18.15, 0.333, 1.160) + FAUC( 18.32, 0.667, 0.397) FAUC( 18.33, 0.500, 0.659) FAUC( 18.53, 0.333, 0.430) FAUC( 18.94, 0.833, 0.533) + FAUC( 19.02, 0.333, 1.139) FAUC( 19.03, 0.500, 1.260) FAUC( 19.08, 0.167, 0.258) FAUC( 19.11, 0.500, 0.687) + FAUC( 19.12, 0.500, 0.716) FAUC( 19.14, 0.167, 0.816) FAUC( 19.15, 0.167, 0.473) FAUC( 19.18, 0.167, 0.344) + FAUC( 19.93, 0.500, 0.272) FAUC( 19.97, 0.833, 0.438) FAUC( 19.98, 0.167, 1.203) FAUC( 20.00, 0.333, 1.139) + FAUC( 20.03, 0.500, 0.845) FAUC( 20.49, 0.333, 0.279) FAUC( 20.52, 0.167, 0.258) CWSH( 21.00, 2.167, 2.641) + CWSH( 21.38, 0.333, 1.957) CWSH( 21.42, 2.000, 2.732) FAUC( 21.46, 2.167, 0.889) FAUC( 21.51, 0.167, 1.074) + CWSH( 21.52, 0.667, 1.216) FAUC( 21.55, 0.833, 0.705) FAUC( 21.58, 0.333, 0.430) FAUC( 21.60, 0.833, 0.404) + FAUC( 21.61, 0.167, 0.258) FAUC( 21.64, 1.667, 0.498) FAUC( 21.70, 0.167, 0.387) FAUC( 21.72, 3.000, 0.489) + FAUC( 21.79, 0.500, 0.759) FAUC( 21.81, 0.167, 0.473) FAUC( 21.82, 0.333, 0.838) FAUC( 21.84, 1.167, 0.503) + FAUC( 21.87, 1.333, 0.473) FAUC( 21.90, 0.500, 0.874) SHWR( 21.91, 7.500, 1.444) SHWR( 22.03, 5.333, 1.428) + FAUC( 22.65, 0.667, 0.376) FAUC( 22.73, 5.833, 0.861) FAUC( 22.83, 0.500, 0.730) FAUC( 22.84, 0.333, 1.096) + FAUC( 22.87, 0.333, 0.473) FAUC( 22.88, 1.333, 0.859) FAUC( 22.90, 0.167, 0.687) FAUC( 23.01, 4.167, 0.442) + FAUC( 23.09, 2.000, 1.131) FAUC( 23.12, 0.500, 0.902) + ENDDHWDAYUSE + DHWDAYUSE "6U" + FAUC( 0.59, 0.333, 0.666) FAUC( 2.66, 0.333, 0.666) FAUC( 6.08, 0.167, 1.203) FAUC( 6.97, 0.167, 0.258) + FAUC( 6.98, 0.333, 0.881) FAUC( 7.03, 0.167, 0.301) SHWR( 7.04, 8.000, 1.492) FAUC( 7.19, 0.167, 0.387) + FAUC( 7.21, 0.167, 0.301) FAUC( 7.25, 0.333, 0.709) FAUC( 7.43, 0.167, 1.160) FAUC( 7.53, 0.167, 0.258) + FAUC( 7.60, 0.167, 0.258) FAUC( 7.82, 0.333, 0.473) FAUC( 8.52, 0.167, 0.645) FAUC( 8.80, 0.167, 0.258) + FAUC( 9.02, 0.333, 1.203) FAUC( 9.30, 0.667, 1.429) FAUC( 9.99, 0.167, 0.258) FAUC( 10.12, 2.167, 1.904) + FAUC( 10.23, 0.333, 0.816) FAUC( 10.26, 0.833, 0.756) FAUC( 10.44, 0.167, 0.516) FAUC( 10.83, 0.500, 0.544) + FAUC( 10.86, 0.167, 0.258) FAUC( 11.17, 0.333, 0.408) FAUC( 11.29, 0.500, 1.962) FAUC( 11.31, 0.333, 1.160) + FAUC( 11.33, 0.333, 0.494) FAUC( 11.34, 0.167, 1.332) FAUC( 11.35, 0.333, 0.859) FAUC( 11.37, 0.667, 1.010) + FAUC( 11.45, 0.333, 1.053) FAUC( 11.55, 0.500, 0.802) FAUC( 11.58, 0.333, 0.408) FAUC( 11.59, 0.167, 0.430) + FAUC( 11.62, 1.000, 0.931) FAUC( 11.65, 0.333, 0.387) FAUC( 11.67, 0.333, 0.430) FAUC( 11.68, 0.333, 1.074) + FAUC( 11.76, 1.167, 0.798) FAUC( 11.95, 0.500, 1.303) FAUC( 12.00, 0.167, 0.301) FAUC( 12.18, 0.667, 0.634) + FAUC( 12.24, 0.667, 0.709) FAUC( 12.32, 0.167, 0.902) FAUC( 12.35, 0.500, 0.773) FAUC( 12.37, 0.167, 0.773) + FAUC( 12.38, 0.500, 1.475) FAUC( 12.41, 0.167, 0.816) DWSH( 12.45, 0.833, 0.651) DWSH( 12.53, 1.333, 0.541) + FAUC( 12.53, 0.333, 0.408) FAUC( 12.55, 0.167, 0.387) FAUC( 12.56, 0.333, 0.387) DWSH( 12.60, 1.167, 0.600) + FAUC( 12.60, 0.167, 0.215) DWSH( 12.66, 1.000, 0.585) FAUC( 12.66, 0.833, 0.473) DWSH( 12.75, 1.167, 0.582) + FAUC( 12.75, 0.333, 0.537) DWSH( 13.11, 0.833, 0.539) FAUC( 13.11, 0.333, 0.645) FAUC( 13.16, 0.833, 0.670) + DWSH( 13.17, 1.167, 0.549) DWSH( 13.24, 1.167, 0.585) FAUC( 13.29, 0.500, 1.031) FAUC( 13.30, 0.333, 1.547) + FAUC( 13.32, 0.167, 0.559) FAUC( 13.33, 0.333, 1.010) FAUC( 13.49, 0.167, 0.387) FAUC( 13.53, 0.500, 0.931) + FAUC( 13.68, 0.167, 0.258) FAUC( 13.70, 0.333, 0.559) FAUC( 13.75, 0.167, 0.473) FAUC( 13.77, 0.500, 1.160) + FAUC( 13.80, 0.667, 2.933) FAUC( 13.95, 1.333, 0.795) FAUC( 14.08, 1.333, 0.956) FAUC( 14.28, 0.833, 2.191) + FAUC( 14.29, 0.667, 2.621) FAUC( 14.30, 0.500, 2.979) FAUC( 14.34, 0.167, 0.387) FAUC( 14.40, 0.500, 0.859) + FAUC( 14.76, 0.500, 0.802) FAUC( 14.82, 1.000, 0.917) FAUC( 14.86, 0.333, 0.773) FAUC( 14.88, 1.667, 1.590) + FAUC( 14.91, 0.333, 3.008) SHWR( 14.93, 8.500, 1.063) FAUC( 15.31, 0.167, 0.301) SHWR( 17.03, 12.833, 1.296) + FAUC( 17.24, 0.167, 1.719) FAUC( 17.30, 0.333, 0.537) FAUC( 17.57, 0.500, 0.430) FAUC( 17.83, 0.167, 1.074) + FAUC( 17.87, 0.167, 0.902) CWSH( 18.52, 3.167, 1.757) CWSH( 18.81, 1.333, 1.306) CWSH( 18.84, 3.667, 1.458) + FAUC( 18.92, 0.333, 0.666) FAUC( 18.92, 0.167, 0.430) FAUC( 19.32, 0.500, 0.444) FAUC( 23.08, 0.667, 0.473) + FAUC( 23.15, 0.667, 0.634) FAUC( 23.18, 0.167, 0.645) + ENDDHWDAYUSE + DHWDAYUSE "6H" + SHWR( 0.04, 4.167, 1.515) FAUC( 0.19, 0.167, 1.313) FAUC( 0.24, 0.333, 0.770) FAUC( 0.25, 0.167, 1.313) + FAUC( 0.27, 0.167, 0.272) FAUC( 0.50, 1.000, 0.860) FAUC( 0.58, 0.167, 0.272) FAUC( 0.59, 0.167, 0.679) + FAUC( 0.62, 0.500, 1.464) FAUC( 0.64, 0.333, 0.521) FAUC( 0.70, 0.167, 0.407) FAUC( 0.72, 0.167, 0.860) + FAUC( 0.83, 0.333, 0.385) FAUC( 1.86, 2.500, 1.132) FAUC( 3.01, 0.833, 0.063) FAUC( 3.13, 0.167, 0.272) + FAUC( 3.26, 3.000, 0.023) FAUC( 5.23, 0.333, 0.815) FAUC( 5.35, 1.833, 1.276) FAUC( 5.38, 1.833, 0.033) + FAUC( 5.41, 0.167, 0.770) FAUC( 5.48, 2.333, 1.132) FAUC( 8.15, 0.500, 1.434) FAUC( 10.29, 3.667, 1.159) + FAUC( 10.38, 0.167, 0.589) FAUC( 10.63, 3.500, 0.964) FAUC( 10.85, 2.333, 1.032) FAUC( 10.88, 0.667, 2.581) + FAUC( 10.91, 0.167, 0.589) FAUC( 10.94, 0.667, 1.936) FAUC( 12.36, 0.167, 1.041) FAUC( 12.45, 1.000, 0.045) + FAUC( 12.47, 0.167, 0.407) SHWR( 12.71, 11.333, 1.572) FAUC( 12.99, 0.500, 1.434) FAUC( 13.15, 0.167, 0.453) + FAUC( 13.17, 0.333, 0.815) FAUC( 13.54, 0.667, 0.770) FAUC( 13.55, 0.167, 1.313) FAUC( 13.56, 0.333, 0.815) + FAUC( 13.56, 0.167, 0.407) CWSH( 13.64, 6.500, 0.830) FAUC( 13.75, 1.333, 0.074) FAUC( 13.78, 4.500, 0.543) + SHWR( 13.82, 1.833, 1.572) FAUC( 13.86, 0.333, 0.860) CWSH( 13.91, 15.500, 0.450) FAUC( 13.91, 5.833, 0.463) + FAUC( 14.01, 0.333, 0.249) FAUC( 14.03, 2.000, 1.034) FAUC( 14.11, 0.333, 0.475) CWSH( 14.26, 0.333, 0.361) + CWSH( 14.27, 0.167, 0.036) CWSH( 14.27, 0.500, 0.307) FAUC( 14.38, 0.333, 0.475) FAUC( 14.61, 0.167, 0.453) + FAUC( 15.08, 0.667, 1.200) FAUC( 15.82, 1.667, 2.966) FAUC( 15.91, 0.167, 0.272) FAUC( 16.02, 0.333, 0.951) + FAUC( 16.04, 2.333, 1.090) FAUC( 16.09, 0.333, 0.521) FAUC( 16.14, 0.167, 1.132) FAUC( 16.24, 0.833, 0.598) + FAUC( 16.26, 0.667, 0.860) FAUC( 16.27, 0.333, 0.475) FAUC( 16.29, 0.167, 0.770) FAUC( 16.29, 0.500, 0.830) + FAUC( 16.31, 0.333, 0.770) FAUC( 16.32, 0.500, 0.860) FAUC( 16.33, 0.333, 0.521) FAUC( 16.34, 4.167, 0.020) + FAUC( 16.49, 0.833, 0.063) FAUC( 16.50, 0.167, 0.407) FAUC( 17.36, 1.000, 2.422) FAUC( 17.39, 0.167, 0.453) + FAUC( 17.41, 0.333, 0.521) FAUC( 18.07, 0.667, 0.906) FAUC( 18.19, 0.667, 0.860) FAUC( 19.80, 2.000, 1.490) + FAUC( 19.85, 0.333, 0.996) FAUC( 20.19, 0.333, 0.815) FAUC( 20.26, 10.667, 0.966) FAUC( 20.46, 7.167, 0.594) + FAUC( 20.62, 0.500, 1.464) FAUC( 21.03, 0.333, 0.566) FAUC( 21.08, 0.167, 0.589) FAUC( 21.09, 0.167, 0.453) + FAUC( 21.11, 0.833, 0.743) FAUC( 21.15, 0.833, 0.706) SHWR( 21.31, 6.000, 1.572) FAUC( 21.44, 0.167, 0.272) + FAUC( 21.49, 0.333, 0.521) FAUC( 22.38, 0.333, 0.430) FAUC( 22.39, 1.667, 1.263) FAUC( 22.43, 0.667, 1.053) + FAUC( 22.44, 0.333, 0.996) FAUC( 22.47, 0.333, 0.996) FAUC( 22.59, 0.500, 1.373) FAUC( 22.70, 0.333, 0.543) + FAUC( 22.71, 0.333, 0.340) FAUC( 22.75, 0.167, 0.272) SHWR( 22.77, 4.833, 1.572) + ENDDHWDAYUSE + +# #define SF_RECIRCDC hourval( \ +# 1.0, 0.5, 0.6, 0.6, 1.2, 2.4, 4.5, 5.7, \ +# 5.4, 4.5, 3.7, 2.8, 2.5, 2.3, 2.1, 1.9, \ +# 2.8, 3.2, 3.3, 3.1, 2.7, 2.5, 2.3, 1.5 ) + + DHWSYS "DS1" + wsDayUse = DHW4BR + wsElecMtr = MtrElec + wsTUse = 130 + wsSDLM = 1. + wsWF = .9 // waste factor (1=std waste, .9=recirc credit) + wsParElec = SF_RECIRCDC + wsWHHwMtr = DHWMtrWH1 + + DHWHEATER HPWH + whType = SmallStorage + whHeatSrc = ASHPX + whASHPType = GE2014StdMode + whASHPSrcT = $tdbO + + ENDDHWSYS + + DHWSYS DS2 COPY DS1 wsWHHwMtr = DHWMtrWH2 + ALTER DHWSYS DS2 ALTER DHWHEATER HPWH whASHPType = SANCO2_83 whASHPSrcT=$tDbO+1. + ENDDHWSYS + + DELETE REPORT EB + + REPORT rpType=MTR rpMeter=MtrElec rpFreq=Month + + REPORT WMREP1 rpType=DHWMTR rpDHWMeter=DHWMtrWH1 rpFreq=Month + REPORT WMREP2 COPY WMREP1 rpDHWMeter=DHWMtrWH2 + + +# #undef BATH + +# #define DHWCOLS( s) \ +# Reportcol colVal=@DHWSYS[s].tInlet colHead="Tinlet" colWid=6 colDec=1 \ +# Reportcol colVal=@DHWSYS[s].WHUse.Total colHead="FxUseHot" colWid=6 colDec=1 \ +# Reportcol colVal=@DHWSYS[s].WHUse.Total colHead="WHUse" colWid=6 colDec=1 \ +# Reportcol colVal=@DHWSYS[s].FxUseMix.Total colHead="Total" colWid=6 colDec=3 \ +# Reportcol colVal=@DHWSYS[s].FxUseMix.Unknown colHead="Unknown" colWid=6 colDec=3 \ +# Reportcol colVal=@DHWSYS[s].FxUseMix.Faucet colHead="Faucet" colWid=6 colDec=3 \ +# Reportcol colVal=@DHWSYS[s].FxUseMix.Shower colHead="Shower" colWid=6 colDec=3 \ +# Reportcol colVal=@DHWSYS[s].FxUseMix.Bath colHead="Bath" colWid=6 colDec=3 \ +# Reportcol colVal=@DHWSYS[s].FxUseMix.CWashr colHead="CWashr" colWid=6 colDec=3 \ +# Reportcol colVal=@DHWSYS[s].FxUseMix.DWashr colHead="DWashr" colWid=6 colDec=3 + + + REPORT DHWREP1 rpType=UDT rpFreq=Hour rpDayBeg=mar 10 rpDayEnd=mar 15 rpcpl=-1 + Reportcol colVal=$hour colHead="Hr" colWid=2 colDec=0 + Reportcol colVal=$tDbO colHead="Tout" colWid=4 colDec=1 + Reportcol DayCol1 colVal= DHW4BR colHead="Day" colWid=4 + DHWCOLS("DS1") + + REPORT DHWREP2 LIKE DHWREP1 + Reportcol colVal=$hour colHead="Hr" colWid=2 colDec=0 + Reportcol colVal=$tDbO colHead="Tout" colWid=4 colDec=1 + Reportcol colVal= DHW4BR colHead="Day" colWid=4 + DHWCOLS(2) + + REPORT rpType=DHWMTR rpDHWMeter=DHWMtrWH1 rpFreq=Day rpDayBeg=mar 10 rpDayEnd=mar 15 + REPORT rpType=DHWMTR rpDHWMeter=DHWMtrWH2 rpFreq=Day rpDayBeg=mar 10 rpDayEnd=mar 15 + + METER MtrElec + DHWMETER DHWMtrWH1 + DHWMETER DHWMtrWH2 + + + RUN + + + +Error Messages for Run 006: + +--------------- +COMMANDS.CSE(1602): Info: report 'DHWREP1' of reportFile 'Primary': + report width 84 is greater than line width 83. + Line width has been adjusted. +--------------- + + + +Monthly Energy Use, meter "MtrElec" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Jan 1.019 0 0 0 0.531 0.488 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Feb 0.865 0 0 0 0.473 0.392 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Mar 0.821 0 0 0 0.583 0.237 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Apr 0.821 0 0 0 0.552 0.269 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +May 0.595 0 0 0 0.505 0.0900 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Jun 0.515 0 0 0 0.474 0.0418 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Jul 0.473 0 0 0 0.427 0.0463 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Aug 0.442 0 0 0 0.398 0.0436 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Sep 0.461 0 0 0 0.428 0.0333 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Oct 0.535 0 0 0 0.447 0.0883 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Nov 0.730 0 0 0 0.491 0.239 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Dec 0.849 0 0 0 0.497 0.351 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + +Yr 8.126 0 0 0 5.806 2.320 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + + + +Monthly Hot Water Use, DHW meter "DHWMtrWH1" + +Mon Total Unknown Faucet Shower Bath CWashr DWashr +--- ------- ------- ------- ------- ------- ------- ------- +Jan 1116.68 0 441.646 532.609 15.164 94.957 32.300 +Feb 972.897 0 319.048 462.253 54.985 90.496 46.115 +Mar 1111.08 0 372.221 563.224 33.748 105.520 36.363 +Apr 1054.64 0 402.605 512.502 49.940 69.576 20.012 +May 1015.47 0 434.538 425.756 44.658 84.635 25.887 +Jun 1069.31 0 423.658 485.220 54.164 71.251 35.020 +Jul 1006.64 0 392.861 458.750 40.367 79.605 35.056 +Aug 970.975 0 371.223 433.609 63.743 71.252 31.148 +Sep 1011.94 0 411.122 463.087 27.651 84.061 26.023 +Oct 946.993 0 331.300 462.197 45.793 80.172 27.532 +Nov 1048.38 0 397.092 480.754 23.649 99.085 47.798 +Dec 1002.56 0 378.561 461.058 39.133 94.959 28.853 + +Yr 12327.6 0 4675.88 5741.02 492.995 1025.57 392.105 + + + +Monthly Hot Water Use, DHW meter "DHWMtrWH2" + +Mon Total Unknown Faucet Shower Bath CWashr DWashr +--- ------- ------- ------- ------- ------- ------- ------- +Jan 1116.68 0 441.646 532.609 15.164 94.957 32.300 +Feb 972.897 0 319.048 462.253 54.985 90.496 46.115 +Mar 1111.08 0 372.221 563.224 33.748 105.520 36.363 +Apr 1054.64 0 402.605 512.502 49.940 69.576 20.012 +May 1015.47 0 434.538 425.756 44.658 84.635 25.887 +Jun 1069.31 0 423.658 485.220 54.164 71.251 35.020 +Jul 1006.64 0 392.861 458.750 40.367 79.605 35.056 +Aug 970.975 0 371.223 433.609 63.743 71.252 31.148 +Sep 1011.94 0 411.122 463.087 27.651 84.061 26.023 +Oct 946.993 0 331.300 462.197 45.793 80.172 27.532 +Nov 1048.38 0 397.092 480.754 23.649 99.085 47.798 +Dec 1002.56 0 378.561 461.058 39.133 94.959 28.853 + +Yr 12327.6 0 4675.88 5741.02 492.995 1025.57 392.105 + + + +Hourly DHWREP1 Report, Tue 10-Mar + + Hr Tout TSqRt Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ----- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 46.8 6.838 42.9 0 0 0 0 0 0 0 0 0 + 2 45.0 6.705 43.0 1.0 1.0 2.096 0 2.096 0 0 0 0 + 3 44.6 6.678 43.0 0 0 0 0 0 0 0 0 0 + 4 42.1 6.487 43.0 0 0 0 0 0 0 0 0 0 + 5 42.8 6.542 43.0 0 0 0 0 0 0 0 0 0 + 6 39.7 6.304 43.0 0 0 0 0 0 0 0 0 0 + 7 37.2 6.101 43.0 0 0 0 0 0 0 0 0 0 + 8 37.0 6.086 43.0 0 0 0 0 0 0 0 0 0 + 9 37.0 6.086 43.0 0 0 0 0 0 0 0 0 0 + 10 39.0 6.247 43.0 0.2 0.2 0.316 0 0.316 0 0 0 0 + 11 41.7 6.459 43.0 1.9 1.9 3.700 0 3.700 0 0 0 0 + 12 41.0 6.403 43.0 0 0 0 0 0 0 0 0 0 + 13 43.2 6.57 43.0 0.1 0.1 0.297 0 0.297 0 0 0 0 + 14 44.2 6.651 43.0 0.3 0.3 0.509 0 0.509 0 0 0 0 + 15 45.0 6.705 43.0 0.6 0.6 1.128 0 1.128 0 0 0 0 + 16 45.0 6.705 43.0 0 0 0 0 0 0 0 0 0 + 17 45.0 6.705 43.0 1.6 1.6 3.204 0 3.204 0 0 0 0 + 18 44.4 6.665 43.0 5.6 5.6 8.055 0 0.889 0 7.166 0 0 + 19 43.7 6.611 43.0 6.6 6.6 24.034 0 4.712 0 0 19.322 0 + 20 40.8 6.389 43.0 1.4 1.4 6.169 0 0.193 0 0 5.975 0 + 21 38.8 6.232 43.0 0 0 0 0 0 0 0 0 0 + 22 37.8 6.145 43.0 17.9 17.9 25.124 0 0.0582 25.066 0 0 0 + 23 37.2 6.101 43.0 4.1 4.1 8.199 0 8.199 0 0 0 0 + 24 37.8 6.145 43.0 1.4 1.4 2.714 0 2.714 0 0 0 0 + + +Hourly DHWREP1 Report, Wed 11-Mar + + Hr Tout TSqRt Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ----- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 37.2 6.101 43.0 0 0 0 0 0 0 0 0 0 + 2 38.1 6.174 43.1 0 0 0 0 0 0 0 0 0 + 3 39.9 6.318 43.1 0 0 0 0 0 0 0 0 0 + 4 39.9 6.318 43.1 0 0 0 0 0 0 0 0 0 + 5 39.7 6.304 43.1 0 0 0 0 0 0 0 0 0 + 6 39.2 6.261 43.1 0.2 0.2 0.408 0 0.408 0 0 0 0 + 7 41.2 6.417 43.1 0 0 0 0 0 0 0 0 0 + 8 42.3 6.501 43.1 3.3 3.3 4.783 0 0.496 4.287 0 0 0 + 9 44.6 6.678 43.1 7.7 7.7 11.386 0 2.174 9.212 0 0 0 + 10 47.5 6.891 43.1 4.6 4.6 16.255 0 3.606 0 0 12.649 0 + 11 44.4 6.665 43.1 0.3 0.3 0.550 0 0.550 0 0 0 0 + 12 47.1 6.864 43.1 0.2 0.2 0.306 0 0.306 0 0 0 0 + 13 48.0 6.93 43.1 0.1 0.1 0.204 0 0.204 0 0 0 0 + 14 47.8 6.917 43.1 0.07 0.07 0.150 0 0.150 0 0 0 0 + 15 46.9 6.851 43.1 0 0 0 0 0 0 0 0 0 + 16 46.8 6.838 43.1 0.06 0.06 0.123 0 0.123 0 0 0 0 + 17 46.0 6.785 43.1 0.02 0.02 0.0409 0 0.0409 0 0 0 0 + 18 45.0 6.705 43.1 0.1 0.1 0.225 0 0.225 0 0 0 0 + 19 43.9 6.624 43.1 0.06 0.06 0.123 0 0.123 0 0 0 0 + 20 41.9 6.473 43.1 0.02 0.02 0.0409 0 0.0409 0 0 0 0 + 21 40.8 6.389 43.1 3.9 3.9 5.696 0 0.801 4.894 0 0 0 + 22 39.9 6.318 43.1 0.4 0.4 0.822 0 0.822 0 0 0 0 + 23 39.9 6.318 43.1 0 0 0 0 0 0 0 0 0 + 24 39.7 6.304 43.1 0 0 0 0 0 0 0 0 0 + + +Hourly DHWREP1 Report, Thu 12-Mar + + Hr Tout TSqRt Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ----- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 39.0 6.247 43.1 0 0 0 0 0 0 0 0 0 + 2 38.8 6.232 43.0 0 0 0 0 0 0 0 0 0 + 3 37.8 6.145 43.0 0 0 0 0 0 0 0 0 0 + 4 37.2 6.101 43.0 0 0 0 0 0 0 0 0 0 + 5 37.9 6.16 43.0 0 0 0 0 0 0 0 0 0 + 6 37.9 6.16 43.0 0 0 0 0 0 0 0 0 0 + 7 37.9 6.16 43.0 0.5 0.5 0.999 0 0.999 0 0 0 0 + 8 38.1 6.174 43.0 2.2 2.2 4.415 0 4.415 0 0 0 0 + 9 40.3 6.347 43.0 1.5 1.5 3.043 0 3.043 0 0 0 0 + 10 43.3 6.583 43.0 0.02 0.02 0.0388 0 0.0388 0 0 0 0 + 11 46.4 6.812 43.0 1.5 1.5 2.913 0 2.913 0 0 0 0 + 12 49.1 7.007 43.0 0.4 0.4 0.838 0 0.838 0 0 0 0 + 13 50.2 7.084 43.0 0 0 0 0 0 0 0 0 0 + 14 52.2 7.222 43.0 0 0 0 0 0 0 0 0 0 + 15 53.2 7.297 43.0 0 0 0 0 0 0 0 0 0 + 16 54.0 7.346 43.0 8.8 8.8 12.309 0 0 12.309 0 0 0 + 17 54.0 7.346 43.0 0.2 0.2 0.348 0 0.348 0 0 0 0 + 18 52.9 7.272 43.0 1.3 1.3 2.617 0 2.617 0 0 0 0 + 19 51.4 7.172 43.0 0 0 0 0 0 0 0 0 0 + 20 47.8 6.917 43.0 0.1 0.1 0.206 0 0.206 0 0 0 0 + 21 45.9 6.772 43.0 1.5 1.5 2.997 0 2.997 0 0 0 0 + 22 44.1 6.638 43.0 1.3 1.3 2.661 0 2.661 0 0 0 0 + 23 43.9 6.624 43.0 0 0 0 0 0 0 0 0 0 + 24 41.7 6.459 43.0 0 0 0 0 0 0 0 0 0 + + +Hourly DHWREP1 Report, Fri 13-Mar + + Hr Tout TSqRt Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ----- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 40.3 6.347 43.0 0 0 0 0 0 0 0 0 0 + 2 42.1 6.487 43.0 0 0 0 0 0 0 0 0 0 + 3 42.1 6.487 43.0 0 0 0 0 0 0 0 0 0 + 4 42.3 6.501 43.0 0.02 0.02 0.0340 0 0.0340 0 0 0 0 + 5 42.8 6.542 43.0 0.2 0.2 0.442 0 0.442 0 0 0 0 + 6 41.2 6.417 43.0 0 0 0 0 0 0 0 0 0 + 7 42.3 6.501 43.0 0 0 0 0 0 0 0 0 0 + 8 43.3 6.583 43.0 11.1 11.1 15.758 0 0.666 15.092 0 0 0 + 9 46.6 6.825 43.0 0 0 0 0 0 0 0 0 0 + 10 50.5 7.109 43.0 0 0 0 0 0 0 0 0 0 + 11 54.1 7.358 43.0 0 0 0 0 0 0 0 0 0 + 12 55.2 7.431 43.0 0 0 0 0 0 0 0 0 0 + 13 56.1 7.491 43.0 0.02 0.02 0.0409 0 0.0409 0 0 0 0 + 14 57.9 7.611 43.0 7.0 7.0 10.285 0 1.325 8.960 0 0 0 + 15 57.9 7.611 43.0 0 0 0 0 0 0 0 0 0 + 16 57.7 7.599 43.0 0 0 0 0 0 0 0 0 0 + 17 57.7 7.599 43.0 0 0 0 0 0 0 0 0 0 + 18 56.5 7.515 43.0 0 0 0 0 0 0 0 0 0 + 19 55.6 7.455 43.0 4.9 4.9 6.806 0 0 0 6.806 0 0 + 20 52.7 7.259 43.0 3.2 3.2 6.403 0 6.403 0 0 0 0 + 21 50.0 7.071 43.0 0 0 0 0 0 0 0 0 0 + 22 50.0 7.071 43.0 0.7 0.7 1.459 0 1.459 0 0 0 0 + 23 50.2 7.084 43.0 0 0 0 0 0 0 0 0 0 + 24 51.4 7.172 43.0 0 0 0 0 0 0 0 0 0 + + +Hourly DHWREP1 Report, Sat 14-Mar + + Hr Tout TSqRt Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ----- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 48.2 6.943 43.0 0.4 0.4 1.956 0 0 0 0 1.956 0 + 2 49.8 7.058 43.0 0 0 0 0 0 0 0 0 0 + 3 48.0 6.93 43.0 0 0 0 0 0 0 0 0 0 + 4 47.8 6.917 43.0 0 0 0 0 0 0 0 0 0 + 5 46.9 6.851 43.0 0 0 0 0 0 0 0 0 0 + 6 46.9 6.851 43.0 0 0 0 0 0 0 0 0 0 + 7 47.1 6.864 43.0 0 0 0 0 0 0 0 0 0 + 8 49.3 7.02 43.0 0 0 0 0 0 0 0 0 0 + 9 51.1 7.147 43.0 11.8 11.8 16.727 0 0.693 16.034 0 0 0 + 10 51.3 7.16 43.0 0.5 0.5 1.013 0 1.013 0 0 0 0 + 11 53.2 7.297 43.0 1.1 1.1 2.192 0 2.192 0 0 0 0 + 12 54.0 7.346 43.0 0 0 0 0 0 0 0 0 0 + 13 54.1 7.358 43.0 0 0 0 0 0 0 0 0 0 + 14 55.2 7.431 43.0 0.06 0.06 0.116 0 0.116 0 0 0 0 + 15 56.8 7.539 43.0 6.4 6.4 9.222 0 0.733 8.489 0 0 0 + 16 55.9 7.479 43.0 16.1 16.1 22.637 0 0 22.637 0 0 0 + 17 55.9 7.479 43.0 0 0 0 0 0 0 0 0 0 + 18 54.9 7.407 43.0 0 0 0 0 0 0 0 0 0 + 19 53.8 7.333 43.0 0.7 0.7 3.164 0 0.129 0 0 3.035 0 + 20 51.4 7.172 43.0 4.4 4.4 14.266 0 4.652 0 0 9.614 0 + 21 48.2 6.943 43.0 1.6 1.6 3.293 0 3.293 0 0 0 0 + 22 50.0 7.071 43.0 0 0 0 0 0 0 0 0 0 + 23 50.0 7.071 43.0 3.1 3.1 6.234 0 6.234 0 0 0 0 + 24 49.8 7.058 43.0 3.7 3.7 13.452 0 2.758 0 0 10.695 0 + + +Hourly DHWREP1 Report, Sun 15-Mar + + Hr Tout TSqRt Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ----- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 48.0 6.93 43.0 0.2 0.2 0.229 0 0.103 0 0 0 0.126 + 2 47.8 6.917 43.0 0 0 0 0 0 0 0 0 0 + 3 47.1 6.864 43.0 0 0 0 0 0 0 0 0 0 + 4 47.8 6.917 43.0 0 0 0 0 0 0 0 0 0 + 5 46.2 6.799 43.0 0 0 0 0 0 0 0 0 0 + 6 48.0 6.93 43.0 0 0 0 0 0 0 0 0 0 + 7 48.2 6.943 43.0 0 0 0 0 0 0 0 0 0 + 8 49.3 7.02 43.0 0.2 0.2 0.399 0 0.399 0 0 0 0 + 9 52.5 7.247 43.0 15.2 15.2 21.366 0 0.278 21.088 0 0 0 + 10 56.1 7.491 43.0 0.02 0.02 0.0323 0 0.0323 0 0 0 0 + 11 57.4 7.575 43.0 0 0 0 0 0 0 0 0 0 + 12 60.3 7.763 43.0 3.4 3.4 4.876 0 0.401 4.476 0 0 0 + 13 61.2 7.82 43.0 0.1 0.1 0.297 0 0.297 0 0 0 0 + 14 63.0 7.935 43.0 0.4 0.4 0.864 0 0.864 0 0 0 0 + 15 63.0 7.935 43.0 0.9 0.9 1.761 0 1.761 0 0 0 0 + 16 62.8 7.923 43.0 0.02 0.02 0.0452 0 0.0452 0 0 0 0 + 17 62.6 7.912 43.0 0.02 0.02 0.0323 0 0.0323 0 0 0 0 + 18 61.5 7.843 43.0 3.2 3.2 6.452 0 6.452 0 0 0 0 + 19 60.6 7.786 43.0 2.1 2.1 4.234 0 4.234 0 0 0 0 + 20 57.7 7.599 43.0 3.2 3.2 10.456 0 3.224 0 0 7.232 0 + 21 55.9 7.479 43.0 4.2 4.2 17.531 0 1.282 0 0 16.248 0 + 22 55.8 7.467 43.0 0.9 0.9 2.841 0 1.025 0 0 1.816 0 + 23 55.2 7.431 43.0 0 0 0 0 0 0 0 0 0 + 24 55.9 7.479 43.0 0.2 0.2 0.386 0 0.386 0 0 0 0 + + + +Blue Canyon for Tue 10-Mar + + Hr Tout Day Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ---- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 46.8 5T 42.9 0 0 0 0 0 0 0 0 0 + 2 45.0 5T 43.0 1.0 1.0 2.096 0 2.096 0 0 0 0 + 3 44.6 5T 43.0 0 0 0 0 0 0 0 0 0 + 4 42.1 5T 43.0 0 0 0 0 0 0 0 0 0 + 5 42.8 5T 43.0 0 0 0 0 0 0 0 0 0 + 6 39.7 5T 43.0 0 0 0 0 0 0 0 0 0 + 7 37.2 5T 43.0 0 0 0 0 0 0 0 0 0 + 8 37.0 5T 43.0 0 0 0 0 0 0 0 0 0 + 9 37.0 5T 43.0 0 0 0 0 0 0 0 0 0 + 10 39.0 5T 43.0 0.2 0.2 0.316 0 0.316 0 0 0 0 + 11 41.7 5T 43.0 1.9 1.9 3.700 0 3.700 0 0 0 0 + 12 41.0 5T 43.0 0 0 0 0 0 0 0 0 0 + 13 43.2 5T 43.0 0.1 0.1 0.297 0 0.297 0 0 0 0 + 14 44.2 5T 43.0 0.3 0.3 0.509 0 0.509 0 0 0 0 + 15 45.0 5T 43.0 0.6 0.6 1.128 0 1.128 0 0 0 0 + 16 45.0 5T 43.0 0 0 0 0 0 0 0 0 0 + 17 45.0 5T 43.0 1.6 1.6 3.204 0 3.204 0 0 0 0 + 18 44.4 5T 43.0 5.6 5.6 8.055 0 0.889 0 7.166 0 0 + 19 43.7 5T 43.0 6.6 6.6 24.034 0 4.712 0 0 19.322 0 + 20 40.8 5T 43.0 1.4 1.4 6.169 0 0.193 0 0 5.975 0 + 21 38.8 5T 43.0 0 0 0 0 0 0 0 0 0 + 22 37.8 5T 43.0 17.9 17.9 25.124 0 0.0582 25.066 0 0 0 + 23 37.2 5T 43.0 4.1 4.1 8.199 0 8.199 0 0 0 0 + 24 37.8 5T 43.0 1.4 1.4 2.714 0 2.714 0 0 0 0 + + +Blue Canyon for Wed 11-Mar + + Hr Tout Day Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ---- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 37.2 1W 43.0 0 0 0 0 0 0 0 0 0 + 2 38.1 1W 43.1 0 0 0 0 0 0 0 0 0 + 3 39.9 1W 43.1 0 0 0 0 0 0 0 0 0 + 4 39.9 1W 43.1 0 0 0 0 0 0 0 0 0 + 5 39.7 1W 43.1 0 0 0 0 0 0 0 0 0 + 6 39.2 1W 43.1 0.2 0.2 0.408 0 0.408 0 0 0 0 + 7 41.2 1W 43.1 0 0 0 0 0 0 0 0 0 + 8 42.3 1W 43.1 3.3 3.3 4.783 0 0.496 4.287 0 0 0 + 9 44.6 1W 43.1 7.7 7.7 11.386 0 2.174 9.212 0 0 0 + 10 47.5 1W 43.1 4.6 4.6 16.255 0 3.606 0 0 12.649 0 + 11 44.4 1W 43.1 0.3 0.3 0.550 0 0.550 0 0 0 0 + 12 47.1 1W 43.1 0.2 0.2 0.306 0 0.306 0 0 0 0 + 13 48.0 1W 43.1 0.1 0.1 0.204 0 0.204 0 0 0 0 + 14 47.8 1W 43.1 0.07 0.07 0.150 0 0.150 0 0 0 0 + 15 46.9 1W 43.1 0 0 0 0 0 0 0 0 0 + 16 46.8 1W 43.1 0.06 0.06 0.123 0 0.123 0 0 0 0 + 17 46.0 1W 43.1 0.02 0.02 0.0409 0 0.0409 0 0 0 0 + 18 45.0 1W 43.1 0.1 0.1 0.225 0 0.225 0 0 0 0 + 19 43.9 1W 43.1 0.06 0.06 0.123 0 0.123 0 0 0 0 + 20 41.9 1W 43.1 0.02 0.02 0.0409 0 0.0409 0 0 0 0 + 21 40.8 1W 43.1 3.9 3.9 5.696 0 0.801 4.894 0 0 0 + 22 39.9 1W 43.1 0.4 0.4 0.822 0 0.822 0 0 0 0 + 23 39.9 1W 43.1 0 0 0 0 0 0 0 0 0 + 24 39.7 1W 43.1 0 0 0 0 0 0 0 0 0 + + +Blue Canyon for Thu 12-Mar + + Hr Tout Day Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ---- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 39.0 5R 43.1 0 0 0 0 0 0 0 0 0 + 2 38.8 5R 43.0 0 0 0 0 0 0 0 0 0 + 3 37.8 5R 43.0 0 0 0 0 0 0 0 0 0 + 4 37.2 5R 43.0 0 0 0 0 0 0 0 0 0 + 5 37.9 5R 43.0 0 0 0 0 0 0 0 0 0 + 6 37.9 5R 43.0 0 0 0 0 0 0 0 0 0 + 7 37.9 5R 43.0 0.5 0.5 0.999 0 0.999 0 0 0 0 + 8 38.1 5R 43.0 2.2 2.2 4.415 0 4.415 0 0 0 0 + 9 40.3 5R 43.0 1.5 1.5 3.043 0 3.043 0 0 0 0 + 10 43.3 5R 43.0 0.02 0.02 0.0388 0 0.0388 0 0 0 0 + 11 46.4 5R 43.0 1.5 1.5 2.913 0 2.913 0 0 0 0 + 12 49.1 5R 43.0 0.4 0.4 0.838 0 0.838 0 0 0 0 + 13 50.2 5R 43.0 0 0 0 0 0 0 0 0 0 + 14 52.2 5R 43.0 0 0 0 0 0 0 0 0 0 + 15 53.2 5R 43.0 0 0 0 0 0 0 0 0 0 + 16 54.0 5R 43.0 8.8 8.8 12.309 0 0 12.309 0 0 0 + 17 54.0 5R 43.0 0.2 0.2 0.348 0 0.348 0 0 0 0 + 18 52.9 5R 43.0 1.3 1.3 2.617 0 2.617 0 0 0 0 + 19 51.4 5R 43.0 0 0 0 0 0 0 0 0 0 + 20 47.8 5R 43.0 0.1 0.1 0.206 0 0.206 0 0 0 0 + 21 45.9 5R 43.0 1.5 1.5 2.997 0 2.997 0 0 0 0 + 22 44.1 5R 43.0 1.3 1.3 2.661 0 2.661 0 0 0 0 + 23 43.9 5R 43.0 0 0 0 0 0 0 0 0 0 + 24 41.7 5R 43.0 0 0 0 0 0 0 0 0 0 + + +Blue Canyon for Fri 13-Mar + + Hr Tout Day Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ---- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 40.3 4F 43.0 0 0 0 0 0 0 0 0 0 + 2 42.1 4F 43.0 0 0 0 0 0 0 0 0 0 + 3 42.1 4F 43.0 0 0 0 0 0 0 0 0 0 + 4 42.3 4F 43.0 0.02 0.02 0.0340 0 0.0340 0 0 0 0 + 5 42.8 4F 43.0 0.2 0.2 0.442 0 0.442 0 0 0 0 + 6 41.2 4F 43.0 0 0 0 0 0 0 0 0 0 + 7 42.3 4F 43.0 0 0 0 0 0 0 0 0 0 + 8 43.3 4F 43.0 11.1 11.1 15.758 0 0.666 15.092 0 0 0 + 9 46.6 4F 43.0 0 0 0 0 0 0 0 0 0 + 10 50.5 4F 43.0 0 0 0 0 0 0 0 0 0 + 11 54.1 4F 43.0 0 0 0 0 0 0 0 0 0 + 12 55.2 4F 43.0 0 0 0 0 0 0 0 0 0 + 13 56.1 4F 43.0 0.02 0.02 0.0409 0 0.0409 0 0 0 0 + 14 57.9 4F 43.0 7.0 7.0 10.285 0 1.325 8.960 0 0 0 + 15 57.9 4F 43.0 0 0 0 0 0 0 0 0 0 + 16 57.7 4F 43.0 0 0 0 0 0 0 0 0 0 + 17 57.7 4F 43.0 0 0 0 0 0 0 0 0 0 + 18 56.5 4F 43.0 0 0 0 0 0 0 0 0 0 + 19 55.6 4F 43.0 4.9 4.9 6.806 0 0 0 6.806 0 0 + 20 52.7 4F 43.0 3.2 3.2 6.403 0 6.403 0 0 0 0 + 21 50.0 4F 43.0 0 0 0 0 0 0 0 0 0 + 22 50.0 4F 43.0 0.7 0.7 1.459 0 1.459 0 0 0 0 + 23 50.2 4F 43.0 0 0 0 0 0 0 0 0 0 + 24 51.4 4F 43.0 0 0 0 0 0 0 0 0 0 + + +Blue Canyon for Sat 14-Mar + + Hr Tout Day Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ---- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 48.2 4S 43.0 0.4 0.4 1.956 0 0 0 0 1.956 0 + 2 49.8 4S 43.0 0 0 0 0 0 0 0 0 0 + 3 48.0 4S 43.0 0 0 0 0 0 0 0 0 0 + 4 47.8 4S 43.0 0 0 0 0 0 0 0 0 0 + 5 46.9 4S 43.0 0 0 0 0 0 0 0 0 0 + 6 46.9 4S 43.0 0 0 0 0 0 0 0 0 0 + 7 47.1 4S 43.0 0 0 0 0 0 0 0 0 0 + 8 49.3 4S 43.0 0 0 0 0 0 0 0 0 0 + 9 51.1 4S 43.0 11.8 11.8 16.727 0 0.693 16.034 0 0 0 + 10 51.3 4S 43.0 0.5 0.5 1.013 0 1.013 0 0 0 0 + 11 53.2 4S 43.0 1.1 1.1 2.192 0 2.192 0 0 0 0 + 12 54.0 4S 43.0 0 0 0 0 0 0 0 0 0 + 13 54.1 4S 43.0 0 0 0 0 0 0 0 0 0 + 14 55.2 4S 43.0 0.06 0.06 0.116 0 0.116 0 0 0 0 + 15 56.8 4S 43.0 6.4 6.4 9.222 0 0.733 8.489 0 0 0 + 16 55.9 4S 43.0 16.1 16.1 22.637 0 0 22.637 0 0 0 + 17 55.9 4S 43.0 0 0 0 0 0 0 0 0 0 + 18 54.9 4S 43.0 0 0 0 0 0 0 0 0 0 + 19 53.8 4S 43.0 0.7 0.7 3.164 0 0.129 0 0 3.035 0 + 20 51.4 4S 43.0 4.4 4.4 14.266 0 4.652 0 0 9.614 0 + 21 48.2 4S 43.0 1.6 1.6 3.293 0 3.293 0 0 0 0 + 22 50.0 4S 43.0 0 0 0 0 0 0 0 0 0 + 23 50.0 4S 43.0 3.1 3.1 6.234 0 6.234 0 0 0 0 + 24 49.8 4S 43.0 3.7 3.7 13.452 0 2.758 0 0 10.695 0 + + +Blue Canyon for Sun 15-Mar + + Hr Tout Day Tinlet FxUseHot WHUse Total Unknown Faucet Shower Bath CWashr DWashr + -- ---- ---- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 48.0 5U 43.0 0.2 0.2 0.229 0 0.103 0 0 0 0.126 + 2 47.8 5U 43.0 0 0 0 0 0 0 0 0 0 + 3 47.1 5U 43.0 0 0 0 0 0 0 0 0 0 + 4 47.8 5U 43.0 0 0 0 0 0 0 0 0 0 + 5 46.2 5U 43.0 0 0 0 0 0 0 0 0 0 + 6 48.0 5U 43.0 0 0 0 0 0 0 0 0 0 + 7 48.2 5U 43.0 0 0 0 0 0 0 0 0 0 + 8 49.3 5U 43.0 0.2 0.2 0.399 0 0.399 0 0 0 0 + 9 52.5 5U 43.0 15.2 15.2 21.366 0 0.278 21.088 0 0 0 + 10 56.1 5U 43.0 0.02 0.02 0.0323 0 0.0323 0 0 0 0 + 11 57.4 5U 43.0 0 0 0 0 0 0 0 0 0 + 12 60.3 5U 43.0 3.4 3.4 4.876 0 0.401 4.476 0 0 0 + 13 61.2 5U 43.0 0.1 0.1 0.297 0 0.297 0 0 0 0 + 14 63.0 5U 43.0 0.4 0.4 0.864 0 0.864 0 0 0 0 + 15 63.0 5U 43.0 0.9 0.9 1.761 0 1.761 0 0 0 0 + 16 62.8 5U 43.0 0.02 0.02 0.0452 0 0.0452 0 0 0 0 + 17 62.6 5U 43.0 0.02 0.02 0.0323 0 0.0323 0 0 0 0 + 18 61.5 5U 43.0 3.2 3.2 6.452 0 6.452 0 0 0 0 + 19 60.6 5U 43.0 2.1 2.1 4.234 0 4.234 0 0 0 0 + 20 57.7 5U 43.0 3.2 3.2 10.456 0 3.224 0 0 7.232 0 + 21 55.9 5U 43.0 4.2 4.2 17.531 0 1.282 0 0 16.248 0 + 22 55.8 5U 43.0 0.9 0.9 2.841 0 1.025 0 0 1.816 0 + 23 55.2 5U 43.0 0 0 0 0 0 0 0 0 0 + 24 55.9 5U 43.0 0.2 0.2 0.386 0 0.386 0 0 0 0 + + + +Daily Hot Water Use, DHW meter "DHWMtrWH1", Mar + +Day Total Unknown Faucet Shower Bath CWashr DWashr +--- ------- ------- ------- ------- ------- ------- ------- + 10 42.538 0 14.008 17.860 5.106 5.565 0 + 11 20.921 0 5.034 13.104 0 2.783 0 + 12 19.310 0 10.538 8.771 0 0 0 + 13 27.179 0 5.185 17.143 4.851 0 0 + 14 50.083 0 10.906 33.611 0 5.566 0 + 15 34.318 0 10.408 18.218 0 5.565 0.126 + + + +Daily Hot Water Use, DHW meter "DHWMtrWH2", Mar + +Day Total Unknown Faucet Shower Bath CWashr DWashr +--- ------- ------- ------- ------- ------- ------- ------- + 10 42.538 0 14.008 17.860 5.106 5.565 0 + 11 20.921 0 5.034 13.104 0 2.783 0 + 12 19.310 0 10.538 8.771 0 0 0 + 13 27.179 0 5.185 17.143 4.851 0 0 + 14 50.083 0 10.906 33.611 0 5.566 0 + 15 34.318 0 10.408 18.218 0 5.565 0.126 + + + +! Log for Run 006: + +! CSE 0.918.0+command-tests.6fabc4d3.2 for Win32 console + + + +Input for Run 006: + + + UNSET wfName + wfName = "CA_BLUE-CANYON-AP_725845S_STYP20.epw" + + // change string expression to float expression + ALTER REPORTCOL DayCol1 colHead="TSqRt" colWid=5 colVal=sqrt( $tDbO) + + ALTER REPORT DHWREP2 rpTitle = "Blue Canyon" + + RUN + + $EOF +----------------------- +??? COMMANDS.CSE(1602): Info: report 'DHWREP1' of reportFile 'Primary': +??? report width 84 is greater than line width 83. +??? Line width has been adjusted. +----------------------- + + + +! CSE 0.918.0+command-tests.6fabc4d3.2 for Win32 console run(s) done: Mon 17-Jul-23 10:20:04 am + +! Executable: d:\cse\msvc\cse.exe +! 16-Jul-23 1:29 pm (VS 14.29 2749440 bytes) (HPWH 1.22.0) +! Command line: -x! -t1 commands +! Input file: D:\cse\test\commands.cse +! Report file: D:\cse\test\commands.rep + +! Timing info -- + +! Input: Time = 0.32 Calls = 6 T/C = 0.0525 +! AutoSizing: Time = 0.00 Calls = 0 T/C = 0.0000 +! Simulation: Time = 4.53 Calls = 6 T/C = 0.7555 +! Reports: Time = 0.00 Calls = 6 T/C = 0.0003 +! Total: Time = 4.87 Calls = 1 T/C = 4.8660