blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
986 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
145 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
122 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
ea179c89937753402bba98e1aebde4078deb2c55
1d928c3f90d4a0a9a3919a804597aa0a4aab19a3
/c++/cm-compiler/2019/4/gen8_vme.h
7b0cb62e9169af3a627308ff40e62f1d34724a82
[]
no_license
rosoareslv/SED99
d8b2ff5811e7f0ffc59be066a5a0349a92cbb845
a062c118f12b93172e31e8ca115ce3f871b64461
refs/heads/main
2023-02-22T21:59:02.703005
2021-01-28T19:40:51
2021-01-28T19:40:51
306,497,459
1
1
null
2020-11-24T20:56:18
2020-10-23T01:18:07
null
UTF-8
C++
false
false
155,862
h
/* * Copyright (c) 2019, Intel Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ #if (__INCLUDE_LEVEL__ == 1) static_assert(0, "CM:w:gen8_vme.h should not be included explicitly - only " "<cm/cm.h> is required"); #endif #ifndef _CLANG_gen8_VME_H_ #define _CLANG_gen8_VME_H_ #include "cm_send.h" #include "cm_util.h" #define __SFID_VME 8 #define __SFID_CRE 13 #define S13_2TOS16(value) \ (((value >> 2) & 0x1fff) | (((value >> 15) & 0x1) << 15)) #define S16TOS13_2(value) \ (((value & 0x1fff) << 2) | (((value >> 15) & 0x1) << 15)) // Select one element from the input payload #ifdef VME_Input_S1 #undef VME_Input_S1 #endif #define VME_Input_S1(p, t, r, c) p.row(r).format<t>().select<1, 1>(c) #ifdef VME_Input_G1 #undef VME_Input_G1 #endif #define VME_Input_G1(p, t, r, c) p.row(r).format<t>().select<1, 1>(c)(0) // Select one element from the output result #ifdef VME_Output_S1 #undef VME_Output_S1 #endif #define VME_Output_S1(p, t, r, c) p.row(r).format<t>().select<1, 1>(c)(0) // Input // SET methods // Format = S15 #define VME_SET_UNIInput_Ref0X(p, v) (VME_Input_S1(p, ushort, 0, 0) = v) #define VME_SET_UNIInput_Ref0Y(p, v) (VME_Input_S1(p, ushort, 0, 1) = v) // Format = S15 #define VME_SET_UNIInput_Ref1X(p, v) (VME_Input_S1(p, ushort, 0, 2) = v) #define VME_SET_UNIInput_Ref1Y(p, v) (VME_Input_S1(p, ushort, 0, 3) = v) // Format = U16 #define VME_SET_UNIInput_SrcX(p, v) (VME_Input_S1(p, ushort, 0, 4) = v) // Format = U16 #define VME_SET_UNIInput_SrcY(p, v) (VME_Input_S1(p, ushort, 0, 5) = v) // Set - FieldBased // Clear - FrameBased #define VME_SET_UNIInput_SrcAccess(p) (VME_Input_S1(p, uchar, 0, 12) |= 0x40) #define VME_CLEAR_UNIInput_SrcAccess(p) (VME_Input_S1(p, uchar, 0, 12) &= 0xBF) // Set - FieldBased // Clear - FrameBased #define VME_SET_UNIInput_RefAccess(p) (VME_Input_S1(p, uchar, 0, 12) |= 0x80) #define VME_CLEAR_UNIInput_RefAccess(p) (VME_Input_S1(p, uchar, 0, 12) &= 0x7F) // Set - different paths // Clear - same path #define VME_SET_UNIInput_DualSearchPath(p) \ (VME_Input_S1(p, uchar, 0, 13) |= 0x08) #define VME_CLEAR_UNIInput_DualSearchPath(p) \ (VME_Input_S1(p, uchar, 0, 13) &= 0xF7) // #define INT_MODE 0x0 // #define HALF_PEL_MODE 0x1 // #define QUARTER_PEL_MODE 0x3 #define VME_SET_UNIInput_SubPelMode(p, v) \ (VME_Input_S1(p, uchar, 0, 13) = \ VME_Input_S1(p, uchar, 0, 13) & 0xCF | (v << 4)) // Set - 4MVP // Clear - 1MVP #define VME_SET_UNIInput_SkipModeType(p) (VME_Input_S1(p, uchar, 0, 13) |= 0x40) #define VME_CLEAR_UNIInput_SkipModeType(p) \ (VME_Input_S1(p, uchar, 0, 13) &= 0xBF) #define VME_SET_UNIInput_DisableFieldCacheAllocation(p) \ (VME_Input_S1(p, uchar, 0, 13) |= 0x80) #define VME_CLEAR_UNIInput_DisableFieldCacheAllocation(p) \ (VME_Input_S1(p, uchar, 0, 13) &= 0x7F) // Set - Chroma mode // Clear - Luma mode #define VME_SET_UNIInput_InterChromaMode(p) \ (VME_Input_S1(p, uchar, 0, 14) |= 0x1) #define VME_CLEAR_UNIInput_InterChromaMode(p) \ (VME_Input_S1(p, uchar, 0, 14) &= 0xFE) #define VME_SET_UNIInput_FTEnable(p) (VME_Input_S1(p, uchar, 0, 14) |= 0x2) #define VME_CLEAR_UNIInput_FTEnable(p) (VME_Input_S1(p, uchar, 0, 14) &= 0xFD) #define VME_SET_UNIInput_BMEDisableFBR(p) (VME_Input_S1(p, uchar, 0, 14) |= 0x4) #define VME_CLEAR_UNIInput_BMEDisableFBR(p) \ (VME_Input_S1(p, uchar, 0, 14) &= 0xFB) // v is a 7-bit mask with the following definition: // xxxxxx1 : 16x16 sub-macroblock disabled // xxxxx1x : 2x(16x8) sub-macroblock within 16x16 disabled // xxxx1xx : 2x(8x16) sub-macroblock within 16x16 disabled // xxx1xxx : 1x(8x8) sub-partition for 4x(8x8) within 16x16 disabled // xx1xxxx : 2x(8x4) sub-partition for 4x(8x8) within 16x16 disabled // x1xxxxx : 2x(4x8) sub-partition for 4x(8x8) within 16x16 disabled // 1xxxxxx : 4x(4x4) sub-partition for 4x(8x8) within 16x16 disabled #define VME_SET_UNIInput_SubMbPartMask(p, v) (VME_Input_S1(p, uchar, 0, 15) = v) // The value must be a multiple of 4. Range = [20, 64] #define VME_SET_UNIInput_RefW(p, v) (VME_Input_S1(p, uchar, 0, 22) = v) // The value must be a multiple of 4. Range = [20, 64] #define VME_SET_UNIInput_RefH(p, v) (VME_Input_S1(p, uchar, 0, 23) = v) #define VME_SET_UNIInput_SkipModeEn(p) (VME_Input_S1(p, uchar, 1, 0) |= 0x1) #define VME_CLEAR_UNIInput_SkipModeEn(p) (VME_Input_S1(p, uchar, 1, 0) &= 0xFE) #define VME_SET_UNIInput_AdaptiveEn(p) (VME_Input_S1(p, uchar, 1, 0) |= 0x2) #define VME_CLEAR_UNIInput_AdaptiveEn(p) (VME_Input_S1(p, uchar, 1, 0) &= 0xFD) #define VME_SET_UNIInput_EarlyImeSuccessEn(p) \ (VME_Input_S1(p, uchar, 1, 0) |= 0x20) #define VME_CLEAR_UNIInput_EarlyImeSuccessEn(p) \ (VME_Input_S1(p, uchar, 1, 0) &= 0xDF) #define VME_SET_UNIInput_T8x8FlagForInterEn(p) \ (VME_Input_S1(p, uchar, 1, 0) |= 0x80) #define VME_CLEAR_UNIInput_T8x8FlagForInterEn(p) \ (VME_Input_S1(p, uchar, 1, 0) &= 0x7F) #define VME_SET_UNIInput_EarlyImeStop(p, v) (VME_Input_S1(p, uchar, 1, 3) = v) #define VME_SET_UNIInput_MaxNumMVs(p, v) (VME_Input_S1(p, uchar, 1, 4) = v) #define VME_SET_UNIInput_Ref0Polarity(p, v) \ (VME_Input_S1(p, uchar, 1, 5) = VME_Input_S1(p, uchar, 1, 5) & 0xF0 | v) #define VME_SET_UNIInput_Ref1Polarity(p, v) \ (VME_Input_S1(p, uchar, 1, 5) = \ VME_Input_S1(p, uchar, 1, 5) & 0x0F | (v << 4)) // Format = U6, Valid Values: [16, 21, 32, 43, 48] #define VME_SET_UNIInput_BiWeight(p, v) (VME_Input_S1(p, uchar, 1, 6) = v) #define VME_SET_UNIInput_RefPixelBiasEnable(p) \ (VME_Input_S1(p, uchar, 1, 7) |= 0x20) #define VME_CLEAR_UNIInput_RefPixelBiasEnable(p) \ (VME_Input_S1(p, uchar, 1, 7) &= 0xDF) #define VME_SET_UNIInput_UniMixDisable(p) (VME_Input_S1(p, uchar, 1, 7) |= 0x10) #define VME_CLEAR_UNIInput_UniMixDisable(p) \ (VME_Input_S1(p, uchar, 1, 7) &= 0xEF) // Format = U8, Valid range [1,63] #define VME_SET_UNIInput_LenSP(p, v) (VME_Input_S1(p, uchar, 1, 8) = v) // Format = U8, Valid range [1,63] #define VME_SET_UNIInput_MaxNumSU(p, v) (VME_Input_S1(p, uchar, 1, 9) = v) // Format = U4 #define VME_SET_UNIInput_StartCenter0(p, StartCenter0X, StartCenter0Y) \ (VME_Input_S1(p, uchar, 1, 10) = StartCenter0X | (StartCenter0Y << 4)) // Format = U4 #define VME_SET_UNIInput_StartCenter1(p, StartCenter1X, StartCenter1Y) \ (VME_Input_S1(p, uchar, 1, 11) = StartCenter1X | (StartCenter1Y << 4)) // Format = U8 #define VME_SET_UNIInput_WeightedSADCtrl0_3(p, v) \ (VME_Input_S1(p, uchar, 1, 12) = v) #define VME_SET_UNIInput_WeightedSADCtrl4_7(p, v) \ (VME_Input_S1(p, uchar, 1, 13) = v) #define VME_SET_UNIInput_WeightedSADCtrl8_11(p, v) \ (VME_Input_S1(p, uchar, 1, 14) = v) #define VME_SET_UNIInput_WeightedSADCtrl12_15(p, v) \ (VME_Input_S1(p, uchar, 1, 15) = v) // Format = U4 #define VME_SET_UNIInput_Blk0RefID(p, FwdBlk0RefID, BwdBlk0RefID) \ (VME_Input_S1(p, uchar, 1, 24) = FwdBlk0RefID | (BwdBlk0RefID << 4)) // Format = U4 #define VME_SET_UNIInput_Blk1RefID(p, FwdBlk1RefID, BwdBlk1RefID) \ (VME_Input_S1(p, uchar, 1, 25) = FwdBlk1RefID | (BwdBlk1RefID << 4)) // Format = U4 #define VME_SET_UNIInput_Blk2RefID(p, FwdBlk2RefID, BwdBlk2RefID) \ (VME_Input_S1(p, uchar, 1, 26) = FwdBlk2RefID | (BwdBlk2RefID << 4)) // Format = U4 #define VME_SET_UNIInput_Blk3RefID(p, FwdBlk3RefID, BwdBlk3RefID) \ (VME_Input_S1(p, uchar, 1, 27) = FwdBlk3RefID | (BwdBlk3RefID << 4)) #define VME_SET_UNIInput_IntraFlags(p, v) (VME_Input_S1(p, uchar, 1, 28) = v) // v is a 8-bit mask with the following definition: // Bit-7 Reserved : MBZ (for IntraPredAvailFlagF - F (pixel[-1,7] // available // for MbAff) // Bit-6 Reserved : MBZ (for IntraPredAvailFlagA/E - A (left neighbor top // half for MbAff) // Bit-5 IntraPredAvailFlagE/A - A (Left neighbor or Left bottom half) // Bit-4 IntraPredAvailFlagB - B (Upper neighbor) // Bit-3 IntraPredAvailFlagC - C (Upper left neighbor) // Bit-2 IntraPredAvailFlagD - D (Upper right neighbor) // Bit-1:0 Reserved: MBZ (ChromaIntraPredMode) #define VME_SET_UNIInput_MbIntraStruct(p, v) (VME_Input_S1(p, uchar, 1, 29) = v) // v is a 2-bit value: // 00: qpel [Qpel difference between MV and cost center: eff cost range 0-15pel] // 01: hpel [Hpel difference between MV and cost center: eff cost range 0-31pel] // 10: pel [Pel difference between MV and cost center: eff cost range 0-63pel] // 11: 2pel [2Pel difference between MV and cost center: eff cost range // 0-127pel] #define VME_SET_UNIInput_MVCostScaleFactor(p, v) \ (VME_Input_S1(p, uchar, 1, 30) = VME_Input_S1(p, uchar, 1, 30) & 0xFC | v) #define VME_SET_UNIInput_SrcFieldPolarity(p) \ (VME_Input_S1(p, uchar, 1, 30) |= 0x08) #define VME_CLEAR_UNIInput_SrcFieldPolarity(p) \ (VME_Input_S1(p, uchar, 1, 30) &= 0xF7) #define VME_SET_UNIInput_BilinearEnable(p) \ (VME_Input_S1(p, uchar, 1, 30) |= 0x04) #define VME_CLEAR_UNIInput_BilinearEnable(p) \ (VME_Input_S1(p, uchar, 1, 30) &= 0xFB) #define VME_SET_UNIInput_WeightedSADHAAR(p) \ (VME_Input_S1(p, uchar, 1, 30) |= 0x10) #define VME_CLEAR_UNIInput_WeightedSADHAAR(p) \ (VME_Input_S1(p, uchar, 1, 30) &= 0xEF) #define VME_SET_UNIInput_AConlyHAAR(p) (VME_Input_S1(p, uchar, 1, 30) |= 0x20) #define VME_CLEAR_UNIInput_AConlyHAAR(p) (VME_Input_S1(p, uchar, 1, 30) &= 0xDF) #define VME_SET_UNIInput_RefIDCostMode(p) \ (VME_Input_S1(p, uchar, 1, 30) |= 0x40) #define VME_CLEAR_UNIInput_RefIDCostMode(p) \ (VME_Input_S1(p, uchar, 1, 30) &= 0xBF) #define VME_SET_UNIInput_IDMShapeMode(p) (VME_Input_S1(p, uchar, 1, 30) |= 0x80) #define VME_CLEAR_UNIInput_IDMShapeMode(p) \ (VME_Input_S1(p, uchar, 1, 30) &= 0x7F) // v is a 8-bit mask with the following definition: // xxxx xxx1: Ref0 Skip Center 0 is enabled [corresponds to M2.0] // xxxx xx1x: Ref1 Skip Center 0 is enabled [corresponds to M2.1] // xxxx x1xx: Ref0 Skip Center 1 is enabled [corresponds to M2.2] // xxxx 1xxx: Ref1 Skip Center 1 is enabled [corresponds to M2.3] // xxx1 xxxx: Ref0 Skip Center 2 is enabled [corresponds to M2.4] // xx1x xxxx: Ref1 Skip Center 2 is enabled [corresponds to M2.5] // x1xx xxxx: Ref0 Skip Center 3 is enabled [corresponds to M2.6] // 1xxx xxxx: Ref1 Skip Center 3 is enabled [corresponds to M2.7] #define VME_SET_UNIInput_SkipCenterMask(p, v) \ (VME_Input_S1(p, uchar, 1, 31) = v) // NOTE: replace v with U4U4 type with // (shift_count, shift_val) and set the value as (shift_val | (shift_count << // 4)) // Format = U4U4 (encoded value must fit in 12-bits) #define VME_SET_UNIInput_Mode0Cost(p, v) (VME_Input_S1(p, uchar, 2, 0) = v) #define VME_SET_UNIInput_Mode1Cost(p, v) (VME_Input_S1(p, uchar, 2, 1) = v) #define VME_SET_UNIInput_Mode2Cost(p, v) (VME_Input_S1(p, uchar, 2, 2) = v) #define VME_SET_UNIInput_Mode3Cost(p, v) (VME_Input_S1(p, uchar, 2, 3) = v) #define VME_SET_UNIInput_Mode4Cost(p, v) (VME_Input_S1(p, uchar, 2, 4) = v) #define VME_SET_UNIInput_Mode5Cost(p, v) (VME_Input_S1(p, uchar, 2, 5) = v) #define VME_SET_UNIInput_Mode6Cost(p, v) (VME_Input_S1(p, uchar, 2, 6) = v) #define VME_SET_UNIInput_Mode7Cost(p, v) (VME_Input_S1(p, uchar, 2, 7) = v) #define VME_SET_UNIInput_Mode8Cost(p, v) (VME_Input_S1(p, uchar, 2, 8) = v) #define VME_SET_UNIInput_Mode9Cost(p, v) (VME_Input_S1(p, uchar, 2, 9) = v) // Format = U4U4 (encoded value must fit in 12-bits) #define VME_SET_UNIInput_RefIDCost(p, v) (VME_Input_S1(p, uchar, 2, 10) = v) // Format = U4U4 (encoded value must fit in 12-bits) #define VME_SET_UNIInput_ChromaIntraModeCost(p, v) \ (VME_Input_S1(p, uchar, 2, 11) = v) // Format = U4U4 (encoded value must fit in 10-bits) #define VME_SET_UNIInput_MV0Cost(p, v) (VME_Input_S1(p, uchar, 2, 12) = v) #define VME_SET_UNIInput_MV1Cost(p, v) (VME_Input_S1(p, uchar, 2, 13) = v) #define VME_SET_UNIInput_MV2Cost(p, v) (VME_Input_S1(p, uchar, 2, 14) = v) #define VME_SET_UNIInput_MV3Cost(p, v) (VME_Input_S1(p, uchar, 2, 15) = v) #define VME_SET_UNIInput_MV4Cost(p, v) (VME_Input_S1(p, uchar, 2, 16) = v) #define VME_SET_UNIInput_MV5Cost(p, v) (VME_Input_S1(p, uchar, 2, 17) = v) #define VME_SET_UNIInput_MV6Cost(p, v) (VME_Input_S1(p, uchar, 2, 18) = v) #define VME_SET_UNIInput_MV7Cost(p, v) (VME_Input_S1(p, uchar, 2, 19) = v) // Format = U8 #define VME_SET_UNIInput_FBRMbModeInput(p, v) \ (VME_Input_S1(p, uchar, 2, 20) = v) // Format = U8 #define VME_SET_UNIInput_FBRSubMBShapeInput(p, v) \ (VME_Input_S1(p, uchar, 2, 21) = v) // Format = U8 #define VME_SET_UNIInput_FBRSubPredModeInput(p, v) \ (VME_Input_S1(p, uchar, 2, 22) = v) // Format = U16 #define VME_SET_UNIInput_SICFwdTCoeffThreshold0(p, v) \ (VME_Input_S1(p, ushort, 2, 12) = v) // Format = U8 #define VME_SET_UNIInput_SICFwdTCoeffThreshold1(p, v) \ (VME_Input_S1(p, uchar, 2, 26) = v) #define VME_SET_UNIInput_SICFwdTCoeffThreshold2(p, v) \ (VME_Input_S1(p, uchar, 2, 27) = v) #define VME_SET_UNIInput_SICFwdTCoeffThreshold3(p, v) \ (VME_Input_S1(p, uchar, 2, 28) = v) #define VME_SET_UNIInput_SICFwdTCoeffThreshold4(p, v) \ (VME_Input_S1(p, uchar, 2, 29) = v) #define VME_SET_UNIInput_SICFwdTCoeffThreshold5(p, v) \ (VME_Input_S1(p, uchar, 2, 30) = v) #define VME_SET_UNIInput_SICFwdTCoeffThreshold6(p, v) \ (VME_Input_S1(p, uchar, 2, 31) = v) // Format = S13.2, DletaX Valid Range: [-2048.00 to 2047.75], DletaY Valid // Range: [-512.00 to 511.75] #define VME_SET_UNIInput_FWDCostCenter0(p, DeltaX, DeltaY) \ (VME_Input_S1(p, uint, 3, 0) = DeltaX | (DeltaY << 16)) #define VME_SET_UNIInput_BWDCostCenter0(p, DeltaX, DeltaY) \ (VME_Input_S1(p, uint, 3, 1) = DeltaX | (DeltaY << 16)) #define VME_SET_UNIInput_FWDCostCenter1(p, DeltaX, DeltaY) \ (VME_Input_S1(p, uint, 3, 2) = DeltaX | (DeltaY << 16)) #define VME_SET_UNIInput_BWDCostCenter1(p, DeltaX, DeltaY) \ (VME_Input_S1(p, uint, 3, 3) = DeltaX | (DeltaY << 16)) #define VME_SET_UNIInput_FWDCostCenter2(p, DeltaX, DeltaY) \ (VME_Input_S1(p, uint, 3, 4) = DeltaX | (DeltaY << 16)) #define VME_SET_UNIInput_BWDCostCenter2(p, DeltaX, DeltaY) \ (VME_Input_S1(p, uint, 3, 5) = DeltaX | (DeltaY << 16)) #define VME_SET_UNIInput_FWDCostCenter3(p, DeltaX, DeltaY) \ (VME_Input_S1(p, uint, 3, 6) = DeltaX | (DeltaY << 16)) #define VME_SET_UNIInput_BWDCostCenter3(p, DeltaX, DeltaY) \ (VME_Input_S1(p, uint, 3, 7) = DeltaX | (DeltaY << 16)) // Format = U8, with the following definition: // [7:4] (Y) - specifies relative Y distance to the next SU from previous SU in // units of SU // [3:0] (X) - specifies relative X distance to the next SU from previous SU in // units of SU // Format = U8, with the following definition: // [7:4] (Y) - specifies relative Y distance to the next SU from previous SU in // units of SU // [3:0] (X) - specifies relative X distance to the next SU from previous SU in // units of SU #define VME_SET_IMEInput_IMESearchPathDelta0(p, v) \ (VME_Input_G1(p, uchar, 0, 0) = v) #define VME_SET_IMEInput_IMESearchPathDelta1(p, v) \ (VME_Input_G1(p, uchar, 0, 1) = v) #define VME_SET_IMEInput_IMESearchPathDelta2(p, v) \ (VME_Input_G1(p, uchar, 0, 2) = v) #define VME_SET_IMEInput_IMESearchPathDelta3(p, v) \ (VME_Input_G1(p, uchar, 0, 3) = v) #define VME_SET_IMEInput_IMESearchPathDelta4(p, v) \ (VME_Input_G1(p, uchar, 0, 4) = v) #define VME_SET_IMEInput_IMESearchPathDelta5(p, v) \ (VME_Input_G1(p, uchar, 0, 5) = v) #define VME_SET_IMEInput_IMESearchPathDelta6(p, v) \ (VME_Input_G1(p, uchar, 0, 6) = v) #define VME_SET_IMEInput_IMESearchPathDelta7(p, v) \ (VME_Input_G1(p, uchar, 0, 7) = v) #define VME_SET_IMEInput_IMESearchPathDelta8(p, v) \ (VME_Input_G1(p, uchar, 0, 8) = v) #define VME_SET_IMEInput_IMESearchPathDelta9(p, v) \ (VME_Input_G1(p, uchar, 0, 9) = v) #define VME_SET_IMEInput_IMESearchPathDelta10(p, v) \ (VME_Input_G1(p, uchar, 0, 10) = v) #define VME_SET_IMEInput_IMESearchPathDelta11(p, v) \ (VME_Input_G1(p, uchar, 0, 11) = v) #define VME_SET_IMEInput_IMESearchPathDelta12(p, v) \ (VME_Input_G1(p, uchar, 0, 12) = v) #define VME_SET_IMEInput_IMESearchPathDelta13(p, v) \ (VME_Input_G1(p, uchar, 0, 13) = v) #define VME_SET_IMEInput_IMESearchPathDelta14(p, v) \ (VME_Input_G1(p, uchar, 0, 14) = v) #define VME_SET_IMEInput_IMESearchPathDelta15(p, v) \ (VME_Input_G1(p, uchar, 0, 15) = v) #define VME_SET_IMEInput_IMESearchPathDelta16(p, v) \ (VME_Input_G1(p, uchar, 0, 16) = v) #define VME_SET_IMEInput_IMESearchPathDelta17(p, v) \ (VME_Input_G1(p, uchar, 0, 17) = v) #define VME_SET_IMEInput_IMESearchPathDelta18(p, v) \ (VME_Input_G1(p, uchar, 0, 18) = v) #define VME_SET_IMEInput_IMESearchPathDelta19(p, v) \ (VME_Input_G1(p, uchar, 0, 19) = v) #define VME_SET_IMEInput_IMESearchPathDelta20(p, v) \ (VME_Input_G1(p, uchar, 0, 20) = v) #define VME_SET_IMEInput_IMESearchPathDelta21(p, v) \ (VME_Input_G1(p, uchar, 0, 21) = v) #define VME_SET_IMEInput_IMESearchPathDelta22(p, v) \ (VME_Input_G1(p, uchar, 0, 22) = v) #define VME_SET_IMEInput_IMESearchPathDelta23(p, v) \ (VME_Input_G1(p, uchar, 0, 23) = v) #define VME_SET_IMEInput_IMESearchPathDelta24(p, v) \ (VME_Input_G1(p, uchar, 0, 24) = v) #define VME_SET_IMEInput_IMESearchPathDelta25(p, v) \ (VME_Input_G1(p, uchar, 0, 25) = v) #define VME_SET_IMEInput_IMESearchPathDelta26(p, v) \ (VME_Input_G1(p, uchar, 0, 26) = v) #define VME_SET_IMEInput_IMESearchPathDelta27(p, v) \ (VME_Input_G1(p, uchar, 0, 27) = v) #define VME_SET_IMEInput_IMESearchPathDelta28(p, v) \ (VME_Input_G1(p, uchar, 0, 28) = v) #define VME_SET_IMEInput_IMESearchPathDelta29(p, v) \ (VME_Input_G1(p, uchar, 0, 29) = v) #define VME_SET_IMEInput_IMESearchPathDelta30(p, v) \ (VME_Input_G1(p, uchar, 0, 30) = v) #define VME_SET_IMEInput_IMESearchPathDelta31(p, v) \ (VME_Input_G1(p, uchar, 0, 31) = v) #define VME_SET_IMEInput_IMESearchPathDelta32(p, v) \ (VME_Input_G1(p, uchar, 1, 0) = v) #define VME_SET_IMEInput_IMESearchPathDelta33(p, v) \ (VME_Input_G1(p, uchar, 1, 1) = v) #define VME_SET_IMEInput_IMESearchPathDelta34(p, v) \ (VME_Input_G1(p, uchar, 1, 2) = v) #define VME_SET_IMEInput_IMESearchPathDelta35(p, v) \ (VME_Input_G1(p, uchar, 1, 3) = v) #define VME_SET_IMEInput_IMESearchPathDelta36(p, v) \ (VME_Input_G1(p, uchar, 1, 4) = v) #define VME_SET_IMEInput_IMESearchPathDelta37(p, v) \ (VME_Input_G1(p, uchar, 1, 5) = v) #define VME_SET_IMEInput_IMESearchPathDelta38(p, v) \ (VME_Input_G1(p, uchar, 1, 6) = v) #define VME_SET_IMEInput_IMESearchPathDelta39(p, v) \ (VME_Input_G1(p, uchar, 1, 7) = v) #define VME_SET_IMEInput_IMESearchPathDelta40(p, v) \ (VME_Input_G1(p, uchar, 1, 8) = v) #define VME_SET_IMEInput_IMESearchPathDelta41(p, v) \ (VME_Input_G1(p, uchar, 1, 9) = v) #define VME_SET_IMEInput_IMESearchPathDelta42(p, v) \ (VME_Input_G1(p, uchar, 1, 10) = v) #define VME_SET_IMEInput_IMESearchPathDelta43(p, v) \ (VME_Input_G1(p, uchar, 1, 11) = v) #define VME_SET_IMEInput_IMESearchPathDelta44(p, v) \ (VME_Input_G1(p, uchar, 1, 12) = v) #define VME_SET_IMEInput_IMESearchPathDelta45(p, v) \ (VME_Input_G1(p, uchar, 1, 13) = v) #define VME_SET_IMEInput_IMESearchPathDelta46(p, v) \ (VME_Input_G1(p, uchar, 1, 14) = v) #define VME_SET_IMEInput_IMESearchPathDelta47(p, v) \ (VME_Input_G1(p, uchar, 1, 15) = v) #define VME_SET_IMEInput_IMESearchPathDelta48(p, v) \ (VME_Input_G1(p, uchar, 1, 16) = v) #define VME_SET_IMEInput_IMESearchPathDelta49(p, v) \ (VME_Input_G1(p, uchar, 1, 17) = v) #define VME_SET_IMEInput_IMESearchPathDelta50(p, v) \ (VME_Input_G1(p, uchar, 1, 18) = v) #define VME_SET_IMEInput_IMESearchPathDelta51(p, v) \ (VME_Input_G1(p, uchar, 1, 19) = v) #define VME_SET_IMEInput_IMESearchPathDelta52(p, v) \ (VME_Input_G1(p, uchar, 1, 20) = v) #define VME_SET_IMEInput_IMESearchPathDelta53(p, v) \ (VME_Input_G1(p, uchar, 1, 21) = v) #define VME_SET_IMEInput_IMESearchPathDelta54(p, v) \ (VME_Input_G1(p, uchar, 1, 22) = v) #define VME_SET_IMEInput_IMESearchPathDelta55(p, v) \ (VME_Input_G1(p, uchar, 1, 23) = v) // Format = U16 #define VME_SET_IMEInput_Rec0_16x8_0Distortion(p, v) \ (VME_Input_S1(p, ushort, 2, 0) = v) #define VME_SET_IMEInput_Rec0_16x8_1Distortion(p, v) \ (VME_Input_S1(p, ushort, 2, 1) = v) #define VME_SET_IMEInput_Rec0_8x16_0Distortion(p, v) \ (VME_Input_S1(p, ushort, 2, 2) = v) #define VME_SET_IMEInput_Rec0_8x16_1Distortion(p, v) \ (VME_Input_S1(p, ushort, 2, 3) = v) #define VME_SET_IMEInput_Rec0_8x8_0Distortion(p, v) \ (VME_Input_S1(p, ushort, 2, 4) = v) #define VME_SET_IMEInput_Rec0_8x8_1Distortion(p, v) \ (VME_Input_S1(p, ushort, 2, 5) = v) #define VME_SET_IMEInput_Rec0_8x8_2Distortion(p, v) \ (VME_Input_S1(p, ushort, 2, 6) = v) #define VME_SET_IMEInput_Rec0_8x8_3Distortion(p, v) \ (VME_Input_S1(p, ushort, 2, 7) = v) #define VME_SET_IMEInput_Rec0_16x16_Distortion(p, v) \ (VME_Input_S1(p, ushort, 2, 8) = v) // Format = U4 #define VME_SET_IMEInput_Rec0_16x16_RefID(p, v) \ (VME_Input_S1(p, uchar, 2, 18) = v) // Format = S13.2 #define VME_SET_IMEInput_Rec0_16x16_X(p, v) (VME_Input_S1(p, ushort, 2, 10) = v) #define VME_SET_IMEInput_Rec0_16x16_Y(p, v) (VME_Input_S1(p, ushort, 2, 11) = v) // Format = U4 #define VME_SET_IMEInput_Rec0_16x8_0RefID(p, v) \ (VME_Input_S1(p, uchar, 2, 24) = VME_Input_S1(p, uchar, 2, 24) & 0xF0 | v) #define VME_SET_IMEInput_Rec0_16x8_1RefID(p, v) \ (VME_Input_S1(p, uchar, 2, 24) = \ VME_Input_S1(p, uchar, 2, 24) & 0x0F | (v << 4)) #define VME_SET_IMEInput_Rec0_8x16_0RefID(p, v) \ (VME_Input_S1(p, uchar, 2, 25) = VME_Input_S1(p, uchar, 2, 25) & 0xF0 | v) #define VME_SET_IMEInput_Rec0_8x16_1RefID(p, v) \ (VME_Input_S1(p, uchar, 2, 25) = \ VME_Input_S1(p, uchar, 2, 25) & 0x0F | (v << 4)) #define VME_SET_IMEInput_Rec0_8x8_0RefID(p, v) \ (VME_Input_S1(p, uchar, 2, 26) = VME_Input_S1(p, uchar, 2, 26) & 0xF0 | v) #define VME_SET_IMEInput_Rec0_8x8_1RefID(p, v) \ (VME_Input_S1(p, uchar, 2, 26) = \ VME_Input_S1(p, uchar, 2, 26) & 0x0F | (v << 4)) #define VME_SET_IMEInput_Rec0_8x8_2RefID(p, v) \ (VME_Input_S1(p, uchar, 2, 27) = VME_Input_S1(p, uchar, 2, 27) & 0xF0 | v) #define VME_SET_IMEInput_Rec0_8x8_3RefID(p, v) \ (VME_Input_S1(p, uchar, 2, 27) = \ VME_Input_S1(p, uchar, 2, 27) & 0x0F | (v << 4)) // Format = S13.2 #define VME_SET_IMEInput_Rec0_16x8_0X(p, v) (VME_Input_S1(p, ushort, 3, 0) = v) #define VME_SET_IMEInput_Rec0_16x8_0Y(p, v) (VME_Input_S1(p, ushort, 3, 1) = v) #define VME_SET_IMEInput_Rec0_16x8_1X(p, v) (VME_Input_S1(p, ushort, 3, 2) = v) #define VME_SET_IMEInput_Rec0_16x8_1Y(p, v) (VME_Input_S1(p, ushort, 3, 3) = v) #define VME_SET_IMEInput_Rec0_8x16_0X(p, v) (VME_Input_S1(p, ushort, 3, 4) = v) #define VME_SET_IMEInput_Rec0_8x16_0Y(p, v) (VME_Input_S1(p, ushort, 3, 5) = v) #define VME_SET_IMEInput_Rec0_8x16_1X(p, v) (VME_Input_S1(p, ushort, 3, 6) = v) #define VME_SET_IMEInput_Rec0_8x16_1Y(p, v) (VME_Input_S1(p, ushort, 3, 7) = v) #define VME_SET_IMEInput_Rec0_8x8_0X(p, v) (VME_Input_S1(p, ushort, 3, 8) = v) #define VME_SET_IMEInput_Rec0_8x8_0Y(p, v) (VME_Input_S1(p, ushort, 3, 9) = v) #define VME_SET_IMEInput_Rec0_8x8_1X(p, v) (VME_Input_S1(p, ushort, 3, 10) = v) #define VME_SET_IMEInput_Rec0_8x8_1Y(p, v) (VME_Input_S1(p, ushort, 3, 11) = v) #define VME_SET_IMEInput_Rec0_8x8_2X(p, v) (VME_Input_S1(p, ushort, 3, 12) = v) #define VME_SET_IMEInput_Rec0_8x8_2Y(p, v) (VME_Input_S1(p, ushort, 3, 13) = v) #define VME_SET_IMEInput_Rec0_8x8_3X(p, v) (VME_Input_S1(p, ushort, 3, 14) = v) #define VME_SET_IMEInput_Rec0_8x8_3Y(p, v) (VME_Input_S1(p, ushort, 3, 15) = v) // Format = U16 #define VME_SET_IMEInput_Rec1_16x8_0Distortion(p, v) \ (VME_Input_S1(p, ushort, 4, 0) = v) #define VME_SET_IMEInput_Rec1_16x8_1Distortion(p, v) \ (VME_Input_S1(p, ushort, 4, 1) = v) #define VME_SET_IMEInput_Rec1_8x16_0Distortion(p, v) \ (VME_Input_S1(p, ushort, 4, 2) = v) #define VME_SET_IMEInput_Rec1_8x16_1Distortion(p, v) \ (VME_Input_S1(p, ushort, 4, 3) = v) #define VME_SET_IMEInput_Rec1_8x8_0Distortion(p, v) \ (VME_Input_S1(p, ushort, 4, 4) = v) #define VME_SET_IMEInput_Rec1_8x8_1Distortion(p, v) \ (VME_Input_S1(p, ushort, 4, 5) = v) #define VME_SET_IMEInput_Rec1_8x8_2Distortion(p, v) \ (VME_Input_S1(p, ushort, 4, 6) = v) #define VME_SET_IMEInput_Rec1_8x8_3Distortion(p, v) \ (VME_Input_S1(p, ushort, 4, 7) = v) #define VME_SET_IMEInput_Rec1_16x16_Distortion(p, v) \ (VME_Input_S1(p, ushort, 4, 8) = v) // Format = U4 #define VME_SET_IMEInput_Rec1_16x16_RefID(p, v) \ (VME_Input_S1(p, uchar, 4, 18) = v) // Format = S13.2 #define VME_SET_IMEInput_Rec1_16x16_X(p, v) (VME_Input_S1(p, ushort, 4, 10) = v) #define VME_SET_IMEInput_Rec1_16x16_Y(p, v) (VME_Input_S1(p, ushort, 4, 11) = v) // Format = U4 #define VME_SET_IMEInput_Rec1_16x8_0RefID(p, v) \ (VME_Input_S1(p, uchar, 4, 24) = VME_Input_S1(p, uchar, 4, 24) & 0xF0 | v) #define VME_SET_IMEInput_Rec1_16x8_1RefID(p, v) \ (VME_Input_S1(p, uchar, 4, 24) = \ VME_Input_S1(p, uchar, 4, 24) & 0x0F | (v << 4)) #define VME_SET_IMEInput_Rec1_8x16_0RefID(p, v) \ (VME_Input_S1(p, uchar, 4, 25) = VME_Input_S1(p, uchar, 4, 25) & 0xF0 | v) #define VME_SET_IMEInput_Rec1_8x16_1RefID(p, v) \ (VME_Input_S1(p, uchar, 4, 25) = \ VME_Input_S1(p, uchar, 4, 25) & 0x0F | (v << 4)) #define VME_SET_IMEInput_Rec1_8x8_0RefID(p, v) \ (VME_Input_S1(p, uchar, 4, 26) = VME_Input_S1(p, uchar, 4, 26) & 0xF0 | v) #define VME_SET_IMEInput_Rec1_8x8_1RefID(p, v) \ (VME_Input_S1(p, uchar, 4, 26) = \ VME_Input_S1(p, uchar, 4, 26) & 0x0F | (v << 4)) #define VME_SET_IMEInput_Rec1_8x8_2RefID(p, v) \ (VME_Input_S1(p, uchar, 4, 27) = VME_Input_S1(p, uchar, 4, 27) & 0xF0 | v) #define VME_SET_IMEInput_Rec1_8x8_3RefID(p, v) \ (VME_Input_S1(p, uchar, 4, 27) = \ VME_Input_S1(p, uchar, 4, 27) & 0x0F | (v << 4)) // Format = S13.2 #define VME_SET_IMEInput_Rec1_16x8_0X(p, v) (VME_Input_S1(p, ushort, 5, 0) = v) #define VME_SET_IMEInput_Rec1_16x8_0Y(p, v) (VME_Input_S1(p, ushort, 5, 1) = v) #define VME_SET_IMEInput_Rec1_16x8_1X(p, v) (VME_Input_S1(p, ushort, 5, 2) = v) #define VME_SET_IMEInput_Rec1_16x8_1Y(p, v) (VME_Input_S1(p, ushort, 5, 3) = v) #define VME_SET_IMEInput_Rec1_8x16_0X(p, v) (VME_Input_S1(p, ushort, 5, 4) = v) #define VME_SET_IMEInput_Rec1_8x16_0Y(p, v) (VME_Input_S1(p, ushort, 5, 5) = v) #define VME_SET_IMEInput_Rec1_8x16_1X(p, v) (VME_Input_S1(p, ushort, 5, 6) = v) #define VME_SET_IMEInput_Rec1_8x16_1Y(p, v) (VME_Input_S1(p, ushort, 5, 7) = v) #define VME_SET_IMEInput_Rec1_8x8_0X(p, v) (VME_Input_S1(p, ushort, 5, 8) = v) #define VME_SET_IMEInput_Rec1_8x8_0Y(p, v) (VME_Input_S1(p, ushort, 5, 9) = v) #define VME_SET_IMEInput_Rec1_8x8_1X(p, v) (VME_Input_S1(p, ushort, 5, 10) = v) #define VME_SET_IMEInput_Rec1_8x8_1Y(p, v) (VME_Input_S1(p, ushort, 5, 11) = v) #define VME_SET_IMEInput_Rec1_8x8_2X(p, v) (VME_Input_S1(p, ushort, 5, 12) = v) #define VME_SET_IMEInput_Rec1_8x8_2Y(p, v) (VME_Input_S1(p, ushort, 5, 13) = v) #define VME_SET_IMEInput_Rec1_8x8_3X(p, v) (VME_Input_S1(p, ushort, 5, 14) = v) #define VME_SET_IMEInput_Rec1_8x8_3Y(p, v) (VME_Input_S1(p, ushort, 5, 15) = v) // Format = S13.2, Valid Range: [-2048.00 to 2047.75] // For chroma skip: Format = S12.3, Hardware Range: [-1024.000 to 1023.875] #define VME_SET_SICInput_Ref0SkipCenter0DeltaXY(p, DeltaX, DeltaY) \ (VME_Input_S1(p, uint, 0, 0) = DeltaX | (DeltaY << 16)) #define VME_SET_SICInput_Ref1SkipCenter0DeltaXY(p, DeltaX, DeltaY) \ (VME_Input_S1(p, uint, 0, 1) = DeltaX | (DeltaY << 16)) #define VME_SET_SICInput_Ref0SkipCenter1DeltaXY(p, DeltaX, DeltaY) \ (VME_Input_S1(p, uint, 0, 2) = DeltaX | (DeltaY << 16)) #define VME_SET_SICInput_Ref1SkipCenter1DeltaXY(p, DeltaX, DeltaY) \ (VME_Input_S1(p, uint, 0, 3) = DeltaX | (DeltaY << 16)) #define VME_SET_SICInput_Ref0SkipCenter2DeltaXY(p, DeltaX, DeltaY) \ (VME_Input_S1(p, uint, 0, 4) = DeltaX | (DeltaY << 16)) #define VME_SET_SICInput_Ref1SkipCenter2DeltaXY(p, DeltaX, DeltaY) \ (VME_Input_S1(p, uint, 0, 5) = DeltaX | (DeltaY << 16)) #define VME_SET_SICInput_Ref0SkipCenter3DeltaXY(p, DeltaX, DeltaY) \ (VME_Input_S1(p, uint, 0, 6) = DeltaX | (DeltaY << 16)) #define VME_SET_SICInput_Ref1SkipCenter3DeltaXY(p, DeltaX, DeltaY) \ (VME_Input_S1(p, uint, 0, 7) = DeltaX | (DeltaY << 16)) // 2-bit field with the following definition // 00: Luma + Chroma enabled // 01: Luma only // 1X: Intra disabled #define VME_SET_SICInput_IntraComputeType(p, v) \ (VME_Input_S1(p, uchar, 1, 5) = v) #define VME_SET_SICInput_CornerNeighborPixel0(p, v) \ (VME_Input_S1(p, uchar, 1, 7) = v) // NOTE: combine into one vector assignment #define VME_SET_SICInput_NeighborPixelLum0(p, v) \ (VME_Input_S1(p, uchar, 1, 8) = v) #define VME_SET_SICInput_NeighborPixelLum1(p, v) \ (VME_Input_S1(p, uchar, 1, 9) = v) #define VME_SET_SICInput_NeighborPixelLum2(p, v) \ (VME_Input_S1(p, uchar, 1, 10) = v) #define VME_SET_SICInput_NeighborPixelLum3(p, v) \ (VME_Input_S1(p, uchar, 1, 11) = v) #define VME_SET_SICInput_NeighborPixelLum4(p, v) \ (VME_Input_S1(p, uchar, 1, 12) = v) #define VME_SET_SICInput_NeighborPixelLum5(p, v) \ (VME_Input_S1(p, uchar, 1, 13) = v) #define VME_SET_SICInput_NeighborPixelLum6(p, v) \ (VME_Input_S1(p, uchar, 1, 14) = v) #define VME_SET_SICInput_NeighborPixelLum7(p, v) \ (VME_Input_S1(p, uchar, 1, 15) = v) #define VME_SET_SICInput_NeighborPixelLum8(p, v) \ (VME_Input_S1(p, uchar, 1, 16) = v) #define VME_SET_SICInput_NeighborPixelLum9(p, v) \ (VME_Input_S1(p, uchar, 1, 17) = v) #define VME_SET_SICInput_NeighborPixelLum10(p, v) \ (VME_Input_S1(p, uchar, 1, 18) = v) #define VME_SET_SICInput_NeighborPixelLum11(p, v) \ (VME_Input_S1(p, uchar, 1, 19) = v) #define VME_SET_SICInput_NeighborPixelLum12(p, v) \ (VME_Input_S1(p, uchar, 1, 20) = v) #define VME_SET_SICInput_NeighborPixelLum13(p, v) \ (VME_Input_S1(p, uchar, 1, 21) = v) #define VME_SET_SICInput_NeighborPixelLum14(p, v) \ (VME_Input_S1(p, uchar, 1, 22) = v) #define VME_SET_SICInput_NeighborPixelLum15(p, v) \ (VME_Input_S1(p, uchar, 1, 23) = v) #define VME_SET_SICInput_NeighborPixelLum16(p, v) \ (VME_Input_S1(p, uchar, 1, 24) = v) #define VME_SET_SICInput_NeighborPixelLum17(p, v) \ (VME_Input_S1(p, uchar, 1, 25) = v) #define VME_SET_SICInput_NeighborPixelLum18(p, v) \ (VME_Input_S1(p, uchar, 1, 26) = v) #define VME_SET_SICInput_NeighborPixelLum19(p, v) \ (VME_Input_S1(p, uchar, 1, 27) = v) #define VME_SET_SICInput_NeighborPixelLum20(p, v) \ (VME_Input_S1(p, uchar, 1, 28) = v) #define VME_SET_SICInput_NeighborPixelLum21(p, v) \ (VME_Input_S1(p, uchar, 1, 29) = v) #define VME_SET_SICInput_NeighborPixelLum22(p, v) \ (VME_Input_S1(p, uchar, 1, 30) = v) #define VME_SET_SICInput_NeighborPixelLum23(p, v) \ (VME_Input_S1(p, uchar, 1, 31) = v) #define VME_SET_SICInput_NeighborPixelLum24(p, v) \ (VME_Input_S1(p, uchar, 2, 0) = v) #define VME_SET_SICInput_NeighborPixelLum25(p, v) \ (VME_Input_S1(p, uchar, 2, 1) = v) #define VME_SET_SICInput_NeighborPixelLum26(p, v) \ (VME_Input_S1(p, uchar, 2, 2) = v) #define VME_SET_SICInput_NeighborPixelLum27(p, v) \ (VME_Input_S1(p, uchar, 2, 3) = v) #define VME_SET_SICInput_NeighborPixelLum28(p, v) \ (VME_Input_S1(p, uchar, 2, 4) = v) #define VME_SET_SICInput_NeighborPixelLum29(p, v) \ (VME_Input_S1(p, uchar, 2, 5) = v) #define VME_SET_SICInput_NeighborPixelLum30(p, v) \ (VME_Input_S1(p, uchar, 2, 6) = v) #define VME_SET_SICInput_NeighborPixelLum31(p, v) \ (VME_Input_S1(p, uchar, 2, 7) = v) #define VME_SET_SICInput_NeighborPixelLum32(p, v) \ (VME_Input_S1(p, uchar, 2, 8) = v) #define VME_SET_SICInput_NeighborPixelLum33(p, v) \ (VME_Input_S1(p, uchar, 2, 9) = v) #define VME_SET_SICInput_NeighborPixelLum34(p, v) \ (VME_Input_S1(p, uchar, 2, 10) = v) #define VME_SET_SICInput_NeighborPixelLum35(p, v) \ (VME_Input_S1(p, uchar, 2, 11) = v) #define VME_SET_SICInput_NeighborPixelLum36(p, v) \ (VME_Input_S1(p, uchar, 2, 12) = v) #define VME_SET_SICInput_NeighborPixelLum37(p, v) \ (VME_Input_S1(p, uchar, 2, 13) = v) #define VME_SET_SICInput_NeighborPixelLum38(p, v) \ (VME_Input_S1(p, uchar, 2, 14) = v) #define VME_SET_SICInput_CornerNeighborPixel1(p, v) \ (VME_Input_S1(p, uchar, 2, 15) = v) // Format = U4 #define VME_SET_SICInput_IntraMxMPredModeA5(p, v) \ (VME_Input_S1(p, uchar, 2, 16) = VME_Input_S1(p, uchar, 2, 16) & 0xF0 | v) #define VME_SET_SICInput_IntraMxMPredModeA7(p, v) \ (VME_Input_S1(p, uchar, 2, 16) = \ VME_Input_S1(p, uchar, 2, 16) & 0x0F | (v << 4)) #define VME_SET_SICInput_IntraMxMPredModeA13(p, v) \ (VME_Input_S1(p, uchar, 2, 17) = VME_Input_S1(p, uchar, 2, 17) & 0xF0 | v) #define VME_SET_SICInput_IntraMxMPredModeA15(p, v) \ (VME_Input_S1(p, uchar, 2, 17) = \ VME_Input_S1(p, uchar, 2, 17) & 0x0F | (v << 4)) #define VME_SET_SICInput_IntraMxMPredModeB10(p, v) \ (VME_Input_S1(p, uchar, 2, 18) = VME_Input_S1(p, uchar, 2, 18) & 0xF0 | v) #define VME_SET_SICInput_IntraMxMPredModeB11(p, v) \ (VME_Input_S1(p, uchar, 2, 18) = \ VME_Input_S1(p, uchar, 2, 18) & 0x0F | (v << 4)) #define VME_SET_SICInput_IntraMxMPredModeB14(p, v) \ (VME_Input_S1(p, uchar, 2, 19) = VME_Input_S1(p, uchar, 2, 19) & 0xF0 | v) #define VME_SET_SICInput_IntraMxMPredModeB15(p, v) \ (VME_Input_S1(p, uchar, 2, 19) = \ VME_Input_S1(p, uchar, 2, 19) & 0x0F | (v << 4)) // Format = U8 pair #define VME_SET_SICInput_CornerNeighborPixelChroma(p, v) \ (VME_Input_S1(p, ushort, 2, 10) = v) #if 0 // Format = U4U4 #define VME_SET_SICInput_PenaltyIntra4x4NonDC(p, v) \ (VME_Input_S1(p, uchar, 2, 28) = v) // Format = U2 #define VME_SET_SICInput_ScaleFactorIntra8x8NonDC(p, v) \ (VME_Input_S1(p, uchar, 2, 29) = VME_Input_S1(p, uchar, 2, 29) & 0xFC | v) // Format = U2 #define VME_SET_SICInput_ScaleFactorIntra16x16NonDC(p, v) \ (VME_Input_S1(p, uchar, 2, 29) = \ VME_Input_S1(p, uchar, 2, 29) & 0xF3 | (v << 2)) #else // BSPEC Update Rev1.6 // Format = U8 #define VME_SET_SICInput_PenaltyIntra4x4NonDC(p, v) \ (VME_Input_G1(p, uchar, 2, 30) = v) // Format = U8 #define VME_SET_SICInput_PenaltyIntra8x8NonDC(p, v) \ (VME_Input_G1(p, uchar, 2, 29) = v) // Format = U8 #define VME_SET_SICInput_PenaltyIntra16x16NonDC(p, v) \ (VME_Input_G1(p, uchar, 2, 28) = v) #endif #define VME_SET_SICInput_NeighborPixelChroma0(p, v) \ (VME_Input_G1(p, uchar, 3, 0) = v) #define VME_SET_SICInput_NeighborPixelChroma1(p, v) \ (VME_Input_G1(p, uchar, 3, 1) = v) #define VME_SET_SICInput_NeighborPixelChroma2(p, v) \ (VME_Input_G1(p, uchar, 3, 2) = v) #define VME_SET_SICInput_NeighborPixelChroma3(p, v) \ (VME_Input_G1(p, uchar, 3, 3) = v) #define VME_SET_SICInput_NeighborPixelChroma4(p, v) \ (VME_Input_G1(p, uchar, 3, 4) = v) #define VME_SET_SICInput_NeighborPixelChroma5(p, v) \ (VME_Input_G1(p, uchar, 3, 5) = v) #define VME_SET_SICInput_NeighborPixelChroma6(p, v) \ (VME_Input_G1(p, uchar, 3, 6) = v) #define VME_SET_SICInput_NeighborPixelChroma7(p, v) \ (VME_Input_G1(p, uchar, 3, 7) = v) #define VME_SET_SICInput_NeighborPixelChroma8(p, v) \ (VME_Input_G1(p, uchar, 3, 8) = v) #define VME_SET_SICInput_NeighborPixelChroma9(p, v) \ (VME_Input_G1(p, uchar, 3, 9) = v) #define VME_SET_SICInput_NeighborPixelChroma10(p, v) \ (VME_Input_G1(p, uchar, 3, 10) = v) #define VME_SET_SICInput_NeighborPixelChroma11(p, v) \ (VME_Input_G1(p, uchar, 3, 11) = v) #define VME_SET_SICInput_NeighborPixelChroma12(p, v) \ (VME_Input_G1(p, uchar, 3, 12) = v) #define VME_SET_SICInput_NeighborPixelChroma13(p, v) \ (VME_Input_G1(p, uchar, 3, 13) = v) #define VME_SET_SICInput_NeighborPixelChroma14(p, v) \ (VME_Input_G1(p, uchar, 3, 14) = v) #define VME_SET_SICInput_NeighborPixelChroma15(p, v) \ (VME_Input_G1(p, uchar, 3, 15) = v) #define VME_SET_SICInput_NeighborPixelChroma16(p, v) \ (VME_Input_G1(p, uchar, 3, 16) = v) #define VME_SET_SICInput_NeighborPixelChroma17(p, v) \ (VME_Input_G1(p, uchar, 3, 17) = v) #define VME_SET_SICInput_NeighborPixelChroma18(p, v) \ (VME_Input_G1(p, uchar, 3, 18) = v) #define VME_SET_SICInput_NeighborPixelChroma19(p, v) \ (VME_Input_G1(p, uchar, 3, 19) = v) #define VME_SET_SICInput_NeighborPixelChroma20(p, v) \ (VME_Input_G1(p, uchar, 3, 20) = v) #define VME_SET_SICInput_NeighborPixelChroma21(p, v) \ (VME_Input_G1(p, uchar, 3, 21) = v) #define VME_SET_SICInput_NeighborPixelChroma22(p, v) \ (VME_Input_G1(p, uchar, 3, 22) = v) #define VME_SET_SICInput_NeighborPixelChroma23(p, v) \ (VME_Input_G1(p, uchar, 3, 23) = v) #define VME_SET_SICInput_NeighborPixelChroma24(p, v) \ (VME_Input_G1(p, uchar, 3, 24) = v) #define VME_SET_SICInput_NeighborPixelChroma25(p, v) \ (VME_Input_G1(p, uchar, 3, 25) = v) #define VME_SET_SICInput_NeighborPixelChroma26(p, v) \ (VME_Input_G1(p, uchar, 3, 26) = v) #define VME_SET_SICInput_NeighborPixelChroma27(p, v) \ (VME_Input_G1(p, uchar, 3, 27) = v) #define VME_SET_SICInput_NeighborPixelChroma28(p, v) \ (VME_Input_G1(p, uchar, 3, 28) = v) #define VME_SET_SICInput_NeighborPixelChroma29(p, v) \ (VME_Input_G1(p, uchar, 3, 29) = v) #define VME_SET_SICInput_NeighborPixelChroma30(p, v) \ (VME_Input_G1(p, uchar, 3, 30) = v) #define VME_SET_SICInput_NeighborPixelChroma31(p, v) \ (VME_Input_G1(p, uchar, 3, 31) = v) #define VME_SET_FBRInput_Ref0SubBlockX0(p, v) \ (VME_Input_S1(p, ushort, 0, 0) = v) #define VME_SET_FBRInput_Ref0SubBlockY0(p, v) \ (VME_Input_S1(p, ushort, 0, 1) = v) #define VME_SET_FBRInput_Ref1SubBlockX0(p, v) \ (VME_Input_S1(p, ushort, 0, 2) = v) #define VME_SET_FBRInput_Ref1SubBlockY0(p, v) \ (VME_Input_S1(p, ushort, 0, 3) = v) #define VME_SET_FBRInput_Ref0SubBlockX1(p, v) \ (VME_Input_S1(p, ushort, 0, 4) = v) #define VME_SET_FBRInput_Ref0SubBlockY1(p, v) \ (VME_Input_S1(p, ushort, 0, 5) = v) #define VME_SET_FBRInput_Ref1SubBlockX1(p, v) \ (VME_Input_S1(p, ushort, 0, 6) = v) #define VME_SET_FBRInput_Ref1SubBlockY1(p, v) \ (VME_Input_S1(p, ushort, 0, 7) = v) #define VME_SET_FBRInput_Ref0SubBlockX2(p, v) \ (VME_Input_S1(p, ushort, 0, 8) = v) #define VME_SET_FBRInput_Ref0SubBlockY2(p, v) \ (VME_Input_S1(p, ushort, 0, 9) = v) #define VME_SET_FBRInput_Ref1SubBlockX2(p, v) \ (VME_Input_S1(p, ushort, 0, 10) = v) #define VME_SET_FBRInput_Ref1SubBlockY2(p, v) \ (VME_Input_S1(p, ushort, 0, 11) = v) #define VME_SET_FBRInput_Ref0SubBlockX3(p, v) \ (VME_Input_S1(p, ushort, 0, 12) = v) #define VME_SET_FBRInput_Ref0SubBlockY3(p, v) \ (VME_Input_S1(p, ushort, 0, 13) = v) #define VME_SET_FBRInput_Ref1SubBlockX3(p, v) \ (VME_Input_S1(p, ushort, 0, 14) = v) #define VME_SET_FBRInput_Ref1SubBlockY3(p, v) \ (VME_Input_S1(p, ushort, 0, 15) = v) #define VME_SET_FBRInput_Ref0SubBlockX4(p, v) \ (VME_Input_S1(p, ushort, 1, 0) = v) #define VME_SET_FBRInput_Ref0SubBlockY4(p, v) \ (VME_Input_S1(p, ushort, 1, 1) = v) #define VME_SET_FBRInput_Ref1SubBlockX4(p, v) \ (VME_Input_S1(p, ushort, 1, 2) = v) #define VME_SET_FBRInput_Ref1SubBlockY4(p, v) \ (VME_Input_S1(p, ushort, 1, 3) = v) #define VME_SET_FBRInput_Ref0SubBlockX5(p, v) \ (VME_Input_S1(p, ushort, 1, 4) = v) #define VME_SET_FBRInput_Ref0SubBlockY5(p, v) \ (VME_Input_S1(p, ushort, 1, 5) = v) #define VME_SET_FBRInput_Ref1SubBlockX5(p, v) \ (VME_Input_S1(p, ushort, 1, 6) = v) #define VME_SET_FBRInput_Ref1SubBlockY5(p, v) \ (VME_Input_S1(p, ushort, 1, 7) = v) #define VME_SET_FBRInput_Ref0SubBlockX6(p, v) \ (VME_Input_S1(p, ushort, 1, 8) = v) #define VME_SET_FBRInput_Ref0SubBlockY6(p, v) \ (VME_Input_S1(p, ushort, 1, 9) = v) #define VME_SET_FBRInput_Ref1SubBlockX6(p, v) \ (VME_Input_S1(p, ushort, 1, 10) = v) #define VME_SET_FBRInput_Ref1SubBlockY6(p, v) \ (VME_Input_S1(p, ushort, 1, 11) = v) #define VME_SET_FBRInput_Ref0SubBlockX7(p, v) \ (VME_Input_S1(p, ushort, 1, 12) = v) #define VME_SET_FBRInput_Ref0SubBlockY7(p, v) \ (VME_Input_S1(p, ushort, 1, 13) = v) #define VME_SET_FBRInput_Ref1SubBlockX7(p, v) \ (VME_Input_S1(p, ushort, 1, 14) = v) #define VME_SET_FBRInput_Ref1SubBlockY7(p, v) \ (VME_Input_S1(p, ushort, 1, 15) = v) #define VME_SET_FBRInput_Ref0SubBlockX8(p, v) \ (VME_Input_S1(p, ushort, 2, 0) = v) #define VME_SET_FBRInput_Ref0SubBlockY8(p, v) \ (VME_Input_S1(p, ushort, 2, 1) = v) #define VME_SET_FBRInput_Ref1SubBlockX8(p, v) \ (VME_Input_S1(p, ushort, 2, 2) = v) #define VME_SET_FBRInput_Ref1SubBlockY8(p, v) \ (VME_Input_S1(p, ushort, 2, 3) = v) #define VME_SET_FBRInput_Ref0SubBlockX9(p, v) \ (VME_Input_S1(p, ushort, 2, 4) = v) #define VME_SET_FBRInput_Ref0SubBlockY9(p, v) \ (VME_Input_S1(p, ushort, 2, 5) = v) #define VME_SET_FBRInput_Ref1SubBlockX9(p, v) \ (VME_Input_S1(p, ushort, 2, 6) = v) #define VME_SET_FBRInput_Ref1SubBlockY9(p, v) \ (VME_Input_S1(p, ushort, 2, 7) = v) #define VME_SET_FBRInput_Ref0SubBlockX10(p, v) \ (VME_Input_S1(p, ushort, 2, 8) = v) #define VME_SET_FBRInput_Ref0SubBlockY10(p, v) \ (VME_Input_S1(p, ushort, 2, 9) = v) #define VME_SET_FBRInput_Ref1SubBlockX10(p, v) \ (VME_Input_S1(p, ushort, 2, 10) = v) #define VME_SET_FBRInput_Ref1SubBlockY10(p, v) \ (VME_Input_S1(p, ushort, 2, 11) = v) #define VME_SET_FBRInput_Ref0SubBlockX11(p, v) \ (VME_Input_S1(p, ushort, 2, 12) = v) #define VME_SET_FBRInput_Ref0SubBlockY11(p, v) \ (VME_Input_S1(p, ushort, 2, 13) = v) #define VME_SET_FBRInput_Ref1SubBlockX11(p, v) \ (VME_Input_S1(p, ushort, 2, 14) = v) #define VME_SET_FBRInput_Ref1SubBlockY11(p, v) \ (VME_Input_S1(p, ushort, 2, 15) = v) #define VME_SET_FBRInput_Ref0SubBlockX12(p, v) \ (VME_Input_S1(p, ushort, 3, 0) = v) #define VME_SET_FBRInput_Ref0SubBlockY12(p, v) \ (VME_Input_S1(p, ushort, 3, 1) = v) #define VME_SET_FBRInput_Ref1SubBlockX12(p, v) \ (VME_Input_S1(p, ushort, 3, 2) = v) #define VME_SET_FBRInput_Ref1SubBlockY12(p, v) \ (VME_Input_S1(p, ushort, 3, 3) = v) #define VME_SET_FBRInput_Ref0SubBlockX13(p, v) \ (VME_Input_S1(p, ushort, 3, 4) = v) #define VME_SET_FBRInput_Ref0SubBlockY13(p, v) \ (VME_Input_S1(p, ushort, 3, 5) = v) #define VME_SET_FBRInput_Ref1SubBlockX13(p, v) \ (VME_Input_S1(p, ushort, 3, 6) = v) #define VME_SET_FBRInput_Ref1SubBlockY13(p, v) \ (VME_Input_S1(p, ushort, 3, 7) = v) #define VME_SET_FBRInput_Ref0SubBlockX14(p, v) \ (VME_Input_S1(p, ushort, 3, 8) = v) #define VME_SET_FBRInput_Ref0SubBlockY14(p, v) \ (VME_Input_S1(p, ushort, 3, 9) = v) #define VME_SET_FBRInput_Ref1SubBlockX14(p, v) \ (VME_Input_S1(p, ushort, 3, 10) = v) #define VME_SET_FBRInput_Ref1SubBlockY14(p, v) \ (VME_Input_S1(p, ushort, 3, 11) = v) #define VME_SET_FBRInput_Ref0SubBlockX15(p, v) \ (VME_Input_S1(p, ushort, 3, 12) = v) #define VME_SET_FBRInput_Ref0SubBlockY15(p, v) \ (VME_Input_S1(p, ushort, 3, 13) = v) #define VME_SET_FBRInput_Ref1SubBlockX15(p, v) \ (VME_Input_S1(p, ushort, 3, 14) = v) #define VME_SET_FBRInput_Ref1SubBlockY15(p, v) \ (VME_Input_S1(p, ushort, 3, 15) = v) #define VME_SET_IDMInput_SrcMBPixelMaskRow0(p, v) \ (VME_Input_S1(p, ushort, 0, 0) = v) #define VME_SET_IDMInput_SrcMBPixelMaskRow1(p, v) \ (VME_Input_S1(p, ushort, 0, 1) = v) #define VME_SET_IDMInput_SrcMBPixelMaskRow2(p, v) \ (VME_Input_S1(p, ushort, 0, 2) = v) #define VME_SET_IDMInput_SrcMBPixelMaskRow3(p, v) \ (VME_Input_S1(p, ushort, 0, 3) = v) #define VME_SET_IDMInput_SrcMBPixelMaskRow4(p, v) \ (VME_Input_S1(p, ushort, 0, 4) = v) #define VME_SET_IDMInput_SrcMBPixelMaskRow5(p, v) \ (VME_Input_S1(p, ushort, 0, 5) = v) #define VME_SET_IDMInput_SrcMBPixelMaskRow6(p, v) \ (VME_Input_S1(p, ushort, 0, 6) = v) #define VME_SET_IDMInput_SrcMBPixelMaskRow7(p, v) \ (VME_Input_S1(p, ushort, 0, 7) = v) #define VME_SET_IDMInput_SrcMBPixelMaskRow8(p, v) \ (VME_Input_S1(p, ushort, 0, 8) = v) #define VME_SET_IDMInput_SrcMBPixelMaskRow9(p, v) \ (VME_Input_S1(p, ushort, 0, 9) = v) #define VME_SET_IDMInput_SrcMBPixelMaskRow10(p, v) \ (VME_Input_S1(p, ushort, 0, 10) = v) #define VME_SET_IDMInput_SrcMBPixelMaskRow11(p, v) \ (VME_Input_S1(p, ushort, 0, 11) = v) #define VME_SET_IDMInput_SrcMBPixelMaskRow12(p, v) \ (VME_Input_S1(p, ushort, 0, 12) = v) #define VME_SET_IDMInput_SrcMBPixelMaskRow13(p, v) \ (VME_Input_S1(p, ushort, 0, 13) = v) #define VME_SET_IDMInput_SrcMBPixelMaskRow14(p, v) \ (VME_Input_S1(p, ushort, 0, 14) = v) #define VME_SET_IDMInput_SrcMBPixelMaskRow15(p, v) \ (VME_Input_S1(p, ushort, 0, 15) = v) // GET methods // Format = I16 #define VME_GET_UNIInput_Ref0X(p) (VME_Input_G1(p, ushort, 0, 0)) #define VME_GET_UNIInput_Ref0Y(p) (VME_Input_G1(p, ushort, 0, 1)) #define VME_GET_UNIInput_Ref1X(p) (VME_Input_G1(p, ushort, 0, 2)) #define VME_GET_UNIInput_Ref1Y(p) (VME_Input_G1(p, ushort, 0, 3)) // Format = U16 #define VME_GET_UNIInput_SrcX(p) (VME_Input_G1(p, ushort, 0, 4)) // Format = U16 #define VME_GET_UNIInput_SrcY(p) (VME_Input_G1(p, ushort, 0, 5)) // Format = U8 #define VME_GET_UNIInput_SrcType(p) (VME_Input_G1(p, uchar, 0, 12)) // Format = U8 #define VME_GET_UNIInput_VmeModes(p) (VME_Input_G1(p, uchar, 0, 13)) // Format = U8 #define VME_GET_UNIInput_SadType(p) (VME_Input_G1(p, uchar, 0, 14)) // Format = U8 #define VME_GET_UNIInput_ShapeMask(p) (VME_Input_G1(p, uchar, 0, 15)) // The value must be a multiple of 4. Range = [20, 64] #define VME_GET_UNIInput_RefW(p) (VME_Input_G1(p, uchar, 0, 22)) // The value must be a multiple of 4. Range = [20, 64] #define VME_GET_UNIInput_RefH(p) (VME_Input_G1(p, uchar, 0, 23)) // Format = U8 #define VME_GET_UNIInput_VmeFlags(p) (VME_Input_G1(p, uchar, 1, 0)) // Format = U8 #define VME_GET_UNIInput_EarlyImeStop(p) (VME_Input_G1(p, uchar, 1, 3)) // Format = U8 #define VME_GET_UNIInput_MaxNumMVs(p) (VME_Input_G1(p, uchar, 1, 4)) #define VME_GET_UNIInput_Ref0Polarity(p) (VME_Input_G1(p, uchar, 1, 5) & 0x0F) #define VME_GET_UNIInput_Ref1Polarity(p) (VME_Input_G1(p, uchar, 1, 5) >> 4) // Format = U6, Valid Values: [16, 21, 32, 43, 48] #define VME_GET_UNIInput_BiWeight(p) (VME_Input_G1(p, uchar, 1, 6)) #define VME_GET_UNIInput_RefPixelBiasEnable(p) \ ((VME_Input_G1(p, uchar, 1, 7) & 0x20) ? 1 : 0) #define VME_GET_UNIInput_UniMixDisable(p) \ ((VME_Input_G1(p, uchar, 1, 7) & 0x10) ? 1 : 0) // Format = U8 // #define VME_GET_UNIInput_BiDirMask(p) ((VME_Input_G1(p, uchar, 1, 7) & 0x10) // ? 1 : 0) // Format = U8, Valid range [1,63] #define VME_GET_UNIInput_LenSP(p) (VME_Input_G1(p, uchar, 1, 8)) // Format = U8, Valid range [1,63] #define VME_GET_UNIInput_MaxNumSU(p) (VME_Input_G1(p, uchar, 1, 9)) // Format = U8 #define VME_GET_UNIInput_StartCenter0(p) (VME_Input_G1(p, uchar, 1, 10)) // Format = U8 #define VME_GET_UNIInput_StartCenter1(p) (VME_Input_G1(p, uchar, 1, 11)) // Format = U8 #define VME_GET_UNIInput_WeightedSADCtrl0_3(p) (VME_Input_G1(p, uchar, 1, 12)) #define VME_GET_UNIInput_WeightedSADCtrl4_7(p) (VME_Input_G1(p, uchar, 1, 13)) #define VME_GET_UNIInput_WeightedSADCtrl8_11(p) (VME_Input_G1(p, uchar, 1, 14)) #define VME_GET_UNIInput_WeightedSADCtrl12_15(p) (VME_Input_G1(p, uchar, 1, 15)) // Format = U8 #define VME_GET_UNIInput_Blk0RefID(p) (VME_Input_G1(p, uchar, 1, 24)) #define VME_GET_UNIInput_Blk1RefID(p) (VME_Input_G1(p, uchar, 1, 25)) #define VME_GET_UNIInput_Blk2RefID(p) (VME_Input_G1(p, uchar, 1, 26)) #define VME_GET_UNIInput_Blk3RefID(p) (VME_Input_G1(p, uchar, 1, 27)) // Format = U8 #define VME_GET_UNIInput_IntraFlags(p) (VME_Input_G1(p, uchar, 1, 28)) // v is a 8-bit mask with the following definition: // Bit-7 Reserved : MBZ (for IntraPredAvailFlagF - F (pixel[-1,7] // available // for MbAff) // Bit-6 Reserved : MBZ (for IntraPredAvailFlagA/E - A (left neighbor top // half for MbAff) // Bit-5 IntraPredAvailFlagE/A - A (Left neighbor or Left bottom half) // Bit-4 IntraPredAvailFlagB - B (Upper neighbor) // Bit-3 IntraPredAvailFlagC - C (Upper left neighbor) // Bit-2 IntraPredAvailFlagD - D (Upper right neighbor) // Bit-1:0 Reserved: MBZ (ChromaIntraPredMode) #define VME_GET_UNIInput_MbIntraStruct(p) (VME_Input_G1(p, uchar, 1, 29)) // Format = U8 #define VME_GET_UNIInput_MvFlags(p) (VME_Input_G1(p, uchar, 1, 30)) // v is a 8-bit mask with the following definition: // xxxx xxx1: Ref0 Skip Center 0 is enabled [corresponds to M2.0] // xxxx xx1x: Ref1 Skip Center 0 is enabled [corresponds to M2.1] // xxxx x1xx: Ref0 Skip Center 1 is enabled [corresponds to M2.2] // xxxx 1xxx: Ref1 Skip Center 1 is enabled [corresponds to M2.3] // xxx1 xxxx: Ref0 Skip Center 2 is enabled [corresponds to M2.4] // xx1x xxxx: Ref1 Skip Center 2 is enabled [corresponds to M2.5] // x1xx xxxx: Ref0 Skip Center 3 is enabled [corresponds to M2.6] // 1xxx xxxx: Ref1 Skip Center 3 is enabled [corresponds to M2.7] #define VME_GET_UNIInput_SkipCenterMask(p) (VME_Input_G1(p, uchar, 1, 31)) // NOTE: replace v with U4U4 type with // (shift_count, shift_val) and set the value as (shift_val | (shift_count << // 4)) // Format = U4U4 (encoded value must fit in 12-bits) #define VME_GET_UNIInput_Mode0Cost(p) (VME_Input_G1(p, uchar, 2, 0)) #define VME_GET_UNIInput_Mode1Cost(p) (VME_Input_G1(p, uchar, 2, 1)) #define VME_GET_UNIInput_Mode2Cost(p) (VME_Input_G1(p, uchar, 2, 2)) #define VME_GET_UNIInput_Mode3Cost(p) (VME_Input_G1(p, uchar, 2, 3)) #define VME_GET_UNIInput_Mode4Cost(p) (VME_Input_G1(p, uchar, 2, 4)) #define VME_GET_UNIInput_Mode5Cost(p) (VME_Input_G1(p, uchar, 2, 5)) #define VME_GET_UNIInput_Mode6Cost(p) (VME_Input_G1(p, uchar, 2, 6)) #define VME_GET_UNIInput_Mode7Cost(p) (VME_Input_G1(p, uchar, 2, 7)) #define VME_GET_UNIInput_Mode8Cost(p) (VME_Input_G1(p, uchar, 2, 8)) #define VME_GET_UNIInput_Mode9Cost(p) (VME_Input_G1(p, uchar, 2, 9)) // Format = U4U4 (encoded value must fit in 12-bits) #define VME_GET_UNIInput_RefIDCost(p) (VME_Input_G1(p, uchar, 2, 10)) // Format = U4U4 (encoded value must fit in 12-bits) #define VME_GET_UNIInput_ChromaIntraModeCost(p) (VME_Input_G1(p, uchar, 2, 11)) // Format = U4U4 (encoded value must fit in 10-bits) #define VME_GET_UNIInput_MV0Cost(p) (VME_Input_G1(p, uchar, 2, 12)) #define VME_GET_UNIInput_MV1Cost(p) (VME_Input_G1(p, uchar, 2, 13)) #define VME_GET_UNIInput_MV2Cost(p) (VME_Input_G1(p, uchar, 2, 14)) #define VME_GET_UNIInput_MV3Cost(p) (VME_Input_G1(p, uchar, 2, 15)) #define VME_GET_UNIInput_MV4Cost(p) (VME_Input_G1(p, uchar, 2, 16)) #define VME_GET_UNIInput_MV5Cost(p) (VME_Input_G1(p, uchar, 2, 17)) #define VME_GET_UNIInput_MV6Cost(p) (VME_Input_G1(p, uchar, 2, 18)) #define VME_GET_UNIInput_MV7Cost(p) (VME_Input_G1(p, uchar, 2, 19)) // Format = U8 #define VME_GET_UNIInput_FBRMbModeInput(p) (VME_Input_G1(p, uchar, 2, 20) & 0x3) // Format = U8 #define VME_GET_UNIInput_FBRSubMBShapeInput(p) (VME_Input_G1(p, uchar, 2, 21)) // Format = U8 #define VME_GET_UNIInput_FBRSubPredModeInput(p) (VME_Input_G1(p, uchar, 2, 22)) // Format = U16 #define VME_GET_UNIInput_SICFwdTCoeffThreshold0(p) \ (VME_Input_G1(p, ushort, 2, 12)) // Format = U8 #define VME_GET_UNIInput_SICFwdTCoeffThreshold1(p) \ (VME_Input_G1(p, uchar, 2, 26)) #define VME_GET_UNIInput_SICFwdTCoeffThreshold2(p) \ (VME_Input_G1(p, uchar, 2, 27)) #define VME_GET_UNIInput_SICFwdTCoeffThreshold3(p) \ (VME_Input_G1(p, uchar, 2, 28)) #define VME_GET_UNIInput_SICFwdTCoeffThreshold4(p) \ (VME_Input_G1(p, uchar, 2, 29)) #define VME_GET_UNIInput_SICFwdTCoeffThreshold5(p) \ (VME_Input_G1(p, uchar, 2, 30)) #define VME_GET_UNIInput_SICFwdTCoeffThreshold6(p) \ (VME_Input_G1(p, uchar, 2, 31)) // Return DeltaX in the lower 16 bit and DeltaY in the higher 16 bits // Format = S13.2, DletaX Valid Range: [-2048.00 to 2047.75], DletaY Valid // Range: [-512.00 to 511.75] #define VME_GET_UNIInput_FWDCostCenter0_X(p) (VME_Input_G1(p, ushort, 3, 0)) #define VME_GET_UNIInput_FWDCostCenter0_Y(p) (VME_Input_G1(p, ushort, 3, 1)) #define VME_GET_UNIInput_BWDCostCenter0_X(p) (VME_Input_G1(p, ushort, 3, 2)) #define VME_GET_UNIInput_BWDCostCenter0_Y(p) (VME_Input_G1(p, ushort, 3, 3)) #define VME_GET_UNIInput_FWDCostCenter1_X(p) (VME_Input_G1(p, ushort, 3, 4)) #define VME_GET_UNIInput_FWDCostCenter1_Y(p) (VME_Input_G1(p, ushort, 3, 5)) #define VME_GET_UNIInput_BWDCostCenter1_X(p) (VME_Input_G1(p, ushort, 3, 6)) #define VME_GET_UNIInput_BWDCostCenter1_Y(p) (VME_Input_G1(p, ushort, 3, 7)) #define VME_GET_UNIInput_FWDCostCenter2_X(p) (VME_Input_G1(p, ushort, 3, 8)) #define VME_GET_UNIInput_FWDCostCenter2_Y(p) (VME_Input_G1(p, ushort, 3, 9)) #define VME_GET_UNIInput_BWDCostCenter2_X(p) (VME_Input_G1(p, ushort, 3, 10)) #define VME_GET_UNIInput_BWDCostCenter2_Y(p) (VME_Input_G1(p, ushort, 3, 11)) #define VME_GET_UNIInput_FWDCostCenter3_X(p) (VME_Input_G1(p, ushort, 3, 12)) #define VME_GET_UNIInput_FWDCostCenter3_Y(p) (VME_Input_G1(p, ushort, 3, 13)) #define VME_GET_UNIInput_BWDCostCenter3_X(p) (VME_Input_G1(p, ushort, 3, 14)) #define VME_GET_UNIInput_BWDCostCenter3_Y(p) (VME_Input_G1(p, ushort, 3, 15)) // Format = U8, with the following definition: // [7:4] (Y) - specifies relative Y distance to the next SU from previous SU in // units of SU // [3:0] (X) - specifies relative X distance to the next SU from previous SU in // units of SU #define VME_GET_IMEInput_IMESearchPathDelta0(p) (VME_Input_G1(p, uchar, 0, 0)) #define VME_GET_IMEInput_IMESearchPathDelta1(p) (VME_Input_G1(p, uchar, 0, 1)) #define VME_GET_IMEInput_IMESearchPathDelta2(p) (VME_Input_G1(p, uchar, 0, 2)) #define VME_GET_IMEInput_IMESearchPathDelta3(p) (VME_Input_G1(p, uchar, 0, 3)) #define VME_GET_IMEInput_IMESearchPathDelta4(p) (VME_Input_G1(p, uchar, 0, 4)) #define VME_GET_IMEInput_IMESearchPathDelta5(p) (VME_Input_G1(p, uchar, 0, 5)) #define VME_GET_IMEInput_IMESearchPathDelta6(p) (VME_Input_G1(p, uchar, 0, 6)) #define VME_GET_IMEInput_IMESearchPathDelta7(p) (VME_Input_G1(p, uchar, 0, 7)) #define VME_GET_IMEInput_IMESearchPathDelta8(p) (VME_Input_G1(p, uchar, 0, 8)) #define VME_GET_IMEInput_IMESearchPathDelta9(p) (VME_Input_G1(p, uchar, 0, 9)) #define VME_GET_IMEInput_IMESearchPathDelta10(p) (VME_Input_G1(p, uchar, 0, 10)) #define VME_GET_IMEInput_IMESearchPathDelta11(p) (VME_Input_G1(p, uchar, 0, 11)) #define VME_GET_IMEInput_IMESearchPathDelta12(p) (VME_Input_G1(p, uchar, 0, 12)) #define VME_GET_IMEInput_IMESearchPathDelta13(p) (VME_Input_G1(p, uchar, 0, 13)) #define VME_GET_IMEInput_IMESearchPathDelta14(p) (VME_Input_G1(p, uchar, 0, 14)) #define VME_GET_IMEInput_IMESearchPathDelta15(p) (VME_Input_G1(p, uchar, 0, 15)) #define VME_GET_IMEInput_IMESearchPathDelta16(p) (VME_Input_G1(p, uchar, 0, 16)) #define VME_GET_IMEInput_IMESearchPathDelta17(p) (VME_Input_G1(p, uchar, 0, 17)) #define VME_GET_IMEInput_IMESearchPathDelta18(p) (VME_Input_G1(p, uchar, 0, 18)) #define VME_GET_IMEInput_IMESearchPathDelta19(p) (VME_Input_G1(p, uchar, 0, 19)) #define VME_GET_IMEInput_IMESearchPathDelta20(p) (VME_Input_G1(p, uchar, 0, 20)) #define VME_GET_IMEInput_IMESearchPathDelta21(p) (VME_Input_G1(p, uchar, 0, 21)) #define VME_GET_IMEInput_IMESearchPathDelta22(p) (VME_Input_G1(p, uchar, 0, 22)) #define VME_GET_IMEInput_IMESearchPathDelta23(p) (VME_Input_G1(p, uchar, 0, 23)) #define VME_GET_IMEInput_IMESearchPathDelta24(p) (VME_Input_G1(p, uchar, 0, 24)) #define VME_GET_IMEInput_IMESearchPathDelta25(p) (VME_Input_G1(p, uchar, 0, 25)) #define VME_GET_IMEInput_IMESearchPathDelta26(p) (VME_Input_G1(p, uchar, 0, 26)) #define VME_GET_IMEInput_IMESearchPathDelta27(p) (VME_Input_G1(p, uchar, 0, 27)) #define VME_GET_IMEInput_IMESearchPathDelta28(p) (VME_Input_G1(p, uchar, 0, 28)) #define VME_GET_IMEInput_IMESearchPathDelta29(p) (VME_Input_G1(p, uchar, 0, 29)) #define VME_GET_IMEInput_IMESearchPathDelta30(p) (VME_Input_G1(p, uchar, 0, 30)) #define VME_GET_IMEInput_IMESearchPathDelta31(p) (VME_Input_G1(p, uchar, 0, 31)) #define VME_GET_IMEInput_IMESearchPathDelta32(p) (VME_Input_G1(p, uchar, 1, 0)) #define VME_GET_IMEInput_IMESearchPathDelta33(p) (VME_Input_G1(p, uchar, 1, 1)) #define VME_GET_IMEInput_IMESearchPathDelta34(p) (VME_Input_G1(p, uchar, 1, 2)) #define VME_GET_IMEInput_IMESearchPathDelta35(p) (VME_Input_G1(p, uchar, 1, 3)) #define VME_GET_IMEInput_IMESearchPathDelta36(p) (VME_Input_G1(p, uchar, 1, 4)) #define VME_GET_IMEInput_IMESearchPathDelta37(p) (VME_Input_G1(p, uchar, 1, 5)) #define VME_GET_IMEInput_IMESearchPathDelta38(p) (VME_Input_G1(p, uchar, 1, 6)) #define VME_GET_IMEInput_IMESearchPathDelta39(p) (VME_Input_G1(p, uchar, 1, 7)) #define VME_GET_IMEInput_IMESearchPathDelta40(p) (VME_Input_G1(p, uchar, 1, 8)) #define VME_GET_IMEInput_IMESearchPathDelta41(p) (VME_Input_G1(p, uchar, 1, 9)) #define VME_GET_IMEInput_IMESearchPathDelta42(p) (VME_Input_G1(p, uchar, 1, 10)) #define VME_GET_IMEInput_IMESearchPathDelta43(p) (VME_Input_G1(p, uchar, 1, 11)) #define VME_GET_IMEInput_IMESearchPathDelta44(p) (VME_Input_G1(p, uchar, 1, 12)) #define VME_GET_IMEInput_IMESearchPathDelta45(p) (VME_Input_G1(p, uchar, 1, 13)) #define VME_GET_IMEInput_IMESearchPathDelta46(p) (VME_Input_G1(p, uchar, 1, 14)) #define VME_GET_IMEInput_IMESearchPathDelta47(p) (VME_Input_G1(p, uchar, 1, 15)) #define VME_GET_IMEInput_IMESearchPathDelta48(p) (VME_Input_G1(p, uchar, 1, 16)) #define VME_GET_IMEInput_IMESearchPathDelta49(p) (VME_Input_G1(p, uchar, 1, 17)) #define VME_GET_IMEInput_IMESearchPathDelta50(p) (VME_Input_G1(p, uchar, 1, 18)) #define VME_GET_IMEInput_IMESearchPathDelta51(p) (VME_Input_G1(p, uchar, 1, 19)) #define VME_GET_IMEInput_IMESearchPathDelta52(p) (VME_Input_G1(p, uchar, 1, 20)) #define VME_GET_IMEInput_IMESearchPathDelta53(p) (VME_Input_G1(p, uchar, 1, 21)) #define VME_GET_IMEInput_IMESearchPathDelta54(p) (VME_Input_G1(p, uchar, 1, 22)) #define VME_GET_IMEInput_IMESearchPathDelta55(p) (VME_Input_G1(p, uchar, 1, 23)) // Format = U16 #define VME_GET_IMEInput_Rec0_16x8_0Distortion(p) \ (VME_Input_G1(p, ushort, 2, 0)) #define VME_GET_IMEInput_Rec0_16x8_1Distortion(p) \ (VME_Input_G1(p, ushort, 2, 1)) #define VME_GET_IMEInput_Rec0_8x16_0Distortion(p) \ (VME_Input_G1(p, ushort, 2, 2)) #define VME_GET_IMEInput_Rec0_8x16_1Distortion(p) \ (VME_Input_G1(p, ushort, 2, 3)) #define VME_GET_IMEInput_Rec0_8x8_0Distortion(p) (VME_Input_G1(p, ushort, 2, 4)) #define VME_GET_IMEInput_Rec0_8x8_1Distortion(p) (VME_Input_G1(p, ushort, 2, 5)) #define VME_GET_IMEInput_Rec0_8x8_2Distortion(p) (VME_Input_G1(p, ushort, 2, 6)) #define VME_GET_IMEInput_Rec0_8x8_3Distortion(p) (VME_Input_G1(p, ushort, 2, 7)) #define VME_GET_IMEInput_Rec0_16x16_Distortion(p) \ (VME_Input_G1(p, ushort, 2, 8)) // Format = U4 #define VME_GET_UNIInput_Rec0_16x16_RefID(p) \ (VME_Input_G1(p, uchar, 2, 18) & 0x0F) // Format = S13.2 #define VME_GET_IMEInput_Rec0_16x16_X(p) (VME_Input_G1(p, ushort, 2, 10)) #define VME_GET_IMEInput_Rec0_16x16_Y(p) (VME_Input_G1(p, ushort, 2, 11)) // Format = U4 #define VME_GET_IMEInput_Rec0_16x8_0to1RefID(p) (VME_Input_G1(p, uchar, 2, 24)) #define VME_GET_IMEInput_Rec0_8x16_0to1RefID(p) (VME_Input_G1(p, uchar, 2, 25)) #define VME_GET_IMEInput_Rec0_8x8_0to1RefID(p) (VME_Input_G1(p, uchar, 2, 26)) #define VME_GET_IMEInput_Rec0_8x8_2to3RefID(p) (VME_Input_G1(p, uchar, 2, 27)) // Format = S13.2 #define VME_GET_IMEInput_Rec0_16x8_0X(p) (VME_Input_G1(p, ushort, 3, 0)) #define VME_GET_IMEInput_Rec0_16x8_0Y(p) (VME_Input_G1(p, ushort, 3, 1)) #define VME_GET_IMEInput_Rec0_16x8_1X(p) (VME_Input_G1(p, ushort, 3, 2)) #define VME_GET_IMEInput_Rec0_16x8_1Y(p) (VME_Input_G1(p, ushort, 3, 3)) #define VME_GET_IMEInput_Rec0_8x16_0X(p) (VME_Input_G1(p, ushort, 3, 4)) #define VME_GET_IMEInput_Rec0_8x16_0Y(p) (VME_Input_G1(p, ushort, 3, 5)) #define VME_GET_IMEInput_Rec0_8x16_1X(p) (VME_Input_G1(p, ushort, 3, 6)) #define VME_GET_IMEInput_Rec0_8x16_1Y(p) (VME_Input_G1(p, ushort, 3, 7)) #define VME_GET_IMEInput_Rec0_8x8_0X(p) (VME_Input_G1(p, ushort, 3, 8)) #define VME_GET_IMEInput_Rec0_8x8_0Y(p) (VME_Input_G1(p, ushort, 3, 9)) #define VME_GET_IMEInput_Rec0_8x8_1X(p) (VME_Input_G1(p, ushort, 3, 10)) #define VME_GET_IMEInput_Rec0_8x8_1Y(p) (VME_Input_G1(p, ushort, 3, 11)) #define VME_GET_IMEInput_Rec0_8x8_2X(p) (VME_Input_G1(p, ushort, 3, 12)) #define VME_GET_IMEInput_Rec0_8x8_2Y(p) (VME_Input_G1(p, ushort, 3, 13)) #define VME_GET_IMEInput_Rec0_8x8_3X(p) (VME_Input_G1(p, ushort, 3, 14)) #define VME_GET_IMEInput_Rec0_8x8_3Y(p) (VME_Input_G1(p, ushort, 3, 15)) // Format = U16 #define VME_GET_IMEInput_Rec1_16x8_0Distortion(p) \ (VME_Input_G1(p, ushort, 4, 0)) #define VME_GET_IMEInput_Rec1_16x8_1Distortion(p) \ (VME_Input_G1(p, ushort, 4, 1)) #define VME_GET_IMEInput_Rec1_8x16_0Distortion(p) \ (VME_Input_G1(p, ushort, 4, 2)) #define VME_GET_IMEInput_Rec1_8x16_1Distortion(p) \ (VME_Input_G1(p, ushort, 4, 3)) #define VME_GET_IMEInput_Rec1_8x8_0Distortion(p) (VME_Input_G1(p, ushort, 4, 4)) #define VME_GET_IMEInput_Rec1_8x8_1Distortion(p) (VME_Input_G1(p, ushort, 4, 5)) #define VME_GET_IMEInput_Rec1_8x8_2Distortion(p) (VME_Input_G1(p, ushort, 4, 6)) #define VME_GET_IMEInput_Rec1_8x8_3Distortion(p) (VME_Input_G1(p, ushort, 4, 7)) #define VME_GET_IMEInput_Rec1_16x16_Distortion(p) \ (VME_Input_G1(p, ushort, 4, 8)) // Format = U4 #define VME_GET_UNIInput_Rec1_16x16_RefID(p) (VME_Input_G1(p, uchar, 4, 18)) // Format = S13.2 #define VME_GET_IMEInput_Rec1_16x16_X(p) (VME_Input_G1(p, ushort, 4, 10)) #define VME_GET_IMEInput_Rec1_16x16_Y(p) (VME_Input_G1(p, ushort, 4, 11)) // Format = U4 #define VME_GET_IMEInput_Rec1_16x8_0to1RefID(p) (VME_Input_G1(p, uchar, 4, 24)) #define VME_GET_IMEInput_Rec1_8x16_0to1RefID(p) (VME_Input_G1(p, uchar, 4, 25)) #define VME_GET_IMEInput_Rec1_8x8_0to1RefID(p) (VME_Input_G1(p, uchar, 4, 26)) #define VME_GET_IMEInput_Rec1_8x8_2to3RefID(p) (VME_Input_G1(p, uchar, 4, 27)) // Format = S13.2 #define VME_GET_IMEInput_Rec1_16x8_0X(p) (VME_Input_G1(p, ushort, 5, 0)) #define VME_GET_IMEInput_Rec1_16x8_0Y(p) (VME_Input_G1(p, ushort, 5, 1)) #define VME_GET_IMEInput_Rec1_16x8_1X(p) (VME_Input_G1(p, ushort, 5, 2)) #define VME_GET_IMEInput_Rec1_16x8_1Y(p) (VME_Input_G1(p, ushort, 5, 3)) #define VME_GET_IMEInput_Rec1_8x16_0X(p) (VME_Input_G1(p, ushort, 5, 4)) #define VME_GET_IMEInput_Rec1_8x16_0Y(p) (VME_Input_G1(p, ushort, 5, 5)) #define VME_GET_IMEInput_Rec1_8x16_1X(p) (VME_Input_G1(p, ushort, 5, 6)) #define VME_GET_IMEInput_Rec1_8x16_1Y(p) (VME_Input_G1(p, ushort, 5, 7)) #define VME_GET_IMEInput_Rec1_8x8_0X(p) (VME_Input_G1(p, ushort, 5, 8)) #define VME_GET_IMEInput_Rec1_8x8_0Y(p) (VME_Input_G1(p, ushort, 5, 9)) #define VME_GET_IMEInput_Rec1_8x8_1X(p) (VME_Input_G1(p, ushort, 5, 10)) #define VME_GET_IMEInput_Rec1_8x8_1Y(p) (VME_Input_G1(p, ushort, 5, 11)) #define VME_GET_IMEInput_Rec1_8x8_2X(p) (VME_Input_G1(p, ushort, 5, 12)) #define VME_GET_IMEInput_Rec1_8x8_2Y(p) (VME_Input_G1(p, ushort, 5, 13)) #define VME_GET_IMEInput_Rec1_8x8_3X(p) (VME_Input_G1(p, ushort, 5, 14)) #define VME_GET_IMEInput_Rec1_8x8_3Y(p) (VME_Input_G1(p, ushort, 5, 15)) // Format = S13.2, Valid Range: [-2048.00 to 2047.75] // For chroma skip: Format = S12.3, Hardware Range: [-1024.000 to 1023.875] #define VME_GET_SICInput_Ref0SkipCenter0DeltaX(p) \ (VME_Input_G1(p, ushort, 0, 0)) #define VME_GET_SICInput_Ref0SkipCenter0DeltaY(p) \ (VME_Input_G1(p, ushort, 0, 1)) #define VME_GET_SICInput_Ref1SkipCenter0DeltaX(p) \ (VME_Input_G1(p, ushort, 0, 2)) #define VME_GET_SICInput_Ref1SkipCenter0DeltaY(p) \ (VME_Input_G1(p, ushort, 0, 3)) #define VME_GET_SICInput_Ref0SkipCenter1DeltaX(p) \ (VME_Input_G1(p, ushort, 0, 4)) #define VME_GET_SICInput_Ref0SkipCenter1DeltaY(p) \ (VME_Input_G1(p, ushort, 0, 5)) #define VME_GET_SICInput_Ref1SkipCenter1DeltaX(p) \ (VME_Input_G1(p, ushort, 0, 6)) #define VME_GET_SICInput_Ref1SkipCenter1DeltaY(p) \ (VME_Input_G1(p, ushort, 0, 7)) #define VME_GET_SICInput_Ref0SkipCenter2DeltaX(p) \ (VME_Input_G1(p, ushort, 0, 8)) #define VME_GET_SICInput_Ref0SkipCenter2DeltaY(p) \ (VME_Input_G1(p, ushort, 0, 9)) #define VME_GET_SICInput_Ref1SkipCenter2DeltaX(p) \ (VME_Input_G1(p, ushort, 0, 10)) #define VME_GET_SICInput_Ref1SkipCenter2DeltaY(p) \ (VME_Input_G1(p, ushort, 0, 11)) #define VME_GET_SICInput_Ref0SkipCenter3DeltaX(p) \ (VME_Input_G1(p, ushort, 0, 12)) #define VME_GET_SICInput_Ref0SkipCenter3DeltaY(p) \ (VME_Input_G1(p, ushort, 0, 13)) #define VME_GET_SICInput_Ref1SkipCenter3DeltaX(p) \ (VME_Input_G1(p, ushort, 0, 14)) #define VME_GET_SICInput_Ref1SkipCenter3DeltaY(p) \ (VME_Input_G1(p, ushort, 0, 15)) #define VME_GET_SICInput_Intra4x4ModeMask(p) (VME_Input_G1(p, uchar, 1, 0)) #define VME_GET_SICInput_Intra8x8ModeMask(p) (VME_Input_G1(p, uchar, 1, 2)) #define VME_GET_SICInput_IntraModeMask(p) (VME_Input_G1(p, uchar, 1, 4)) // 2-bit field with the following definition // 00: Luma + Chroma enabled // 01: Luma only // 1X: Intra disabled #define VME_GET_SICInput_IntraComputeType(p) \ (VME_Input_G1(p, uchar, 1, 5) & 0x3) #define VME_GET_SICInput_CornerNeighborPixel0(p) (VME_Input_G1(p, uchar, 1, 7)) #define VME_GET_SICInput_NeighborPixelLum0(p) (VME_Input_G1(p, uchar, 1, 8)) #define VME_GET_SICInput_NeighborPixelLum1(p) (VME_Input_G1(p, uchar, 1, 9)) #define VME_GET_SICInput_NeighborPixelLum2(p) (VME_Input_G1(p, uchar, 1, 10)) #define VME_GET_SICInput_NeighborPixelLum3(p) (VME_Input_G1(p, uchar, 1, 11)) #define VME_GET_SICInput_NeighborPixelLum4(p) (VME_Input_G1(p, uchar, 1, 12)) #define VME_GET_SICInput_NeighborPixelLum5(p) (VME_Input_G1(p, uchar, 1, 13)) #define VME_GET_SICInput_NeighborPixelLum6(p) (VME_Input_G1(p, uchar, 1, 14)) #define VME_GET_SICInput_NeighborPixelLum7(p) (VME_Input_G1(p, uchar, 1, 15)) #define VME_GET_SICInput_NeighborPixelLum8(p) (VME_Input_G1(p, uchar, 1, 16)) #define VME_GET_SICInput_NeighborPixelLum9(p) (VME_Input_G1(p, uchar, 1, 17)) #define VME_GET_SICInput_NeighborPixelLum10(p) (VME_Input_G1(p, uchar, 1, 18)) #define VME_GET_SICInput_NeighborPixelLum11(p) (VME_Input_G1(p, uchar, 1, 19)) #define VME_GET_SICInput_NeighborPixelLum12(p) (VME_Input_G1(p, uchar, 1, 20)) #define VME_GET_SICInput_NeighborPixelLum13(p) (VME_Input_G1(p, uchar, 1, 21)) #define VME_GET_SICInput_NeighborPixelLum14(p) (VME_Input_G1(p, uchar, 1, 22)) #define VME_GET_SICInput_NeighborPixelLum15(p) (VME_Input_G1(p, uchar, 1, 23)) #define VME_GET_SICInput_NeighborPixelLum16(p) (VME_Input_G1(p, uchar, 1, 24)) #define VME_GET_SICInput_NeighborPixelLum17(p) (VME_Input_G1(p, uchar, 1, 25)) #define VME_GET_SICInput_NeighborPixelLum18(p) (VME_Input_G1(p, uchar, 1, 26)) #define VME_GET_SICInput_NeighborPixelLum19(p) (VME_Input_G1(p, uchar, 1, 27)) #define VME_GET_SICInput_NeighborPixelLum20(p) (VME_Input_G1(p, uchar, 1, 28)) #define VME_GET_SICInput_NeighborPixelLum21(p) (VME_Input_G1(p, uchar, 1, 29)) #define VME_GET_SICInput_NeighborPixelLum22(p) (VME_Input_G1(p, uchar, 1, 30)) #define VME_GET_SICInput_NeighborPixelLum23(p) (VME_Input_G1(p, uchar, 1, 31)) #define VME_GET_SICInput_NeighborPixelLum24(p) (VME_Input_G1(p, uchar, 2, 0)) #define VME_GET_SICInput_NeighborPixelLum25(p) (VME_Input_G1(p, uchar, 2, 1)) #define VME_GET_SICInput_NeighborPixelLum26(p) (VME_Input_G1(p, uchar, 2, 2)) #define VME_GET_SICInput_NeighborPixelLum27(p) (VME_Input_G1(p, uchar, 2, 3)) #define VME_GET_SICInput_NeighborPixelLum28(p) (VME_Input_G1(p, uchar, 2, 4)) #define VME_GET_SICInput_NeighborPixelLum29(p) (VME_Input_G1(p, uchar, 2, 5)) #define VME_GET_SICInput_NeighborPixelLum30(p) (VME_Input_G1(p, uchar, 2, 6)) #define VME_GET_SICInput_NeighborPixelLum31(p) (VME_Input_G1(p, uchar, 2, 7)) #define VME_GET_SICInput_NeighborPixelLum32(p) (VME_Input_G1(p, uchar, 2, 8)) #define VME_GET_SICInput_NeighborPixelLum33(p) (VME_Input_G1(p, uchar, 2, 9)) #define VME_GET_SICInput_NeighborPixelLum34(p) (VME_Input_G1(p, uchar, 2, 10)) #define VME_GET_SICInput_NeighborPixelLum35(p) (VME_Input_G1(p, uchar, 2, 11)) #define VME_GET_SICInput_NeighborPixelLum36(p) (VME_Input_G1(p, uchar, 2, 12)) #define VME_GET_SICInput_NeighborPixelLum37(p) (VME_Input_G1(p, uchar, 2, 13)) #define VME_GET_SICInput_NeighborPixelLum38(p) (VME_Input_G1(p, uchar, 2, 14)) #define VME_GET_SICInput_CornerNeighborPixel1(p) (VME_Input_G1(p, uchar, 2, 15)) #define VME_GET_SICInput_LeftModes(p) (VME_Input_G1(p, ushort, 2, 8)) #define VME_GET_SICInput_TopModes(p) (VME_Input_G1(p, ushort, 2, 9)) // Format = U8 pair #define VME_GET_SICInput_CornerNeighborPixelChroma(p) \ (VME_Input_G1(p, ushort, 2, 10)) #if 0 // Format = U4U4 #define VME_GET_SICInput_PenaltyIntra4x4NonDC(p) (VME_Input_G1(p, uchar, 2, 28)) // Format = U2 #define VME_GET_SICInput_ScaleFactorIntra8x8NonDC(p) \ (VME_Input_G1(p, uchar, 2, 29) & 0x3) // Format = U2 #define VME_GET_SICInput_ScaleFactorIntra16x16NonDC(p) \ ((VME_Input_G1(p, uchar, 2, 29) & 0xC) >> 2) #else // BSPEC Update Rev1.6 // Format = U8 #define VME_GET_SICInput_PenaltyIntra4x4NonDC(p) (VME_Input_G1(p, uchar, 2, 30)) // Format = U8 #define VME_GET_SICInput_PenaltyIntra8x8NonDC(p) (VME_Input_G1(p, uchar, 2, 29)) // Format = U8 #define VME_GET_SICInput_PenaltyIntra16x16NonDC(p) \ (VME_Input_G1(p, uchar, 2, 28)) #endif #define VME_GET_SICInput_NeighborPixelChroma0(p) (VME_Input_G1(p, uchar, 3, 0)) #define VME_GET_SICInput_NeighborPixelChroma1(p) (VME_Input_G1(p, uchar, 3, 1)) #define VME_GET_SICInput_NeighborPixelChroma2(p) (VME_Input_G1(p, uchar, 3, 2)) #define VME_GET_SICInput_NeighborPixelChroma3(p) (VME_Input_G1(p, uchar, 3, 3)) #define VME_GET_SICInput_NeighborPixelChroma4(p) (VME_Input_G1(p, uchar, 3, 4)) #define VME_GET_SICInput_NeighborPixelChroma5(p) (VME_Input_G1(p, uchar, 3, 5)) #define VME_GET_SICInput_NeighborPixelChroma6(p) (VME_Input_G1(p, uchar, 3, 6)) #define VME_GET_SICInput_NeighborPixelChroma7(p) (VME_Input_G1(p, uchar, 3, 7)) #define VME_GET_SICInput_NeighborPixelChroma8(p) (VME_Input_G1(p, uchar, 3, 8)) #define VME_GET_SICInput_NeighborPixelChroma9(p) (VME_Input_G1(p, uchar, 3, 9)) #define VME_GET_SICInput_NeighborPixelChroma10(p) \ (VME_Input_G1(p, uchar, 3, 10)) #define VME_GET_SICInput_NeighborPixelChroma11(p) \ (VME_Input_G1(p, uchar, 3, 11)) #define VME_GET_SICInput_NeighborPixelChroma12(p) \ (VME_Input_G1(p, uchar, 3, 12)) #define VME_GET_SICInput_NeighborPixelChroma13(p) \ (VME_Input_G1(p, uchar, 3, 13)) #define VME_GET_SICInput_NeighborPixelChroma14(p) \ (VME_Input_G1(p, uchar, 3, 14)) #define VME_GET_SICInput_NeighborPixelChroma15(p) \ (VME_Input_G1(p, uchar, 3, 15)) #define VME_GET_SICInput_NeighborPixelChroma16(p) \ (VME_Input_G1(p, uchar, 3, 16)) #define VME_GET_SICInput_NeighborPixelChroma17(p) \ (VME_Input_G1(p, uchar, 3, 17)) #define VME_GET_SICInput_NeighborPixelChroma18(p) \ (VME_Input_G1(p, uchar, 3, 18)) #define VME_GET_SICInput_NeighborPixelChroma19(p) \ (VME_Input_G1(p, uchar, 3, 19)) #define VME_GET_SICInput_NeighborPixelChroma20(p) \ (VME_Input_G1(p, uchar, 3, 20)) #define VME_GET_SICInput_NeighborPixelChroma21(p) \ (VME_Input_G1(p, uchar, 3, 21)) #define VME_GET_SICInput_NeighborPixelChroma22(p) \ (VME_Input_G1(p, uchar, 3, 22)) #define VME_GET_SICInput_NeighborPixelChroma23(p) \ (VME_Input_G1(p, uchar, 3, 23)) #define VME_GET_SICInput_NeighborPixelChroma24(p) \ (VME_Input_G1(p, uchar, 3, 24)) #define VME_GET_SICInput_NeighborPixelChroma25(p) \ (VME_Input_G1(p, uchar, 3, 25)) #define VME_GET_SICInput_NeighborPixelChroma26(p) \ (VME_Input_G1(p, uchar, 3, 26)) #define VME_GET_SICInput_NeighborPixelChroma27(p) \ (VME_Input_G1(p, uchar, 3, 27)) #define VME_GET_SICInput_NeighborPixelChroma28(p) \ (VME_Input_G1(p, uchar, 3, 28)) #define VME_GET_SICInput_NeighborPixelChroma29(p) \ (VME_Input_G1(p, uchar, 3, 29)) #define VME_GET_SICInput_NeighborPixelChroma30(p) \ (VME_Input_G1(p, uchar, 3, 30)) #define VME_GET_SICInput_NeighborPixelChroma31(p) \ (VME_Input_G1(p, uchar, 3, 31)) #define VME_GET_FBRInput_Ref0SubBlockX0(p) (VME_Input_G1(p, ushort, 0, 0)) #define VME_GET_FBRInput_Ref0SubBlockY0(p) (VME_Input_G1(p, ushort, 0, 1)) #define VME_GET_FBRInput_Ref1SubBlockX0(p) (VME_Input_G1(p, ushort, 0, 2)) #define VME_GET_FBRInput_Ref1SubBlockY0(p) (VME_Input_G1(p, ushort, 0, 3)) #define VME_GET_FBRInput_Ref0SubBlockX1(p) (VME_Input_G1(p, ushort, 0, 4)) #define VME_GET_FBRInput_Ref0SubBlockY1(p) (VME_Input_G1(p, ushort, 0, 5)) #define VME_GET_FBRInput_Ref1SubBlockX1(p) (VME_Input_G1(p, ushort, 0, 6)) #define VME_GET_FBRInput_Ref1SubBlockY1(p) (VME_Input_G1(p, ushort, 0, 7)) #define VME_GET_FBRInput_Ref0SubBlockX2(p) (VME_Input_G1(p, ushort, 0, 8)) #define VME_GET_FBRInput_Ref0SubBlockY2(p) (VME_Input_G1(p, ushort, 0, 9)) #define VME_GET_FBRInput_Ref1SubBlockX2(p) (VME_Input_G1(p, ushort, 0, 10)) #define VME_GET_FBRInput_Ref1SubBlockY2(p) (VME_Input_G1(p, ushort, 0, 11)) #define VME_GET_FBRInput_Ref0SubBlockX3(p) (VME_Input_G1(p, ushort, 0, 12)) #define VME_GET_FBRInput_Ref0SubBlockY3(p) (VME_Input_G1(p, ushort, 0, 13)) #define VME_GET_FBRInput_Ref1SubBlockX3(p) (VME_Input_G1(p, ushort, 0, 14)) #define VME_GET_FBRInput_Ref1SubBlockY3(p) (VME_Input_G1(p, ushort, 0, 15)) #define VME_GET_FBRInput_Ref0SubBlockX4(p) (VME_Input_G1(p, ushort, 1, 0)) #define VME_GET_FBRInput_Ref0SubBlockY4(p) (VME_Input_G1(p, ushort, 1, 1)) #define VME_GET_FBRInput_Ref1SubBlockX4(p) (VME_Input_G1(p, ushort, 1, 2)) #define VME_GET_FBRInput_Ref1SubBlockY4(p) (VME_Input_G1(p, ushort, 1, 3)) #define VME_GET_FBRInput_Ref0SubBlockX5(p) (VME_Input_G1(p, ushort, 1, 4)) #define VME_GET_FBRInput_Ref0SubBlockY5(p) (VME_Input_G1(p, ushort, 1, 5)) #define VME_GET_FBRInput_Ref1SubBlockX5(p) (VME_Input_G1(p, ushort, 1, 6)) #define VME_GET_FBRInput_Ref1SubBlockY5(p) (VME_Input_G1(p, ushort, 1, 7)) #define VME_GET_FBRInput_Ref0SubBlockX6(p) (VME_Input_G1(p, ushort, 1, 8)) #define VME_GET_FBRInput_Ref0SubBlockY6(p) (VME_Input_G1(p, ushort, 1, 9)) #define VME_GET_FBRInput_Ref1SubBlockX6(p) (VME_Input_G1(p, ushort, 1, 10)) #define VME_GET_FBRInput_Ref1SubBlockY6(p) (VME_Input_G1(p, ushort, 1, 11)) #define VME_GET_FBRInput_Ref0SubBlockX7(p) (VME_Input_G1(p, ushort, 1, 12)) #define VME_GET_FBRInput_Ref0SubBlockY7(p) (VME_Input_G1(p, ushort, 1, 13)) #define VME_GET_FBRInput_Ref1SubBlockX7(p) (VME_Input_G1(p, ushort, 1, 14)) #define VME_GET_FBRInput_Ref1SubBlockY7(p) (VME_Input_G1(p, ushort, 1, 15)) #define VME_GET_FBRInput_Ref0SubBlockX8(p) (VME_Input_G1(p, ushort, 2, 0)) #define VME_GET_FBRInput_Ref0SubBlockY8(p) (VME_Input_G1(p, ushort, 2, 1)) #define VME_GET_FBRInput_Ref1SubBlockX8(p) (VME_Input_G1(p, ushort, 2, 2)) #define VME_GET_FBRInput_Ref1SubBlockY8(p) (VME_Input_G1(p, ushort, 2, 3)) #define VME_GET_FBRInput_Ref0SubBlockX9(p) (VME_Input_G1(p, ushort, 2, 4)) #define VME_GET_FBRInput_Ref0SubBlockY9(p) (VME_Input_G1(p, ushort, 2, 5)) #define VME_GET_FBRInput_Ref1SubBlockX9(p) (VME_Input_G1(p, ushort, 2, 6)) #define VME_GET_FBRInput_Ref1SubBlockY9(p) (VME_Input_G1(p, ushort, 2, 7)) #define VME_GET_FBRInput_Ref0SubBlockX10(p) (VME_Input_G1(p, ushort, 2, 8)) #define VME_GET_FBRInput_Ref0SubBlockY10(p) (VME_Input_G1(p, ushort, 2, 9)) #define VME_GET_FBRInput_Ref1SubBlockX10(p) (VME_Input_G1(p, ushort, 2, 10)) #define VME_GET_FBRInput_Ref1SubBlockY10(p) (VME_Input_G1(p, ushort, 2, 11)) #define VME_GET_FBRInput_Ref0SubBlockX11(p) (VME_Input_G1(p, ushort, 2, 12)) #define VME_GET_FBRInput_Ref0SubBlockY11(p) (VME_Input_G1(p, ushort, 2, 13)) #define VME_GET_FBRInput_Ref1SubBlockX11(p) (VME_Input_G1(p, ushort, 2, 14)) #define VME_GET_FBRInput_Ref1SubBlockY11(p) (VME_Input_G1(p, ushort, 2, 15)) #define VME_GET_FBRInput_Ref0SubBlockX12(p) (VME_Input_G1(p, ushort, 3, 0)) #define VME_GET_FBRInput_Ref0SubBlockY12(p) (VME_Input_G1(p, ushort, 3, 1)) #define VME_GET_FBRInput_Ref1SubBlockX12(p) (VME_Input_G1(p, ushort, 3, 2)) #define VME_GET_FBRInput_Ref1SubBlockY12(p) (VME_Input_G1(p, ushort, 3, 3)) #define VME_GET_FBRInput_Ref0SubBlockX13(p) (VME_Input_G1(p, ushort, 3, 4)) #define VME_GET_FBRInput_Ref0SubBlockY13(p) (VME_Input_G1(p, ushort, 3, 5)) #define VME_GET_FBRInput_Ref1SubBlockX13(p) (VME_Input_G1(p, ushort, 3, 6)) #define VME_GET_FBRInput_Ref1SubBlockY13(p) (VME_Input_G1(p, ushort, 3, 7)) #define VME_GET_FBRInput_Ref0SubBlockX14(p) (VME_Input_G1(p, ushort, 3, 8)) #define VME_GET_FBRInput_Ref0SubBlockY14(p) (VME_Input_G1(p, ushort, 3, 9)) #define VME_GET_FBRInput_Ref1SubBlockX14(p) (VME_Input_G1(p, ushort, 3, 10)) #define VME_GET_FBRInput_Ref1SubBlockY14(p) (VME_Input_G1(p, ushort, 3, 11)) #define VME_GET_FBRInput_Ref0SubBlockX15(p) (VME_Input_G1(p, ushort, 3, 12)) #define VME_GET_FBRInput_Ref0SubBlockY15(p) (VME_Input_G1(p, ushort, 3, 13)) #define VME_GET_FBRInput_Ref1SubBlockX15(p) (VME_Input_G1(p, ushort, 3, 14)) #define VME_GET_FBRInput_Ref1SubBlockY15(p) (VME_Input_G1(p, ushort, 3, 15)) #define VME_GET_IDMInput_SrcMBPixelMaskRow0(p) (VME_Input_G1(p, ushort, 0, 0)) #define VME_GET_IDMInput_SrcMBPixelMaskRow1(p) (VME_Input_G1(p, ushort, 0, 1)) #define VME_GET_IDMInput_SrcMBPixelMaskRow2(p) (VME_Input_G1(p, ushort, 0, 2)) #define VME_GET_IDMInput_SrcMBPixelMaskRow3(p) (VME_Input_G1(p, ushort, 0, 3)) #define VME_GET_IDMInput_SrcMBPixelMaskRow4(p) (VME_Input_G1(p, ushort, 0, 4)) #define VME_GET_IDMInput_SrcMBPixelMaskRow5(p) (VME_Input_G1(p, ushort, 0, 5)) #define VME_GET_IDMInput_SrcMBPixelMaskRow6(p) (VME_Input_G1(p, ushort, 0, 6)) #define VME_GET_IDMInput_SrcMBPixelMaskRow7(p) (VME_Input_G1(p, ushort, 0, 7)) #define VME_GET_IDMInput_SrcMBPixelMaskRow8(p) (VME_Input_G1(p, ushort, 0, 8)) #define VME_GET_IDMInput_SrcMBPixelMaskRow9(p) (VME_Input_G1(p, ushort, 0, 9)) #define VME_GET_IDMInput_SrcMBPixelMaskRow10(p) (VME_Input_G1(p, ushort, 0, 10)) #define VME_GET_IDMInput_SrcMBPixelMaskRow11(p) (VME_Input_G1(p, ushort, 0, 11)) #define VME_GET_IDMInput_SrcMBPixelMaskRow12(p) (VME_Input_G1(p, ushort, 0, 12)) #define VME_GET_IDMInput_SrcMBPixelMaskRow13(p) (VME_Input_G1(p, ushort, 0, 13)) #define VME_GET_IDMInput_SrcMBPixelMaskRow14(p) (VME_Input_G1(p, ushort, 0, 14)) #define VME_GET_IDMInput_SrcMBPixelMaskRow15(p) (VME_Input_G1(p, ushort, 0, 15)) // Output #define MODE_INTER_16X16 0x00 #define MODE_INTER_16X8 0x01 #define MODE_INTER_8X16 0x02 #define MODE_INTER_8X8 0x03 #define MODE_INTER_MINOR 0x03 #define VME_GET_UNIOutput_InterMbMode(p, v) \ (v = VME_Output_S1(p, uchar, 0, 0) & 0x3) #define MODE_INTRA_16X16 0x00 #define MODE_INTRA_8X8 0x10 #define MODE_INTRA_4X4 0x20 #define MODE_INTRA_PCM 0x30 #define VME_GET_UNIOutput_IntraMbMode(p, v) \ (v = VME_Output_S1(p, uchar, 0, 0) & 0x30) #define MODE_FIELD_MB_POLARITY 0x80 #define VME_GET_UNIOutput_FieldMbPolarityFlag(p, v) \ (v = VME_Output_S1(p, uchar, 0, 0) & 0x80) #define VME_GET_UNIOutput_InterMbType(p, v) \ (v = VME_Output_S1(p, uchar, 0, 1) & 0x1F) #define VME_GET_UNIOutput_FieldMbFlag(p, v) \ (v = VME_Output_S1(p, uchar, 0, 1) & 0x40) #define VME_GET_UNIOutput_IntraMbType(p, v) \ (v = VME_Output_S1(p, uchar, 0, 2) & 0x1F) #define VME_GET_UNIOutput_IntraMbType(p, v) \ (v = VME_Output_S1(p, uchar, 0, 2) & 0x1F) #define VME_GET_UNIOutput_MvQuantity(p, v) \ (v = VME_Output_S1(p, uchar, 0, 3) & 0x1F) // Format = U16 #define VME_GET_UNIOutput_BestInterDistortion(p, v) \ (v = VME_Output_S1(p, ushort, 0, 4)) // Format = U16 #define VME_GET_UNIOutput_SkipRawDistortion(p, v) \ (v = VME_Output_S1(p, ushort, 0, 5)) // Format = U16 #define VME_GET_UNIOutput_BestIntraDistortion(p, v) \ (v = VME_Output_S1(p, ushort, 0, 6)) // Format = U16 #define VME_GET_UNIOutput_BestChromaIntraDistortion(p, v) \ (v = VME_Output_S1(p, ushort, 0, 7)) #define VME_GET_UNIOutput_LumaIntraPredMode0(p, v) \ (v = VME_Output_S1(p, ushort, 0, 8)) #define VME_GET_UNIOutput_LumaIntraPredMode1(p, v) \ (v = VME_Output_S1(p, ushort, 0, 9)) #define VME_GET_UNIOutput_LumaIntraPredMode2(p, v) \ (v = VME_Output_S1(p, ushort, 0, 10)) #define VME_GET_UNIOutput_LumaIntraPredMode3(p, v) \ (v = VME_Output_S1(p, ushort, 0, 11)) // 8-bit field with the following definition: // 7 Reserved : MBZ (for IntraPredAvailFlagF - F (pixel[-1,7] available for // MbAff) // 6 Reserved : MBZ (for IntraPredAvailFlagA/E - A (left neighbor top half // for MbAff) // 5 IntraPredAvailFlagE/A - A (Left neighbor or Left bottom half) // 4 IntraPredAvailFlagB - B (Upper neighbor) // 3 IntraPredAvailFlagC - C (Upper left neighbor) // 2 IntraPredAvailFlagD - D (Upper right neighbor) // 1:0 ChromaIntraPredMode #define VME_GET_UNIOutput_MbIntraStruct(p, v) \ (v = VME_Output_S1(p, uchar, 0, 24)) // 8-bit field with the following definition: // Bits [1:0]: SubMbShape[0] // Bits [3:2]: SubMbShape[1] // Bits [5:4]: SubMbShape[2] // Bits [7:6]: SubMbShape[3] #define VME_GET_UNIOutput_SubMbShape(p, v) (v = VME_Output_S1(p, uchar, 0, 25)) // 8-bit field with the following definition: // Bits [1:0]: SubMbPredMode[0] // Bits [3:2]: SubMbPredMode[1] // Bits [5:4]: SubMbPredMode[2] // Bits [7:6]: SubMbPredMode[3] #define VME_GET_UNIOutput_SubMbPredMode(p, v) \ (v = VME_Output_S1(p, uchar, 0, 26)) // v is a 4x16 short type matrix that stores the motion vectors as follows: // MVa[0].x, MVa[0].y, MVb[0].x, MVb[0].x // MVa[1].x, MVa[1].y, MVb[1].x, MVb[1].x // ... // MVa[15].x, MVa[15].y, MVb[15].x, MVb[15].x #define VME_GET_UNIOutput_Mvs(p, v) \ (v = p.format<short, 7, 32 / sizeof(short)>().select<4, 1, 16, 1>(1, 0)) // v is a 1x16 short type matrix that stores the inter distortions as follows: // InterDistortion[0], InterDistortion[1], ..., InterDistortion[15] #define VME_GET_UNIOutput_InterDistortion(p, v) \ (v = p.format<short, 7, 32 / sizeof(short)>().select<1, 1, 16, 1>(5, 0)) // Format = U4 #define VME_GET_UNIOutput_FwdBlk0RefID(p, v) \ (v = VME_Output_S1(p, uchar, 6, 0) & 0xF) #define VME_GET_UNIOutput_BwdBlk0RefID(p, v) \ (v = (VME_Output_S1(p, uchar, 6, 0) >> 4) & 0xF) #define VME_GET_UNIOutput_FwdBlk1RefID(p, v) \ (v = VME_Output_S1(p, uchar, 6, 1) & 0xF) #define VME_GET_UNIOutput_BwdBlk1RefID(p, v) \ (v = (VME_Output_S1(p, uchar, 6, 1) >> 4) & 0xF) #define VME_GET_UNIOutput_FwdBlk2RefID(p, v) \ (v = VME_Output_S1(p, uchar, 6, 2) & 0xF) #define VME_GET_UNIOutput_BwdBlk2RefID(p, v) \ (v = (VME_Output_S1(p, uchar, 6, 2) >> 4) & 0xF) #define VME_GET_UNIOutput_FwdBlk3RefID(p, v) \ (v = VME_Output_S1(p, uchar, 6, 3) & 0xF) #define VME_GET_UNIOutput_BwdBlk3RefID(p, v) \ (v = (VME_Output_S1(p, uchar, 6, 3) >> 4) & 0xF) #define VME_GET_UNIOutput_Blk0LumaNZC(p, v) (v = VME_Output_S1(p, uchar, 6, 4)) #define VME_GET_UNIOutput_Blk1LumaNZC(p, v) (v = VME_Output_S1(p, uchar, 6, 5)) #define VME_GET_UNIOutput_Blk2LumaNZC(p, v) (v = VME_Output_S1(p, uchar, 6, 6)) #define VME_GET_UNIOutput_Blk3LumaNZC(p, v) (v = VME_Output_S1(p, uchar, 6, 7)) // Format = U8 #define VME_GET_UNIOutput_Blk0ChromaCbNZC(p, v) \ (v = VME_Output_S1(p, uchar, 6, 16)) #define VME_GET_UNIOutput_Blk0ChromaCrNZC(p, v) \ (v = VME_Output_S1(p, uchar, 6, 17)) #define VME_GET_UNIOutput_SumInterDistL0(p, v) \ (v = VME_Output_S1(p, uint, 6, 6) & 0x3FFFFFF) #define VME_GET_UNIOutput_SumInterDistL1(p, v) \ (v = VME_Output_S1(p, ushort, 6, 9) + \ ((VME_Output_S1(p, ushort, 0, 3) & 0x3FF) << 16)) #define VME_GET_UNIOutput_MaxRef0InterDist(p, v) \ (v = VME_Output_S1(p, ushort, 6, 14)) #define VME_GET_UNIOutput_MaxRef1InterDist(p, v) \ (v = VME_Output_S1(p, ushort, 6, 15)) #define MODE_INTER_16X16 0x00 #define MODE_INTER_16X8 0x01 #define MODE_INTER_8X16 0x02 #define MODE_INTER_8X8 0x03 #define MODE_INTER_MINOR 0x03 #define VME_GET_IMEOutput_InterMbMode(p, v) \ (v = VME_Output_S1(p, uchar, 0, 0) & 0x3) #define MODE_INTRA_16X16 0x00 #define MODE_INTRA_8X8 0x10 #define MODE_INTRA_4X4 0x20 #define MODE_INTRA_PCM 0x30 #define VME_GET_IMEOutput_IntraMbMode(p, v) \ (v = VME_Output_S1(p, uchar, 0, 0) & 0x30) #define MODE_FIELD_MB_POLARITY 0x80 #define VME_GET_IMEOutput_FieldMbPolarityFlag(p, v) \ (v = VME_Output_S1(p, uchar, 0, 0) & 0x80) #define VME_GET_IMEOutput_InterMbType(p, v) \ (v = VME_Output_S1(p, uchar, 0, 1) & 0x1F) #define VME_GET_IMEOutput_FieldMbFlag(p, v) \ (v = VME_Output_S1(p, uchar, 0, 1) & 0x40) #define VME_GET_IMEOutput_IntraMbType(p, v) \ (v = VME_Output_S1(p, uchar, 0, 2) & 0x1F) #define VME_GET_IMEOutput_IntraMbType(p, v) \ (v = VME_Output_S1(p, uchar, 0, 2) & 0x1F) #define VME_GET_IMEOutput_MvQuantity(p, v) \ (v = VME_Output_S1(p, uchar, 0, 3) & 0x1F) // Format = U16 #define VME_GET_IMEOutput_BestInterDistortion(p, v) \ (v = VME_Output_S1(p, ushort, 0, 4)) // Format = U16 #define VME_GET_IMEOutput_SkipRawDistortion(p, v) \ (v = VME_Output_S1(p, ushort, 0, 5)) // Format = U16 #define VME_GET_IMEOutput_BestIntraDistortion(p, v) \ (v = VME_Output_S1(p, ushort, 0, 6)) // Format = U16 #define VME_GET_IMEOutput_BestChromaIntraDistortion(p, v) \ (v = VME_Output_S1(p, ushort, 0, 7)) #define VME_GET_IMEOutput_LumaIntraPredMode0(p, v) \ (v = VME_Output_S1(p, ushort, 0, 8)) #define VME_GET_IMEOutput_LumaIntraPredMode1(p, v) \ (v = VME_Output_S1(p, ushort, 0, 9)) #define VME_GET_IMEOutput_LumaIntraPredMode2(p, v) \ (v = VME_Output_S1(p, ushort, 0, 10)) #define VME_GET_IMEOutput_LumaIntraPredMode3(p, v) \ (v = VME_Output_S1(p, ushort, 0, 11)) // 8-bit field with the following definition: // 7 Reserved : MBZ (for IntraPredAvailFlagF - F (pixel[-1,7] available for // MbAff) // 6 Reserved : MBZ (for IntraPredAvailFlagA/E - A (left neighbor top half // for MbAff) // 5 IntraPredAvailFlagE/A - A (Left neighbor or Left bottom half) // 4 IntraPredAvailFlagB - B (Upper neighbor) // 3 IntraPredAvailFlagC - C (Upper left neighbor) // 2 IntraPredAvailFlagD - D (Upper right neighbor) // 1:0 ChromaIntraPredMode #define VME_GET_IMEOutput_MbIntraStruct(p, v) \ (v = VME_Output_S1(p, uchar, 0, 24)) // 8-bit field with the following definition: // Bits [1:0]: SubMbShape[0] // Bits [3:2]: SubMbShape[1] // Bits [5:4]: SubMbShape[2] // Bits [7:6]: SubMbShape[3] #define VME_GET_IMEOutput_SubMbShape(p, v) (v = VME_Output_S1(p, uchar, 0, 25)) // 8-bit field with the following definition: // Bits [1:0]: SubMbPredMode[0] // Bits [3:2]: SubMbPredMode[1] // Bits [5:4]: SubMbPredMode[2] // Bits [7:6]: SubMbPredMode[3] #define VME_GET_IMEOutput_SubMbPredMode(p, v) \ (v = VME_Output_S1(p, uchar, 0, 26)) // v is a 4x16 short type matrix that stores the motion vectors as follows: // MVa[0].x, MVa[0].y, MVb[0].x, MVb[0].x // MVa[1].x, MVa[1].y, MVb[1].x, MVb[1].x // ... // MVa[15].x, MVa[15].y, MVb[15].x, MVb[15].x #define VME_GET_IMEOutput_Mvs(p, v) \ (v = p.format<short, 7, 32 / sizeof(short)>().select<4, 1, 16, 1>(1, 0)) // v is a 1x16 short type matrix that stores the inter distortions as follows: // InterDistortion[0], InterDistortion[1], ..., InterDistortion[15] #define VME_GET_IMEOutput_InterDistortion(p, v) \ (v = p.format<short, 7, 32 / sizeof(short)>().select<1, 1, 16, 1>(5, 0)) // Format = U4 #define VME_GET_IMEOutput_FwdBlk0RefID(p, v) \ (v = VME_Output_S1(p, uchar, 6, 0) & 0xF) #define VME_GET_IMEOutput_BwdBlk0RefID(p, v) \ (v = (VME_Output_S1(p, uchar, 6, 0) >> 4) & 0xF) #define VME_GET_IMEOutput_FwdBlk1RefID(p, v) \ (v = VME_Output_S1(p, uchar, 6, 1) & 0xF) #define VME_GET_IMEOutput_BwdBlk1RefID(p, v) \ (v = (VME_Output_S1(p, uchar, 6, 1) >> 4) & 0xF) #define VME_GET_IMEOutput_FwdBlk2RefID(p, v) \ (v = VME_Output_S1(p, uchar, 6, 2) & 0xF) #define VME_GET_IMEOutput_BwdBlk2RefID(p, v) \ (v = (VME_Output_S1(p, uchar, 6, 2) >> 4) & 0xF) #define VME_GET_IMEOutput_FwdBlk3RefID(p, v) \ (v = VME_Output_S1(p, uchar, 6, 3) & 0xF) #define VME_GET_IMEOutput_BwdBlk3RefID(p, v) \ (v = (VME_Output_S1(p, uchar, 6, 3) >> 4) & 0xF) #define VME_GET_IMEOutput_Blk0LumaNZC(p, v) (v = VME_Output_S1(p, uchar, 6, 4)) #define VME_GET_IMEOutput_Blk1LumaNZC(p, v) (v = VME_Output_S1(p, uchar, 6, 5)) #define VME_GET_IMEOutput_Blk2LumaNZC(p, v) (v = VME_Output_S1(p, uchar, 6, 6)) #define VME_GET_IMEOutput_Blk3LumaNZC(p, v) (v = VME_Output_S1(p, uchar, 6, 7)) // Format = U8 #define VME_GET_IMEOutput_Blk0ChromaCbNZC(p, v) \ (v = VME_Output_S1(p, uchar, 6, 16)) #define VME_GET_IMEOutput_Blk0ChromaCrNZC(p, v) \ (v = VME_Output_S1(p, uchar, 6, 17)) // Format = U16 #define VME_GET_IMEOutput_Rec0_16x8_0Distortion(p, v) \ (v = VME_Output_S1(p, ushort, 7, 0)) #define VME_GET_IMEOutput_Rec0_16x8_1Distortion(p, v) \ (v = VME_Output_S1(p, ushort, 7, 1)) #define VME_GET_IMEOutput_Rec0_8x16_0Distortion(p, v) \ (v = VME_Output_S1(p, ushort, 7, 2)) #define VME_GET_IMEOutput_Rec0_8x16_1Distortion(p, v) \ (v = VME_Output_S1(p, ushort, 7, 3)) #define VME_GET_IMEOutput_Rec0_8x8_0Distortion(p, v) \ (v = VME_Output_S1(p, ushort, 7, 4)) #define VME_GET_IMEOutput_Rec0_8x8_1Distortion(p, v) \ (v = VME_Output_S1(p, ushort, 7, 5)) #define VME_GET_IMEOutput_Rec0_8x8_2Distortion(p, v) \ (v = VME_Output_S1(p, ushort, 7, 6)) #define VME_GET_IMEOutput_Rec0_8x8_3Distortion(p, v) \ (v = VME_Output_S1(p, ushort, 7, 7)) #define VME_GET_IMEOutput_Rec0_16x16_Distortion(p, v) \ (v = VME_Output_S1(p, ushort, 7, 8)) // Format = U4 #define VME_GET_IMEOutput_Rec0_16x16_RefID(p, v) \ (v = VME_Output_S1(p, uchar, 7, 18)) // Format = U16 #define VME_GET_IMEOutput_Rec0_16x16_X(p, v) \ (v = VME_Output_S1(p, ushort, 7, 10)) #define VME_GET_IMEOutput_Rec0_16x16_Y(p, v) \ (v = VME_Output_S1(p, ushort, 7, 11)) // Format = U4 #define VME_GET_IMEOutput_Rec0_16x8_0RefID(p, v) \ (v = VME_Output_S1(p, uchar, 7, 24) & 0xF) #define VME_GET_IMEOutput_Rec0_16x8_1RefID(p, v) \ (v = (VME_Output_S1(p, uchar, 7, 24) & 0xF0) >> 4) #define VME_GET_IMEOutput_Rec0_8x16_0RefID(p, v) \ (v = VME_Output_S1(p, uchar, 7, 25) & 0xF) #define VME_GET_IMEOutput_Rec0_8x16_1RefID(p, v) \ (v = (VME_Output_S1(p, uchar, 7, 25) & 0xF0) >> 4) #define VME_GET_IMEOutput_Rec0_8x8_0RefID(p, v) \ (v = VME_Output_S1(p, uchar, 7, 26) & 0xF) #define VME_GET_IMEOutput_Rec0_8x8_1RefID(p, v) \ (v = (VME_Output_S1(p, uchar, 7, 26) & 0xF0) >> 4) #define VME_GET_IMEOutput_Rec0_8x8_2RefID(p, v) \ (v = VME_Output_S1(p, uchar, 7, 27) & 0xF) #define VME_GET_IMEOutput_Rec0_8x8_3RefID(p, v) \ (v = (VME_Output_S1(p, uchar, 7, 27) & 0xF0) >> 4) // Format = U16 #define VME_GET_IMEOutput_Rec0_16x8_0X(p, v) \ (v = VME_Output_S1(p, ushort, 8, 0)) #define VME_GET_IMEOutput_Rec0_16x8_0Y(p, v) \ (v = VME_Output_S1(p, ushort, 8, 1)) #define VME_GET_IMEOutput_Rec0_16x8_1X(p, v) \ (v = VME_Output_S1(p, ushort, 8, 2)) #define VME_GET_IMEOutput_Rec0_16x8_1Y(p, v) \ (v = VME_Output_S1(p, ushort, 8, 3)) #define VME_GET_IMEOutput_Rec0_8x16_0X(p, v) \ (v = VME_Output_S1(p, ushort, 8, 4)) #define VME_GET_IMEOutput_Rec0_8x16_0Y(p, v) \ (v = VME_Output_S1(p, ushort, 8, 5)) #define VME_GET_IMEOutput_Rec0_8x16_1X(p, v) \ (v = VME_Output_S1(p, ushort, 8, 6)) #define VME_GET_IMEOutput_Rec0_8x16_1Y(p, v) \ (v = VME_Output_S1(p, ushort, 8, 7)) #define VME_GET_IMEOutput_Rec0_8x8_0X(p, v) (v = VME_Output_S1(p, ushort, 8, 8)) #define VME_GET_IMEOutput_Rec0_8x8_0Y(p, v) (v = VME_Output_S1(p, ushort, 8, 9)) #define VME_GET_IMEOutput_Rec0_8x8_1X(p, v) \ (v = VME_Output_S1(p, ushort, 8, 10)) #define VME_GET_IMEOutput_Rec0_8x8_1Y(p, v) \ (v = VME_Output_S1(p, ushort, 8, 11)) #define VME_GET_IMEOutput_Rec0_8x8_2X(p, v) \ (v = VME_Output_S1(p, ushort, 8, 12)) #define VME_GET_IMEOutput_Rec0_8x8_2Y(p, v) \ (v = VME_Output_S1(p, ushort, 8, 13)) #define VME_GET_IMEOutput_Rec0_8x8_3X(p, v) \ (v = VME_Output_S1(p, ushort, 8, 14)) #define VME_GET_IMEOutput_Rec0_8x8_3Y(p, v) \ (v = VME_Output_S1(p, ushort, 8, 15)) // Format = U16 #define VME_GET_IMEOutput_Rec1_16x8_0Distortion(p, v) \ (v = VME_Output_S1(p, ushort, 9, 0)) #define VME_GET_IMEOutput_Rec1_16x8_1Distortion(p, v) \ (v = VME_Output_S1(p, ushort, 9, 1)) #define VME_GET_IMEOutput_Rec1_8x16_0Distortion(p, v) \ (v = VME_Output_S1(p, ushort, 9, 2)) #define VME_GET_IMEOutput_Rec1_8x16_1Distortion(p, v) \ (v = VME_Output_S1(p, ushort, 9, 3)) #define VME_GET_IMEOutput_Rec1_8x8_0Distortion(p, v) \ (v = VME_Output_S1(p, ushort, 9, 4)) #define VME_GET_IMEOutput_Rec1_8x8_1Distortion(p, v) \ (v = VME_Output_S1(p, ushort, 9, 5)) #define VME_GET_IMEOutput_Rec1_8x8_2Distortion(p, v) \ (v = VME_Output_S1(p, ushort, 9, 6)) #define VME_GET_IMEOutput_Rec1_8x8_3Distortion(p, v) \ (v = VME_Output_S1(p, ushort, 9, 7)) #define VME_GET_IMEOutput_Rec1_16x16_Distortion(p, v) \ (v = VME_Output_S1(p, ushort, 9, 8)) // Format = U4 #define VME_GET_IMEOutput_Rec1_16x16_RefID(p, v) \ (v = VME_Output_S1(p, uchar, 9, 18)) // Format = U16 #define VME_GET_IMEOutput_Rec1_16x16_X(p, v) \ (v = VME_Output_S1(p, ushort, 9, 10)) #define VME_GET_IMEOutput_Rec1_16x16_Y(p, v) \ (v = VME_Output_S1(p, ushort, 9, 11)) // Format = U4 #define VME_GET_IMEOutput_Rec1_16x8_0RefID(p, v) \ (v = VME_Output_S1(p, uchar, 9, 24) & 0xF) #define VME_GET_IMEOutput_Rec1_16x8_1RefID(p, v) \ (v = (VME_Output_S1(p, uchar, 9, 24) & 0xF0) >> 4) #define VME_GET_IMEOutput_Rec1_8x16_0RefID(p, v) \ (v = VME_Output_S1(p, uchar, 9, 25) & 0xF) #define VME_GET_IMEOutput_Rec1_8x16_1RefID(p, v) \ (v = (VME_Output_S1(p, uchar, 9, 25) & 0xF0) >> 4) #define VME_GET_IMEOutput_Rec1_8x8_0RefID(p, v) \ (v = VME_Output_S1(p, uchar, 9, 26) & 0xF) #define VME_GET_IMEOutput_Rec1_8x8_1RefID(p, v) \ (v = (VME_Output_S1(p, uchar, 9, 26) & 0xF0) >> 4) #define VME_GET_IMEOutput_Rec1_8x8_2RefID(p, v) \ (v = VME_Output_S1(p, uchar, 9, 27) & 0xF) #define VME_GET_IMEOutput_Rec1_8x8_3RefID(p, v) \ (v = (VME_Output_S1(p, uchar, 9, 27) & 0xF0) >> 4) // Format = U16 #define VME_GET_IMEOutput_Rec1_16x8_0X(p, v) \ (v = VME_Output_S1(p, ushort, 10, 0)) #define VME_GET_IMEOutput_Rec1_16x8_0Y(p, v) \ (v = VME_Output_S1(p, ushort, 10, 1)) #define VME_GET_IMEOutput_Rec1_16x8_1X(p, v) \ (v = VME_Output_S1(p, ushort, 10, 2)) #define VME_GET_IMEOutput_Rec1_16x8_1Y(p, v) \ (v = VME_Output_S1(p, ushort, 10, 3)) #define VME_GET_IMEOutput_Rec1_8x16_0X(p, v) \ (v = VME_Output_S1(p, ushort, 10, 4)) #define VME_GET_IMEOutput_Rec1_8x16_0Y(p, v) \ (v = VME_Output_S1(p, ushort, 10, 5)) #define VME_GET_IMEOutput_Rec1_8x16_1X(p, v) \ (v = VME_Output_S1(p, ushort, 10, 6)) #define VME_GET_IMEOutput_Rec1_8x16_1Y(p, v) \ (v = VME_Output_S1(p, ushort, 10, 7)) #define VME_GET_IMEOutput_Rec1_8x8_0X(p, v) \ (v = VME_Output_S1(p, ushort, 10, 8)) #define VME_GET_IMEOutput_Rec1_8x8_0Y(p, v) \ (v = VME_Output_S1(p, ushort, 10, 9)) #define VME_GET_IMEOutput_Rec1_8x8_1X(p, v) \ (v = VME_Output_S1(p, ushort, 10, 10)) #define VME_GET_IMEOutput_Rec1_8x8_1Y(p, v) \ (v = VME_Output_S1(p, ushort, 10, 11)) #define VME_GET_IMEOutput_Rec1_8x8_2X(p, v) \ (v = VME_Output_S1(p, ushort, 10, 12)) #define VME_GET_IMEOutput_Rec1_8x8_2Y(p, v) \ (v = VME_Output_S1(p, ushort, 10, 13)) #define VME_GET_IMEOutput_Rec1_8x8_3X(p, v) \ (v = VME_Output_S1(p, ushort, 10, 14)) #define VME_GET_IMEOutput_Rec1_8x8_3Y(p, v) \ (v = VME_Output_S1(p, ushort, 10, 15)) #define VME_GET_IDMOutput_DistortionMeshBlock0_SearchPoint0(p, v) \ (v = VME_Output_S1(p, ushort, 0, 0)) #define VME_GET_IDMOutput_DistortionMeshBlock0_SearchPoint1(p, v) \ (v = VME_Output_S1(p, ushort, 0, 1)) #define VME_GET_IDMOutput_DistortionMeshBlock0_SearchPoshort(p, v) \ (v = VME_Output_S1(p, ushort, 0, 2)) #define VME_GET_IDMOutput_DistortionMeshBlock0_SearchPoint3(p, v) \ (v = VME_Output_S1(p, ushort, 0, 3)) #define VME_GET_IDMOutput_DistortionMeshBlock0_SearchPoint4(p, v) \ (v = VME_Output_S1(p, ushort, 0, 4)) #define VME_GET_IDMOutput_DistortionMeshBlock0_SearchPoint5(p, v) \ (v = VME_Output_S1(p, ushort, 0, 5)) #define VME_GET_IDMOutput_DistortionMeshBlock0_SearchPoint6(p, v) \ (v = VME_Output_S1(p, ushort, 0, 6)) #define VME_GET_IDMOutput_DistortionMeshBlock0_SearchPoint7(p, v) \ (v = VME_Output_S1(p, ushort, 0, 7)) #define VME_GET_IDMOutput_DistortionMeshBlock0_SearchPoint8(p, v) \ (v = VME_Output_S1(p, ushort, 0, 8)) #define VME_GET_IDMOutput_DistortionMeshBlock0_SearchPoint9(p, v) \ (v = VME_Output_S1(p, ushort, 0, 9)) #define VME_GET_IDMOutput_DistortionMeshBlock0_SearchPoint10(p, v) \ (v = VME_Output_S1(p, ushort, 0, 10)) #define VME_GET_IDMOutput_DistortionMeshBlock0_SearchPoint11(p, v) \ (v = VME_Output_S1(p, ushort, 0, 11)) #define VME_GET_IDMOutput_DistortionMeshBlock0_SearchPoint12(p, v) \ (v = VME_Output_S1(p, ushort, 0, 12)) #define VME_GET_IDMOutput_DistortionMeshBlock0_SearchPoint13(p, v) \ (v = VME_Output_S1(p, ushort, 0, 13)) #define VME_GET_IDMOutput_DistortionMeshBlock0_SearchPoint14(p, v) \ (v = VME_Output_S1(p, ushort, 0, 14)) #define VME_GET_IDMOutput_DistortionMeshBlock0_SearchPoint15(p, v) \ (v = VME_Output_S1(p, ushort, 0, 15)) #define VME_GET_IDMOutput_DistortionMeshBlock1_SearchPoint0(p, v) \ (v = VME_Output_S1(p, ushort, 1, 0)) #define VME_GET_IDMOutput_DistortionMeshBlock1_SearchPoint1(p, v) \ (v = VME_Output_S1(p, ushort, 1, 1)) #define VME_GET_IDMOutput_DistortionMeshBlock1_SearchPoshort(p, v) \ (v = VME_Output_S1(p, ushort, 1, 2)) #define VME_GET_IDMOutput_DistortionMeshBlock1_SearchPoint3(p, v) \ (v = VME_Output_S1(p, ushort, 1, 3)) #define VME_GET_IDMOutput_DistortionMeshBlock1_SearchPoint4(p, v) \ (v = VME_Output_S1(p, ushort, 1, 4)) #define VME_GET_IDMOutput_DistortionMeshBlock1_SearchPoint5(p, v) \ (v = VME_Output_S1(p, ushort, 1, 5)) #define VME_GET_IDMOutput_DistortionMeshBlock1_SearchPoint6(p, v) \ (v = VME_Output_S1(p, ushort, 1, 6)) #define VME_GET_IDMOutput_DistortionMeshBlock1_SearchPoint7(p, v) \ (v = VME_Output_S1(p, ushort, 1, 7)) #define VME_GET_IDMOutput_DistortionMeshBlock1_SearchPoint8(p, v) \ (v = VME_Output_S1(p, ushort, 1, 8)) #define VME_GET_IDMOutput_DistortionMeshBlock1_SearchPoint9(p, v) \ (v = VME_Output_S1(p, ushort, 1, 9)) #define VME_GET_IDMOutput_DistortionMeshBlock1_SearchPoint10(p, v) \ (v = VME_Output_S1(p, ushort, 1, 10)) #define VME_GET_IDMOutput_DistortionMeshBlock1_SearchPoint11(p, v) \ (v = VME_Output_S1(p, ushort, 1, 11)) #define VME_GET_IDMOutput_DistortionMeshBlock1_SearchPoint12(p, v) \ (v = VME_Output_S1(p, ushort, 1, 12)) #define VME_GET_IDMOutput_DistortionMeshBlock1_SearchPoint13(p, v) \ (v = VME_Output_S1(p, ushort, 1, 13)) #define VME_GET_IDMOutput_DistortionMeshBlock1_SearchPoint14(p, v) \ (v = VME_Output_S1(p, ushort, 1, 14)) #define VME_GET_IDMOutput_DistortionMeshBlock1_SearchPoint15(p, v) \ (v = VME_Output_S1(p, ushort, 1, 15)) #define VME_GET_IDMOutput_DistortionMeshBlock2_SearchPoint0(p, v) \ (v = VME_Output_S1(p, ushort, 2, 0)) #define VME_GET_IDMOutput_DistortionMeshBlock2_SearchPoint1(p, v) \ (v = VME_Output_S1(p, ushort, 2, 1)) #define VME_GET_IDMOutput_DistortionMeshBlock2_SearchPoshort(p, v) \ (v = VME_Output_S1(p, ushort, 2, 2)) #define VME_GET_IDMOutput_DistortionMeshBlock2_SearchPoint3(p, v) \ (v = VME_Output_S1(p, ushort, 2, 3)) #define VME_GET_IDMOutput_DistortionMeshBlock2_SearchPoint4(p, v) \ (v = VME_Output_S1(p, ushort, 2, 4)) #define VME_GET_IDMOutput_DistortionMeshBlock2_SearchPoint5(p, v) \ (v = VME_Output_S1(p, ushort, 2, 5)) #define VME_GET_IDMOutput_DistortionMeshBlock2_SearchPoint6(p, v) \ (v = VME_Output_S1(p, ushort, 2, 6)) #define VME_GET_IDMOutput_DistortionMeshBlock2_SearchPoint7(p, v) \ (v = VME_Output_S1(p, ushort, 2, 7)) #define VME_GET_IDMOutput_DistortionMeshBlock2_SearchPoint8(p, v) \ (v = VME_Output_S1(p, ushort, 2, 8)) #define VME_GET_IDMOutput_DistortionMeshBlock2_SearchPoint9(p, v) \ (v = VME_Output_S1(p, ushort, 2, 9)) #define VME_GET_IDMOutput_DistortionMeshBlock2_SearchPoint10(p, v) \ (v = VME_Output_S1(p, ushort, 2, 10)) #define VME_GET_IDMOutput_DistortionMeshBlock2_SearchPoint11(p, v) \ (v = VME_Output_S1(p, ushort, 2, 11)) #define VME_GET_IDMOutput_DistortionMeshBlock2_SearchPoint12(p, v) \ (v = VME_Output_S1(p, ushort, 2, 12)) #define VME_GET_IDMOutput_DistortionMeshBlock2_SearchPoint13(p, v) \ (v = VME_Output_S1(p, ushort, 2, 13)) #define VME_GET_IDMOutput_DistortionMeshBlock2_SearchPoint14(p, v) \ (v = VME_Output_S1(p, ushort, 2, 14)) #define VME_GET_IDMOutput_DistortionMeshBlock2_SearchPoint15(p, v) \ (v = VME_Output_S1(p, ushort, 2, 15)) #define VME_GET_IDMOutput_DistortionMeshBlock3_SearchPoint0(p, v) \ (v = VME_Output_S1(p, ushort, 3, 0)) #define VME_GET_IDMOutput_DistortionMeshBlock3_SearchPoint1(p, v) \ (v = VME_Output_S1(p, ushort, 3, 1)) #define VME_GET_IDMOutput_DistortionMeshBlock3_SearchPoshort(p, v) \ (v = VME_Output_S1(p, ushort, 3, 2)) #define VME_GET_IDMOutput_DistortionMeshBlock3_SearchPoint3(p, v) \ (v = VME_Output_S1(p, ushort, 3, 3)) #define VME_GET_IDMOutput_DistortionMeshBlock3_SearchPoint4(p, v) \ (v = VME_Output_S1(p, ushort, 3, 4)) #define VME_GET_IDMOutput_DistortionMeshBlock3_SearchPoint5(p, v) \ (v = VME_Output_S1(p, ushort, 3, 5)) #define VME_GET_IDMOutput_DistortionMeshBlock3_SearchPoint6(p, v) \ (v = VME_Output_S1(p, ushort, 3, 6)) #define VME_GET_IDMOutput_DistortionMeshBlock3_SearchPoint7(p, v) \ (v = VME_Output_S1(p, ushort, 3, 7)) #define VME_GET_IDMOutput_DistortionMeshBlock3_SearchPoint8(p, v) \ (v = VME_Output_S1(p, ushort, 3, 8)) #define VME_GET_IDMOutput_DistortionMeshBlock3_SearchPoint9(p, v) \ (v = VME_Output_S1(p, ushort, 3, 9)) #define VME_GET_IDMOutput_DistortionMeshBlock3_SearchPoint10(p, v) \ (v = VME_Output_S1(p, ushort, 3, 10)) #define VME_GET_IDMOutput_DistortionMeshBlock3_SearchPoint11(p, v) \ (v = VME_Output_S1(p, ushort, 3, 11)) #define VME_GET_IDMOutput_DistortionMeshBlock3_SearchPoint12(p, v) \ (v = VME_Output_S1(p, ushort, 3, 12)) #define VME_GET_IDMOutput_DistortionMeshBlock3_SearchPoint13(p, v) \ (v = VME_Output_S1(p, ushort, 3, 13)) #define VME_GET_IDMOutput_DistortionMeshBlock3_SearchPoint14(p, v) \ (v = VME_Output_S1(p, ushort, 3, 14)) #define VME_GET_IDMOutput_DistortionMeshBlock3_SearchPoint15(p, v) \ (v = VME_Output_S1(p, ushort, 3, 15)) #define VME_GET_IDMOutput_DistortionMeshBlock4_SearchPoint0(p, v) \ (v = VME_Output_S1(p, ushort, 4, 0)) #define VME_GET_IDMOutput_DistortionMeshBlock4_SearchPoint1(p, v) \ (v = VME_Output_S1(p, ushort, 4, 1)) #define VME_GET_IDMOutput_DistortionMeshBlock4_SearchPoshort(p, v) \ (v = VME_Output_S1(p, ushort, 4, 2)) #define VME_GET_IDMOutput_DistortionMeshBlock4_SearchPoint3(p, v) \ (v = VME_Output_S1(p, ushort, 4, 3)) #define VME_GET_IDMOutput_DistortionMeshBlock4_SearchPoint4(p, v) \ (v = VME_Output_S1(p, ushort, 4, 4)) #define VME_GET_IDMOutput_DistortionMeshBlock4_SearchPoint5(p, v) \ (v = VME_Output_S1(p, ushort, 4, 5)) #define VME_GET_IDMOutput_DistortionMeshBlock4_SearchPoint6(p, v) \ (v = VME_Output_S1(p, ushort, 4, 6)) #define VME_GET_IDMOutput_DistortionMeshBlock4_SearchPoint7(p, v) \ (v = VME_Output_S1(p, ushort, 4, 7)) #define VME_GET_IDMOutput_DistortionMeshBlock4_SearchPoint8(p, v) \ (v = VME_Output_S1(p, ushort, 4, 8)) #define VME_GET_IDMOutput_DistortionMeshBlock4_SearchPoint9(p, v) \ (v = VME_Output_S1(p, ushort, 4, 9)) #define VME_GET_IDMOutput_DistortionMeshBlock4_SearchPoint10(p, v) \ (v = VME_Output_S1(p, ushort, 4, 10)) #define VME_GET_IDMOutput_DistortionMeshBlock4_SearchPoint11(p, v) \ (v = VME_Output_S1(p, ushort, 4, 11)) #define VME_GET_IDMOutput_DistortionMeshBlock4_SearchPoint12(p, v) \ (v = VME_Output_S1(p, ushort, 4, 12)) #define VME_GET_IDMOutput_DistortionMeshBlock4_SearchPoint13(p, v) \ (v = VME_Output_S1(p, ushort, 4, 13)) #define VME_GET_IDMOutput_DistortionMeshBlock4_SearchPoint14(p, v) \ (v = VME_Output_S1(p, ushort, 4, 14)) #define VME_GET_IDMOutput_DistortionMeshBlock4_SearchPoint15(p, v) \ (v = VME_Output_S1(p, ushort, 4, 15)) #define VME_GET_IDMOutput_DistortionMeshBlock5_SearchPoint0(p, v) \ (v = VME_Output_S1(p, ushort, 5, 0)) #define VME_GET_IDMOutput_DistortionMeshBlock5_SearchPoint1(p, v) \ (v = VME_Output_S1(p, ushort, 5, 1)) #define VME_GET_IDMOutput_DistortionMeshBlock5_SearchPoshort(p, v) \ (v = VME_Output_S1(p, ushort, 5, 2)) #define VME_GET_IDMOutput_DistortionMeshBlock5_SearchPoint3(p, v) \ (v = VME_Output_S1(p, ushort, 5, 3)) #define VME_GET_IDMOutput_DistortionMeshBlock5_SearchPoint4(p, v) \ (v = VME_Output_S1(p, ushort, 5, 4)) #define VME_GET_IDMOutput_DistortionMeshBlock5_SearchPoint5(p, v) \ (v = VME_Output_S1(p, ushort, 5, 5)) #define VME_GET_IDMOutput_DistortionMeshBlock5_SearchPoint6(p, v) \ (v = VME_Output_S1(p, ushort, 5, 6)) #define VME_GET_IDMOutput_DistortionMeshBlock5_SearchPoint7(p, v) \ (v = VME_Output_S1(p, ushort, 5, 7)) #define VME_GET_IDMOutput_DistortionMeshBlock5_SearchPoint8(p, v) \ (v = VME_Output_S1(p, ushort, 5, 8)) #define VME_GET_IDMOutput_DistortionMeshBlock5_SearchPoint9(p, v) \ (v = VME_Output_S1(p, ushort, 5, 9)) #define VME_GET_IDMOutput_DistortionMeshBlock5_SearchPoint10(p, v) \ (v = VME_Output_S1(p, ushort, 5, 10)) #define VME_GET_IDMOutput_DistortionMeshBlock5_SearchPoint11(p, v) \ (v = VME_Output_S1(p, ushort, 5, 11)) #define VME_GET_IDMOutput_DistortionMeshBlock5_SearchPoint12(p, v) \ (v = VME_Output_S1(p, ushort, 5, 12)) #define VME_GET_IDMOutput_DistortionMeshBlock5_SearchPoint13(p, v) \ (v = VME_Output_S1(p, ushort, 5, 13)) #define VME_GET_IDMOutput_DistortionMeshBlock5_SearchPoint14(p, v) \ (v = VME_Output_S1(p, ushort, 5, 14)) #define VME_GET_IDMOutput_DistortionMeshBlock5_SearchPoint15(p, v) \ (v = VME_Output_S1(p, ushort, 5, 15)) #define VME_GET_IDMOutput_DistortionMeshBlock6_SearchPoint0(p, v) \ (v = VME_Output_S1(p, ushort, 6, 0)) #define VME_GET_IDMOutput_DistortionMeshBlock6_SearchPoint1(p, v) \ (v = VME_Output_S1(p, ushort, 6, 1)) #define VME_GET_IDMOutput_DistortionMeshBlock6_SearchPoshort(p, v) \ (v = VME_Output_S1(p, ushort, 6, 2)) #define VME_GET_IDMOutput_DistortionMeshBlock6_SearchPoint3(p, v) \ (v = VME_Output_S1(p, ushort, 6, 3)) #define VME_GET_IDMOutput_DistortionMeshBlock6_SearchPoint4(p, v) \ (v = VME_Output_S1(p, ushort, 6, 4)) #define VME_GET_IDMOutput_DistortionMeshBlock6_SearchPoint5(p, v) \ (v = VME_Output_S1(p, ushort, 6, 5)) #define VME_GET_IDMOutput_DistortionMeshBlock6_SearchPoint6(p, v) \ (v = VME_Output_S1(p, ushort, 6, 6)) #define VME_GET_IDMOutput_DistortionMeshBlock6_SearchPoint7(p, v) \ (v = VME_Output_S1(p, ushort, 6, 7)) #define VME_GET_IDMOutput_DistortionMeshBlock6_SearchPoint8(p, v) \ (v = VME_Output_S1(p, ushort, 6, 8)) #define VME_GET_IDMOutput_DistortionMeshBlock6_SearchPoint9(p, v) \ (v = VME_Output_S1(p, ushort, 6, 9)) #define VME_GET_IDMOutput_DistortionMeshBlock6_SearchPoint10(p, v) \ (v = VME_Output_S1(p, ushort, 6, 10)) #define VME_GET_IDMOutput_DistortionMeshBlock6_SearchPoint11(p, v) \ (v = VME_Output_S1(p, ushort, 6, 11)) #define VME_GET_IDMOutput_DistortionMeshBlock6_SearchPoint12(p, v) \ (v = VME_Output_S1(p, ushort, 6, 12)) #define VME_GET_IDMOutput_DistortionMeshBlock6_SearchPoint13(p, v) \ (v = VME_Output_S1(p, ushort, 6, 13)) #define VME_GET_IDMOutput_DistortionMeshBlock6_SearchPoint14(p, v) \ (v = VME_Output_S1(p, ushort, 6, 14)) #define VME_GET_IDMOutput_DistortionMeshBlock6_SearchPoint15(p, v) \ (v = VME_Output_S1(p, ushort, 6, 15)) #define VME_GET_IDMOutput_DistortionMeshBlock7_SearchPoint0(p, v) \ (v = VME_Output_S1(p, ushort, 7, 0)) #define VME_GET_IDMOutput_DistortionMeshBlock7_SearchPoint1(p, v) \ (v = VME_Output_S1(p, ushort, 7, 1)) #define VME_GET_IDMOutput_DistortionMeshBlock7_SearchPoshort(p, v) \ (v = VME_Output_S1(p, ushort, 7, 2)) #define VME_GET_IDMOutput_DistortionMeshBlock7_SearchPoint3(p, v) \ (v = VME_Output_S1(p, ushort, 7, 3)) #define VME_GET_IDMOutput_DistortionMeshBlock7_SearchPoint4(p, v) \ (v = VME_Output_S1(p, ushort, 7, 4)) #define VME_GET_IDMOutput_DistortionMeshBlock7_SearchPoint5(p, v) \ (v = VME_Output_S1(p, ushort, 7, 5)) #define VME_GET_IDMOutput_DistortionMeshBlock7_SearchPoint6(p, v) \ (v = VME_Output_S1(p, ushort, 7, 6)) #define VME_GET_IDMOutput_DistortionMeshBlock7_SearchPoint7(p, v) \ (v = VME_Output_S1(p, ushort, 7, 7)) #define VME_GET_IDMOutput_DistortionMeshBlock7_SearchPoint8(p, v) \ (v = VME_Output_S1(p, ushort, 7, 8)) #define VME_GET_IDMOutput_DistortionMeshBlock7_SearchPoint9(p, v) \ (v = VME_Output_S1(p, ushort, 7, 9)) #define VME_GET_IDMOutput_DistortionMeshBlock7_SearchPoint10(p, v) \ (v = VME_Output_S1(p, ushort, 7, 10)) #define VME_GET_IDMOutput_DistortionMeshBlock7_SearchPoint11(p, v) \ (v = VME_Output_S1(p, ushort, 7, 11)) #define VME_GET_IDMOutput_DistortionMeshBlock7_SearchPoint12(p, v) \ (v = VME_Output_S1(p, ushort, 7, 12)) #define VME_GET_IDMOutput_DistortionMeshBlock7_SearchPoint13(p, v) \ (v = VME_Output_S1(p, ushort, 7, 13)) #define VME_GET_IDMOutput_DistortionMeshBlock7_SearchPoint14(p, v) \ (v = VME_Output_S1(p, ushort, 7, 14)) #define VME_GET_IDMOutput_DistortionMeshBlock7_SearchPoint15(p, v) \ (v = VME_Output_S1(p, ushort, 7, 15)) #define VME_GET_IDMOutput_DistortionMeshBlock8_SearchPoint0(p, v) \ (v = VME_Output_S1(p, ushort, 8, 0)) #define VME_GET_IDMOutput_DistortionMeshBlock8_SearchPoint1(p, v) \ (v = VME_Output_S1(p, ushort, 8, 1)) #define VME_GET_IDMOutput_DistortionMeshBlock8_SearchPoshort(p, v) \ (v = VME_Output_S1(p, ushort, 8, 2)) #define VME_GET_IDMOutput_DistortionMeshBlock8_SearchPoint3(p, v) \ (v = VME_Output_S1(p, ushort, 8, 3)) #define VME_GET_IDMOutput_DistortionMeshBlock8_SearchPoint4(p, v) \ (v = VME_Output_S1(p, ushort, 8, 4)) #define VME_GET_IDMOutput_DistortionMeshBlock8_SearchPoint5(p, v) \ (v = VME_Output_S1(p, ushort, 8, 5)) #define VME_GET_IDMOutput_DistortionMeshBlock8_SearchPoint6(p, v) \ (v = VME_Output_S1(p, ushort, 8, 6)) #define VME_GET_IDMOutput_DistortionMeshBlock8_SearchPoint7(p, v) \ (v = VME_Output_S1(p, ushort, 8, 7)) #define VME_GET_IDMOutput_DistortionMeshBlock8_SearchPoint8(p, v) \ (v = VME_Output_S1(p, ushort, 8, 8)) #define VME_GET_IDMOutput_DistortionMeshBlock8_SearchPoint9(p, v) \ (v = VME_Output_S1(p, ushort, 8, 9)) #define VME_GET_IDMOutput_DistortionMeshBlock8_SearchPoint10(p, v) \ (v = VME_Output_S1(p, ushort, 8, 10)) #define VME_GET_IDMOutput_DistortionMeshBlock8_SearchPoint11(p, v) \ (v = VME_Output_S1(p, ushort, 8, 11)) #define VME_GET_IDMOutput_DistortionMeshBlock8_SearchPoint12(p, v) \ (v = VME_Output_S1(p, ushort, 8, 12)) #define VME_GET_IDMOutput_DistortionMeshBlock8_SearchPoint13(p, v) \ (v = VME_Output_S1(p, ushort, 8, 13)) #define VME_GET_IDMOutput_DistortionMeshBlock8_SearchPoint14(p, v) \ (v = VME_Output_S1(p, ushort, 8, 14)) #define VME_GET_IDMOutput_DistortionMeshBlock8_SearchPoint15(p, v) \ (v = VME_Output_S1(p, ushort, 8, 15)) #define VME_GET_IDMOutput_DistortionMeshBlock9_SearchPoint0(p, v) \ (v = VME_Output_S1(p, ushort, 9, 0)) #define VME_GET_IDMOutput_DistortionMeshBlock9_SearchPoint1(p, v) \ (v = VME_Output_S1(p, ushort, 9, 1)) #define VME_GET_IDMOutput_DistortionMeshBlock9_SearchPoshort(p, v) \ (v = VME_Output_S1(p, ushort, 9, 2)) #define VME_GET_IDMOutput_DistortionMeshBlock9_SearchPoint3(p, v) \ (v = VME_Output_S1(p, ushort, 9, 3)) #define VME_GET_IDMOutput_DistortionMeshBlock9_SearchPoint4(p, v) \ (v = VME_Output_S1(p, ushort, 9, 4)) #define VME_GET_IDMOutput_DistortionMeshBlock9_SearchPoint5(p, v) \ (v = VME_Output_S1(p, ushort, 9, 5)) #define VME_GET_IDMOutput_DistortionMeshBlock9_SearchPoint6(p, v) \ (v = VME_Output_S1(p, ushort, 9, 6)) #define VME_GET_IDMOutput_DistortionMeshBlock9_SearchPoint7(p, v) \ (v = VME_Output_S1(p, ushort, 9, 7)) #define VME_GET_IDMOutput_DistortionMeshBlock9_SearchPoint8(p, v) \ (v = VME_Output_S1(p, ushort, 9, 8)) #define VME_GET_IDMOutput_DistortionMeshBlock9_SearchPoint9(p, v) \ (v = VME_Output_S1(p, ushort, 9, 9)) #define VME_GET_IDMOutput_DistortionMeshBlock9_SearchPoint10(p, v) \ (v = VME_Output_S1(p, ushort, 9, 10)) #define VME_GET_IDMOutput_DistortionMeshBlock9_SearchPoint11(p, v) \ (v = VME_Output_S1(p, ushort, 9, 11)) #define VME_GET_IDMOutput_DistortionMeshBlock9_SearchPoint12(p, v) \ (v = VME_Output_S1(p, ushort, 9, 12)) #define VME_GET_IDMOutput_DistortionMeshBlock9_SearchPoint13(p, v) \ (v = VME_Output_S1(p, ushort, 9, 13)) #define VME_GET_IDMOutput_DistortionMeshBlock9_SearchPoint14(p, v) \ (v = VME_Output_S1(p, ushort, 9, 14)) #define VME_GET_IDMOutput_DistortionMeshBlock9_SearchPoint15(p, v) \ (v = VME_Output_S1(p, ushort, 9, 15)) #define VME_GET_IDMOutput_DistortionMeshBlock10_SearchPoint0(p, v) \ (v = VME_Output_S1(p, ushort, 10, 0)) #define VME_GET_IDMOutput_DistortionMeshBlock10_SearchPoint1(p, v) \ (v = VME_Output_S1(p, ushort, 10, 1)) #define VME_GET_IDMOutput_DistortionMeshBlock10_SearchPoshort(p, v) \ (v = VME_Output_S1(p, ushort, 10, 2)) #define VME_GET_IDMOutput_DistortionMeshBlock10_SearchPoint3(p, v) \ (v = VME_Output_S1(p, ushort, 10, 3)) #define VME_GET_IDMOutput_DistortionMeshBlock10_SearchPoint4(p, v) \ (v = VME_Output_S1(p, ushort, 10, 4)) #define VME_GET_IDMOutput_DistortionMeshBlock10_SearchPoint5(p, v) \ (v = VME_Output_S1(p, ushort, 10, 5)) #define VME_GET_IDMOutput_DistortionMeshBlock10_SearchPoint6(p, v) \ (v = VME_Output_S1(p, ushort, 10, 6)) #define VME_GET_IDMOutput_DistortionMeshBlock10_SearchPoint7(p, v) \ (v = VME_Output_S1(p, ushort, 10, 7)) #define VME_GET_IDMOutput_DistortionMeshBlock10_SearchPoint8(p, v) \ (v = VME_Output_S1(p, ushort, 10, 8)) #define VME_GET_IDMOutput_DistortionMeshBlock10_SearchPoint9(p, v) \ (v = VME_Output_S1(p, ushort, 10, 9)) #define VME_GET_IDMOutput_DistortionMeshBlock10_SearchPoint10(p, v) \ (v = VME_Output_S1(p, ushort, 10, 10)) #define VME_GET_IDMOutput_DistortionMeshBlock10_SearchPoint11(p, v) \ (v = VME_Output_S1(p, ushort, 10, 11)) #define VME_GET_IDMOutput_DistortionMeshBlock10_SearchPoint12(p, v) \ (v = VME_Output_S1(p, ushort, 10, 12)) #define VME_GET_IDMOutput_DistortionMeshBlock10_SearchPoint13(p, v) \ (v = VME_Output_S1(p, ushort, 10, 13)) #define VME_GET_IDMOutput_DistortionMeshBlock10_SearchPoint14(p, v) \ (v = VME_Output_S1(p, ushort, 10, 14)) #define VME_GET_IDMOutput_DistortionMeshBlock10_SearchPoint15(p, v) \ (v = VME_Output_S1(p, ushort, 10, 15)) #define VME_GET_IDMOutput_DistortionMeshBlock11_SearchPoint0(p, v) \ (v = VME_Output_S1(p, ushort, 11, 0)) #define VME_GET_IDMOutput_DistortionMeshBlock11_SearchPoint1(p, v) \ (v = VME_Output_S1(p, ushort, 11, 1)) #define VME_GET_IDMOutput_DistortionMeshBlock11_SearchPoshort(p, v) \ (v = VME_Output_S1(p, ushort, 11, 2)) #define VME_GET_IDMOutput_DistortionMeshBlock11_SearchPoint3(p, v) \ (v = VME_Output_S1(p, ushort, 11, 3)) #define VME_GET_IDMOutput_DistortionMeshBlock11_SearchPoint4(p, v) \ (v = VME_Output_S1(p, ushort, 11, 4)) #define VME_GET_IDMOutput_DistortionMeshBlock11_SearchPoint5(p, v) \ (v = VME_Output_S1(p, ushort, 11, 5)) #define VME_GET_IDMOutput_DistortionMeshBlock11_SearchPoint6(p, v) \ (v = VME_Output_S1(p, ushort, 11, 6)) #define VME_GET_IDMOutput_DistortionMeshBlock11_SearchPoint7(p, v) \ (v = VME_Output_S1(p, ushort, 11, 7)) #define VME_GET_IDMOutput_DistortionMeshBlock11_SearchPoint8(p, v) \ (v = VME_Output_S1(p, ushort, 11, 8)) #define VME_GET_IDMOutput_DistortionMeshBlock11_SearchPoint9(p, v) \ (v = VME_Output_S1(p, ushort, 11, 9)) #define VME_GET_IDMOutput_DistortionMeshBlock11_SearchPoint10(p, v) \ (v = VME_Output_S1(p, ushort, 11, 10)) #define VME_GET_IDMOutput_DistortionMeshBlock11_SearchPoint11(p, v) \ (v = VME_Output_S1(p, ushort, 11, 11)) #define VME_GET_IDMOutput_DistortionMeshBlock11_SearchPoint12(p, v) \ (v = VME_Output_S1(p, ushort, 11, 12)) #define VME_GET_IDMOutput_DistortionMeshBlock11_SearchPoint13(p, v) \ (v = VME_Output_S1(p, ushort, 11, 13)) #define VME_GET_IDMOutput_DistortionMeshBlock11_SearchPoint14(p, v) \ (v = VME_Output_S1(p, ushort, 11, 14)) #define VME_GET_IDMOutput_DistortionMeshBlock11_SearchPoint15(p, v) \ (v = VME_Output_S1(p, ushort, 11, 15)) #define VME_GET_IDMOutput_DistortionMeshBlock12_SearchPoint0(p, v) \ (v = VME_Output_S1(p, ushort, 12, 0)) #define VME_GET_IDMOutput_DistortionMeshBlock12_SearchPoint1(p, v) \ (v = VME_Output_S1(p, ushort, 12, 1)) #define VME_GET_IDMOutput_DistortionMeshBlock12_SearchPoshort(p, v) \ (v = VME_Output_S1(p, ushort, 12, 2)) #define VME_GET_IDMOutput_DistortionMeshBlock12_SearchPoint3(p, v) \ (v = VME_Output_S1(p, ushort, 12, 3)) #define VME_GET_IDMOutput_DistortionMeshBlock12_SearchPoint4(p, v) \ (v = VME_Output_S1(p, ushort, 12, 4)) #define VME_GET_IDMOutput_DistortionMeshBlock12_SearchPoint5(p, v) \ (v = VME_Output_S1(p, ushort, 12, 5)) #define VME_GET_IDMOutput_DistortionMeshBlock12_SearchPoint6(p, v) \ (v = VME_Output_S1(p, ushort, 12, 6)) #define VME_GET_IDMOutput_DistortionMeshBlock12_SearchPoint7(p, v) \ (v = VME_Output_S1(p, ushort, 12, 7)) #define VME_GET_IDMOutput_DistortionMeshBlock12_SearchPoint8(p, v) \ (v = VME_Output_S1(p, ushort, 12, 8)) #define VME_GET_IDMOutput_DistortionMeshBlock12_SearchPoint9(p, v) \ (v = VME_Output_S1(p, ushort, 12, 9)) #define VME_GET_IDMOutput_DistortionMeshBlock12_SearchPoint10(p, v) \ (v = VME_Output_S1(p, ushort, 12, 10)) #define VME_GET_IDMOutput_DistortionMeshBlock12_SearchPoint11(p, v) \ (v = VME_Output_S1(p, ushort, 12, 11)) #define VME_GET_IDMOutput_DistortionMeshBlock12_SearchPoint12(p, v) \ (v = VME_Output_S1(p, ushort, 12, 12)) #define VME_GET_IDMOutput_DistortionMeshBlock12_SearchPoint13(p, v) \ (v = VME_Output_S1(p, ushort, 12, 13)) #define VME_GET_IDMOutput_DistortionMeshBlock12_SearchPoint14(p, v) \ (v = VME_Output_S1(p, ushort, 12, 14)) #define VME_GET_IDMOutput_DistortionMeshBlock12_SearchPoint15(p, v) \ (v = VME_Output_S1(p, ushort, 12, 15)) #define VME_GET_IDMOutput_DistortionMeshBlock13_SearchPoint0(p, v) \ (v = VME_Output_S1(p, ushort, 13, 0)) #define VME_GET_IDMOutput_DistortionMeshBlock13_SearchPoint1(p, v) \ (v = VME_Output_S1(p, ushort, 13, 1)) #define VME_GET_IDMOutput_DistortionMeshBlock13_SearchPoshort(p, v) \ (v = VME_Output_S1(p, ushort, 13, 2)) #define VME_GET_IDMOutput_DistortionMeshBlock13_SearchPoint3(p, v) \ (v = VME_Output_S1(p, ushort, 13, 3)) #define VME_GET_IDMOutput_DistortionMeshBlock13_SearchPoint4(p, v) \ (v = VME_Output_S1(p, ushort, 13, 4)) #define VME_GET_IDMOutput_DistortionMeshBlock13_SearchPoint5(p, v) \ (v = VME_Output_S1(p, ushort, 13, 5)) #define VME_GET_IDMOutput_DistortionMeshBlock13_SearchPoint6(p, v) \ (v = VME_Output_S1(p, ushort, 13, 6)) #define VME_GET_IDMOutput_DistortionMeshBlock13_SearchPoint7(p, v) \ (v = VME_Output_S1(p, ushort, 13, 7)) #define VME_GET_IDMOutput_DistortionMeshBlock13_SearchPoint8(p, v) \ (v = VME_Output_S1(p, ushort, 13, 8)) #define VME_GET_IDMOutput_DistortionMeshBlock13_SearchPoint9(p, v) \ (v = VME_Output_S1(p, ushort, 13, 9)) #define VME_GET_IDMOutput_DistortionMeshBlock13_SearchPoint10(p, v) \ (v = VME_Output_S1(p, ushort, 13, 10)) #define VME_GET_IDMOutput_DistortionMeshBlock13_SearchPoint11(p, v) \ (v = VME_Output_S1(p, ushort, 13, 11)) #define VME_GET_IDMOutput_DistortionMeshBlock13_SearchPoint12(p, v) \ (v = VME_Output_S1(p, ushort, 13, 12)) #define VME_GET_IDMOutput_DistortionMeshBlock13_SearchPoint13(p, v) \ (v = VME_Output_S1(p, ushort, 13, 13)) #define VME_GET_IDMOutput_DistortionMeshBlock13_SearchPoint14(p, v) \ (v = VME_Output_S1(p, ushort, 13, 14)) #define VME_GET_IDMOutput_DistortionMeshBlock13_SearchPoint15(p, v) \ (v = VME_Output_S1(p, ushort, 13, 15)) #define VME_GET_IDMOutput_DistortionMeshBlock14_SearchPoint0(p, v) \ (v = VME_Output_S1(p, ushort, 14, 0)) #define VME_GET_IDMOutput_DistortionMeshBlock14_SearchPoint1(p, v) \ (v = VME_Output_S1(p, ushort, 14, 1)) #define VME_GET_IDMOutput_DistortionMeshBlock14_SearchPoshort(p, v) \ (v = VME_Output_S1(p, ushort, 14, 2)) #define VME_GET_IDMOutput_DistortionMeshBlock14_SearchPoint3(p, v) \ (v = VME_Output_S1(p, ushort, 14, 3)) #define VME_GET_IDMOutput_DistortionMeshBlock14_SearchPoint4(p, v) \ (v = VME_Output_S1(p, ushort, 14, 4)) #define VME_GET_IDMOutput_DistortionMeshBlock14_SearchPoint5(p, v) \ (v = VME_Output_S1(p, ushort, 14, 5)) #define VME_GET_IDMOutput_DistortionMeshBlock14_SearchPoint6(p, v) \ (v = VME_Output_S1(p, ushort, 14, 6)) #define VME_GET_IDMOutput_DistortionMeshBlock14_SearchPoint7(p, v) \ (v = VME_Output_S1(p, ushort, 14, 7)) #define VME_GET_IDMOutput_DistortionMeshBlock14_SearchPoint8(p, v) \ (v = VME_Output_S1(p, ushort, 14, 8)) #define VME_GET_IDMOutput_DistortionMeshBlock14_SearchPoint9(p, v) \ (v = VME_Output_S1(p, ushort, 14, 9)) #define VME_GET_IDMOutput_DistortionMeshBlock14_SearchPoint10(p, v) \ (v = VME_Output_S1(p, ushort, 14, 10)) #define VME_GET_IDMOutput_DistortionMeshBlock14_SearchPoint11(p, v) \ (v = VME_Output_S1(p, ushort, 14, 11)) #define VME_GET_IDMOutput_DistortionMeshBlock14_SearchPoint12(p, v) \ (v = VME_Output_S1(p, ushort, 14, 12)) #define VME_GET_IDMOutput_DistortionMeshBlock14_SearchPoint13(p, v) \ (v = VME_Output_S1(p, ushort, 14, 13)) #define VME_GET_IDMOutput_DistortionMeshBlock14_SearchPoint14(p, v) \ (v = VME_Output_S1(p, ushort, 14, 14)) #define VME_GET_IDMOutput_DistortionMeshBlock14_SearchPoint15(p, v) \ (v = VME_Output_S1(p, ushort, 14, 15)) #define VME_GET_IDMOutput_DistortionMeshBlock15_SearchPoint0(p, v) \ (v = VME_Output_S1(p, ushort, 15, 0)) #define VME_GET_IDMOutput_DistortionMeshBlock15_SearchPoint1(p, v) \ (v = VME_Output_S1(p, ushort, 15, 1)) #define VME_GET_IDMOutput_DistortionMeshBlock15_SearchPoshort(p, v) \ (v = VME_Output_S1(p, ushort, 15, 2)) #define VME_GET_IDMOutput_DistortionMeshBlock15_SearchPoint3(p, v) \ (v = VME_Output_S1(p, ushort, 15, 3)) #define VME_GET_IDMOutput_DistortionMeshBlock15_SearchPoint4(p, v) \ (v = VME_Output_S1(p, ushort, 15, 4)) #define VME_GET_IDMOutput_DistortionMeshBlock15_SearchPoint5(p, v) \ (v = VME_Output_S1(p, ushort, 15, 5)) #define VME_GET_IDMOutput_DistortionMeshBlock15_SearchPoint6(p, v) \ (v = VME_Output_S1(p, ushort, 15, 6)) #define VME_GET_IDMOutput_DistortionMeshBlock15_SearchPoint7(p, v) \ (v = VME_Output_S1(p, ushort, 15, 7)) #define VME_GET_IDMOutput_DistortionMeshBlock15_SearchPoint8(p, v) \ (v = VME_Output_S1(p, ushort, 15, 8)) #define VME_GET_IDMOutput_DistortionMeshBlock15_SearchPoint9(p, v) \ (v = VME_Output_S1(p, ushort, 15, 9)) #define VME_GET_IDMOutput_DistortionMeshBlock15_SearchPoint10(p, v) \ (v = VME_Output_S1(p, ushort, 15, 10)) #define VME_GET_IDMOutput_DistortionMeshBlock15_SearchPoint11(p, v) \ (v = VME_Output_S1(p, ushort, 15, 11)) #define VME_GET_IDMOutput_DistortionMeshBlock15_SearchPoint12(p, v) \ (v = VME_Output_S1(p, ushort, 15, 12)) #define VME_GET_IDMOutput_DistortionMeshBlock15_SearchPoint13(p, v) \ (v = VME_Output_S1(p, ushort, 15, 13)) #define VME_GET_IDMOutput_DistortionMeshBlock15_SearchPoint14(p, v) \ (v = VME_Output_S1(p, ushort, 15, 14)) #define VME_GET_IDMOutput_DistortionMeshBlock15_SearchPoint15(p, v) \ (v = VME_Output_S1(p, ushort, 15, 15)) // Set the default values for VME input payload #define INIT_VME_UNIINPUT(p) \ { /* M0 */ \ VME_Input_S1(p, uint, 0, 0) = 0x00000000; \ VME_Input_S1(p, uint, 0, 1) = 0x00000000; \ VME_Input_S1(p, uint, 0, 2) = 0x00000000; \ VME_Input_S1(p, uint, 0, 3) = 0x00A80000; \ VME_Input_S1(p, uint, 0, 4) = 0x00000000; \ VME_Input_S1(p, uint, 0, 5) = 0x00000000; \ VME_Input_S1(p, uint, 0, 6) = 0x00000000; \ VME_Input_S1(p, uint, 0, 7) = 0x00000000; \ /* M1 */ \ VME_Input_S1(p, uint, 1, 0) = 0x00000000; \ VME_Input_S1(p, uint, 1, 1) = 0x00000008; \ VME_Input_S1(p, uint, 1, 2) = 0x00000000; \ VME_Input_S1(p, uint, 1, 3) = 0x00000000; \ VME_Input_S1(p, uint, 1, 4) = 0x00000000; \ VME_Input_S1(p, uint, 1, 5) = 0x00000000; \ VME_Input_S1(p, uint, 1, 6) = 0x00000000; \ VME_Input_S1(p, uint, 1, 7) = 0x00400060; \ /* M2 */ \ VME_Input_S1(p, uint, 2, 0) = 0x00000000; \ VME_Input_S1(p, uint, 2, 1) = 0x00000000; \ VME_Input_S1(p, uint, 2, 2) = 0x00000000; \ VME_Input_S1(p, uint, 2, 3) = 0x00000000; \ VME_Input_S1(p, uint, 2, 4) = 0x00000000; \ VME_Input_S1(p, uint, 2, 5) = 0x00000000; \ VME_Input_S1(p, uint, 2, 6) = 0x00000000; \ VME_Input_S1(p, uint, 2, 7) = 0x00000000; \ /* M3 */ \ VME_Input_S1(p, uint, 3, 0) = 0x00000000; \ VME_Input_S1(p, uint, 3, 1) = 0x00000000; \ VME_Input_S1(p, uint, 3, 2) = 0x00000000; \ VME_Input_S1(p, uint, 3, 3) = 0x00000000; \ VME_Input_S1(p, uint, 3, 4) = 0x00000000; \ VME_Input_S1(p, uint, 3, 5) = 0x00000000; \ VME_Input_S1(p, uint, 3, 6) = 0x00000000; \ VME_Input_S1(p, uint, 3, 7) = 0x00000000; \ } // TBD: set different default values for each payload field #define INIT_VME_IMEINPUT(p) \ { p = 0; } #define INIT_VME_SICINPUT(p) \ { p = 0; } #define INIT_VME_FBRINPUT(p) \ { p = 0; } #define INIT_VME_IDMINPUT(p) \ { p = 0; } #define RESET_VME_UNIINPUT(p) \ { p.format<uint, 4, 8>() = 0; } #define RESET_VME_IMEINPUT(p, sz) \ { p.format<uint, sz, 8>() = 0; } #define RESET_VME_SICINPUT(p) \ { p.format<uint, 4, 8>() = 0; } #define RESET_VME_FBRINPUT(p) \ { p.format<uint, 4, 8>() = 0; } #define RESET_VME_IDMINPUT(p) \ { p.format<uint, 1, 8>() = 0; } // Run VME APIs typedef enum _VMEStreamMode_ { VME_STREAM_DISABLE = 0, VME_STREAM_OUT = 1, VME_STREAM_IN = 2, VME_STREAM_IN_OUT = 3 } VMEStreamMode; typedef enum _VMESearchCtrl_ { VME_SEARCH_SINGLE_REF_SINGLE_REC_SINGLE_START = 0, VME_SEARCH_SINGLE_REF_SINGLE_REC_DUAL_START = 1, VME_SEARCH_SINGLE_REF_DUAL_REC = 3, VME_SEARCH_DUAL_REF_DUAL_REC = 7 } VMESearchCtrl; typedef enum _VMEMsgType_ { VME_SIC_MSG = 0, VME_FBR_MSG = 1, VME_IME_MSG = 2, VME_IDM_MSG = 3 } VMEMsgType; static CM_INLINE constexpr unsigned getVMEInputSize(unsigned size, VMEStreamMode mode, VMESearchCtrl ctrl) { return (mode != VME_STREAM_IN && mode != VME_STREAM_IN_OUT) ? size + 2 : (ctrl == VME_SEARCH_DUAL_REF_DUAL_REC) ? (size + 6) : (size + 4); } template <VMEStreamMode streamMode, VMESearchCtrl searchCtrl, int N1, int N2> CM_INLINE void _run_vme_ime_impl(matrix<uchar, 4, 32> UNIInput, matrix<uchar, N1, 32> IMEInput, SurfaceIndex curSurfIndex, vector<short, 2> ref0, vector<short, 2> ref1, vector<ushort, 16> costCenter, matrix_ref<uchar, N2, 32> IMEOutput) { // HSW: 3; otherwise 4 to invoke below function constexpr unsigned inputSize = getVMEInputSize(4, streamMode, searchCtrl); constexpr unsigned remaining = (inputSize - 4) * 8; matrix<uint, inputSize, 8> src = 0; // mov (24) VX(0,0)<1>, UNIInput src.format<uint>().select<32, 1>(0) = UNIInput.format<uint>().select<32, 1>(0); // mov (16) VX(3,0)<1>, IMEInput src.format<uint>().select<remaining, 1>(32) = IMEInput.format<uint>().select<remaining, 1>(0); // and (1) VX(0,13)<1>, VX(0,13):ub, 0xF8 src.format<uchar>()(13) &= 0xF8; // or (1) VX(0,13)<1>, VX(0,13):ub, searchCtrl src.format<uchar>()(13) |= (unsigned)searchCtrl; // mov (2) VA(0,0)<1>, ref0 // since ref0 is converted from UW to UD, move it as 1 UD src(0, 0) = ref0.format<uint>()(0); // mov (2) VA(0,2)<1>, ref1 // since ref1 is converted from UW to UD, move it as 1 UD src(0, 1) = ref1.format<uint>()(0); // mov (8) VA(3,0)<1>, costCenter src.select<1, 1, 8, 1>(3, 0) = costCenter.format<uint>().select<8, 1>(0); unsigned fCtrl = 0; // Bit 7-0 of message descriptor fCtrl += 0x2 << 13; // Bit 14-13 of message descriptor fCtrl += streamMode << 15; // Bit 16-15 of message descriptor unsigned rspLength = 288 / 32; if ((streamMode != VME_STREAM_OUT) && (streamMode != VME_STREAM_IN_OUT)) { rspLength = 224 / 32; } else if (searchCtrl == VME_SEARCH_DUAL_REF_DUAL_REC) { rspLength = 352 / 32; } // Function control (bit 0:18) // Header present (bit 19) // Response length (bit 20:24) // Message length (bit 25:28) uint Descriptor = (fCtrl & 0x7FFFF) + (1 << 19) + ((rspLength & 0x1f) << 20) + ((inputSize & 0xF) << 25); Descriptor = cm_get_value(curSurfIndex) + Descriptor; /*Implementing VME based on cm_send() for gen7_5 template <int N1, int N2> void cm_send(matrix_ref<ushort, N1, 16> IMEOutput, matrix<ushort, inputSize, 16>src, uint exDesc, uint msgDesc, uint sendc);*/ cm_send(IMEOutput.format<ushort, N2, 16>(), src.format<ushort, inputSize, 16>(), __SFID_VME, Descriptor, 0u); } template <int N1, int N2> CM_NODEBUG CM_INLINE void run_vme_ime(matrix<uchar, 4, 32> UNIInput, matrix<uchar, N1, 32> IMEInput, VMEStreamMode streamMode, VMESearchCtrl searchCtrl, SurfaceIndex curSurfIndex, vector<short, 2> ref0, vector<short, 2> ref1, vector<ushort, 16> costCenter, matrix_ref<uchar, N2, 32> IMEOutput) { #define VME_IME(mode, ctrl) \ _run_vme_ime_impl<mode, ctrl>(UNIInput, IMEInput, curSurfIndex, ref0, ref1, \ costCenter, IMEOutput) if (N1 == 2 && N2 == 7) { if (streamMode == VME_STREAM_DISABLE) { if (searchCtrl == VME_SEARCH_SINGLE_REF_SINGLE_REC_SINGLE_START) VME_IME(VME_STREAM_DISABLE, VME_SEARCH_SINGLE_REF_SINGLE_REC_SINGLE_START); if (searchCtrl == VME_SEARCH_SINGLE_REF_SINGLE_REC_DUAL_START) VME_IME(VME_STREAM_DISABLE, VME_SEARCH_SINGLE_REF_SINGLE_REC_DUAL_START); if (searchCtrl == VME_SEARCH_SINGLE_REF_DUAL_REC) VME_IME(VME_STREAM_DISABLE, VME_SEARCH_SINGLE_REF_DUAL_REC); if (searchCtrl == VME_SEARCH_DUAL_REF_DUAL_REC) VME_IME(VME_STREAM_DISABLE, VME_SEARCH_DUAL_REF_DUAL_REC); } } else if (N1 == 2 && N2 == 9) { if (streamMode == VME_STREAM_OUT) { // searchCtrl != VME_SEARCH_DUAL_REF_DUAL_REC if (searchCtrl == VME_SEARCH_SINGLE_REF_SINGLE_REC_SINGLE_START) { VME_IME(VME_STREAM_OUT, VME_SEARCH_SINGLE_REF_SINGLE_REC_SINGLE_START); } if (searchCtrl == VME_SEARCH_SINGLE_REF_SINGLE_REC_DUAL_START) { VME_IME(VME_STREAM_OUT, VME_SEARCH_SINGLE_REF_SINGLE_REC_DUAL_START); } if (searchCtrl == VME_SEARCH_SINGLE_REF_DUAL_REC) { VME_IME(VME_STREAM_OUT, VME_SEARCH_SINGLE_REF_DUAL_REC); } } } else if (N1 == 2 && N2 == 11) { if (streamMode == VME_STREAM_OUT && searchCtrl == VME_SEARCH_DUAL_REF_DUAL_REC) { VME_IME(VME_STREAM_OUT, VME_SEARCH_DUAL_REF_DUAL_REC); } } else if (N1 == 4 && N2 == 7) { if (streamMode == VME_STREAM_IN) { // searchCtrl != VME_SEARCH_DUAL_REF_DUAL_REC if (searchCtrl == VME_SEARCH_SINGLE_REF_SINGLE_REC_SINGLE_START) { VME_IME(VME_STREAM_IN, VME_SEARCH_SINGLE_REF_SINGLE_REC_SINGLE_START); } if (searchCtrl == VME_SEARCH_SINGLE_REF_SINGLE_REC_DUAL_START) { VME_IME(VME_STREAM_IN, VME_SEARCH_SINGLE_REF_SINGLE_REC_DUAL_START); } if (searchCtrl == VME_SEARCH_SINGLE_REF_DUAL_REC) { VME_IME(VME_STREAM_IN, VME_SEARCH_SINGLE_REF_DUAL_REC); } } } else if (N1 == 4 && N2 == 9) { if (streamMode == VME_STREAM_IN_OUT) { // searchCtrl != VME_SEARCH_DUAL_REF_DUAL_REC if (searchCtrl == VME_SEARCH_SINGLE_REF_SINGLE_REC_SINGLE_START) { VME_IME(VME_STREAM_IN_OUT, VME_SEARCH_SINGLE_REF_SINGLE_REC_SINGLE_START); } if (searchCtrl == VME_SEARCH_SINGLE_REF_SINGLE_REC_DUAL_START) { VME_IME(VME_STREAM_IN_OUT, VME_SEARCH_SINGLE_REF_SINGLE_REC_DUAL_START); } if (searchCtrl == VME_SEARCH_SINGLE_REF_DUAL_REC) { VME_IME(VME_STREAM_IN_OUT, VME_SEARCH_SINGLE_REF_DUAL_REC); } } } else if (N1 == 6 && N2 == 7) { if (streamMode == VME_STREAM_IN && searchCtrl == VME_SEARCH_DUAL_REF_DUAL_REC) { VME_IME(VME_STREAM_IN, VME_SEARCH_DUAL_REF_DUAL_REC); } } else if (N1 == 6 && N2 == 11) { if (streamMode == VME_STREAM_IN_OUT && searchCtrl == VME_SEARCH_DUAL_REF_DUAL_REC) { VME_IME(VME_STREAM_IN_OUT, VME_SEARCH_DUAL_REF_DUAL_REC); } } } template <typename Dummy = void> CM_INLINE void run_vme_fbr(matrix<uchar, 4, 32> UNIInput, matrix<uchar, 4, 32> FBRInput, SurfaceIndex curSurfIndex, uchar FBRMbMode, uchar FBRSubMbShape, uchar FBRSubPredMode, matrix_ref<uchar, 7, 32> FBROutput) { matrix<uint, 8, 8> src = 0; // mov(96) VX(0, 0)<1>, UNIInput src.format<uint>().select<32, 1>(0) = UNIInput.format<uint>().select<32, 1>(0); // mov (128) VX(3,0)<1>, FBRInput src.format<uint>().select<32, 1>(32) = FBRInput.format<uint>().select<32, 1>(0); // mov (1) VX(2,20)<1>, FBRMbMode src.format<uchar, 8, 32>()(2, 20) = FBRMbMode; // mov (1) VX(2,21)<1>, FBRSubMbShape src.format<uchar, 8, 32>()(2, 21) = FBRSubMbShape; // mov (1) VX(2,22)<1>, FBRSubPredMode src.format<uchar, 8, 32>()(2, 22) = FBRSubPredMode; unsigned fCtrl = 0x3 << 13; unsigned rspLength = 7; unsigned msglength = 8; uint Descriptor = (fCtrl & 0x7FFFF) + (1 << 19) + ((rspLength & 0x1f) << 20) + ((msglength & 0xF) << 25); Descriptor = cm_get_value(curSurfIndex) + Descriptor; cm_send(FBROutput.format<ushort, 7, 16>(), src.format<ushort, 8, 16>(), __SFID_CRE, Descriptor, 0u); } template <typename Dummy = void> CM_INLINE void run_vme_sic(matrix<uchar, 4, 32> UNIInput, matrix<uchar, 4, 32> SICInput, SurfaceIndex curSurfIndex, matrix_ref<uchar, 7, 32> UNIOutput) { matrix<uint, 8, 8> src = 0; // mov (96) VX(0,0)<1>, UNIInput src.format<uint>().select<32, 1>(0) = UNIInput.format<uint>().select<32, 1>(0); // mov (128) VX(3,0)<1>, SICInput src.format<uint>().select<32, 1>(32) = SICInput.format<uint>().select<32, 1>(0); unsigned fCtrl = 0x1 << 13; unsigned rspLength = 7; unsigned msgLength = 8; uint Descriptor = (fCtrl & 0x7FFFF) + (1 << 19) + ((rspLength & 0x1f) << 20) + ((msgLength & 0xF) << 25); Descriptor = cm_get_value(curSurfIndex) + Descriptor; cm_send(UNIOutput.format<ushort, 7, 16>(), src.format<ushort, 8, 16>(), __SFID_CRE, Descriptor, 0u); } template <typename Dummy = void> CM_INLINE void run_vme_idm(matrix<uchar, 4, 32> UNIInput, matrix<uchar, 1, 32> IDMInput, SurfaceIndex curSurfIndex, matrix_ref<uchar, 16, 32> IDMOutput) { matrix<uint, 5, 8> src = 0; // mov(96) VX(0, 0)<1>, UNIInput src.format<uint>().select<32, 1>(0) = UNIInput.format<uint>().select<32, 1>(0); // mov (128) VX(3,0)<1>, IDMInput src.format<uint>().select<8, 1>(32) = IDMInput.format<uint>().select<8, 1>(0); unsigned fCtrl = 0; unsigned rspLength = 16; unsigned msglength = 5; uint Descriptor = (fCtrl & 0x7FFFF) + (1 << 19) + ((rspLength & 0x1f) << 20) + ((msglength & 0xF) << 25); Descriptor = cm_get_value(curSurfIndex) + Descriptor; cm_send(IDMOutput.format<ushort, 16, 16>(), src.format<ushort, 5, 16>(), __SFID_VME, Descriptor, 0u); } #endif /* _CLANG_gen8_VME_H_ */
[ "rodrigosoaresilva@gmail.com" ]
rodrigosoaresilva@gmail.com
49a96e8526d34134f41d4e653e467ec5724a6a21
be34d599008cc0b3b81177fdb9f9e2dcbd7f56ba
/src/mcu/components/platform/Platform.cpp
e981d397e00f173082a63b215a0f7aff9adb97e4
[ "Apache-2.0" ]
permissive
wouterdevinck/lamp
d5c94f98bd8b39fdf5395ae1bc129f0fe1f0e931
5020ba56f68738133934c4014166813790d04df9
refs/heads/master
2023-03-07T03:05:55.753756
2020-08-11T10:15:29
2020-08-11T10:15:29
134,090,004
2
0
Apache-2.0
2023-02-25T04:39:21
2018-05-19T18:58:27
C++
UTF-8
C++
false
false
1,493
cpp
#include "Platform.h" #include "MemMon.h" #include "constants.h" using namespace lamp; Platform::Platform() { MemMon memmon(MEMMON_PERIOD); _spi1 = new Spi(SPI1_ESP_HOST, SPI1_DMA_CH, SPI1_MOSI_PIN, SPI1_MISO_PIN, SPI1_CLK_PIN, SPI1_CS_PIN); _spi2 = new SpiFlash(SPI2_ESP_HOST, SPI2_DMA_CH, SPI2_MOSI_PIN, SPI2_MISO_PIN, SPI2_CLK_PIN, SPI2_CS_PIN); _ir = new IrReceiver(); _led = new RgbLed(PIN_RGB_RED, PIN_RGB_GREEN, PIN_RGB_BLUE); _leds = new LedBoardChain(_spi1, PIN_LED_INT); _storage = new Storage(); _wifi = new WiFiClient(_storage); _lux = new LightSensor(); _updater = new Updater(_spi2, _storage, CHUNK_SIZE); _logger = new Logger(); _httpserver = new HttpServer(); _httpclient = new HttpClient(CHUNK_SIZE); _iot = new AzureIot(_logger); } IIrReceiver* Platform::getIrReceiver() { return _ir; } IRgbLed* Platform::getRgbLed() { return _led; } ILedBoardChain* Platform::getLedBoardChain() { return _leds; } IWiFiClient* Platform::getWiFiClient() { return _wifi; } ILightSensor* Platform::getLightSensor() { return _lux; } IUpdater* Platform::getUpdater() { return _updater; } ILogger* Platform::getLogger() { return _logger; } IHttpServer* Platform::getHttpServer() { return _httpserver; } IHttpClient* Platform::getHttpClient() { return _httpclient; } IIotFramework* Platform::getIotFramework() { return _iot; } INvs* Platform::getStorage() { return _storage; } int Platform::getHttpServerPort() { return HTTP_PORT; }
[ "wouter.devinck@gmail.com" ]
wouter.devinck@gmail.com
982dd9a2b635ef3eb61d41c0f36b93365c75db2b
9c6b8082931c4e630503788d0641210298a507bc
/F800W/main.cpp
ce1e05d78300fc7761140315f25b2558da8acb9c
[]
no_license
hucheng-yyds/device_app_qt_v2
5b2e803bc0e0fd0ed6e8a62b10d3e573d45c9c42
2f805a2c9a7c32d8444704bbdef1fe9307375452
refs/heads/master
2023-07-08T06:52:34.634044
2020-12-23T10:08:33
2020-12-23T10:08:33
390,967,629
0
0
null
null
null
null
UTF-8
C++
false
false
1,398
cpp
#include <QGuiApplication> #include <QTranslator> #include <QQmlApplicationEngine> #include <QQmlContext> #include "prostorage.h" int main(int argc, char *argv[]) { IF_VIO_VPSS_VO_MIPI_TX(switchCtl->m_camera, switchCtl->m_screen, switchCtl->m_angle); while (!IF_CheckYUVDataReady(0)) { QThread::msleep(1000); } QGuiApplication app(argc, argv); QTranslator *m_translator = new QTranslator(); switch (switchCtl->m_language) { case 0: m_translator->load("./language/OF_CH.qm"); break; case 1: m_translator->load("./language/OF_EN.qm"); break; case 2: m_translator->load("./language/OF_JA.qm"); break; case 3: m_translator->load("./language/OF_KOR.qm"); break; case 4: m_translator->load("./language/OF_RU.qm"); break; case 5: m_translator->load("./language/OF_IN.qm"); break; default: break; } app.installTranslator(m_translator); QQmlApplicationEngine engine; ProStorage *programs = new ProStorage; programs->start(); engine.rootContext()->setContextProperty("programs", programs); engine.load(QUrl(QStringLiteral("./qml/main.qml"))); system("himm 0x111F0028 0x0500"); system("himm 0x120D6400 0xB0"); system("himm 0x120D6200 0x80"); system("himm 0x120D6200 0xff"); return app.exec(); }
[ "zgf@officelinking.com" ]
zgf@officelinking.com
52824be25c717eb676070d3bdc2d3ae07dcbeb06
225e82d7a70bfeb544d758c4a01321701ff06a61
/root/root_v4.04.02g/tree/inc/TLeafD.h
ec15312d2330d41b6fbfb80ef312300b68e4650f
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
govoni/learn
9760494d592ba09a98e08939818415857d015371
cb02b6621af73efdbf1e64e5fc39ecd9e72516af
refs/heads/master
2021-01-19T18:51:14.476573
2019-07-22T09:05:26
2019-07-22T09:05:26
101,170,943
0
0
null
null
null
null
UTF-8
C++
false
false
2,557
h
// @(#)root/tree:$Name: v4-04-02g $:$Id: TLeafD.h,v 1.7 2004/10/18 12:32:12 brun Exp $ // Author: Rene Brun 12/01/96 /************************************************************************* * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_TLeafD #define ROOT_TLeafD ////////////////////////////////////////////////////////////////////////// // // // TLeafD // // // // A TLeaf for a 64 bit floating point data type. // // // ////////////////////////////////////////////////////////////////////////// #ifndef ROOT_TLeaf #include "TLeaf.h" #endif class TLeafD : public TLeaf { protected: Double_t fMinimum; //Minimum value if leaf range is specified Double_t fMaximum; //Maximum value if leaf range is specified Double_t *fValue; //!Pointer to data buffer Double_t **fPointer; //!Address of pointer to data buffer public: TLeafD(); TLeafD(const char *name, const char *type); virtual ~TLeafD(); virtual void Export(TClonesArray *list, Int_t n); virtual void FillBasket(TBuffer &b); const char *GetTypeName() const {return "Double_t";} Double_t GetValue(Int_t i=0) const; virtual void *GetValuePointer() const {return fValue;} virtual void Import(TClonesArray *list, Int_t n); virtual void PrintValue(Int_t i=0) const; virtual void ReadBasket(TBuffer &b); virtual void ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n); virtual void ReadValue(ifstream & s); virtual void SetAddress(void *add=0); ClassDef(TLeafD,1) //A TLeaf for a 64 bit floating point data type. }; // if leaf is a simple type, i must be set to 0 // if leaf is an array, i is the array element number to be returned inline Double_t TLeafD::GetValue(Int_t i) const { return fValue[i]; } #endif
[ "pietro.govoni@gmail.com" ]
pietro.govoni@gmail.com
85f1cb4b50eac0c2a1d8c5dabe92f6653ffc136b
3c6deda46fa37a42feebde0fb50dd0d6123b82b1
/0152/src/mame/includes/pgm.h
90e5748d3f1afc6f8405b5f4eb1b75321ef50fa5
[]
no_license
AreaScout/mame-libretro
9fdb724edb58070162c1bd4e8b351a8f2da250ea
dd16543e4f77a2e42f5662a445f03079e2324221
refs/heads/master
2020-12-24T21:01:44.571706
2014-11-26T06:36:49
2014-11-26T06:36:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
15,752
h
#include "machine/v3021.h" #include "cpu/z80/z80.h" #include "cpu/m68000/m68000.h" #include "cpu/arm7/arm7.h" #include "sound/ics2115.h" #include "cpu/arm7/arm7core.h" #include "machine/nvram.h" #include "machine/pgmcrypt.h" #include "machine/igs025.h" #include "machine/igs022.h" #include "machine/igs028.h" #define PGMARM7LOGERROR 0 class pgm_state : public driver_device { public: pgm_state(const machine_config &mconfig, device_type type, const char *tag) : driver_device(mconfig, type, tag), m_videoregs(*this, "videoregs"), m_videoram(*this, "videoram"), m_z80_mainram(*this, "z80_mainram"), m_mainram(*this, "sram"), m_maincpu(*this, "maincpu"), m_soundcpu(*this, "soundcpu") { m_irq4_disabled = 0; } /* memory pointers */ required_shared_ptr<UINT16> m_videoregs; required_shared_ptr<UINT16> m_videoram; required_shared_ptr<UINT8> m_z80_mainram; required_shared_ptr<UINT16> m_mainram; UINT16 * m_bg_videoram; UINT16 * m_tx_videoram; UINT16 * m_rowscrollram; UINT8 * m_sprite_a_region; size_t m_sprite_a_region_size; UINT16 * m_spritebufferram; // buffered spriteram // UINT16 * m_paletteram; // currently this uses generic palette handling /* video-related */ tilemap_t *m_bg_tilemap; tilemap_t *m_tx_tilemap; UINT16 *m_sprite_temp_render; bitmap_rgb32 m_tmppgmbitmap; /* devices */ required_device<cpu_device> m_maincpu; required_device<cpu_device> m_soundcpu; device_t *m_ics; /* used by rendering */ UINT8 *m_bdata; size_t m_bdatasize; int m_aoffset; int m_boffset; /* hack */ int m_irq4_disabled; /* calendar */ UINT8 m_cal_val; UINT8 m_cal_mask; UINT8 m_cal_com; UINT8 m_cal_cnt; system_time m_systime; DECLARE_READ16_MEMBER(pgm_videoram_r); DECLARE_WRITE16_MEMBER(pgm_videoram_w); DECLARE_WRITE16_MEMBER(pgm_coin_counter_w); DECLARE_READ16_MEMBER(z80_ram_r); DECLARE_WRITE16_MEMBER(z80_ram_w); DECLARE_WRITE16_MEMBER(z80_reset_w); DECLARE_WRITE16_MEMBER(z80_ctrl_w); DECLARE_WRITE16_MEMBER(m68k_l1_w); DECLARE_WRITE8_MEMBER(z80_l3_w); DECLARE_WRITE16_MEMBER(pgm_tx_videoram_w); DECLARE_WRITE16_MEMBER(pgm_bg_videoram_w); DECLARE_DRIVER_INIT(pgm); TILE_GET_INFO_MEMBER(get_pgm_tx_tilemap_tile_info); TILE_GET_INFO_MEMBER(get_pgm_bg_tilemap_tile_info); DECLARE_VIDEO_START(pgm); DECLARE_MACHINE_START(pgm); DECLARE_MACHINE_RESET(pgm); UINT32 screen_update_pgm(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); void screen_eof_pgm(screen_device &screen, bool state); TIMER_DEVICE_CALLBACK_MEMBER(pgm_interrupt); inline void pgm_draw_pix( int xdrawpos, int pri, UINT16* dest, UINT8* destpri, UINT16 srcdat); inline void pgm_draw_pix_nopri( int xdrawpos, UINT16* dest, UINT8* destpri, UINT16 srcdat); inline void pgm_draw_pix_pri( int xdrawpos, UINT16* dest, UINT8* destpri, UINT16 srcdat); void draw_sprite_line( int wide, UINT16* dest, UINT8* destpri, int xzoom, int xgrow, int flip, int xpos, int pri, int realxsize, int palt, int draw ); void draw_sprite_new_zoomed( int wide, int high, int xpos, int ypos, int palt, int flip, bitmap_ind16 &bitmap, bitmap_ind8 &priority_bitmap, UINT32 xzoom, int xgrow, UINT32 yzoom, int ygrow, int pri ); void draw_sprite_line_basic( int wide, UINT16* dest, UINT8* destpri, int flip, int xpos, int pri, int realxsize, int palt, int draw ); void draw_sprite_new_basic( int wide, int high, int xpos, int ypos, int palt, int flip, bitmap_ind16 &bitmap, bitmap_ind8 &priority_bitmap, int pri ); void draw_sprites( bitmap_ind16& spritebitmap, UINT16 *sprite_source, bitmap_ind8& priority_bitmap ); void expand_32x32x5bpp(); void expand_colourdata( ); void pgm_basic_init( bool set_bank = true); }; /* for machine/pgmprot_orlegend.c type games */ class pgm_asic3_state : public pgm_state { public: pgm_asic3_state(const machine_config &mconfig, device_type type, const char *tag) : pgm_state(mconfig, type, tag) { } // ASIC 3 (oriental legends protection) UINT8 m_asic3_reg; UINT8 m_asic3_latch[3]; UINT8 m_asic3_x; UINT16 m_asic3_hilo; UINT16 m_asic3_hold; DECLARE_DRIVER_INIT(orlegend); void asic3_compute_hold(int,int); DECLARE_READ16_MEMBER( pgm_asic3_r ); DECLARE_WRITE16_MEMBER( pgm_asic3_w ); DECLARE_WRITE16_MEMBER( pgm_asic3_reg_w ); }; /* for machine/pgmprot1.c type games */ class pgm_arm_type1_state : public pgm_state { public: pgm_arm_type1_state(const machine_config &mconfig, device_type type, const char *tag) : pgm_state(mconfig, type, tag), m_arm7_shareram(*this, "arm7_shareram"), m_prot(*this, "prot") { m_curslots = 0; m_puzzli_54_trigger = 0; } /////////////// simulations UINT16 m_value0; UINT16 m_value1; UINT16 m_valuekey; UINT16 m_ddp3lastcommand; UINT32 m_valueresponse; int m_curslots; UINT32 m_slots[0x100]; // pstars / oldsplus / kov UINT16 m_pstar_e7_value; UINT16 m_pstar_b1_value; UINT16 m_pstar_ce_value; UINT16 m_kov_c0_value; UINT16 m_kov_cb_value; UINT16 m_kov_fe_value; UINT16 m_extra_ram[0x100]; // puzzli2 INT32 m_puzzli_54_trigger; typedef void (pgm_arm_type1_state::*pgm_arm_sim_command_handler)(int pc); pgm_arm_sim_command_handler arm_sim_handler; /////////////// emulation UINT16 m_pgm_arm_type1_highlatch_arm_w; UINT16 m_pgm_arm_type1_lowlatch_arm_w; UINT16 m_pgm_arm_type1_highlatch_68k_w; UINT16 m_pgm_arm_type1_lowlatch_68k_w; UINT32 m_pgm_arm_type1_counter; optional_shared_ptr<UINT32> m_arm7_shareram; optional_device<cpu_device> m_prot; DECLARE_DRIVER_INIT(photoy2k); DECLARE_DRIVER_INIT(kovsh); DECLARE_DRIVER_INIT(kovshp); DECLARE_DRIVER_INIT(kovshxas); DECLARE_DRIVER_INIT(kovlsqh2); DECLARE_DRIVER_INIT(kovqhsgs); DECLARE_DRIVER_INIT(ddp3); DECLARE_DRIVER_INIT(ket); DECLARE_DRIVER_INIT(espgal); DECLARE_DRIVER_INIT(puzzli2); DECLARE_DRIVER_INIT(py2k2); DECLARE_DRIVER_INIT(pgm3in1); DECLARE_DRIVER_INIT(pstar); DECLARE_DRIVER_INIT(kov); DECLARE_DRIVER_INIT(kovboot); DECLARE_DRIVER_INIT(oldsplus); DECLARE_MACHINE_START(pgm_arm_type1); DECLARE_READ32_MEMBER( pgm_arm7_type1_protlatch_r ); DECLARE_WRITE32_MEMBER( pgm_arm7_type1_protlatch_w ); DECLARE_READ16_MEMBER( pgm_arm7_type1_68k_protlatch_r ); DECLARE_WRITE16_MEMBER( pgm_arm7_type1_68k_protlatch_w ); DECLARE_READ16_MEMBER( pgm_arm7_type1_ram_r ); DECLARE_WRITE16_MEMBER( pgm_arm7_type1_ram_w ); DECLARE_READ32_MEMBER( pgm_arm7_type1_unk_r ); DECLARE_READ32_MEMBER( pgm_arm7_type1_exrom_r ); DECLARE_READ32_MEMBER( pgm_arm7_type1_shareram_r ); DECLARE_WRITE32_MEMBER( pgm_arm7_type1_shareram_w ); void pgm_arm7_type1_latch_init(); DECLARE_READ16_MEMBER( kovsh_fake_region_r ); DECLARE_WRITE16_MEMBER( kovshp_asic27a_write_word ); void pgm_decode_kovlsqh2_tiles(); void pgm_decode_kovlsqh2_sprites(UINT8 *src ); void pgm_decode_kovlsqh2_samples(); void pgm_decode_kovqhsgs_program(); void pgm_decode_kovqhsgs2_program(); DECLARE_READ16_MEMBER( pgm_arm7_type1_sim_r ); void command_handler_ddp3(int pc); void command_handler_puzzli2(int pc); void command_handler_py2k2(int pc); void command_handler_pstars(int pc); void command_handler_kov(int pc); void command_handler_oldsplus(int pc); DECLARE_WRITE16_MEMBER( pgm_arm7_type1_sim_w ); DECLARE_READ16_MEMBER( pgm_arm7_type1_sim_protram_r ); DECLARE_READ16_MEMBER( pstars_arm7_type1_sim_protram_r ); int m_simregion; /* puzzli2 protection internal state stuff */ int stage; int tableoffs; int tableoffs2; int entries_left; int currentcolumn; int currentrow; int num_entries; int full_entry; int prev_tablloc; int numbercolumns; int depth; UINT16 m_row_bitmask; int hackcount; int hackcount2; int hack_47_value; int hack_31_table_offset; int hack_31_table_offset2; int p2_31_retcounter; UINT8 coverage[256]; // coverage is how much of the table we've managed to verify using known facts about the table structure int command_31_write_type; // the maximum level size returned or read by the device appears to be this size UINT16 level_structure[8][10]; int puzzli2_take_leveldata_value(UINT8 datvalue); }; /* for machine/pgmprot2.c type games */ class pgm_arm_type2_state : public pgm_state { public: pgm_arm_type2_state(const machine_config &mconfig, device_type type, const char *tag) : pgm_state(mconfig, type, tag), m_arm_ram(*this, "arm_ram"), m_arm7_shareram(*this, "arm7_shareram"), m_prot(*this, "prot") { } // kov2 UINT32 m_kov2_latchdata_68k_w; UINT32 m_kov2_latchdata_arm_w; required_shared_ptr<UINT32> m_arm_ram; required_shared_ptr<UINT32> m_arm7_shareram; optional_device<cpu_device> m_prot; DECLARE_DRIVER_INIT(kov2); DECLARE_DRIVER_INIT(kov2p); DECLARE_DRIVER_INIT(martmast); DECLARE_DRIVER_INIT(ddp2); DECLARE_DRIVER_INIT(dw2001); DECLARE_DRIVER_INIT(dwpc); DECLARE_MACHINE_START(pgm_arm_type2); DECLARE_READ32_MEMBER( arm7_latch_arm_r ); DECLARE_WRITE32_MEMBER( arm7_latch_arm_w ); DECLARE_READ32_MEMBER( arm7_shareram_r ); DECLARE_WRITE32_MEMBER( arm7_shareram_w ); DECLARE_READ16_MEMBER( arm7_latch_68k_r ); DECLARE_WRITE16_MEMBER( arm7_latch_68k_w ); DECLARE_READ16_MEMBER( arm7_ram_r ); DECLARE_WRITE16_MEMBER( arm7_ram_w ); void kov2_latch_init(); DECLARE_WRITE32_MEMBER( martmast_arm_region_w ); DECLARE_WRITE32_MEMBER( kov2_arm_region_w ); DECLARE_WRITE32_MEMBER( kov2p_arm_region_w ); DECLARE_READ32_MEMBER( ddp2_speedup_r ); DECLARE_READ16_MEMBER( ddp2_main_speedup_r ); }; /* for machine/pgmprot3.c type games */ class pgm_arm_type3_state : public pgm_state { public: pgm_arm_type3_state(const machine_config &mconfig, device_type type, const char *tag) : pgm_state(mconfig, type, tag), m_arm_ram(*this, "arm_ram"), m_arm_ram2(*this, "arm_ram2"), m_prot(*this, "prot") { } // svg int m_svg_ram_sel; UINT32 * m_svg_shareram[2]; //for 5585G MACHINE UINT32 m_svg_latchdata_68k_w; UINT32 m_svg_latchdata_arm_w; required_shared_ptr<UINT32> m_arm_ram; required_shared_ptr<UINT32> m_arm_ram2; UINT32* m_armrom; optional_device<cpu_device> m_prot; DECLARE_DRIVER_INIT(theglad); DECLARE_DRIVER_INIT(theglada); DECLARE_DRIVER_INIT(svg); DECLARE_DRIVER_INIT(svgpcb); DECLARE_DRIVER_INIT(killbldp); DECLARE_DRIVER_INIT(dmnfrnt); DECLARE_DRIVER_INIT(happy6); DECLARE_MACHINE_START(pgm_arm_type3); DECLARE_WRITE32_MEMBER( svg_arm7_ram_sel_w ); DECLARE_READ32_MEMBER( svg_arm7_shareram_r ); DECLARE_WRITE32_MEMBER( svg_arm7_shareram_w ); DECLARE_READ16_MEMBER( svg_m68k_ram_r ); DECLARE_WRITE16_MEMBER( svg_m68k_ram_w ); DECLARE_READ16_MEMBER( svg_68k_nmi_r ); DECLARE_WRITE16_MEMBER( svg_68k_nmi_w ); DECLARE_WRITE16_MEMBER( svg_latch_68k_w ); DECLARE_READ16_MEMBER( svg_latch_68k_r ); DECLARE_READ32_MEMBER( svg_latch_arm_r ); DECLARE_WRITE32_MEMBER( svg_latch_arm_w ); void svg_basic_init(); void pgm_create_dummy_internal_arm_region(int size); void pgm_patch_external_arm_rom_jumptable_theglada(int base); void pgm_patch_external_arm_rom_jumptable_svg(int base); void pgm_create_dummy_internal_arm_region_theglad(int is_svg); void pgm_descramble_happy6(UINT8* src); void pgm_descramble_happy6_2(UINT8* src); void svg_latch_init(); DECLARE_READ32_MEMBER( dmnfrnt_speedup_r ); DECLARE_READ16_MEMBER( dmnfrnt_main_speedup_r ); DECLARE_READ32_MEMBER( killbldp_speedup_r ); DECLARE_READ32_MEMBER( theglad_speedup_r ); DECLARE_READ32_MEMBER( svg_speedup_r ); DECLARE_MACHINE_RESET(pgm_arm_type3_reset); }; /* for machine/pgmprot4.c type games */ class pgm_022_025_state : public pgm_state { public: pgm_022_025_state(const machine_config &mconfig, device_type type, const char *tag) : pgm_state(mconfig, type, tag), m_sharedprotram(*this, "sharedprotram"), m_igs025(*this,"igs025"), m_igs022(*this,"igs022") { } void pgm_dw3_decrypt(); void pgm_killbld_decrypt(); required_shared_ptr<UINT16> m_sharedprotram; DECLARE_DRIVER_INIT(killbld); DECLARE_DRIVER_INIT(drgw3); DECLARE_MACHINE_RESET(killbld); DECLARE_MACHINE_RESET(dw3); void igs025_to_igs022_callback( void ); required_device<igs025_device> m_igs025; required_device<igs022_device> m_igs022; }; /* for machine/pgmprot5.c type games */ class pgm_012_025_state : public pgm_state { public: pgm_012_025_state(const machine_config &mconfig, device_type type, const char *tag) : pgm_state(mconfig, type, tag), m_igs025(*this,"igs025") { } required_device<igs025_device> m_igs025; void pgm_drgw2_decrypt(); void drgw2_common_init(); DECLARE_DRIVER_INIT(drgw2); DECLARE_DRIVER_INIT(dw2v100x); DECLARE_DRIVER_INIT(drgw2c); DECLARE_DRIVER_INIT(drgw2j); DECLARE_MACHINE_RESET(drgw2); }; /* for machine/pgmprot6.c type games */ class pgm_028_025_state : public pgm_state { public: pgm_028_025_state(const machine_config &mconfig, device_type type, const char *tag) : pgm_state(mconfig, type, tag), m_sharedprotram(*this, "sharedprotram"), m_igs025(*this,"igs025"), m_igs028(*this,"igs028") { } required_shared_ptr<UINT16> m_sharedprotram; required_device<igs025_device> m_igs025; required_device<igs028_device> m_igs028; void igs025_to_igs028_callback( void ); DECLARE_DRIVER_INIT(olds); DECLARE_MACHINE_RESET(olds); }; /*----------- defined in drivers/pgm.c -----------*/ INPUT_PORTS_EXTERN( pgm ); GFXDECODE_EXTERN( pgm ); MACHINE_CONFIG_EXTERN( pgm ); MACHINE_CONFIG_EXTERN( pgmbase ); ADDRESS_MAP_EXTERN( pgm_z80_mem, 8 ); ADDRESS_MAP_EXTERN( pgm_z80_io, 8 ); void pgm_sound_irq( device_t *device, int level ); ADDRESS_MAP_EXTERN( pgm_mem, 16 ); ADDRESS_MAP_EXTERN( pgm_basic_mem, 16 ); ADDRESS_MAP_EXTERN( pgm_base_mem, 16 ); /*----------- defined in machine/pgmprot.c -----------*/ INPUT_PORTS_EXTERN( orlegend ); INPUT_PORTS_EXTERN( orld105k ); MACHINE_CONFIG_EXTERN( pgm_asic3 ); /*----------- defined in machine/pgmprot1.c -----------*/ /* emulations */ /* simulations */ MACHINE_CONFIG_EXTERN( pgm_arm_type1 ); MACHINE_CONFIG_EXTERN( pgm_arm_type1_sim ); MACHINE_CONFIG_EXTERN( pgm_arm_type1_cave ); INPUT_PORTS_EXTERN( sango ); INPUT_PORTS_EXTERN( sango_ch ); INPUT_PORTS_EXTERN( photoy2k ); INPUT_PORTS_EXTERN( oldsplus ); INPUT_PORTS_EXTERN( pstar ); INPUT_PORTS_EXTERN( py2k2 ); INPUT_PORTS_EXTERN( puzzli2 ); INPUT_PORTS_EXTERN( kovsh ); /*----------- defined in machine/pgmprot2.c -----------*/ /* emulations */ MACHINE_CONFIG_EXTERN( pgm_arm_type2 ); /* simulations (or missing) */ INPUT_PORTS_EXTERN( ddp2 ); INPUT_PORTS_EXTERN( kov2 ); INPUT_PORTS_EXTERN( martmast ); INPUT_PORTS_EXTERN( dw2001 ); /*----------- defined in machine/pgmprot3.c -----------*/ MACHINE_CONFIG_EXTERN( pgm_arm_type3 ); INPUT_PORTS_EXTERN(theglad); INPUT_PORTS_EXTERN(happy6); INPUT_PORTS_EXTERN(svg); /*----------- defined in machine/pgmprot4.c -----------*/ MACHINE_CONFIG_EXTERN(pgm_022_025_dw3); MACHINE_CONFIG_EXTERN(pgm_022_025_killbld); INPUT_PORTS_EXTERN( killbld ); INPUT_PORTS_EXTERN( dw3 ); INPUT_PORTS_EXTERN( dw3j ); /*----------- defined in machine/pgmprot5.c -----------*/ MACHINE_CONFIG_EXTERN( pgm_012_025_drgw2 ); /*----------- defined in machine/pgmprot6.c -----------*/ MACHINE_CONFIG_EXTERN( pgm_028_025_ol ); INPUT_PORTS_EXTERN( olds );
[ "rtype@foo.com" ]
rtype@foo.com
664ac61e1540790c95e81883b18cf2a5f3a69c3d
5fb3727473daa99df9821e5b28adf54cad95ba4e
/main.cpp
3e456b1bd7e373e79a8b73aa5b85bdfc1fdcef5b
[]
no_license
tit-adrian/palindrom_2
97bdf27cf40f278d206e48952340e4314f45a8fe
535fdd897a6708ef9f5034ee611b2a6919744cf2
refs/heads/master
2022-09-07T05:31:29.128533
2020-05-24T19:28:55
2020-05-24T19:28:55
266,610,005
0
0
null
null
null
null
UTF-8
C++
false
false
2,810
cpp
#include <iostream> #include <fstream> #include <algorithm> using namespace std; fstream odczyt; int c, x, w; int k=0; string a; bool sprawdzpalindrom (string s1) //funkcja sprawdzaj¹ca czy to jest palingram. { int dl=s1.size(); for (int i=0; i<dl/2; i++) if (s1[i]!=s1[dl-i-1]) return false; return true; } void sprawdzb() { odczyt.open("dane.txt",ios::in); while(odczyt.good()) { odczyt >> a; if(sprawdzpalindrom(a)==true && a[0]=='A') { c++; k++; cout <<k<<"."<< a << endl; } } cout <<"Liczba ich wynosi:"<<c; odczyt.close(); } void sprawdzparzyste() { odczyt.open("dane.txt",ios::in); while(odczyt.good()) { odczyt >> a; if(sprawdzpalindrom(a)==true) { int dlugosc=a.length(); if(dlugosc%2==0) { k++; cout <<k<<"."<< a << endl; c++; } } } cout <<"Liczba ich wynosi:"<<c; odczyt.close(); } void sprawdznieparzyste() { odczyt.open("dane.txt",ios::in); while(odczyt.good()) { odczyt >> a; if(sprawdzpalindrom(a)==true) { int dlugosc=a.length(); if(dlugosc%2!=0) { k++; cout <<k<<"."<< a << endl; c++; } } } cout <<"Liczba ich wynosi:"<<c; odczyt.close(); } void sprawdztrzya() { odczyt.open("dane.txt",ios::in); while(odczyt.good()) { odczyt >> a; if(sprawdzpalindrom(a)==true) { if(count(a.begin(), a.end(), 'A')>=3) { k++; cout <<k<<"."<< a << endl; c++; } } } cout<<"Liczba ich wynosi:"<<c; odczyt.close(); } int main() { cout << "Wpisz 1 zeby zobaczyc palindromy na litere A jak Adrian i ich liczbe " << endl; cout << "Wprowadz 2 zeby zobaczyc palindromy z parzysta liczba liter i ich liczbe" << endl; cout << "Wprowadz 3 zeby zobaczyc palindromy z nieparzysta liczba liter i ich liczbe" << endl; cout << "wprowadz 4 zeby zobaczyc palondromy z trzema lub wiecej literami A i ich liczbe" << endl; cout << "Wprowadz liczbe z menu:"; cin >> w; switch(w) { case 1: sprawdzb(); break; case 2: sprawdzparzyste(); break; case 3: sprawdznieparzyste(); break; case 4: sprawdztrzya(); break; default: cout << "Wybrales zly numer!!!"; break; } return 0; }
[ "noreply@github.com" ]
tit-adrian.noreply@github.com
5bee9a1c469e1eea83f2ca5cc2c6ee31aacae667
b84aa8a1745f3346f22b9a0ae1c977a244dfb3cd
/SDK/RC_WBP_SettingsDropdown_classes.hpp
0743db201c0510f843b587e5351acd3e3612b5a5
[]
no_license
frankie-11/Rogue-SDK-11.8
615a9e51f280a504bb60a4cbddb8dfc4de6239d8
20becc4b2fff71cfec160fb7f2ee3a9203031d09
refs/heads/master
2023-01-10T06:00:59.427605
2020-11-08T16:13:01
2020-11-08T16:13:01
311,102,184
1
0
null
null
null
null
UTF-8
C++
false
false
1,280
hpp
#pragma once // RogueCompany (4.24) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif namespace SDK { //--------------------------------------------------------------------------- //Classes //--------------------------------------------------------------------------- // WidgetBlueprintGeneratedClass WBP_SettingsDropdown.WBP_SettingsDropdown_C // 0xAF18700 (0x68AA5580 - 0x5DB8CE80) class UWBP_SettingsDropdown_C : public UKSSettingsWidget { public: unsigned char UnknownData00[0xAF18700]; // 0x5DB8CE80(0xAF18700) MISSED OFFSET static UClass* StaticClass() { static auto ptr = UObject::FindClass("WidgetBlueprintGeneratedClass WBP_SettingsDropdown.WBP_SettingsDropdown_C"); return ptr; } void NavigateBack(); void NavigateConfirmPressed(); void NavigateConfirm(); void SetDesiredIndex(); void GetDirtyIndex(); void Set_Text_To_Index(); void OnWidgetSettingsInfoSet(); void Selection_Made(); void InitializeWidget(); void GamepadHover(); void InitializeWidgetNavigation(); void FocusGroupNavigateDownFailure(); void FocusGroupNavigateUpFailure(); void OnSettingsInfoValueChanged(); void ExecuteUbergraph_WBP_SettingsDropdown(); }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "60810131+frankie-11@users.noreply.github.com" ]
60810131+frankie-11@users.noreply.github.com
a5438c232377e460ef837c0e27725552c855efef
a81c07a5663d967c432a61d0b4a09de5187be87b
/third_party/blink/renderer/core/layout/ng/ng_length_utils.h
a652cb602b1e78f16810a22edb9d18e12b90e22a
[ "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft", "BSD-3-Clause" ]
permissive
junxuezheng/chromium
c401dec07f19878501801c9e9205a703e8643031
381ce9d478b684e0df5d149f59350e3bc634dad3
refs/heads/master
2023-02-28T17:07:31.342118
2019-09-03T01:42:42
2019-09-03T01:42:42
205,967,014
2
0
BSD-3-Clause
2019-09-03T01:48:23
2019-09-03T01:48:23
null
UTF-8
C++
false
false
21,527
h
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NGLengthUtils_h #define NGLengthUtils_h #include "base/optional.h" #include "third_party/blink/renderer/core/core_export.h" #include "third_party/blink/renderer/core/layout/geometry/logical_size.h" #include "third_party/blink/renderer/core/layout/geometry/physical_size.h" #include "third_party/blink/renderer/core/layout/min_max_size.h" #include "third_party/blink/renderer/core/layout/ng/geometry/ng_box_strut.h" #include "third_party/blink/renderer/core/layout/ng/geometry/ng_fragment_geometry.h" #include "third_party/blink/renderer/core/layout/ng/ng_constraint_space.h" #include "third_party/blink/renderer/core/layout/ng/ng_layout_input_node.h" #include "third_party/blink/renderer/core/style/computed_style.h" #include "third_party/blink/renderer/core/style/computed_style_constants.h" #include "third_party/blink/renderer/platform/text/text_direction.h" #include "third_party/blink/renderer/platform/text/writing_mode.h" namespace blink { class ComputedStyle; class Length; struct MinMaxSizeInput; class NGConstraintSpace; class NGBlockNode; class NGLayoutInputNode; // LengthResolvePhase indicates what type of layout pass we are currently in. // This changes how lengths are resolved. kIntrinsic must be used during the // intrinsic sizes pass, and kLayout must be used during the layout pass. enum class LengthResolvePhase { kIntrinsic, kLayout }; inline bool NeedMinMaxSize(const ComputedStyle& style) { // This check is technically too broad (fill-available does not need intrinsic // size computation) but that's a rare case and only affects performance, not // correctness. return style.LogicalWidth().IsIntrinsic() || style.LogicalMinWidth().IsIntrinsic() || style.LogicalMaxWidth().IsIntrinsic(); } // Whether the caller needs to compute min-content and max-content sizes to // pass them to ResolveMainInlineLength / ComputeInlineSizeForFragment. // If this function returns false, it is safe to pass an empty // MinMaxSize struct to those functions. inline bool NeedMinMaxSize(const NGConstraintSpace& constraint_space, const ComputedStyle& style) { return constraint_space.IsShrinkToFit() || NeedMinMaxSize(style); } // Like NeedMinMaxSize, but for use when calling // ComputeMinAndMaxContentContribution. // Because content contributions are commonly needed by a block's parent, // we also take a writing mode here so we can check this in the parent's // coordinate system. CORE_EXPORT bool NeedMinMaxSizeForContentContribution(WritingMode mode, const ComputedStyle&); // Returns if the given |Length| is unresolvable, e.g. the length is %-based // during the intrinsic phase. Considers 'auto' as resolvable. CORE_EXPORT bool InlineLengthUnresolvable(const Length&, LengthResolvePhase); CORE_EXPORT bool BlockLengthUnresolvable( const NGConstraintSpace&, const Length&, LengthResolvePhase, const LayoutUnit* opt_percentage_resolution_block_size_for_min_max = nullptr); // Resolve means translate a Length to a LayoutUnit. // - |NGConstraintSpace| the information given by the parent, e.g. the // available-size. // - |ComputedStyle| the style of the node. // - |border_padding| the resolved border, and padding of the node. // - |MinMaxSize| is only used when the length is intrinsic (fit-content). // - |Length| is the length to resolve. CORE_EXPORT LayoutUnit ResolveInlineLengthInternal(const NGConstraintSpace&, const ComputedStyle&, const NGBoxStrut& border_padding, const base::Optional<MinMaxSize>&, const Length&); // Same as ResolveInlineLengthInternal, except here |content_size| roughly plays // the part of |MinMaxSize|. CORE_EXPORT LayoutUnit ResolveBlockLengthInternal( const NGConstraintSpace&, const ComputedStyle&, const NGBoxStrut& border_padding, const Length&, LayoutUnit content_size, LengthResolvePhase, const LayoutUnit* opt_percentage_resolution_block_size_for_min_max = nullptr); // Used for resolving min inline lengths, (|ComputedStyle::MinLogicalWidth|). inline LayoutUnit ResolveMinInlineLength( const NGConstraintSpace& constraint_space, const ComputedStyle& style, const NGBoxStrut& border_padding, const base::Optional<MinMaxSize>& min_and_max, const Length& length, LengthResolvePhase phase) { if (LIKELY(length.IsAuto() || InlineLengthUnresolvable(length, phase))) return border_padding.InlineSum(); return ResolveInlineLengthInternal(constraint_space, style, border_padding, min_and_max, length); } // Used for resolving max inline lengths, (|ComputedStyle::MaxLogicalWidth|). inline LayoutUnit ResolveMaxInlineLength( const NGConstraintSpace& constraint_space, const ComputedStyle& style, const NGBoxStrut& border_padding, const base::Optional<MinMaxSize>& min_and_max, const Length& length, LengthResolvePhase phase) { if (LIKELY(length.IsMaxSizeNone() || InlineLengthUnresolvable(length, phase))) return LayoutUnit::Max(); return ResolveInlineLengthInternal(constraint_space, style, border_padding, min_and_max, length); } // Used for resolving main inline lengths, (|ComputedStyle::LogicalWidth|). inline LayoutUnit ResolveMainInlineLength( const NGConstraintSpace& constraint_space, const ComputedStyle& style, const NGBoxStrut& border_padding, const base::Optional<MinMaxSize>& min_and_max, const Length& length) { return ResolveInlineLengthInternal(constraint_space, style, border_padding, min_and_max, length); } // Used for resolving min block lengths, (|ComputedStyle::MinLogicalHeight|). inline LayoutUnit ResolveMinBlockLength( const NGConstraintSpace& constraint_space, const ComputedStyle& style, const NGBoxStrut& border_padding, const Length& length, LayoutUnit content_size, LengthResolvePhase phase, const LayoutUnit* opt_percentage_resolution_block_size_for_min_max = nullptr) { if (LIKELY(length.IsAuto() || length.IsMinContent() || length.IsMaxContent() || length.IsFitContent() || BlockLengthUnresolvable( constraint_space, length, phase, opt_percentage_resolution_block_size_for_min_max))) return border_padding.BlockSum(); return ResolveBlockLengthInternal( constraint_space, style, border_padding, length, content_size, phase, opt_percentage_resolution_block_size_for_min_max); } // Used for resolving max block lengths, (|ComputedStyle::MaxLogicalHeight|). inline LayoutUnit ResolveMaxBlockLength( const NGConstraintSpace& constraint_space, const ComputedStyle& style, const NGBoxStrut& border_padding, const Length& length, LayoutUnit content_size, LengthResolvePhase phase, const LayoutUnit* opt_percentage_resolution_block_size_for_min_max = nullptr) { if (LIKELY(length.IsMaxSizeNone() || length.IsMinContent() || length.IsMaxContent() || length.IsFitContent() || BlockLengthUnresolvable( constraint_space, length, phase, opt_percentage_resolution_block_size_for_min_max))) return LayoutUnit::Max(); return ResolveBlockLengthInternal( constraint_space, style, border_padding, length, content_size, phase, opt_percentage_resolution_block_size_for_min_max); } // Used for resolving main block lengths, (|ComputedStyle::LogicalHeight|). inline LayoutUnit ResolveMainBlockLength( const NGConstraintSpace& constraint_space, const ComputedStyle& style, const NGBoxStrut& border_padding, const Length& length, LayoutUnit content_size, LengthResolvePhase phase, const LayoutUnit* opt_percentage_resolution_block_size_for_min_max = nullptr) { if (UNLIKELY((length.IsPercentOrCalc() || length.IsFillAvailable()) && BlockLengthUnresolvable( constraint_space, length, phase, opt_percentage_resolution_block_size_for_min_max))) return content_size; return ResolveBlockLengthInternal( constraint_space, style, border_padding, length, content_size, phase, opt_percentage_resolution_block_size_for_min_max); } // For the given style and min/max content sizes, computes the min and max // content contribution (https://drafts.csswg.org/css-sizing/#contributions). // This is similar to ComputeInlineSizeForFragment except that it does not // require a constraint space (percentage sizes as well as auto margins compute // to zero) and that an auto inline size resolves to the respective min/max // content size. // Also, the min/max contribution does include the inline margins as well. // Because content contributions are commonly needed by a block's parent, // we also take a writing mode here so we can compute this in the parent's // coordinate system. CORE_EXPORT MinMaxSize ComputeMinAndMaxContentContribution(WritingMode writing_mode, const ComputedStyle&, const NGBoxStrut& border_padding, const base::Optional<MinMaxSize>&); // A version of ComputeMinAndMaxContentContribution that does not require you // to compute the min/max content size of the child. Instead, this function // will compute it if necessary. // |child| is the node of which to compute the min/max content contribution. // Note that if the writing mode of the child is orthogonal to that of the // parent, we'll still return the inline min/max contribution in the writing // mode of the parent (i.e. typically something based on the preferred *block* // size of the child). MinMaxSize ComputeMinAndMaxContentContribution( const ComputedStyle& parent_style, NGLayoutInputNode child, const MinMaxSizeInput&); // Computes the min/max-content size for an out-of-flow positioned node and // returns it, using the cache where possible. ALways computes it in the writing // mode of the node itself. MinMaxSize ComputeMinAndMaxContentSizeForOutOfFlow( const NGConstraintSpace&, NGLayoutInputNode, const NGBoxStrut& border_padding, const MinMaxSizeInput&); // Returns inline size of the node's border box by resolving the computed value // in style.logicalWidth (Length) to a layout unit, adding border and padding, // then constraining the result by the resolved min logical width and max // logical width from the ComputedStyle object. Calls Node::ComputeMinMaxSize // if needed. // |override_minmax_for_test| is provided *solely* for use by unit tests. CORE_EXPORT LayoutUnit ComputeInlineSizeForFragment( const NGConstraintSpace&, NGLayoutInputNode, const NGBoxStrut& border_padding, const MinMaxSize* override_minmax_for_test = nullptr); // Same as ComputeInlineSizeForFragment, but uses height instead of width. CORE_EXPORT LayoutUnit ComputeBlockSizeForFragment(const NGConstraintSpace&, const ComputedStyle&, const NGBoxStrut& border_padding, LayoutUnit content_size); // Computes intrinsic size for replaced elements. CORE_EXPORT LogicalSize ComputeReplacedSize(const NGLayoutInputNode&, const NGConstraintSpace&, const base::Optional<MinMaxSize>&); // Based on available inline size, CSS computed column-width, CSS computed // column-count and CSS used column-gap, return CSS used column-count. CORE_EXPORT int ResolveUsedColumnCount(int computed_count, LayoutUnit computed_size, LayoutUnit used_gap, LayoutUnit available_size); CORE_EXPORT int ResolveUsedColumnCount(LayoutUnit available_size, const ComputedStyle&); // Based on available inline size, CSS computed column-width, CSS computed // column-count and CSS used column-gap, return CSS used column-width. CORE_EXPORT LayoutUnit ResolveUsedColumnInlineSize(int computed_count, LayoutUnit computed_size, LayoutUnit used_gap, LayoutUnit available_size); CORE_EXPORT LayoutUnit ResolveUsedColumnInlineSize(LayoutUnit available_size, const ComputedStyle&); CORE_EXPORT LayoutUnit ResolveUsedColumnGap(LayoutUnit available_size, const ComputedStyle&); // Compute physical margins. CORE_EXPORT NGPhysicalBoxStrut ComputePhysicalMargins(const ComputedStyle&, LayoutUnit percentage_resolution_size); inline NGPhysicalBoxStrut ComputePhysicalMargins( const NGConstraintSpace& constraint_space, const ComputedStyle& style) { LayoutUnit percentage_resolution_size = constraint_space.PercentageResolutionInlineSizeForParentWritingMode(); return ComputePhysicalMargins(style, percentage_resolution_size); } // Compute margins for the specified NGConstraintSpace. CORE_EXPORT NGBoxStrut ComputeMarginsFor(const NGConstraintSpace&, const ComputedStyle&, const NGConstraintSpace& compute_for); inline NGBoxStrut ComputeMarginsFor(const ComputedStyle& child_style, LayoutUnit percentage_resolution_size, WritingMode container_writing_mode, TextDirection container_direction) { return ComputePhysicalMargins(child_style, percentage_resolution_size) .ConvertToLogical(container_writing_mode, container_direction); } // Compute margins for the style owner. inline NGBoxStrut ComputeMarginsForSelf( const NGConstraintSpace& constraint_space, const ComputedStyle& style) { if (!style.MayHaveMargin() || constraint_space.IsAnonymous()) return NGBoxStrut(); LayoutUnit percentage_resolution_size = constraint_space.PercentageResolutionInlineSizeForParentWritingMode(); return ComputePhysicalMargins(style, percentage_resolution_size) .ConvertToLogical(style.GetWritingMode(), style.Direction()); } // Compute line logical margins for the style owner. // // The "line" versions compute line-relative logical values. See NGLineBoxStrut // for more details. inline NGLineBoxStrut ComputeLineMarginsForSelf( const NGConstraintSpace& constraint_space, const ComputedStyle& style) { if (!style.MayHaveMargin() || constraint_space.IsAnonymous()) return NGLineBoxStrut(); LayoutUnit percentage_resolution_size = constraint_space.PercentageResolutionInlineSizeForParentWritingMode(); return ComputePhysicalMargins(style, percentage_resolution_size) .ConvertToLineLogical(style.GetWritingMode(), style.Direction()); } // Compute line logical margins for the constraint space, in the visual order // (always assumes LTR, ignoring the direction) for inline layout algorithm. inline NGLineBoxStrut ComputeLineMarginsForVisualContainer( const NGConstraintSpace& constraint_space, const ComputedStyle& style) { if (!style.MayHaveMargin() || constraint_space.IsAnonymous()) return NGLineBoxStrut(); LayoutUnit percentage_resolution_size = constraint_space.PercentageResolutionInlineSizeForParentWritingMode(); return ComputePhysicalMargins(style, percentage_resolution_size) .ConvertToLineLogical(constraint_space.GetWritingMode(), TextDirection::kLtr); } // Compute margins for a child during the min-max size calculation. CORE_EXPORT NGBoxStrut ComputeMinMaxMargins(const ComputedStyle& parent_style, NGLayoutInputNode child); CORE_EXPORT NGBoxStrut ComputeBorders(const NGConstraintSpace&, const NGLayoutInputNode); CORE_EXPORT NGBoxStrut ComputeBordersForInline(const ComputedStyle& style); inline NGLineBoxStrut ComputeLineBorders( const ComputedStyle& style) { return NGLineBoxStrut(ComputeBordersForInline(style), style.IsFlippedLinesWritingMode()); } CORE_EXPORT NGBoxStrut ComputeBordersForTest(const ComputedStyle& style); CORE_EXPORT NGBoxStrut ComputeIntrinsicPadding(const NGConstraintSpace&, const ComputedStyle&, const NGBoxStrut& scrollbar); CORE_EXPORT NGBoxStrut ComputePadding(const NGConstraintSpace&, const ComputedStyle&); inline NGLineBoxStrut ComputeLinePadding( const NGConstraintSpace& constraint_space, const ComputedStyle& style) { return NGLineBoxStrut(ComputePadding(constraint_space, style), style.IsFlippedLinesWritingMode()); } CORE_EXPORT NGBoxStrut ComputeScrollbars(const NGConstraintSpace&, const NGLayoutInputNode); // Return true if we need to know the inline size of the fragment in order to // calculate its line-left offset. This is the case when we have auto margins, // or when block alignment isn't line-left (e.g. with align!=left, and always in // RTL mode). bool NeedsInlineSizeToResolveLineLeft( const ComputedStyle& style, const ComputedStyle& containing_block_style); // Convert inline margins from computed to used values. This will resolve 'auto' // values and over-constrainedness. This uses the available size from the // constraint space and inline size to compute the margins that are auto, if // any, and adjusts the given NGBoxStrut accordingly. // available_inline_size, inline_size, and margins are all in the // containing_block's writing mode. CORE_EXPORT void ResolveInlineMargins( const ComputedStyle& child_style, const ComputedStyle& containing_block_style, LayoutUnit available_inline_size, LayoutUnit inline_size, NGBoxStrut* margins); // Calculate the adjustment needed for the line's left position, based on // text-align, direction and amount of unused space. CORE_EXPORT LayoutUnit LineOffsetForTextAlign(ETextAlign, TextDirection, LayoutUnit space_left); inline LayoutUnit ConstrainByMinMax(LayoutUnit length, LayoutUnit min, LayoutUnit max) { return std::max(min, std::min(length, max)); } // Calculates the initial (pre-layout) fragment geometry given a node, and a // constraint space. // The "pre-layout" block-size may be indefinite, as we'll only have enough // information to determine this post-layout. CORE_EXPORT NGFragmentGeometry CalculateInitialFragmentGeometry(const NGConstraintSpace&, const NGBlockNode&); // Similar to |CalculateInitialFragmentGeometry| however will only calculate // the border, scrollbar, and padding (resolving percentages to zero). CORE_EXPORT NGFragmentGeometry CalculateInitialMinMaxFragmentGeometry(const NGConstraintSpace&, const NGBlockNode&); // Shrink and return the available size by an inset. This may e.g. be used to // convert from border-box to content-box size. Indefinite block size is // allowed, in which case the inset will be ignored for block size. LogicalSize ShrinkAvailableSize(LogicalSize size, const NGBoxStrut& inset); // Calculates the percentage resolution size that children of the node should // use. LogicalSize CalculateChildPercentageSize( const NGConstraintSpace&, const NGBlockNode node, const LogicalSize& child_available_size); // Calculates the percentage resolution size that replaced children of the node // should use. LogicalSize CalculateReplacedChildPercentageSize( const NGConstraintSpace&, const NGBlockNode node, LogicalSize border_box_size, const NGBoxStrut& border_scrollbar_padding, const NGBoxStrut& border_padding); LayoutUnit CalculateChildPercentageBlockSizeForMinMax( const NGConstraintSpace& constraint_space, const NGBlockNode node, const NGBoxStrut& border_padding, LayoutUnit parent_percentage_block_size); // The following function clamps the calculated size based on the node // requirements. Specifically, this adjusts the size based on size containment // and display locking status. LayoutUnit ClampIntrinsicBlockSize(const NGBlockNode&, const NGBoxStrut& border_scrollbar_padding, LayoutUnit current_intrinsic_block_size); // This function checks if the inline size of this node has to be calculated // without considering children. If so, it returns the calculated size. // Otherwise, it returns base::nullopt and the caller has to compute the size // itself. base::Optional<MinMaxSize> CalculateMinMaxSizesIgnoringChildren( const NGBlockNode&, const NGBoxStrut& border_scrollbar_padding, NGMinMaxSizeType); } // namespace blink #endif // NGLengthUtils_h
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
9862978843588397286bd656aa76aa761ea392ba
0d1c82ab85d11f7476e6c539baaa50143ebd3084
/SII-2020/SII-2020/FST.cpp
6af0ade63d8bdea531b65f94627eeb99091c8950
[]
no_license
Selevn/SII-2020
4f7a047a83afee4463d84a8220d661306b3d562b
e7a5df5d3131117ce0d8a05fba16e6a383205165
refs/heads/master
2023-02-07T21:08:43.665487
2020-12-14T18:17:45
2020-12-14T18:17:45
314,994,906
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
41,003
cpp
#include "FST.h" #include "Error.h" #include <cstdlib> #include <iomanip> #include <vector> #include "LT.h" #include "IT.h" #include <stack> struct libfuncs { std::string name; IT::IDDATATYPE params[255]; int parcount = 0; IT::IDDATATYPE retval; }; FST::RELATION::RELATION(char c, short ns) { symbol = c; nnode = ns; } FST::NODE::NODE() //по умолчанию { n_relation = 0; RELATION* relations = NULL; }; FST::NODE::NODE(short n, RELATION rel, ...) //с параметрами { n_relation = n; RELATION* p = &rel; relations = new RELATION[n]; for (short i = 0; i < n; i++) relations[i] = p[i]; }; FST::FST::FST(char* s, short ns, NODE n, ...) { string = s; nstates = ns; nodes = new NODE[ns]; NODE* p = &n; for (int k = 0; k < ns; k++) nodes[k] = p[k]; rstates = new short[nstates]; rstates[0] = 0; position = -1; }; bool step(FST::FST& fst, short*& rstates, int length) //один шаг автомата { bool rc = false; bool contFlag = false; std::swap(rstates, fst.rstates); // смена массивов for (short i = 0; i < fst.nstates; i++) //цикл по всем состояниям { if (rstates[i] == fst.position) //если возможная позиция текущая равна текущей позиции for (short j = 0; j < fst.nodes[i].n_relation; j++) //до количеста инцендентных ребер { if (fst.nodes[i].relations[j].symbol == fst.string[fst.position]) //если нашли такой символ { if (fst.position == length)//если последний символ в строке, то ищем есть ли второй узел(второй узел для выхода) { contFlag = true; continue; } else { fst.rstates[fst.nodes[i].relations[j].nnode] = fst.position + 1; rc = true; } }; }; if ((rc == false) && contFlag) //если не нашли второй узел то возвращаемся к первому { for (short j = 0; j < fst.nodes[i].n_relation; j++) //до количеста инцендентных ребер { if (fst.nodes[i].relations[j].symbol == fst.string[fst.position]) //если нашли такой символ { fst.rstates[fst.nodes[i].relations[j].nnode] = fst.position + 1; rc = true; }; }; } }; return rc; } struct col { public: col(void) { column = 1; } void reset_col() { column = 1; } void set_col(int a) { column = a; } int get_col() { return column; } private: int column; } colum; bool FST::execute(FST& fst) //выполнить распознование цепочки { fst.rstates[0] = 0; fst.position = -1; colum.reset_col(); short* rstates = new short[fst.nstates];//выделяем память по размеру memset(rstates, 0xff, sizeof(short) * fst.nstates); //инициализируем пустотой (ff) short lstring = strlen(fst.string); //длина цепочки bool rc = true; for (short i = 0; i < lstring && rc; i++) //по длине цепочки { fst.position++; //продвинули позицию rc = step(fst, rstates, lstring); //один шаг автомата colum.set_col(i); } delete[] rstates; return (rc ? (fst.rstates[fst.nstates - 1] == lstring) : rc); } void FST::LexAnalyzer(In::IN in, Out::OUT out, Log::LOG log, LT::LexTable& lextable, IT::IdTable& idtable) //выполнить распознование цепочки { libfuncs libs[4]; int libslen = 3; libs[0].name = "random"; libs[0].params[0] = IT::INT; libs[0].parcount = 1; libs[0].retval = IT::INT; libs[1].name = "ord"; libs[1].params[0] = IT::CHR; libs[1].parcount = 1; libs[1].retval = IT::INT; libs[2].name = "chr"; libs[2].params[0] = IT::INT; libs[2].parcount = 1; libs[2].retval = IT::CHR; char* str = new char[255]; #pragma region "FSTS" FST l_integer( str, 5, //количество состояний NODE(1, RELATION('u', 1)), NODE(1, RELATION('i', 2)), NODE(1, RELATION('n', 3)), NODE(1, RELATION('t', 4)), NODE() ); FST l_until( str, 6, //количество состояний NODE(1, RELATION('w', 1)), NODE(1, RELATION('h', 2)), NODE(1, RELATION('i', 3)), NODE(1, RELATION('l', 4)), NODE(1, RELATION('e', 5)), NODE() ); FST l_if( str, 3, //количество состояний NODE(1, RELATION('o', 1)), NODE(1, RELATION('n', 2)), NODE() ); FST l_export( str, 7, //количество состояний NODE(1, RELATION('e', 1)), NODE(1, RELATION('x', 2)), NODE(1, RELATION('t', 3)), NODE(1, RELATION('e', 4)), NODE(1, RELATION('r', 5)), NODE(1, RELATION('n', 6)), NODE() ); FST l_str( str, 4, //количество состояний NODE(1, RELATION('s', 1)), NODE(1, RELATION('t', 2)), NODE(1, RELATION('r', 3)), NODE() ); FST l_numberLiteral( str, 2, //количество состояний NODE(20, RELATION('0', 0), RELATION('1', 0), RELATION('2', 0), RELATION('3', 0), RELATION('4', 0), RELATION('5', 0), RELATION('6', 0), RELATION('7', 0), RELATION('8', 0), RELATION('9', 0), RELATION('0', 1), RELATION('1', 1), RELATION('2', 1), RELATION('3', 1), RELATION('4', 1), RELATION('5', 1), RELATION('6', 1), RELATION('7', 1), RELATION('8', 1), RELATION('9', 1) ), NODE() ); FST l_charLiteral( str, 4, NODE(1, RELATION('\'', 1)), NODE(256, RELATION((char)39, 2), RELATION((char)0, 2), RELATION((char)1, 2), RELATION((char)2, 2), RELATION((char)3, 2), RELATION((char)4, 2), RELATION((char)5, 2), RELATION((char)6, 2), RELATION((char)7, 2), RELATION((char)8, 2), RELATION((char)9, 2), RELATION((char)10, 2), RELATION((char)11, 2), RELATION((char)12, 2), RELATION((char)13, 2), RELATION((char)14, 2), RELATION((char)15, 2), RELATION((char)16, 2), RELATION((char)17, 2), RELATION((char)18, 2), RELATION((char)19, 2), RELATION((char)20, 2), RELATION((char)21, 2), RELATION((char)22, 2), RELATION((char)23, 2), RELATION((char)24, 2), RELATION((char)25, 2), RELATION((char)26, 2), RELATION((char)27, 2), RELATION((char)28, 2), RELATION((char)29, 2), RELATION((char)30, 2), RELATION((char)31, 2), RELATION((char)32, 2), RELATION((char)33, 2), RELATION((char)34, 2), RELATION((char)35, 2), RELATION((char)36, 2), RELATION((char)37, 2), RELATION((char)38, 2), RELATION((char)40, 2), RELATION((char)41, 2), RELATION((char)42, 2), RELATION((char)43, 2), RELATION((char)44, 2), RELATION((char)45, 2), RELATION((char)46, 2), RELATION((char)47, 2), RELATION((char)48, 2), RELATION((char)49, 2), RELATION((char)50, 2), RELATION((char)51, 2), RELATION((char)52, 2), RELATION((char)53, 2), RELATION((char)54, 2), RELATION((char)55, 2), RELATION((char)56, 2), RELATION((char)57, 2), RELATION((char)58, 2), RELATION((char)59, 2), RELATION((char)60, 2), RELATION((char)61, 2), RELATION((char)62, 2), RELATION((char)63, 2), RELATION((char)64, 2), RELATION((char)65, 2), RELATION((char)66, 2), RELATION((char)67, 2), RELATION((char)68, 2), RELATION((char)69, 2), RELATION((char)70, 2), RELATION((char)71, 2), RELATION((char)72, 2), RELATION((char)73, 2), RELATION((char)74, 2), RELATION((char)75, 2), RELATION((char)76, 2), RELATION((char)77, 2), RELATION((char)78, 2), RELATION((char)79, 2), RELATION((char)80, 2), RELATION((char)81, 2), RELATION((char)82, 2), RELATION((char)83, 2), RELATION((char)84, 2), RELATION((char)85, 2), RELATION((char)86, 2), RELATION((char)87, 2), RELATION((char)88, 2), RELATION((char)89, 2), RELATION((char)90, 2), RELATION((char)91, 2), RELATION((char)92, 2), RELATION((char)93, 2), RELATION((char)94, 2), RELATION((char)95, 2), RELATION((char)96, 2), RELATION((char)97, 2), RELATION((char)98, 2), RELATION((char)99, 2), RELATION((char)100, 2), RELATION((char)101, 2), RELATION((char)102, 2), RELATION((char)103, 2), RELATION((char)104, 2), RELATION((char)105, 2), RELATION((char)106, 2), RELATION((char)107, 2), RELATION((char)108, 2), RELATION((char)109, 2), RELATION((char)110, 2), RELATION((char)111, 2), RELATION((char)112, 2), RELATION((char)113, 2), RELATION((char)114, 2), RELATION((char)115, 2), RELATION((char)116, 2), RELATION((char)117, 2), RELATION((char)118, 2), RELATION((char)119, 2), RELATION((char)120, 2), RELATION((char)121, 2), RELATION((char)122, 2), RELATION((char)123, 2), RELATION((char)124, 2), RELATION((char)125, 2), RELATION((char)126, 2), RELATION((char)127, 2), RELATION((char)128, 2), RELATION((char)129, 2), RELATION((char)130, 2), RELATION((char)131, 2), RELATION((char)132, 2), RELATION((char)133, 2), RELATION((char)134, 2), RELATION((char)135, 2), RELATION((char)136, 2), RELATION((char)137, 2), RELATION((char)138, 2), RELATION((char)139, 2), RELATION((char)140, 2), RELATION((char)141, 2), RELATION((char)142, 2), RELATION((char)143, 2), RELATION((char)144, 2), RELATION((char)145, 2), RELATION((char)146, 2), RELATION((char)147, 2), RELATION((char)148, 2), RELATION((char)149, 2), RELATION((char)150, 2), RELATION((char)151, 2), RELATION((char)152, 2), RELATION((char)153, 2), RELATION((char)154, 2), RELATION((char)155, 2), RELATION((char)156, 2), RELATION((char)157, 2), RELATION((char)158, 2), RELATION((char)159, 2), RELATION((char)160, 2), RELATION((char)161, 2), RELATION((char)162, 2), RELATION((char)163, 2), RELATION((char)164, 2), RELATION((char)165, 2), RELATION((char)166, 2), RELATION((char)167, 2), RELATION((char)168, 2), RELATION((char)169, 2), RELATION((char)170, 2), RELATION((char)171, 2), RELATION((char)172, 2), RELATION((char)173, 2), RELATION((char)174, 2), RELATION((char)175, 2), RELATION((char)176, 2), RELATION((char)177, 2), RELATION((char)178, 2), RELATION((char)179, 2), RELATION((char)180, 2), RELATION((char)181, 2), RELATION((char)182, 2), RELATION((char)183, 2), RELATION((char)184, 2), RELATION((char)185, 2), RELATION((char)186, 2), RELATION((char)187, 2), RELATION((char)188, 2), RELATION((char)189, 2), RELATION((char)190, 2), RELATION((char)191, 2), RELATION((char)192, 2), RELATION((char)193, 2), RELATION((char)194, 2), RELATION((char)195, 2), RELATION((char)196, 2), RELATION((char)197, 2), RELATION((char)198, 2), RELATION((char)199, 2), RELATION((char)200, 2), RELATION((char)201, 2), RELATION((char)202, 2), RELATION((char)203, 2), RELATION((char)204, 2), RELATION((char)205, 2), RELATION((char)206, 2), RELATION((char)207, 2), RELATION((char)208, 2), RELATION((char)209, 2), RELATION((char)210, 2), RELATION((char)211, 2), RELATION((char)212, 2), RELATION((char)213, 2), RELATION((char)214, 2), RELATION((char)215, 2), RELATION((char)216, 2), RELATION((char)217, 2), RELATION((char)218, 2), RELATION((char)219, 2), RELATION((char)220, 2), RELATION((char)221, 2), RELATION((char)222, 2), RELATION((char)223, 2), RELATION((char)224, 2), RELATION((char)225, 2), RELATION((char)226, 2), RELATION((char)227, 2), RELATION((char)228, 2), RELATION((char)229, 2), RELATION((char)230, 2), RELATION((char)231, 2), RELATION((char)232, 2), RELATION((char)233, 2), RELATION((char)234, 2), RELATION((char)235, 2), RELATION((char)236, 2), RELATION((char)237, 2), RELATION((char)238, 2), RELATION((char)239, 2), RELATION((char)240, 2), RELATION((char)241, 2), RELATION((char)242, 2), RELATION((char)243, 2), RELATION((char)244, 2), RELATION((char)245, 2), RELATION((char)246, 2), RELATION((char)247, 2), RELATION((char)248, 2), RELATION((char)249, 2), RELATION((char)250, 2), RELATION((char)251, 2), RELATION((char)252, 2), RELATION((char)253, 2), RELATION((char)254, 2), RELATION((char)255, 2)), NODE(1, RELATION('\'', 3)), NODE()); FST l_stringLiteral( str, 3, //количество состояний NODE(1, RELATION('\"', 1)), NODE(256, RELATION('\"', 2), RELATION((char)0, 1), RELATION((char)1, 1), RELATION((char)2, 1), RELATION((char)3, 1), RELATION((char)4, 1), RELATION((char)5, 1), RELATION((char)6, 1), RELATION((char)7, 1), RELATION((char)8, 1), RELATION((char)9, 1), RELATION((char)10, 1), RELATION((char)11, 1), RELATION((char)12, 1), RELATION((char)13, 1), RELATION((char)14, 1), RELATION((char)15, 1), RELATION((char)16, 1), RELATION((char)17, 1), RELATION((char)18, 1), RELATION((char)19, 1), RELATION((char)20, 1), RELATION((char)21, 1), RELATION((char)22, 1), RELATION((char)23, 1), RELATION((char)24, 1), RELATION((char)25, 1), RELATION((char)26, 1), RELATION((char)27, 1), RELATION((char)28, 1), RELATION((char)29, 1), RELATION((char)30, 1), RELATION((char)31, 1), RELATION((char)32, 1), RELATION((char)33, 1), RELATION((char)35, 1), RELATION((char)36, 1), RELATION((char)37, 1), RELATION((char)38, 1), RELATION((char)39, 1), RELATION((char)40, 1), RELATION((char)41, 1), RELATION((char)42, 1), RELATION((char)43, 1), RELATION((char)44, 1), RELATION((char)45, 1), RELATION((char)46, 1), RELATION((char)47, 1), RELATION((char)48, 1), RELATION((char)49, 1), RELATION((char)50, 1), RELATION((char)51, 1), RELATION((char)52, 1), RELATION((char)53, 1), RELATION((char)54, 1), RELATION((char)55, 1), RELATION((char)56, 1), RELATION((char)57, 1), RELATION((char)58, 1), RELATION((char)59, 1), RELATION((char)60, 1), RELATION((char)61, 1), RELATION((char)62, 1), RELATION((char)63, 1), RELATION((char)64, 1), RELATION((char)65, 1), RELATION((char)66, 1), RELATION((char)67, 1), RELATION((char)68, 1), RELATION((char)69, 1), RELATION((char)70, 1), RELATION((char)71, 1), RELATION((char)72, 1), RELATION((char)73, 1), RELATION((char)74, 1), RELATION((char)75, 1), RELATION((char)76, 1), RELATION((char)77, 1), RELATION((char)78, 1), RELATION((char)79, 1), RELATION((char)80, 1), RELATION((char)81, 1), RELATION((char)82, 1), RELATION((char)83, 1), RELATION((char)84, 1), RELATION((char)85, 1), RELATION((char)86, 1), RELATION((char)87, 1), RELATION((char)88, 1), RELATION((char)89, 1), RELATION((char)90, 1), RELATION((char)91, 1), RELATION((char)92, 1), RELATION((char)93, 1), RELATION((char)94, 1), RELATION((char)95, 1), RELATION((char)96, 1), RELATION((char)97, 1), RELATION((char)98, 1), RELATION((char)99, 1), RELATION((char)100, 1), RELATION((char)101, 1), RELATION((char)102, 1), RELATION((char)103, 1), RELATION((char)104, 1), RELATION((char)105, 1), RELATION((char)106, 1), RELATION((char)107, 1), RELATION((char)108, 1), RELATION((char)109, 1), RELATION((char)110, 1), RELATION((char)111, 1), RELATION((char)112, 1), RELATION((char)113, 1), RELATION((char)114, 1), RELATION((char)115, 1), RELATION((char)116, 1), RELATION((char)117, 1), RELATION((char)118, 1), RELATION((char)119, 1), RELATION((char)120, 1), RELATION((char)121, 1), RELATION((char)122, 1), RELATION((char)123, 1), RELATION((char)124, 1), RELATION((char)125, 1), RELATION((char)126, 1), RELATION((char)127, 1), RELATION((char)128, 1), RELATION((char)129, 1), RELATION((char)130, 1), RELATION((char)131, 1), RELATION((char)132, 1), RELATION((char)133, 1), RELATION((char)134, 1), RELATION((char)135, 1), RELATION((char)136, 1), RELATION((char)137, 1), RELATION((char)138, 1), RELATION((char)139, 1), RELATION((char)140, 1), RELATION((char)141, 1), RELATION((char)142, 1), RELATION((char)143, 1), RELATION((char)144, 1), RELATION((char)145, 1), RELATION((char)146, 1), RELATION((char)147, 1), RELATION((char)148, 1), RELATION((char)149, 1), RELATION((char)150, 1), RELATION((char)151, 1), RELATION((char)152, 1), RELATION((char)153, 1), RELATION((char)154, 1), RELATION((char)155, 1), RELATION((char)156, 1), RELATION((char)157, 1), RELATION((char)158, 1), RELATION((char)159, 1), RELATION((char)160, 1), RELATION((char)161, 1), RELATION((char)162, 1), RELATION((char)163, 1), RELATION((char)164, 1), RELATION((char)165, 1), RELATION((char)166, 1), RELATION((char)167, 1), RELATION((char)168, 1), RELATION((char)169, 1), RELATION((char)170, 1), RELATION((char)171, 1), RELATION((char)172, 1), RELATION((char)173, 1), RELATION((char)174, 1), RELATION((char)175, 1), RELATION((char)176, 1), RELATION((char)177, 1), RELATION((char)178, 1), RELATION((char)179, 1), RELATION((char)180, 1), RELATION((char)181, 1), RELATION((char)182, 1), RELATION((char)183, 1), RELATION((char)184, 1), RELATION((char)185, 1), RELATION((char)186, 1), RELATION((char)187, 1), RELATION((char)188, 1), RELATION((char)189, 1), RELATION((char)190, 1), RELATION((char)191, 1), RELATION((char)192, 1), RELATION((char)193, 1), RELATION((char)194, 1), RELATION((char)195, 1), RELATION((char)196, 1), RELATION((char)197, 1), RELATION((char)198, 1), RELATION((char)199, 1), RELATION((char)200, 1), RELATION((char)201, 1), RELATION((char)202, 1), RELATION((char)203, 1), RELATION((char)204, 1), RELATION((char)205, 1), RELATION((char)206, 1), RELATION((char)207, 1), RELATION((char)208, 1), RELATION((char)209, 1), RELATION((char)210, 1), RELATION((char)211, 1), RELATION((char)212, 1), RELATION((char)213, 1), RELATION((char)214, 1), RELATION((char)215, 1), RELATION((char)216, 1), RELATION((char)217, 1), RELATION((char)218, 1), RELATION((char)219, 1), RELATION((char)220, 1), RELATION((char)221, 1), RELATION((char)222, 1), RELATION((char)223, 1), RELATION((char)224, 1), RELATION((char)225, 1), RELATION((char)226, 1), RELATION((char)227, 1), RELATION((char)228, 1), RELATION((char)229, 1), RELATION((char)230, 1), RELATION((char)231, 1), RELATION((char)232, 1), RELATION((char)233, 1), RELATION((char)234, 1), RELATION((char)235, 1), RELATION((char)236, 1), RELATION((char)237, 1), RELATION((char)238, 1), RELATION((char)239, 1), RELATION((char)240, 1), RELATION((char)241, 1), RELATION((char)242, 1), RELATION((char)243, 1), RELATION((char)244, 1), RELATION((char)245, 1), RELATION((char)246, 1), RELATION((char)247, 1), RELATION((char)248, 1), RELATION((char)249, 1), RELATION((char)250, 1), RELATION((char)251, 1), RELATION((char)252, 1), RELATION((char)253, 1), RELATION((char)254, 1), RELATION((char)255, 1) ), NODE() ); FST l_itendificator( str, 3, //количество состояний NODE(106, RELATION('a', 1), RELATION('b', 1), RELATION('c', 1), RELATION('d', 1), RELATION('e', 1), RELATION('f', 1), RELATION('g', 1), RELATION('h', 1), RELATION('i', 1), RELATION('j', 1), RELATION('k', 1), RELATION('l', 1), RELATION('m', 1), RELATION('n', 1), RELATION('o', 1), RELATION('p', 1), RELATION('q', 1), RELATION('r', 1), RELATION('s', 1), RELATION('t', 1), RELATION('u', 1), RELATION('v', 1), RELATION('w', 1), RELATION('x', 1), RELATION('y', 1), RELATION('z', 1), RELATION('A', 1), RELATION('B', 1), RELATION('C', 1), RELATION('D', 1), RELATION('E', 1), RELATION('F', 1), RELATION('G', 1), RELATION('H', 1), RELATION('I', 1), RELATION('J', 1), RELATION('K', 1), RELATION('L', 1), RELATION('M', 1), RELATION('N', 1), RELATION('O', 1), RELATION('P', 1), RELATION('Q', 1), RELATION('R', 1), RELATION('S', 1), RELATION('T', 1), RELATION('U', 1), RELATION('V', 1), RELATION('W', 1), RELATION('X', 1), RELATION('Y', 1), RELATION('Z', 1), RELATION('_', 1), RELATION('a', 2), RELATION('b', 2), RELATION('c', 2), RELATION('d', 2), RELATION('e', 2), RELATION('f', 2), RELATION('g', 2), RELATION('h', 2), RELATION('i', 2), RELATION('j', 2), RELATION('k', 2), RELATION('l', 2), RELATION('m', 2), RELATION('n', 2), RELATION('o', 2), RELATION('p', 2), RELATION('q', 2), RELATION('r', 2), RELATION('s', 2), RELATION('t', 2), RELATION('u', 2), RELATION('v', 2), RELATION('w', 2), RELATION('x', 2), RELATION('y', 2), RELATION('z', 2), RELATION('A', 2), RELATION('B', 2), RELATION('C', 2), RELATION('D', 2), RELATION('E', 2), RELATION('F', 2), RELATION('G', 2), RELATION('H', 2), RELATION('I', 2), RELATION('J', 2), RELATION('K', 2), RELATION('L', 2), RELATION('M', 2), RELATION('N', 2), RELATION('O', 2), RELATION('P', 2), RELATION('Q', 2), RELATION('R', 2), RELATION('S', 2), RELATION('T', 2), RELATION('U', 2), RELATION('V', 2), RELATION('W', 2), RELATION('X', 2), RELATION('Y', 2), RELATION('Z', 2), RELATION('_', 2) ), NODE(126, RELATION('a', 1), RELATION('b', 1), RELATION('c', 1), RELATION('d', 1), RELATION('e', 1), RELATION('f', 1), RELATION('g', 1), RELATION('h', 1), RELATION('i', 1), RELATION('j', 1), RELATION('k', 1), RELATION('l', 1), RELATION('m', 1), RELATION('n', 1), RELATION('o', 1), RELATION('p', 1), RELATION('q', 1), RELATION('r', 1), RELATION('s', 1), RELATION('t', 1), RELATION('u', 1), RELATION('v', 1), RELATION('w', 1), RELATION('x', 1), RELATION('y', 1), RELATION('z', 1), RELATION('A', 1), RELATION('B', 1), RELATION('C', 1), RELATION('D', 1), RELATION('E', 1), RELATION('F', 1), RELATION('G', 1), RELATION('H', 1), RELATION('I', 1), RELATION('J', 1), RELATION('K', 1), RELATION('L', 1), RELATION('M', 1), RELATION('N', 1), RELATION('O', 1), RELATION('P', 1), RELATION('Q', 1), RELATION('R', 1), RELATION('S', 1), RELATION('T', 1), RELATION('U', 1), RELATION('V', 1), RELATION('W', 1), RELATION('X', 1), RELATION('Y', 1), RELATION('Z', 1), RELATION('_', 1), RELATION('0', 1), RELATION('1', 1), RELATION('2', 1), RELATION('3', 1), RELATION('4', 1), RELATION('5', 1), RELATION('6', 1), RELATION('7', 1), RELATION('8', 1), RELATION('9', 1), RELATION('a', 2), RELATION('b', 2), RELATION('c', 2), RELATION('d', 2), RELATION('e', 2), RELATION('f', 2), RELATION('g', 2), RELATION('h', 2), RELATION('i', 2), RELATION('j', 2), RELATION('k', 2), RELATION('l', 2), RELATION('m', 2), RELATION('n', 2), RELATION('o', 2), RELATION('p', 2), RELATION('q', 2), RELATION('r', 2), RELATION('s', 2), RELATION('t', 2), RELATION('u', 2), RELATION('v', 2), RELATION('w', 2), RELATION('x', 2), RELATION('y', 2), RELATION('z', 2), RELATION('A', 2), RELATION('B', 2), RELATION('C', 2), RELATION('D', 2), RELATION('E', 2), RELATION('F', 2), RELATION('G', 2), RELATION('H', 2), RELATION('I', 2), RELATION('J', 2), RELATION('K', 2), RELATION('L', 2), RELATION('M', 2), RELATION('N', 2), RELATION('O', 2), RELATION('P', 2), RELATION('Q', 2), RELATION('R', 2), RELATION('S', 2), RELATION('T', 2), RELATION('U', 2), RELATION('V', 2), RELATION('W', 2), RELATION('X', 2), RELATION('Y', 2), RELATION('Z', 2), RELATION('_', 2), RELATION('0', 2), RELATION('1', 2), RELATION('2', 2), RELATION('3', 2), RELATION('4', 2), RELATION('5', 2), RELATION('6', 2), RELATION('7', 2), RELATION('8', 2), RELATION('9', 2) ), NODE() ); FST l_string( str, 5, //количество состояний NODE(1, RELATION('c', 1)), NODE(1, RELATION('h', 2)), NODE(1, RELATION('a', 3)), NODE(1, RELATION('r', 4)), NODE() ); FST l_function( str, 5, //количество состояний NODE(1, RELATION('f', 1)), NODE(1, RELATION('u', 2)), NODE(1, RELATION('n', 3)), NODE(1, RELATION('c', 4)), NODE() ); FST l_declare( str, 5, //количество состояний NODE(1, RELATION('b', 1)), NODE(1, RELATION('i', 2)), NODE(1, RELATION('n', 3)), NODE(1, RELATION('d', 4)), NODE() ); FST l_return( str, 5, //количество состояний NODE(1, RELATION('s', 1)), NODE(1, RELATION('t', 2)), NODE(1, RELATION('o', 3)), NODE(1, RELATION('p', 4)), NODE() ); FST l_printi( str, 7, //количество состояний NODE(1, RELATION('o', 1)), NODE(1, RELATION('u', 2)), NODE(1, RELATION('t', 3)), NODE(1, RELATION('p', 4)), NODE(1, RELATION('u', 5)), NODE(1, RELATION('t', 6)), NODE() ); FST l_prints( str, 5, //количество состояний NODE(1, RELATION('s', 1)), NODE(1, RELATION('a', 2)), NODE(1, RELATION('y', 3)), NODE(1, RELATION('s', 4)), NODE() ); FST l_main( str, 3, //количество состояний NODE(1, RELATION('g', 1)), NODE(1, RELATION('o', 2)), NODE() ); FST l_semicolon( str, 2, //количество состояний NODE(1, RELATION(';', 1)), NODE() ); FST l_comma( str, 2, //количество состояний NODE(1, RELATION(',', 1)), NODE() ); FST l_braceleft( str, 2, //количество состояний NODE(1, RELATION('{', 1)), NODE() ); FST l_braceright( str, 2, //количество состояний NODE(1, RELATION('}', 1)), NODE() ); FST l_lefthesis( str, 2, //количество состояний NODE(1, RELATION('(', 1)), NODE() ); FST l_cycleStart( str, 2, //количество состояний NODE(1, RELATION('[', 1)), NODE() ); FST l_cycleEnd( str, 2, //количество состояний NODE(1, RELATION(']', 1)), NODE() ); FST l_righthesis( str, 2, //количество состояний NODE(1, RELATION(')', 1)), NODE() ); FST l_verb( str, 2, //количество состояний NODE(8, RELATION('+', 1), RELATION('-', 1), RELATION('*', 1), RELATION('/', 1),RELATION(':', 1),RELATION('\\', 1), RELATION('%', 1),RELATION('=', 1)), NODE() ); FST l_boolVerb( str, 2, //количество состояний NODE(4, RELATION('^',1), RELATION('<',1), RELATION('>',1), RELATION('&',1)), NODE() ); #pragma endregion #pragma region "Структура checker и её массив автоматов" struct Checker { FST* chain; IT::IDDATATYPE iddatatype; char lexName; Checker(FST* f, char c, IT::IDDATATYPE t) { chain = f; lexName = c; iddatatype = t; } }; Checker checkArr[] = { Checker(&l_integer,LEX_INTEGER,IT::INT), Checker(&l_string,LEX_STRING,IT::CHR), Checker(&l_str,LEX_CHAR,IT::STR), Checker(&l_function,LEX_FUNCTION,(IT::IDDATATYPE)FALSYNUMBER), Checker(&l_declare,LEX_DECLARE,(IT::IDDATATYPE)FALSYNUMBER), Checker(&l_until,LEX_UNTIL,(IT::IDDATATYPE)FALSYNUMBER), Checker(&l_if,LEX_IF,(IT::IDDATATYPE)FALSYNUMBER), Checker(&l_return,LEX_RETURN,(IT::IDDATATYPE)FALSYNUMBER), Checker(&l_export,LEX_EXPORT,(IT::IDDATATYPE)FALSYNUMBER), Checker(&l_main,LEX_MAIN,(IT::IDDATATYPE)FALSYNUMBER), // Checker(&l_printi,LEX_PRINT,(IT::IDDATATYPE)FALSYNUMBER), Checker(&l_braceleft,LEX_LEFTBRACE,(IT::IDDATATYPE)FALSYNUMBER), Checker(&l_braceright,LEX_RIGHTBRACE,(IT::IDDATATYPE)FALSYNUMBER), Checker(&l_lefthesis,LEX_LEFTHESIS,(IT::IDDATATYPE)FALSYNUMBER), Checker(&l_righthesis,LEX_RIGHTHESIS,(IT::IDDATATYPE)FALSYNUMBER), Checker(&l_cycleStart,LEX_LEFT_SQUAREBRACE,(IT::IDDATATYPE)FALSYNUMBER), Checker(&l_cycleEnd,LEX_RIGHT_SQUAREBRACE,(IT::IDDATATYPE)FALSYNUMBER), Checker(&l_comma,LEX_COMMA,(IT::IDDATATYPE)FALSYNUMBER), Checker(&l_semicolon,LEX_SEMICOLON,(IT::IDDATATYPE)FALSYNUMBER), Checker(&l_verb,LEX_PLUS,(IT::IDDATATYPE)FALSYNUMBER), // Checker(&l_boolVerb,LEX_BOOL_OPERATOR,(IT::IDDATATYPE)FALSYNUMBER), Checker(&l_itendificator,LEX_ID,(IT::IDDATATYPE)FALSYNUMBER), Checker(&l_numberLiteral,LEX_LITERAL,IT::INT), Checker(&l_stringLiteral,LEX_LITERAL,IT::STR), Checker(&l_charLiteral,LEX_LITERAL,IT::CHR), //len = 22 }; const int checkArrLen = 25; #pragma endregion #pragma region "Флаги" std::string scopeName; std::vector <std::string> scopeStack; int literalCount = 0; scopeStack.push_back("\0"); int scopeCount = 0; int scopeNumber = 0; // aka currentScope int openedBrace = 0; bool isDeclare = false; bool isExported = false; bool isRequireBodyFunc = false; bool isMain = false; bool isFunction = false; bool isFunctionName = false; bool isFunctionParam = false; bool isParametr = false; bool isLiteral = false; bool wasMain = false; bool isBoleanExpression = false; int hesisCounter = 0; IT::IDDATATYPE dataType = (IT::IDDATATYPE)FALSYNUMBER; IT::IDTYPE type = (IT::IDTYPE)FALSYNUMBER; #pragma endregion int libPos = 0; std::stack<IT::IDDATATYPE> params; bool parmStackShouldWrite = false; int sizze = in.lexems.size(); #pragma region "перебор" for (int i = 0; i < sizze; i++) { In::lexem lex = in.lexems.front(); in.lexems.pop_front(); int len = strlen((const char*)(lex.lexem)); //длина строки ktrctvs #pragma region "запись лексемы в str" for (int k = 0; k < len; k++) { str[k] = lex.lexem[k]; } str[len] = '\0'; #pragma endregion bool executedFlag = false; // флаг окончания перебора цепочек for (int j = 0; j < checkArrLen; j++) { if (execute(*checkArr[j].chain)) { executedFlag = true; #pragma region "Установка флага" LT::Entry lexTableObject(checkArr[j].lexName, lex.line,lex.col, 0xffffffff); //нет until (уже есть) //проверяем что за лексема switch (checkArr[j].lexName) { //если встретили declare case LEX_DECLARE: { isDeclare = true; type = IT::V; break; } case LEX_UNTIL: { isBoleanExpression = true; break; } case LEX_BOOL_OPERATOR: { lexTableObject.lexema = LEX_BOOL_OPERATOR; break; } //если встретили uint/symbol case LEX_TYPE: { if (checkArr[j].iddatatype == IT::INT) { dataType = IT::INT; } else if (checkArr[j].iddatatype == IT::STR) { dataType = IT::STR; } else if (checkArr[j].iddatatype == IT::CHR) { dataType = IT::CHR; } else { //дропай ошибку dataType = (IT::IDDATATYPE)FALSYNUMBER; } break; } //функция case LEX_FUNCTION: { type = IT::F; break; } //вывод case LEX_PRINT: { break; } //итендификатор case LEX_ID: { //область видимости if (strlen(str) > ID_CURRENT_MAXSIZE) { str[ID_CURRENT_MAXSIZE] = '\0'; } std::string scope; //если функция, то не учитываем скоуп if (IT::IsId(idtable, str) != TI_NULLIDX && IT::GetEntry(idtable, IT::IsId(idtable, str)).idtype == (IT::IDTYPE::F)) { scope+= str; } else { if (!isExported) { for (int j = 0; j < scopeStack.size(); j++) { scope = scope + scopeStack.at(j); } } scope += str; } //если нет такого итендфикатора if (IT::IsId(idtable, (char*)scope.c_str()) == TI_NULLIDX) { if (isExported) { bool isOk = false; libPos = 0; for (; libPos < libslen; libPos++) { if (libs[libPos].name == str) { isOk = true; break; } } if (!isOk) throw ERROR_THROW_IN(705, lex.line, lex.col) else { if (dataType != libs[libPos].retval) throw ERROR_THROW_IN(707, lex.line, lex.col) parmStackShouldWrite = true; } } //если не параметр и не объявлен if (type != (IT::IDTYPE::P) && !isDeclare && !isExported) { //то мы пытаемся работать с необъявленным итендификатором throw ERROR_THROW_IN(121, lex.line, lex.col) } if (dataType != (IT::IDDATATYPE)FALSYNUMBER && type != (IT::IDTYPE)FALSYNUMBER) { if (type == IT::F) { scopeName = str; } //добавляем в таблицу IT::Entry idTableObject(lextable.size, scope.c_str(), dataType, type, isExported); IT::Add(idtable, idTableObject); lexTableObject.idxTI = idtable.size - 1; //снимаем флаг объявлённости и экспорта isDeclare = false; isExported = false; //записываем в стек параметры импортируемой функции if (parmStackShouldWrite && type == IT::P) { params.push(dataType); //проверка параметров экспортируемой функции } //зануляем тип и вид if (!isFunctionParam) type = (IT::IDTYPE)FALSYNUMBER; dataType = (IT::IDDATATYPE)FALSYNUMBER; } else //дропаем ошибку если тип или вид не определён throw ERROR_THROW_IN(122, lex.line, lex.col); } else { if(isDeclare || isExported) throw ERROR_THROW_IN(700, lex.line, lex.col); //если в таблице итендификаторов есть запись - ссылаемся на неё lexTableObject.idxTI = IT::IsId(idtable, (char*)scope.c_str()); } break; } //экспорт case LEX_EXPORT: { isExported = true; break; } //левая скобка case LEX_LEFTHESIS: { //если предыдущий - имя функции if (lextable.size != 0 && lextable.table[lextable.size - 1].idxTI != LT_TI_NULLIDX && idtable.table[lextable.table[lextable.size - 1].idxTI].idtype == IT::F) { //если функцию только объявили if (lextable.table[lextable.size - 4].lexema == LEX_EXPORT || lextable.table[lextable.size - 4].lexema == LEX_DECLARE) { isFunctionParam = true; type = IT::P; scopeStack.push_back(scopeName); } //если функцию вызвали else { isFunctionParam = false; } } if (lextable.size != 0 && lextable.table[lextable.size - 1].idxTI != LT_TI_NULLIDX && idtable.table[lextable.table[lextable.size - 1].idxTI].idtype != IT::F) throw ERROR_THROW_IN(602, lex.line, lex.col) break; } //правая скобочка case LEX_RIGHTHESIS: { if (isBoleanExpression) { isBoleanExpression = false; } if (parmStackShouldWrite) { for (int q = libs[libPos].parcount-1; q > -1; --q) { if (params.size() != libs[libPos].parcount) throw ERROR_THROW_IN(706, lex.line, lex.col) if (params.top() != libs[libPos].params[q]) throw ERROR_THROW_IN(706, lex.line, lex.col) params.pop(); } parmStackShouldWrite = false; } //если параметры функции шли if (isFunctionParam) { //убираем область видимости scopeStack.pop_back(); //больше не параметры функции isFunctionParam = false; //закончили смотреть параметры, сейчас ожидаем тело функции isRequireBodyFunc = true; //тип больше не параметр type = (IT::IDTYPE)FALSYNUMBER; } //аргументы функции, то что передаётся в объявленную else type = (IT::IDTYPE)FALSYNUMBER; break; } //левая фигурная case LEX_LEFTBRACE: { hesisCounter++; //если предыдущая лексема закрытсая скобочка и ожидаем тело функции if (lextable.table[lextable.size - 1].lexema == LEX_RIGHTHESIS && isRequireBodyFunc) scopeStack.push_back(scopeName.c_str()); //если main else if (lextable.table[lextable.size - 1].lexema == LEX_MAIN) scopeStack.push_back("main"); //не будет тела функции else isRequireBodyFunc = false; break; } //правая фигурная case LEX_RIGHTBRACE: { hesisCounter--; if (isRequireBodyFunc) { scopeStack.pop_back(); isRequireBodyFunc = false; } //else //throw ERROR_THROW_IN(127, lex.line, lex.col); break; } //main case LEX_MAIN: { if (!wasMain) { //ожидеам тело функции isRequireBodyFunc = true; //встречался ли main wasMain = true; break; } else throw ERROR_THROW_IN(125, lex.line, lex.col); } //литерал case LEX_LITERAL: { //количество литералов literalCount++; lexTableObject.idxTI = idtable.size; bool continueFlag = true; if (checkArr[j].iddatatype == IT::INT) { unsigned int out = strtoul(str, NULL, 10); int positionInTable = IT::IsLX(idtable, checkArr[j].iddatatype, out); if (positionInTable != TI_NULLIDX) { continueFlag = false; lexTableObject.idxTI = positionInTable; } } if (checkArr[j].iddatatype == IT::CHR) { int positionInTable = IT::IsLX(idtable, checkArr[j].iddatatype, str[1]); if (positionInTable != TI_NULLIDX) { continueFlag = false; lexTableObject.idxTI = positionInTable; } } if (checkArr[j].iddatatype == IT::STR) { int positionInTable = IT::IsLX(idtable, IT::STR, str); if (positionInTable != TI_NULLIDX) { continueFlag = false; lexTableObject.idxTI = positionInTable; } } //если ретурним значит определили if (lextable.table[lextable.size - 1].lexema == LEX_RETURN) { continueFlag = true; lexTableObject.idxTI = idtable.size; } //если такого литерала нет if (continueFlag) { //формируем имя литерала std::string scope; for (int j = scopeStack.size() - 1; j >= 0; j--) { scope = scope + scopeStack.at(j); } scope += "$LEX"; char* t = new char[6]; _itoa_s(literalCount, t, 6, 10); scope += t; if (checkArr[j].iddatatype == IT::INT) { unsigned int out = strtoul(str, NULL, 10); IT::Entry ttmp(lextable.size - 1, scope.c_str(), checkArr[j].iddatatype, IT::L, out); IT::Add(idtable, ttmp); } else if (checkArr[j].iddatatype == IT::STR) { IT::Entry ttmp(lextable.size - 1, scope.c_str(), checkArr[j].iddatatype, IT::L, str); IT::Add(idtable, ttmp); } else if (checkArr[j].iddatatype == IT::CHR) { IT::Entry ttmp(lextable.size - 1, scope.c_str(), checkArr[j].iddatatype, IT::L, (char)str[1]); IT::Add(idtable, ttmp); } else ERROR_THROW_IN(122, lex.line, lex.col); } break; } } #pragma region "Если знаковая лексема" if (lexTableObject.lexema == LEX_MINUS || lexTableObject.lexema == LEX_LEFTBRACE || lexTableObject.lexema == LEX_RIGHTBRACE || lexTableObject.lexema == LEX_LEFTHESIS || lexTableObject.lexema == LEX_RIGHTHESIS) lexTableObject.data = str[0]; #pragma endregion #pragma region "Если булевая лексема" if (lexTableObject.lexema == LEX_BOOL_OPERATOR) lexTableObject.data = str[0]; #pragma endregion #pragma endregion LT::Add(lextable, lexTableObject); break; } } //если не распознали цепочку if (!executedFlag) throw ERROR_THROW_IN(120, lex.line, lex.col); } //если не было main if (!wasMain) throw ERROR_THROW(124); if(hesisCounter!=0) throw ERROR_THROW(116); #pragma endregion }
[ "53996471+Selevn@users.noreply.github.com" ]
53996471+Selevn@users.noreply.github.com
1e696ebb317e5a78fa18bc38d23ccb2d0bcb83da
5d841efa1c0e0186a726228ac15abeba05a5920f
/plotTurnOn.h
c4b7fb9bb56d6ca63ba27e40dabd9aeb40bf13b8
[]
no_license
vince502/HLTGPU
52225ed5b1a5a8577b2912d22fece850654241ff
8a7c2d0efa805b9c0288fc1f130e97973bf0cf18
refs/heads/main
2023-04-02T03:54:26.226833
2020-12-05T17:27:18
2020-12-05T17:27:18
308,573,995
0
0
null
null
null
null
UTF-8
C++
false
false
24,696
h
#ifndef plotTurnOn_h #define plotTurnOn_h #include <TROOT.h> #include <TSystem.h> #include <TFile.h> #include <TH1.h> #include <TEfficiency.h> #include <TTreeReader.h> #include <TTreeReaderValue.h> #include <TTreeReaderArray.h> #include <TLorentzVector.h> #include <TGraphAsymmErrors.h> #include <TCanvas.h> #include <TPad.h> #include <TAxis.h> #include <TLine.h> #include <TLegend.h> #include <TLegendEntry.h> #include <ROOT/TProcessExecutor.hxx> #include <ROOT/TSeq.hxx> #include <iostream> #include <map> #include <set> #include <vector> #include <string> #include <dirent.h> #include <memory> #include "tdrstyle.C" #include "CMS_lumi.C" class TreeReaderBase { public: TreeReaderBase(){}; TreeReaderBase(const std::string& path) { setFile(path); }; ~TreeReaderBase() { if (file_ && file_->IsOpen()) file_->Close(); }; // getters Long64_t getEntries() const { if (reader_.empty()) { return 0; } return reader_.begin()->second->GetEntries(false); }; // setters void setFile(const std::string& path) { file_.reset(TFile::Open(path.c_str(), "READ")); if (!file_->IsOpen() || file_->IsZombie()) { throw std::runtime_error("[ERROR] File "+path+" failed to open!"); } }; void setEntry(const Long64_t& i, const bool& checkValue, const bool& onDemand) { if (i<0) { throw std::runtime_error(Form("[ERROR] Invalid index: %lld", i)); } onDemand_ = onDemand; index_ = i; checkValue_ = checkValue; if (!onDemand_) { for (const auto& r : reader_) { loadEntry(r.first); } } }; protected: void checkValue(ROOT::Internal::TTreeReaderValueBase* value) const { if (value==NULL) { throw std::runtime_error("[ERROR] Value pointer is null"); } else if (value->GetSetupStatus() < 0) { throw std::runtime_error(Form("[ERROR] Status %d when setting up reader for %s", value->GetSetupStatus(), value->GetBranchName())); } }; virtual void checkValues(const std::string& tree) const { }; void setTreeReader(const std::string& name, const std::string& dir) { if (reader_.find(name)!=reader_.end() || !file_) return; reader_[name].reset(new TTreeReader(dir.c_str(), file_.get())); if (!reader_.at(name)->GetTree()) { throw std::runtime_error("[ERROR] Failed to open "+dir+" !"); } currentEntry_[name] = -1; }; void loadTreeEntry(TTreeReader* r) const { if (!r) return; const auto status = r->SetEntry(index_); if (status!=TTreeReader::kEntryValid) { std::string msg = ""; if (status==TTreeReader::kEntryNotLoaded) { msg = "no entry has been loaded yet"; } else if (status==TTreeReader::kEntryNoTree) { msg = "the tree does not exist"; } else if (status==TTreeReader::kEntryNotFound) { msg = "the tree entry number does not exist"; } else if (status==TTreeReader::kEntryChainSetupError) { msg = "problem in accessing a chain element, e.g. file without the tree"; } else if (status==TTreeReader::kEntryChainFileError) { msg = "problem in opening a chain's file"; } else if (status==TTreeReader::kEntryDictionaryError) { msg = "problem reading dictionary info from tree"; } //else if (status==TTreeReader::kEntryLast) { msg = "last entry was reached"; } throw std::runtime_error("[ERROR] Invalid entry: "+msg); } }; void loadEntry(const std::string& tree) const { if (index_!=currentEntry_.at(tree)) { loadTreeEntry(reader_.at(tree).get()); if (checkValue_) { checkValues(tree); } const_cast<std::map<std::string, Long64_t >* >(&currentEntry_)->at(tree) = index_; } }; std::unique_ptr<TFile> file_; std::map<std::string, std::unique_ptr<TTreeReader> > reader_; bool checkValue_, onDemand_; Long64_t index_; std::map<std::string, Long64_t > currentEntry_; }; class TriggerReader : public TreeReaderBase { public: TriggerReader(const std::string& path, const bool& buildIndex=false) { setFile(path); setTreeReader("HltTree", "hltanalysis/HltTree"); if (buildIndex) { std::cout<< "[INFO] Building index in TriggerReader for HltTree" << std::endl; reader_.at("HltTree")->GetTree()->BuildIndex("Run","Event"); if (getEntries()>0) { reader_.at("HltTree")->GetTree()->LoadTree(0); } } evtI_["runN"].reset(new TTreeReaderValue<int>(*reader_.at("HltTree"), "Run")); evtUL_["eventN"].reset(new TTreeReaderValue<ULong64_t>(*reader_.at("HltTree"), "Event")); }; // getters std::pair<Long64_t, Long64_t> getEventNumber() const { if (onDemand_) { loadEntry("HltTree"); } if (evtUL_.find("eventN")==evtUL_.end()) { return {0, 0}; } return {*evtI_.at("runN")->Get(), *evtUL_.at("eventN")->Get()}; }; bool isTriggerMatched(const TLorentzVector& p4, const std::string& path) const { // set entry on demand for HltTree if (onDemand_) { loadEntry("HltTree"); } if (!*evtI_.at(path)->Get()) { return false; } // set entry on demand for TriggerObject if (onDemand_) { loadEntry(path); } // define delta R threshold const auto dR = (path.rfind("HLT_HIL3",0)==0 ? 0.1 : 0.3); const auto dPt = (path.rfind("HLT_HIL1",0)==0 ? 2.0 : 10.0); // check trigger objects bool isMatch = false; for (size_t i=0; i<obj_.at(path).at("eta")->Get()->size(); i++) { // compare object momenta TLorentzVector trigP4; trigP4.SetPtEtaPhiM(obj_.at(path).at("pt")->Get()->at(i), obj_.at(path).at("eta")->Get()->at(i), obj_.at(path).at("phi")->Get()->at(i), p4.M()); isMatch = (path.rfind("HLT_HIL1",0)==0 ? std::abs(trigP4.Eta()-p4.Eta()) < 0.2 : trigP4.DeltaR(p4) < dR) && std::abs(trigP4.Pt()-p4.Pt())/p4.Pt() < dPt; if (isMatch) break; } return isMatch; }; // setters void addTrigger(const std::string& name) { if (name.rfind("HLT_",0)!=0) { throw std::runtime_error("[ERROR] Invalid trigger name "+name+" !"); } if (evtI_.find(name)!=evtI_.end()) return; const auto nm = name.substr(0,name.rfind("_v")+2); setTreeReader(name, "hltobject/"+nm); evtI_[name].reset(new TTreeReaderValue<int>(*reader_.at("HltTree"), name.c_str())); for (const auto& var : {"pt", "eta", "phi"}) { obj_[name][var].reset(new TTreeReaderValue<std::vector<float> >(*reader_.at(name), var)); } }; using TreeReaderBase::setEntry; bool setEntry(const std::pair<Long64_t, Long64_t>& evtN, const bool& checkValue=true, const bool& onDemand=true) { const auto index = reader_.at("HltTree")->GetTree()->GetEntryNumberWithIndex(evtN.first, evtN.second); if (index<0) { return false; } setEntry(index, checkValue, onDemand); return true; }; private: void checkValues(const std::string& tree) const { if (tree=="HltTree") { for (const auto& r : evtI_ ) { checkValue(r.second.get()); } for (const auto& r : evtUL_) { checkValue(r.second.get()); } } else if (obj_.find(tree)!=obj_.end()) { for (const auto& o : obj_.at(tree)) { checkValue(o.second.get()); } } }; std::map<std::string, std::unique_ptr<TTreeReaderValue<int> > > evtI_; std::map<std::string, std::unique_ptr<TTreeReaderValue<ULong64_t> > > evtUL_; std::map<std::string, std::map<std::string, std::unique_ptr<TTreeReaderValue<std::vector<float> > > > > obj_; }; class RecoReader : public TreeReaderBase { public: RecoReader(const std::string& path, const bool& buildIndex=false) { setFile(path); setTreeReader("ggHiNtuplizerGED", "ggHiNtuplizerGED/EventTree"); setTreeReader("skimanalysis", "skimanalysis/HltTree"); setTreeReader("hiEvtAnalyzer", "hiEvtAnalyzer/HiTree"); if (buildIndex) { std::cout<< "[INFO] Building index in RecoReader for hiEvtAnalyzer" << std::endl; reader_.at("hiEvtAnalyzer")->GetTree()->BuildIndex("run","evt"); if (getEntries()>0) { reader_.at("hiEvtAnalyzer")->GetTree()->LoadTree(0); } } initEventInfo(); }; typedef std::vector<std::pair<TLorentzVector, int> > ParticleCollection; // getters std::pair<Long64_t, Long64_t> getEventNumber() const { if (onDemand_) { loadEntry("hiEvtAnalyzer"); } return {*evtUI_.at("runN")->Get(), *evtUL_.at("eventN")->Get()}; }; ParticleCollection getParticles(const std::string& type) const { if (onDemand_) { loadEntry("ggHiNtuplizerGED"); } if (getSize(type)==0) return {}; // loop over muons ParticleCollection particles; for (size_t i=0; i<getSize(type); i++) { if (passParticleCut(type, i)) { particles.push_back({getP4(type, i), getPdgID(type, i)}); } } return particles; }; bool passEventSelection() const { if (onDemand_) { loadEntry("skimanalysis"); } return *skimI_.at("evtSel")->Get(); }; int getCentrality() const { if (onDemand_) { loadEntry("hiEvtAnalyzer"); } return *evtI_.at("hiBin")->Get(); }; // setters void initBranches(const std::string& type) { if (type=="electron") { initElectron(); } else if (type=="photon" ) { initPhoton(); } else if (type=="muon" ) { initMuon(); } }; using TreeReaderBase::setEntry; bool setEntry(const std::pair<Long64_t, Long64_t>& evtN, const bool& checkValue=true, const bool& onDemand=true) { const auto& index = reader_.at("hiEvtAnalyzer")->GetTree()->GetEntryNumberWithIndex(evtN.first, evtN.second); if (index<0) { return false; } setEntry(index, checkValue, onDemand); return true; }; private: void checkValues(const std::string& tree) const { if (tree=="ggHiNtuplizerGED") { for (const auto& o : objI_) { checkValue(o.second.get()); } for (const auto& o : objF_) { checkValue(o.second.get()); } } else if (tree=="hiEvtAnalyzer") { for (const auto& o : evtI_ ) { checkValue(o.second.get()); } for (const auto& o : evtUI_) { checkValue(o.second.get()); } for (const auto& o : evtUL_) { checkValue(o.second.get()); } } else if (tree=="skimanalysis") { for (const auto& o : skimI_ ) { checkValue(o.second.get()); } } }; size_t getSize(const std::string& type) const { if (type=="electron") { return (objF_.find("elePt")!=objF_.end() ? objF_.at("elePt")->Get()->size() : 0); } else if (type=="photon" ) { return (objF_.find("phoEt")!=objF_.end() ? objF_.at("phoEt")->Get()->size() : 0); } else if (type=="muon" ) { return (objF_.find("muPt" )!=objF_.end() ? objF_.at("muPt" )->Get()->size() : 0); } return 0; }; TLorentzVector getP4(const std::string& type, const size_t& i) const { TLorentzVector p4; if (getSize(type)==0) { return p4; } else if (type=="electron") { p4.SetPtEtaPhiM(objF_.at("elePt")->Get()->at(i), objF_.at("eleSCEta")->Get()->at(i), objF_.at("eleSCPhi")->Get()->at(i), 0.000511); } else if (type=="photon" ) { p4.SetPtEtaPhiM(objF_.at("phoEt")->Get()->at(i), objF_.at("phoSCEta")->Get()->at(i), objF_.at("phoSCPhi")->Get()->at(i), 0.0); } else if (type=="muon" ) { p4.SetPtEtaPhiM(objF_.at("muPt" )->Get()->at(i), objF_.at("muEta" )->Get()->at(i), objF_.at("muPhi" )->Get()->at(i), 0.10565837); } return p4; }; int getPdgID(const std::string& type, const size_t& i) const { int pdgID = 0; if (getSize(type)==0) { return pdgID; } else if (type=="electron") { pdgID = -11 * objI_.at("eleCharge")->Get()->at(i); } else if (type=="photon" ) { pdgID = 22; } else if (type=="muon" ) { pdgID = -13 * objI_.at("muCharge")->Get()->at(i); } return pdgID; }; bool passParticleCut(const std::string& type, const size_t& i) const { if (getSize(type)==0) { return false; } else if (type=="electron") { return passElectronCut(i); } else if (type=="photon" ) { return passPhotonCut(i); } else if (type=="muon" ) { return passMuonCut(i); } return false; }; bool passElectronCut(const size_t& i) const { // set entry on demand if (onDemand_) { loadEntry("hiEvtAnalyzer"); } // check kinematics if (objF_.at("elePt")->Get()->at(i) <= 20.) return false; if ((std::abs(objF_.at("eleSCEta")->Get()->at(i)) >= 1.4 && std::abs(objF_.at("eleSCEta")->Get()->at(i)) <= 1.6) || std::abs(objF_.at("eleSCEta")->Get()->at(i)) >= 2.1) return false; // use Loose ID working points for PbPb 2018 float cutSigmaIEtaIEta, cutdEtaSeedAtVtx, cutdPhiAtVtx, cutEoverPInv, cutHoverEBc; if (*evtI_.at("hiBin")->Get() <= 60) { if (std::abs(objF_.at("eleSCEta")->Get()->at(i)) < 1.479) { cutSigmaIEtaIEta = 0.013451; cutdEtaSeedAtVtx = 0.003814; cutdPhiAtVtx = 0.037586; cutEoverPInv = 0.017664; cutHoverEBc = 0.161613; } else { cutSigmaIEtaIEta = 0.046571; cutdEtaSeedAtVtx = 0.006293; cutdPhiAtVtx = 0.118592; cutEoverPInv = 0.020135; cutHoverEBc = 0.131705; } } else { if (std::abs(objF_.at("eleSCEta")->Get()->at(i)) < 1.479) { cutSigmaIEtaIEta = 0.010867; cutdEtaSeedAtVtx = 0.003284; cutdPhiAtVtx = 0.020979; cutEoverPInv = 0.077633; cutHoverEBc = 0.126826; } else { cutSigmaIEtaIEta = 0.033923; cutdEtaSeedAtVtx = 0.006708; cutdPhiAtVtx = 0.083766; cutEoverPInv = 0.019279; cutHoverEBc = 0.097703; } } const bool passID = objF_.at("eleSigmaIEtaIEta_2012")->Get()->at(i) < cutSigmaIEtaIEta && std::abs(objF_.at("eledEtaSeedAtVtx")->Get()->at(i)) < cutdEtaSeedAtVtx && std::abs(objF_.at("eledPhiAtVtx")->Get()->at(i)) < cutdPhiAtVtx && objF_.at("eleEoverPInv")->Get()->at(i) < cutEoverPInv && objF_.at("eleHoverEBc")->Get()->at(i) < cutHoverEBc && std::abs(objF_.at("eleIP3D")->Get()->at(i)) < 0.03 && objI_.at("eleMissHits")->Get()->at(i) <= 1; return passID; }; bool passPhotonCut(const size_t& i) const { // check kinematics if (objF_.at("phoEt")->Get()->at(i) <= 40.) return false; if ((std::abs(objF_.at("phoSCEta")->Get()->at(i)) >= 1.44 && std::abs(objF_.at("phoSCEta")->Get()->at(i)) <= 1.57) || std::abs(objF_.at("phoSCEta")->Get()->at(i)) >= 2.4) return false; // apply pre-selection if(!(objF_.at("phoSigmaIEtaIEta_2012")->Get()->at(i) > 0.002 && objF_.at("pho_swissCrx")->Get()->at(i) < 0.9 && abs(objF_.at("pho_seedTime")->Get()->at(i)) < 3)) return false; if(!(objF_.at("phoSigmaIEtaIEta_2012")->Get()->at(i) < 0.5 && objF_.at("pho_trackIsoR3PtCut20")->Get()->at(i) > -500 && objF_.at("pho_trackIsoR3PtCut20")->Get()->at(i) < 500)) return false; // use Tight ID working points for PbPb 2018 bool passID = false; const auto iso = objF_.at("pho_ecalClusterIsoR3")->Get()->at(i) + objF_.at("pho_hcalRechitIsoR3")->Get()->at(i) + objF_.at("pho_trackIsoR3PtCut20")->Get()->at(i); if (std::abs(objF_.at("phoSCEta")->Get()->at(i)) < 1.5) { passID = iso < 4.1708 && objF_.at("phoSigmaIEtaIEta_2012")->Get()->at(i) < 0.01072 && objF_.at("phoHoverE")->Get()->at(i) < 0.1609; } else { passID = iso < 8.589 && objF_.at("phoSigmaIEtaIEta_2012")->Get()->at(i) < 0.0440 && objF_.at("phoHoverE")->Get()->at(i) < 0.324; } return passID; }; bool passMuonCut(const size_t& i, const bool& useTightID=false) const { // check kinematics const auto& eta = objF_.at("muEta")->Get()->at(i); const auto& pt = objF_.at("muPt")->Get()->at(i); const bool inAcc = ((std::abs(eta)<1.2 && pt>=3.5) || (1.2<=std::abs(eta) && abs(eta)<2.1 && pt>=5.47-1.89*std::abs(eta)) || (2.1<=std::abs(eta) && std::abs(eta)<2.4 && pt>=1.5)); if (!inAcc) return false; // use Tight ID working points for PbPb 2018 (if requested) if (useTightID) return objI_.at("muIDTight")->Get()->at(i); // use Hybrid Soft ID working points for PbPb 2018 const bool passID = objI_.at("muIsGlobal")->Get()->at(i) && objI_.at("muIsTracker")->Get()->at(i) && objI_.at("muTrkLayers")->Get()->at(i) > 5 && objI_.at("muPixelLayers")->Get()->at(i) > 0 && std::abs(objF_.at("muD0")->Get()->at(i)) < 0.3 && std::abs(objF_.at("muDz")->Get()->at(i)) < 20.0; return passID; }; void initEventInfo() { evtUI_["runN"].reset(new TTreeReaderValue<UInt_t>(*reader_.at("hiEvtAnalyzer"), "run")); evtUL_["eventN"].reset(new TTreeReaderValue<ULong64_t>(*reader_.at("hiEvtAnalyzer"), "evt")); evtI_["hiBin"].reset(new TTreeReaderValue<int>(*reader_.at("hiEvtAnalyzer"), "hiBin")); skimI_["evtSel"].reset(new TTreeReaderValue<int>(*reader_.at("skimanalysis"), "collisionEventSelectionAODv2")); }; void initElectron() { for (const auto& var : {"eleCharge", "eleMissHits"}) { objI_[var].reset(new TTreeReaderValue<std::vector<int> >(*reader_.at("ggHiNtuplizerGED"), var)); } for (const auto& var : {"elePt", "eleSCEta", "eleSCPhi", "eleSigmaIEtaIEta_2012", "eledEtaSeedAtVtx", "eledPhiAtVtx", "eleEoverPInv", "eleHoverEBc", "eleIP3D"}) { objF_[var].reset(new TTreeReaderValue<std::vector<float> >(*reader_.at("ggHiNtuplizerGED"), var)); } }; void initPhoton() { for (const auto& var : {"phoEt", "phoSCEta", "phoSCPhi", "pho_ecalClusterIsoR3", "pho_hcalRechitIsoR3", "pho_trackIsoR3PtCut20", "phoSigmaIEtaIEta_2012", "phoHoverE", "pho_swissCrx", "pho_seedTime"}) { objF_[var].reset(new TTreeReaderValue<std::vector<float> >(*reader_.at("ggHiNtuplizerGED"), var)); } }; void initMuon() { for (const auto& var : {"muCharge", "muIsGlobal", "muIsTracker", "muIDTight", "muTrkLayers", "muPixelLayers"}) { objI_[var].reset(new TTreeReaderValue<std::vector<int> >(*reader_.at("ggHiNtuplizerGED"), var)); }; for (const auto& var : {"muPt", "muEta", "muPhi", "muD0", "muDz"}) { objF_[var].reset(new TTreeReaderValue<std::vector<float> >(*reader_.at("ggHiNtuplizerGED"), var)); } }; std::map<std::string, std::unique_ptr<TTreeReaderValue<UInt_t> > > evtUI_; std::map<std::string, std::unique_ptr<TTreeReaderValue<ULong64_t> > > evtUL_; std::map<std::string, std::unique_ptr<TTreeReaderValue<int> > > evtI_, skimI_; std::map<std::string, std::unique_ptr<TTreeReaderValue<std::vector<int> > > > objI_; std::map<std::string, std::unique_ptr<TTreeReaderValue<std::vector<float> > > > objF_; }; void formatEff(TGraphAsymmErrors& graph, const std::string& par, const std::string& var) { // add particle label std::string parLbl; if (par=="SingleMuon") { parLbl = "Muon"; } else if (par=="DoubleMuon") { parLbl = "Dimuon"; } else if (par=="SingleElectron") { parLbl = "Electron"; } else if (par=="DoubleElectron") { parLbl = "Dielectron"; } else if (par=="SinglePhoton") { parLbl = "Photon"; } // X-axis label std::string xLabel = parLbl; if (var=="Pt") { xLabel += " p_{T} [GeV/c]"; } else if (var=="Eta") { xLabel += " #eta"; } else if (var=="Rapidity") { xLabel += " y"; } // Y-axis label const std::string yLabel = "Efficiency"; // General graph.SetMarkerColor(kBlue); graph.SetMarkerStyle(20); graph.SetMarkerSize(1.5); graph.SetFillStyle(1001); // X-axis graph.GetXaxis()->CenterTitle(kTRUE); graph.GetXaxis()->SetTitleOffset(0.90); graph.GetXaxis()->SetTitleSize(0.055); graph.GetXaxis()->SetLabelSize(0.035); // Y-axis graph.GetYaxis()->CenterTitle(kTRUE); graph.GetYaxis()->SetTitleOffset(1.05); graph.GetYaxis()->SetTitleSize(0.055); graph.GetYaxis()->SetLabelSize(0.035); graph.GetYaxis()->SetRangeUser(0.0, 1.4); // Set Axis Titles graph.SetTitle(Form(";%s;%s", xLabel.c_str(), yLabel.c_str())); gPad->Update(); }; bool existDir(const std::string& dir) { bool exist = false; const auto& dirp = gSystem->OpenDirectory(dir.c_str()); if (dirp) { gSystem->FreeDirectory(dirp); exist = true; } return exist; }; void makeDir(const std::string& dir) { if (existDir(dir)==false){ std::cout << "[INFO] DataSet directory: " << dir << " doesn't exist, will create it!" << std::endl; gSystem->mkdir(dir.c_str(), kTRUE); } }; const std::map<std::string, std::map<std::string, std::vector<double> > > BINMAP = { { "SingleMuon" , { { "Pt" , { 0, 1, 2, 3, 4, 5, 6.5, 7, 8, 9, 10, 11, 12, 13, 15, 17, 19, 21, 25, 30, 35, 40, 50 } }, { "Eta" , { -2.4, -2.0, -1.6, -1.2, -0.8, -0.4, 0.4, 0.8, 1.2, 1.6, 2.0, 2.4 } } } }, { "DoubleMuon" , { { "Pt" , { 0, 1, 2, 3, 4, 5, 6.5, 7, 8, 9, 10, 11, 12, 13, 15, 17, 19, 21, 25, 30, 35, 40, 50 } }, { "Rapidity" , { -2.4, -2.0, -1.6, -1.2, -0.8, -0.4, 0.4, 0.8, 1.2, 1.6, 2.0, 2.4 } } } }, { "SingleElectron" , { { "Pt" , { 20, 21, 22, 25, 30, 35, 40, 50, 60, 100 } }, { "Eta" , { -2.1, -1.6, -1.2, -0.8, -0.4, 0.4, 0.8, 1.2, 1.6, 2.1 } } } }, { "DoubleElectron" , { { "Pt" , { 0, 1, 2, 3, 4, 5, 6.5, 7, 8, 9, 10, 11, 12, 13, 15, 17, 19, 21, 25, 30, 35, 40, 50 } }, { "Rapidity" , { -2.1, -1.6, -1.2, -0.8, -0.4, 0.4, 0.8, 1.2, 1.6, 2.1 } } } }, { "SinglePhoton" , { { "Pt" , { 40, 41, 42, 45, 50, 55, 60, 65, 70, 80, 100, 200 } }, { "Eta" , { -2.4, -2.0, -1.6, -1.2, -0.8, -0.4, 0.4, 0.8, 1.2, 1.6, 2.0, 2.4 } } } } }; const std::map< std::string , std::vector<std::string> > TRIGLIST = { { "SingleMuon" , { "HLT_HIL1MuOpen_Centrality_70_100_v1", "HLT_HIL1MuOpen_Centrality_80_100_v1", "HLT_HIL2Mu3_NHitQ15_v1", "HLT_HIL2Mu5_NHitQ15_v1", "HLT_HIL2Mu7_NHitQ15_v1", "HLT_HIL3Mu12_v1", "HLT_HIL3Mu15_v1", "HLT_HIL3Mu20_v1", "HLT_HIL3Mu3_NHitQ10_v1", "HLT_HIL3Mu5_NHitQ10_v1", "HLT_HIL3Mu7_NHitQ10_v1" } }, { "DoubleMuon" , { "HLT_HIL1DoubleMu10_v1", "HLT_HIL1DoubleMuOpen_v1", "HLT_HIL2DoubleMuOpen_v1", "HLT_HIL2_L1DoubleMu10_v1", "HLT_HIL3DoubleMuOpen_M60120_v1", "HLT_HIL3DoubleMuOpen_Upsi_v1", "HLT_HIL3DoubleMuOpen_v1", "HLT_HIL3Mu0_L2Mu0_v1", "HLT_HIL3Mu2p5NHitQ10_L2Mu2_M7toinf_v1", "HLT_HIL3_L1DoubleMu10_v1", "HLT_HIL1DoubleMuOpen_Centrality_50_100_v1", "HLT_HIL1DoubleMuOpen_OS_Centrality_40_100_v1", "HLT_HIL3DoubleMuOpen_JpsiPsi_v1", "HLT_HIL3Mu0NHitQ10_L2Mu0_MAXdR3p5_M1to5_v1" } }, { "SingleElectron" , { "HLT_HIEle10Gsf_v1", "HLT_HIEle15Gsf_v1", "HLT_HIEle20Gsf_v1", "HLT_HIEle30Gsf_v1", "HLT_HIEle40Gsf_v1", "HLT_HIEle50Gsf_v1" } }, { "DoubleElectron" , { "HLT_HIDoubleEle10GsfMass50_v1", "HLT_HIDoubleEle10Gsf_v1", "HLT_HIDoubleEle15GsfMass50_v1", "HLT_HIDoubleEle15Gsf_v1", "HLT_HIEle15Ele10GsfMass50_v1", "HLT_HIEle15Ele10Gsf_v1" } }, { "SinglePhoton" , { "HLT_HIGEDPhoton30_EB_v1", "HLT_HIGEDPhoton30_v1", "HLT_HIGEDPhoton40_EB_v1", "HLT_HIGEDPhoton40_v1", "HLT_HIGEDPhoton50_EB_v1", "HLT_HIGEDPhoton50_v1", "HLT_HIGEDPhoton60_EB_v1", "HLT_HIGEDPhoton60_v1", "HLT_HIGEDPhoton10_EB_v1", "HLT_HIGEDPhoton10_v1", "HLT_HIGEDPhoton20_EB_v1", "HLT_HIGEDPhoton20_v1" } } }; #endif // ifndef plotTurnOn_h
[ "soohwan.lee@cern.ch" ]
soohwan.lee@cern.ch
901145852e31212055c4df74088b6b7c267e9c25
d8baa1ead20a5338cae542281838c83a64863919
/arrays/mergeSorted.cpp
ab59fcd68b8316d92a8b4bd1478d35f7c0a1a06e
[]
no_license
ktekchan/Summer
c2732f85ce3328dca8d4fd686398044a82f6c792
b51997d3d82251dce461640ae3bf6263ab1237c1
refs/heads/master
2020-05-21T10:14:23.649257
2017-03-01T17:51:01
2017-03-01T17:51:01
42,786,975
0
0
null
null
null
null
UTF-8
C++
false
false
1,195
cpp
/* * Khushboo Tekchandani * Merge an array of size m+n containing m elements with an array of size n * Both of these are sorted arrays * Idea: Move all elements of m+n to the end * Merge */ #include <iostream> using namespace std; void moveToEnd(int arr[], int size){ int i, j; j = size-1; for(i=size-1; i>=0; i--){ if(arr[i]!=-1){ arr[j] = arr[i]; j--; } } } void mergeArr(int arrMN[], int arrN[], int m, int n){ int i,j,k; i = n; // where elements in arr m+n starts from j = 0; // starting of arrn k = 0; // starting of newly merged m+n while(k < (m+n)){ if((j==n)||(i < m+n && arrMN[i]<=arrN[j])){ arrMN[k] = arrMN[i]; k++; i++; } else{ arrMN[k] = arrN[j]; k++; j++; } } for(i=0; i<(m+n-1); i++){ cout << arrMN[i] << " "; } cout << endl; } int main(){ int arrMN[] = {2,8,-1,-1,-1,13,-1,15,20}; int arrN[] = {5,7,9,25}; int size = sizeof(arrMN)/sizeof(arrMN[0]); int n = sizeof(arrN)/sizeof(arrN[0]); int m = size - n; moveToEnd(arrMN,size); mergeArr(arrMN,arrN,m,n); return 0; }
[ "ktekchan@buffalo.edu" ]
ktekchan@buffalo.edu
475268c32502d81684178b5a25d6d667b1d00e66
76eec1682f1b4dfd51218205b6f0dc2827fdd17e
/src/cpu/x64/lrn/jit_uni_lrn_kernel.cpp
3b14d4007d56965986ab3fddaf68a30cd4f7d672
[ "BSD-3-Clause", "Intel", "MIT", "BSL-1.0", "Apache-2.0" ]
permissive
N-Dekker/oneDNN
5b80966848c56113651f4c800ecd9f0cf5e7dba1
49dcdb1d76bc43c058380f5697b75e2f7f2552a6
refs/heads/master
2022-11-30T18:52:20.081536
2020-07-20T16:40:34
2020-07-21T00:48:16
280,428,330
0
0
Apache-2.0
2020-07-20T17:38:28
2020-07-17T13:14:39
null
UTF-8
C++
false
false
49,662
cpp
/******************************************************************************* * Copyright 2016-2020 Intel Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *******************************************************************************/ #include <array> #include <cmath> #include "common/c_types_map.hpp" #include "common/nstl.hpp" #include "common/utils.hpp" #include "cpu/x64/jit_avx512_core_bf16cvt.hpp" #include "cpu/x64/lrn/jit_uni_lrn_kernel.hpp" namespace dnnl { namespace impl { namespace cpu { namespace x64 { using namespace dnnl::impl::format_tag; #define IRB_LOOP(statement) \ if (1 == reg_block) { \ const int irb_off = 0; \ const int irb = this->reg_block_idx_ % vsum.size(); \ statement; \ MAYBE_UNUSED(irb_off); \ } else { \ for (int irb = 0; irb < reg_block; irb++) { \ const int irb_off = irb * single_pixel_offset_; \ statement; \ MAYBE_UNUSED(irb_off); \ } \ } using namespace Xbyak; template <cpu_isa_t isa, data_type_t d_type> void jit_uni_lrn_fwd_kernel<isa, d_type>::load_data( Vmm reg, const Xbyak::Address p) { this->uni_vmovups(reg, p); } template <> void jit_uni_lrn_fwd_kernel<avx512_common, dnnl::impl::data_type::bf16>::load_data(Vmm reg, const Xbyak::Address p) { this->vpmovzxwd(reg, p); this->vpslld(reg, reg, 0x10); } template <cpu_isa_t isa, data_type_t d_type> void jit_uni_lrn_fwd_kernel<isa, d_type>::store_data( const Xbyak::Address addr, Vmm reg) { this->uni_vmovups(addr, reg); } template <> void jit_uni_lrn_fwd_kernel<avx512_common, dnnl::impl::data_type::bf16>::store_data(const Xbyak::Address addr, Zmm zr) { const Ymm yr = Ymm(zr.getIdx()); if (mayiuse(avx512_core_bf16)) vcvtneps2bf16(yr, zr); else bf16_emu_->vcvtneps2bf16(yr, zr); vmovdqu16(addr, yr); } ////////////////////////////////////////////////////////////////////////////// // forward kernel template <cpu_isa_t isa, data_type_t d_type> void jit_uni_lrn_fwd_kernel<isa, d_type>::within_body(int hoff, int Hoff, int woff, int Woff, int stride, prop_kind_t pk, const int reg_block, int pixel_offset) { static const bool emulateBfloat = (isa == avx512_common && d_type == dnnl::impl::data_type::bf16 && !mayiuse(avx512_core_bf16)); static const std::array<Vmm, 3> vsum {{Vmm(2), Vmm(11), Vmm(20)}}; static const std::array<Vmm, 3> vsum2 {{Vmm(3), Vmm(12), Vmm(21)}}; static const std::array<Vmm, 3> vdst {{Vmm(4), Vmm(13), Vmm(22)}}; static const std::array<std::array<Vmm, 6u>, 3u> vtmp { {{{Vmm(5), Vmm(6), Vmm(7), Vmm(8), Vmm(9), Vmm(14)}}, {{Vmm(18), Vmm(15), Vmm(16), Vmm(17), Vmm(29), Vmm(30)}}, {{Vmm(23), Vmm(24), Vmm(25), Vmm(26), Vmm(28), Vmm(31)}}}}; static const std::array<Vmm, 3> vscratch = {{Vmm(10), Vmm(19), Vmm(27)}}; MAYBE_UNUSED( emulateBfloat); // workaround for gcc8.1 compiler unused variable static const std::size_t used_tmp_regs = emulateBfloat ? vtmp[0].size() - 2 : vtmp[0].size(); IRB_LOOP(uni_vxorps(vsum[irb], vsum[irb], vsum[irb])); for (int i = hoff; i <= Hoff; ++i) { for (int j = woff; j <= Woff; ++j) { if (i == 0 && j == 0) { IRB_LOOP(load_data( vdst[irb], ptr[src_ + pixel_offset + irb_off])); IRB_LOOP(vfmadd231ps(vsum[irb], vdst[irb], vdst[irb])); } else { const auto idx = tempIdx_ % used_tmp_regs; IRB_LOOP(load_data(vtmp[irb][idx], ptr[(src_ + pixel_offset + irb_off) + (i * stride + j) * single_pixel_offset_])); IRB_LOOP( vfmadd231ps(vsum[irb], vtmp[irb][idx], vtmp[irb][idx])); ++tempIdx_; } } } tempIdx_ = tempIdx_ % used_tmp_regs; IRB_LOOP(vfmadd132ps(vsum[irb], vk_, valpha_)); // ysum <- ysum*valpha_+yk_ IRB_LOOP(vmovaps(vscratch[irb], vsum[irb])); if (pk != prop_kind::forward_inference) { IRB_LOOP(store_data(ptr[scratch_], vscratch[irb])); } IRB_LOOP(vmulps(vsum2[irb], vsum[irb], vsum[irb])); IRB_LOOP(vmulps( vsum[irb], vsum[irb], vsum2[irb])); // ysum = (ysum*valpha_+yk_)^3; IRB_LOOP(vsqrtps(vsum[irb], vsum[irb])); IRB_LOOP(vsqrtps(vsum[irb], vsum[irb])); // ysum = (ysum*valpha_+yk_)^0.75 IRB_LOOP(vdivps(vdst[irb], vdst[irb], vsum[irb])); // ydst <- ydst / ysum IRB_LOOP(store_data(ptr[dst_ + pixel_offset + irb_off], vdst[irb])); if (isa == avx512_common) this->reg_block_idx_ = (this->reg_block_idx_ % vsum.size()) + 1; } template <> void jit_uni_lrn_fwd_kernel<sse41, dnnl::impl::data_type::f32>::within_body( int hoff, int Hoff, int woff, int Woff, int stride, prop_kind_t pk, int reg_block, int pixel_offset) { const Xbyak::Xmm &xtmp_lo = this->xmm2; const Xbyak::Xmm &xtmp_hi = this->xmm3; const Xbyak::Xmm &xsum_lo = this->xmm4; const Xbyak::Xmm &xsum_hi = this->xmm5; const Xbyak::Xmm &xdst_lo = this->xmm6; const Xbyak::Xmm &xdst_hi = this->xmm7; const Xbyak::Xmm &xsum2_lo = this->xmm8; const Xbyak::Xmm &xsum2_hi = this->xmm9; xorps(xsum_lo, xsum_lo); xorps(xsum_hi, xsum_hi); for (int i = hoff; i <= Hoff; ++i) { for (int j = woff; j <= Woff; ++j) { if (i == 0 && j == 0) { movups(xdst_lo, ptr[src_ + pixel_offset]); movups(xdst_hi, ptr[src_ + pixel_offset + 4 * sizeof(float)]); mulps(xdst_lo, xdst_lo); mulps(xdst_hi, xdst_hi); addps(xsum_lo, xdst_lo); addps(xsum_hi, xdst_hi); } else { movups(xtmp_lo, ptr[src_ + pixel_offset + (i * stride + j) * single_pixel_offset_]); movups(xtmp_hi, ptr[src_ + pixel_offset + (i * stride + j) * single_pixel_offset_ + 4 * sizeof(float)]); mulps(xtmp_lo, xtmp_lo); mulps(xtmp_hi, xtmp_hi); addps(xsum_lo, xtmp_lo); addps(xsum_hi, xtmp_hi); } } } mulps(xsum_lo, xalpha_); mulps(xsum_hi, xalpha_); addps(xsum_lo, xk_); addps(xsum_hi, xk_); // xsum <- xsum*xalpha_+xk_ movaps(xtmp_lo, xsum_lo); movaps(xtmp_hi, xsum_hi); if (pk != prop_kind::forward_inference) { movups(ptr[scratch_ + pixel_offset], xtmp_lo); movups(ptr[scratch_ + pixel_offset + 4 * sizeof(float)], xtmp_hi); } movaps(xsum2_lo, xsum_lo); movaps(xsum2_hi, xsum_hi); mulps(xsum2_lo, xsum_lo); mulps(xsum2_hi, xsum_hi); mulps(xsum_lo, xsum2_lo); mulps(xsum_hi, xsum2_hi); // xsum = (xsum*xalpha_+xk_)^3; sqrtps(xsum_lo, xsum_lo); sqrtps(xsum_hi, xsum_hi); sqrtps(xsum_lo, xsum_lo); sqrtps(xsum_hi, xsum_hi); // xsum = (xsum*xalpha_+xk_)^0.75 movups(xdst_lo, ptr[src_ + pixel_offset]); movups(xdst_hi, ptr[src_ + pixel_offset + 4 * sizeof(float)]); divps(xdst_lo, xsum_lo); divps(xdst_hi, xsum_hi); // xdst <- xdst / xsum movups(ptr[dst_ + pixel_offset], xdst_lo); movups(ptr[dst_ + pixel_offset + 4 * sizeof(float)], xdst_hi); } template <cpu_isa_t isa, data_type_t d_type> void jit_uni_lrn_fwd_kernel<isa, d_type>::move_data_pointers( int pixel_count, prop_kind_t pk) { const int pixel_offset = single_pixel_offset_ * pixel_count; add(src_, pixel_offset); add(dst_, pixel_offset); if (pk != prop_kind::forward_inference) add(scratch_, pixel_offset); } template <cpu_isa_t isa, data_type_t d_type> void jit_uni_lrn_fwd_kernel<isa, d_type>::within_body_reg_blocked( int loop_count, int max_reg_blocks, int hoff, int Hoff, int woff, int Woff, int stride, prop_kind_t pk) { Label label_t; const auto res = std::div(loop_count, max_reg_blocks); if (res.quot) { mov(w_, res.quot); L(label_t); within_body(hoff, Hoff, woff, Woff, stride, pk, max_reg_blocks, 0); move_data_pointers(max_reg_blocks, pk); dec(w_); cmp(w_, 0); jne(label_t, T_NEAR); } if (res.rem) { within_body(hoff, Hoff, woff, Woff, stride, pk, res.rem, 0); move_data_pointers(res.rem, pk); } } template <cpu_isa_t isa, data_type_t d_type> void jit_uni_lrn_fwd_kernel<isa, d_type>::load_constant( float constant, Vmm v_constant, Xbyak::Xmm x_constant) { mov(imm_addr64_, float2int(constant)); uni_vmovq(x_constant, imm_addr64_); vbroadcastss(v_constant, x_constant); } template <> void jit_uni_lrn_fwd_kernel<sse41, dnnl::impl::data_type::f32>::load_constant( float constant, Vmm v_constant, Xbyak::Xmm x_constant) { mov(imm_addr64_, float2int(constant)); uni_vmovq(x_constant, imm_addr64_); shufps(x_constant, x_constant, 0); } template <cpu_isa_t isa, data_type_t d_type> jit_uni_lrn_fwd_kernel<isa, d_type>::jit_uni_lrn_fwd_kernel( const within_config &J, float A, float K, prop_kind_t pk, void *code_ptr, size_t code_size) : jit_generator(code_ptr, code_size) , alpha_(A) , k_(K) , single_pixel_offset_(J.dat_tag == nhwc ? J.C * sizeof(typename prec_traits<d_type>::type) : VECTOR_LENGTH * sizeof(typename prec_traits<d_type>::type)) { if (isa == avx512_common && d_type == dnnl::impl::data_type::bf16 && !mayiuse(avx512_core_bf16)) { bf16_emu_ = utils::make_unique<bf16_emulation_t>(this, bf16_emu_reserv_1_, bf16_emu_reserv_2_, bf16_emu_reserv_3_, bf16_emu_scratch_, bf16_emu_reserv_4_); bf16_emu_->init_vcvtneps2bf16(); } static const int max_reg_blocks = isa == avx512_common ? 3 : 1; this->preamble(); #define GET_OFF(field) offsetof(jit_args_fwd_t, field) mov(src_, ptr[this->param1 + GET_OFF(src)]); mov(dst_, ptr[this->param1 + GET_OFF(dst)]); if (pk != prop_kind::forward_inference) mov(scratch_, ptr[this->param1 + GET_OFF(scratch)]); #undef GET_OFF load_constant(alpha_, valpha_, xalpha_); load_constant(k_, vk_, xk_); const int s2 = (J.size - 1) / 2, S2 = J.size - s2 - 1; int pixel_count = 0; for (int i = 0; i < s2; ++i) { pixel_count = 0; for (int j = 0; j < s2; ++j) within_body(-i, S2, -j, S2, J.W, pk, 1, pixel_count++ * single_pixel_offset_); move_data_pointers(pixel_count, pk); within_body_reg_blocked( J.W - J.size + 1, max_reg_blocks, -i, S2, -s2, S2, J.W, pk); pixel_count = 0; for (int j = J.W - S2; j < J.W; ++j) within_body(-i, S2, -s2, J.W - 1 - j, J.W, pk, 1, pixel_count++ * single_pixel_offset_); move_data_pointers(pixel_count, pk); } mov(h_, J.H - J.size + 1); Label lrn_loop_h; L(lrn_loop_h); pixel_count = 0; for (int j = 0; j < s2; ++j) within_body(-s2, S2, -j, S2, J.W, pk, 1, pixel_count++ * single_pixel_offset_); move_data_pointers(pixel_count, pk); within_body_reg_blocked( J.W - J.size + 1, max_reg_blocks, -s2, S2, -s2, S2, J.W, pk); pixel_count = 0; for (int j = J.W - S2; j < J.W; ++j) within_body(-s2, S2, -s2, J.W - 1 - j, J.W, pk, 1, pixel_count++ * single_pixel_offset_); move_data_pointers(pixel_count, pk); dec(h_); cmp(h_, 0); jne(lrn_loop_h, T_NEAR); for (int i = J.H - S2; i < J.H; ++i) { pixel_count = 0; for (int j = 0; j < s2; ++j) within_body(-s2, J.H - 1 - i, -j, S2, J.W, pk, 1, pixel_count++ * single_pixel_offset_); move_data_pointers(pixel_count, pk); within_body_reg_blocked(J.W - J.size + 1, max_reg_blocks, -s2, J.H - 1 - i, -s2, S2, J.W, pk); pixel_count = 0; for (int j = J.W - S2; j < J.W; ++j) within_body(-s2, J.H - 1 - i, -s2, J.W - 1 - j, J.W, pk, 1, pixel_count++ * single_pixel_offset_); move_data_pointers(pixel_count, pk); } this->postamble(); ker = reinterpret_cast<decltype(ker)>( const_cast<uint8_t *>(this->getCode())); } template <cpu_isa_t isa, data_type_t d_type> jit_uni_lrn_fwd_kernel<isa, d_type>::jit_uni_lrn_fwd_kernel( const struct nchw8c_across &J, float A, float K, prop_kind_t pk, void *code_ptr, size_t code_size) : jit_generator(code_ptr, code_size), bf16_emu_(nullptr), alpha_(A), k_(K) { Xbyak::Reg64 t = rsp; Xbyak::Reg64 hw = r9; Xbyak::Xmm xsrc_prev = xmm2; Xbyak::Ymm ysrc = ymm3; Xbyak::Ymm yc = ymm3; Xbyak::Xmm xsrc_next = xmm4; Xbyak::Ymm ya = ymm5; Xbyak::Ymm yb = ymm6; Xbyak::Ymm yd = ymm7; Xbyak::Ymm ye = ymm8; Xbyak::Ymm ysum = ymm9; Xbyak::Ymm ysum2 = ymm10; Xbyak::Ymm ydst = ymm11; Xbyak::Ymm ybase = ymm12; this->preamble(); mov(src_, ptr[this->param1 + 0]); mov(dst_, ptr[this->param1 + 8]); if (pk != prop_kind::forward_inference) mov(scratch_, ptr[this->param1 + 16]); sub(t, 64); mov(imm_addr64_, float2int(this->alpha_)); movq(xalpha_, imm_addr64_); vbroadcastss(valpha_, xalpha_); mov(imm_addr64_, float2int(this->k_)); movq(xk_, imm_addr64_); vbroadcastss(yk_, xk_); if (J.version == -1) { vxorps(xsrc_prev, xsrc_prev, xsrc_prev); vmovups(ptr[t + 0], xsrc_prev); } if (J.version == +1) { vxorps(xsrc_next, xsrc_next, xsrc_next); vmovups(ptr[t + 48], xsrc_next); } mov(hw, J.H * J.W); Label lrn_loop; L(lrn_loop); if (J.version != -1) vmovups(xsrc_prev, ptr[src_ - J.H * J.W * 32 + 16]); vmovups(ysrc, ptr[src_]); if (J.version != +1) vmovups(xsrc_next, ptr[src_ + J.H * J.W * 32]); if (J.version != -1) vmovups(ptr[t + 0], xsrc_prev); vmovups(ptr[t + 16], ysrc); if (J.version != +1) vmovups(ptr[t + 48], xsrc_next); vmovups(ya, ptr[t + 16 - 8]); vmovups(yb, ptr[t + 16 - 4]); vmovups(yd, ptr[t + 16 + 4]); vmovups(ye, ptr[t + 16 + 8]); vmulps(ysum, yc, yc); vfmadd231ps(ysum, ya, ya); // ysum <- ysum + ya*ya vfmadd231ps(ysum, yb, yb); vfmadd231ps(ysum, yd, yd); vfmadd231ps(ysum, ye, ye); vfmadd132ps(ysum, yk_, valpha_); // ysum <- ysum*valpha_+yk_ vmovaps(ybase, ysum); if (pk != prop_kind::forward_inference) vmovups(ptr[scratch_], ybase); vmulps(ysum2, ysum, ysum); vmulps(ysum, ysum, ysum2); // ysum = ybase^3; vsqrtps(ysum, ysum); vsqrtps(ysum, ysum); // ysum = ybase^0.75 vdivps(ydst, ysrc, ysum); // ydst = ysrc / ysum vmovups(ptr[dst_], ydst); add(src_, 32); add(dst_, 32); if (pk != prop_kind::forward_inference) add(scratch_, 32); dec(hw); cmp(hw, 0); jne(lrn_loop, T_NEAR); add(t, 64); this->postamble(); ker = reinterpret_cast<decltype(ker)>( const_cast<uint8_t *>(this->getCode())); } template <> jit_uni_lrn_fwd_kernel<sse41, dnnl::impl::data_type::f32>:: jit_uni_lrn_fwd_kernel(const struct nchw8c_across &J, float A, float K, prop_kind_t pk, void *code_ptr, size_t code_size) : jit_generator(code_ptr, code_size), bf16_emu_(nullptr), alpha_(A), k_(K) { Xbyak::Reg64 t = rsp; Xbyak::Reg64 hw = r9; Xbyak::Xmm xsrc_lo = xmm2; Xbyak::Xmm xsrc_hi = xmm3; Xbyak::Xmm xc_lo = xmm4; Xbyak::Xmm xc_hi = xmm5; Xbyak::Xmm xsum_lo = xc_lo; Xbyak::Xmm xsum_hi = xc_hi; Xbyak::Xmm xsrc_prev = xmm6; Xbyak::Xmm xsrc_next = xmm7; Xbyak::Xmm xa_lo = xmm8; Xbyak::Xmm xa_hi = xmm9; Xbyak::Xmm xb_lo = xmm10; Xbyak::Xmm xb_hi = xmm11; Xbyak::Xmm xd_lo = xmm12; Xbyak::Xmm xd_hi = xmm13; Xbyak::Xmm xe_lo = xmm14; Xbyak::Xmm xe_hi = xmm15; Xbyak::Xmm xbase_lo = xmm14; Xbyak::Xmm xbase_hi = xmm15; this->preamble(); mov(src_, ptr[this->param1 + 0]); mov(dst_, ptr[this->param1 + 8]); if (pk != prop_kind::forward_inference) mov(scratch_, ptr[this->param1 + 16]); sub(t, 64); mov(imm_addr64_, float2int(this->alpha_)); movq(xalpha_, imm_addr64_); shufps(xalpha_, xalpha_, 0); mov(imm_addr64_, float2int(this->k_)); movq(xk_, imm_addr64_); shufps(xk_, xk_, 0); if (J.version == -1) { xorps(xsrc_prev, xsrc_prev); movups(ptr[t + 0], xsrc_prev); } if (J.version == +1) { xorps(xsrc_next, xsrc_next); movups(ptr[t + 48], xsrc_next); } mov(hw, J.H * J.W); Label lrn_loop; L(lrn_loop); if (J.version != -1) movups(xsrc_prev, ptr[src_ - J.H * J.W * 32 + 16]); movups(xsrc_lo, ptr[src_]); movups(xsrc_hi, ptr[src_ + 4 * sizeof(float)]); if (J.version != +1) movups(xsrc_next, ptr[src_ + J.H * J.W * 32]); if (J.version != -1) movups(ptr[t + 0], xsrc_prev); movups(ptr[t + 16], xsrc_lo); movups(ptr[t + 16 + 4 * sizeof(float)], xsrc_hi); if (J.version != +1) movups(ptr[t + 48], xsrc_next); movups(xa_lo, ptr[t + 16 - 8]); movups(xa_hi, ptr[t + 16 - 8 + 4 * sizeof(float)]); movups(xb_lo, ptr[t + 16 - 4]); movups(xb_hi, ptr[t + 16 - 4 + 4 * sizeof(float)]); movups(xd_lo, ptr[t + 16 + 4]); movups(xd_hi, ptr[t + 16 + 4 + 4 * sizeof(float)]); movups(xe_lo, ptr[t + 16 + 8]); movups(xe_hi, ptr[t + 16 + 8 + 4 * sizeof(float)]); movaps(xc_lo, xsrc_lo); movaps(xc_hi, xsrc_hi); mulps(xsum_lo, xc_lo); mulps(xsum_hi, xc_hi); mulps(xa_lo, xa_lo); mulps(xa_hi, xa_hi); addps(xsum_lo, xa_lo); addps(xsum_hi, xa_hi); // xsum <- xsum + xa*xa mulps(xb_lo, xb_lo); mulps(xb_hi, xb_hi); addps(xsum_lo, xb_lo); addps(xsum_hi, xb_hi); mulps(xd_lo, xd_lo); mulps(xd_hi, xd_hi); addps(xsum_lo, xd_lo); addps(xsum_hi, xd_hi); mulps(xe_lo, xe_lo); mulps(xe_hi, xe_hi); addps(xsum_lo, xe_lo); addps(xsum_hi, xe_hi); mulps(xsum_lo, xalpha_); mulps(xsum_hi, xalpha_); addps(xsum_lo, xk_); addps(xsum_hi, xk_); // xsum <- xsum*xalpha_+xk_ movaps(xbase_lo, xsum_lo); movaps(xbase_hi, xsum_hi); if (pk != prop_kind::forward_inference) { movups(ptr[scratch_], xbase_lo); movups(ptr[scratch_ + 4 * sizeof(float)], xbase_hi); } mulps(xsum_lo, xsum_lo); mulps(xsum_hi, xsum_hi); mulps(xsum_lo, xbase_lo); mulps(xsum_hi, xbase_hi); // xsum = xbase^3; sqrtps(xsum_lo, xsum_lo); sqrtps(xsum_hi, xsum_hi); sqrtps(xsum_lo, xsum_lo); sqrtps(xsum_hi, xsum_hi); // xsum = xbase^0.75 divps(xsrc_lo, xsum_lo); divps(xsrc_hi, xsum_hi); // xdst = xsrc / xsum movups(ptr[dst_], xsrc_lo); movups(ptr[dst_ + 4 * sizeof(float)], xsrc_hi); add(src_, 32); add(dst_, 32); if (pk != prop_kind::forward_inference) add(scratch_, 32); dec(hw); cmp(hw, 0); jne(lrn_loop, T_NEAR); add(t, 64); this->postamble(); ker = reinterpret_cast<decltype(ker)>( const_cast<uint8_t *>(this->getCode())); } template <cpu_isa_t isa, data_type_t d_type> jit_uni_lrn_fwd_kernel<isa, d_type>::jit_uni_lrn_fwd_kernel( const struct nhwc_across &J, float A, float K, prop_kind_t pk, void *code_ptr, size_t code_size) : jit_generator(code_ptr, code_size), bf16_emu_(nullptr), alpha_(A), k_(K) { static const uint32_t mask[] = {0, 0, 0x80000000, 0x80000000, 0x80000000, 0x80000000, 0x80000000, 0x80000000, 0x80000000, 0, 0}; Xbyak::Reg64 c = r9; Xbyak::Ymm ya = ymm2; Xbyak::Ymm yb = ymm3; Xbyak::Ymm yc = ymm4; Xbyak::Ymm yd = ymm5; Xbyak::Ymm ye = ymm6; Xbyak::Ymm ysum = ymm7; Xbyak::Ymm ydst = ymm8; Xbyak::Ymm ybase = ymm9; Xbyak::Ymm ymask = ymm10; this->preamble(); mov(src_, ptr[this->param1 + 0]); mov(dst_, ptr[this->param1 + 8]); if (pk != prop_kind::forward_inference) mov(scratch_, ptr[this->param1 + 16]); mov(imm_addr64_, float2int(this->alpha_)); movq(xalpha_, imm_addr64_); vbroadcastss(valpha_, xalpha_); mov(imm_addr64_, float2int(this->k_)); movq(xk_, imm_addr64_); vbroadcastss(yk_, xk_); vxorps(ysum, ysum, ysum); mov(imm_addr64_, reinterpret_cast<size_t>(&mask[0])); vmovups(ymask, ptr[imm_addr64_]); vmaskmovps(ya, ymask, ptr[src_ - 8]); vfmadd231ps(ysum, ya, ya); // ysum <- ysum + ya^2+yb^2+yc^2+yd^2+ye^2 mov(imm_addr64_, reinterpret_cast<size_t>(&mask[1])); vmovups(ymask, ptr[imm_addr64_]); vmaskmovps(yb, ymask, ptr[src_ - 4]); vfmadd231ps(ysum, yb, yb); mov(c, J.C / 8 - 1); Label lrn_loop; L(lrn_loop); vmovups(yc, ptr[src_]); vmovups(yd, ptr[src_ + 4]); vmovups(ye, ptr[src_ + 8]); vfmadd231ps(ysum, yc, yc); vfmadd231ps(ysum, yd, yd); vfmadd231ps(ysum, ye, ye); vmovups(ydst, ysum); vfmadd132ps(ydst, yk_, valpha_); // ydst <- ysum*valpha_+yk_ vmovaps(ybase, ydst); if (pk != prop_kind::forward_inference) vmovups(ptr[scratch_], ybase); vmulps(ydst, ydst, ydst); vmulps(ydst, ydst, ybase); // ydst = (ysum*valpha_+yk_)^3; vsqrtps(ydst, ydst); vsqrtps(ydst, ydst); // ydst = (ysum*valpha_+yk_)^0.75 vdivps(ydst, yc, ydst); // ydst = ysrc / (ysum*valpha_+yk_)^0.75 vmovups(ptr[dst_], ydst); vxorps(ysum, ysum, ysum); add(src_, 32); add(dst_, 32); if (pk != prop_kind::forward_inference) add(scratch_, 32); vmovups(ya, ptr[src_ - 8]); vfmadd231ps(ysum, ya, ya); vmovups(yb, ptr[src_ - 4]); vfmadd231ps(ysum, yb, yb); dec(c); cmp(c, 0); jne(lrn_loop, T_NEAR); vmovups(yc, ptr[src_]); vfmadd231ps(ysum, yc, yc); mov(imm_addr64_, reinterpret_cast<size_t>(&mask[2])); vmovups(ymask, ptr[imm_addr64_]); vmaskmovps(yd, ymask, ptr[src_ + 4]); vfmadd231ps(ysum, yd, yd); // ysum <- ysum + ya^2+yb^2+yc^2+yd^2+ye^2 mov(imm_addr64_, reinterpret_cast<size_t>(&mask[3])); vmovups(ymask, ptr[imm_addr64_]); vmaskmovps(ye, ymask, ptr[src_ + 8]); vfmadd231ps(ysum, ye, ye); vmovups(ydst, ysum); vfmadd132ps(ydst, yk_, valpha_); // ydst <- ysum*valpha_+yk_ vmovaps(ybase, ydst); if (pk != prop_kind::forward_inference) vmovups(ptr[scratch_], ybase); vmulps(ydst, ydst, ydst); vmulps(ydst, ydst, ybase); // ydst = (ysum*valpha_+yk_)^3; vsqrtps(ydst, ydst); vsqrtps(ydst, ydst); // ydst = (ysum*valpha_+yk_)^0.75 vdivps(ydst, yc, ydst); // ydst = ysrc / (ysum*valpha_+yk_)^0.75 vmovups(ptr[dst_], ydst); this->postamble(); ker = reinterpret_cast<decltype(ker)>( const_cast<uint8_t *>(this->getCode())); } template <> jit_uni_lrn_fwd_kernel<sse41, dnnl::impl::data_type::f32>:: jit_uni_lrn_fwd_kernel(const struct nhwc_across &J, float A, float K, prop_kind_t pk, void *code_ptr, size_t code_size) : jit_generator(code_ptr, code_size), bf16_emu_(nullptr), alpha_(A), k_(K) { static uint32_t store[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; Xbyak::Reg64 c = r9; Xbyak::Xmm xdst_lo = xmm0; Xbyak::Xmm xdst_hi = xmm1; Xbyak::Xmm xa_lo = xmm2; Xbyak::Xmm xa_hi = xmm3; Xbyak::Xmm xb_lo = xmm2; Xbyak::Xmm xb_hi = xmm3; Xbyak::Xmm xc_lo = xmm4; Xbyak::Xmm xc_hi = xmm5; Xbyak::Xmm xd_lo = xmm6; Xbyak::Xmm xd_hi = xmm7; Xbyak::Xmm xe_lo = xmm8; Xbyak::Xmm xe_hi = xmm9; Xbyak::Xmm xsum_lo = xmm10; Xbyak::Xmm xsum_hi = xmm11; // unused: xmm12, xmm13; Xbyak::Xmm xbase_lo = xmm14; Xbyak::Xmm xbase_hi = xmm15; this->preamble(); mov(src_, ptr[this->param1 + 0]); mov(dst_, ptr[this->param1 + 8]); if (pk != prop_kind::forward_inference) mov(scratch_, ptr[this->param1 + 16]); mov(imm_addr64_, float2int(this->alpha_)); movq(xalpha_, imm_addr64_); shufps(xalpha_, xalpha_, 0); mov(imm_addr64_, float2int(this->k_)); movq(xk_, imm_addr64_); shufps(xk_, xk_, 0); mov(store_addr_, reinterpret_cast<size_t>(&store[0])); and_(store_addr_, -15); movups(ptr[store_addr_], xalpha_); movups(ptr[store_addr_ + 4 * sizeof(float)], xk_); xorps(xsum_lo, xsum_lo); xorps(xsum_hi, xsum_hi); /* load the 2 first blocks of channels * block: | -- low -- | -- hi -- | * C: [c1,c2,c3,c4,c5,c6,c7,c8] * xa_lo << 2 [0,0,c1,c2] * xa_hi [c3,c4,c5,c6] * xb_lo << 1 [0,c1,c2,c3] * xb_hi [c4,c5,c6,c7] * | -- data -- (...) * ^ memory boundary */ movups(xa_lo, ptr[src_]); movups(xa_hi, ptr[src_ + 2 * sizeof(float)]); pslldq(xa_lo, 2 * sizeof(float)); mulps(xa_lo, xa_lo); mulps(xa_hi, xa_hi); addps(xsum_lo, xa_lo); addps(xsum_hi, xa_hi); // xsum <- xsum + xa^2+xb^2+xc^2+xd^2+xe^2 movups(xb_lo, ptr[src_]); movups(xb_hi, ptr[src_ + 3 * sizeof(float)]); pslldq(xb_lo, 1 * sizeof(float)); mulps(xb_lo, xb_lo); mulps(xb_hi, xb_hi); addps(xsum_lo, xb_lo); addps(xsum_hi, xb_hi); mov(c, J.C / 8 - 1); Label lrn_loop; L(lrn_loop); movups(xc_lo, ptr[src_]); movups(xc_hi, ptr[src_ + 4 * sizeof(float)]); movups(xd_lo, ptr[src_ + 4]); movups(xd_hi, ptr[src_ + 4 + 4 * sizeof(float)]); movups(xe_lo, ptr[src_ + 8]); movups(xe_hi, ptr[src_ + 8 + 4 * sizeof(float)]); mulps(xc_lo, xc_lo); mulps(xc_hi, xc_hi); addps(xsum_lo, xc_lo); addps(xsum_hi, xc_hi); mulps(xd_lo, xd_lo); mulps(xd_hi, xd_hi); addps(xsum_lo, xd_lo); addps(xsum_hi, xd_hi); mulps(xe_lo, xe_lo); mulps(xe_hi, xe_hi); addps(xsum_lo, xe_lo); addps(xsum_hi, xe_hi); movaps(xdst_lo, xsum_lo); movaps(xdst_hi, xsum_hi); // xdst <- xsum*xalpha_+xk_ mulps(xdst_lo, ptr[store_addr_]); mulps(xdst_hi, ptr[store_addr_]); addps(xdst_lo, ptr[store_addr_ + 4 * sizeof(float)]); addps(xdst_hi, ptr[store_addr_ + 4 * sizeof(float)]); movaps(xbase_lo, xdst_lo); movaps(xbase_hi, xdst_hi); if (pk != prop_kind::forward_inference) { movups(ptr[scratch_], xbase_lo); movups(ptr[scratch_ + 4 * sizeof(float)], xbase_hi); } mulps(xdst_lo, xdst_lo); mulps(xdst_hi, xdst_hi); mulps(xdst_lo, xbase_lo); mulps(xdst_hi, xbase_hi); // xdst = (xsum*xalpha_+xk_)^3; sqrtps(xdst_lo, xdst_lo); sqrtps(xdst_hi, xdst_hi); sqrtps(xdst_lo, xdst_lo); sqrtps(xdst_hi, xdst_hi); // xdst = (xsum*xalpha_+xk_)^0.75 movups(xc_lo, ptr[src_]); movups(xc_hi, ptr[src_ + 4 * sizeof(float)]); divps(xc_lo, xdst_lo); divps(xc_hi, xdst_hi); // xdst = xsrc / (xsum*xalpha_+xk_)^0.75 movups(ptr[dst_], xc_lo); movups(ptr[dst_ + 4 * sizeof(float)], xc_hi); xorps(xsum_lo, xsum_lo); xorps(xsum_hi, xsum_hi); add(src_, 32); add(dst_, 32); if (pk != prop_kind::forward_inference) add(scratch_, 32); movups(xa_lo, ptr[src_ - 8]); movups(xa_hi, ptr[src_ - 8 + 4 * sizeof(float)]); mulps(xa_lo, xa_lo); mulps(xa_hi, xa_hi); addps(xsum_lo, xa_lo); addps(xsum_hi, xa_hi); movups(xb_lo, ptr[src_ - 4]); movups(xb_hi, ptr[src_ - 4 + 4 * sizeof(float)]); mulps(xb_lo, xb_lo); mulps(xb_hi, xb_hi); addps(xsum_lo, xb_lo); addps(xsum_hi, xb_hi); dec(c); cmp(c, 0); jne(lrn_loop, T_NEAR); /* compute last 3 blocks of channels: * block: | -- low -- | -- hi -- | * C: [c1,c2,c3,c4,c5,c6,c7,c8] * xc_lo|xc_hi [c1,c2,c3,c4|c5,c6,c7,c8] * xd_lo [c2,c3,c4,c5] * xd_hi >> 1 [c6,c7,c8, 0] * xe_lo [c3,c4,c5,c6] * xe_hi >> 2 [c7,c8, 0, 0] * (...) -- data -- | -- illegal reading -- (...) * ^ memory boundary */ movups(xc_lo, ptr[src_]); movups(xc_hi, ptr[src_ + 4 * sizeof(float)]); mulps(xc_lo, xc_lo); mulps(xc_hi, xc_hi); addps(xsum_lo, xc_lo); addps(xsum_hi, xc_hi); movups(xd_lo, ptr[src_ + 1 * sizeof(float)]); movups(xd_hi, ptr[src_ + 4 * sizeof(float)]); psrldq(xd_hi, 1 * sizeof(float)); mulps(xd_lo, xd_lo); mulps(xd_hi, xd_hi); addps(xsum_lo, xd_lo); addps(xsum_hi, xd_hi); // xsum <- xsum + xa^2+xb^2+xc^2+xd^2+xe^2 movups(xe_lo, ptr[src_ + 2 * sizeof(float)]); movups(xe_hi, ptr[src_ + 4 * sizeof(float)]); psrldq(xe_hi, 2 * sizeof(float)); mulps(xe_lo, xe_lo); mulps(xe_hi, xe_hi); addps(xsum_lo, xe_lo); addps(xsum_hi, xe_hi); movups(xdst_lo, xsum_lo); movups(xdst_hi, xsum_hi); // xdst <- xsum*xalpha_+xk_ mulps(xdst_lo, ptr[store_addr_]); mulps(xdst_hi, ptr[store_addr_]); addps(xdst_lo, ptr[store_addr_ + 4 * sizeof(float)]); addps(xdst_hi, ptr[store_addr_ + 4 * sizeof(float)]); movaps(xbase_lo, xdst_lo); movaps(xbase_hi, xdst_hi); if (pk != prop_kind::forward_inference) { movups(ptr[scratch_], xbase_lo); movups(ptr[scratch_ + 4 * sizeof(float)], xbase_hi); } mulps(xdst_lo, xdst_lo); mulps(xdst_hi, xdst_hi); mulps(xdst_lo, xbase_lo); mulps(xdst_hi, xbase_hi); // xdst = (xsum*xalpha_+xk_)^3; sqrtps(xdst_lo, xdst_lo); sqrtps(xdst_hi, xdst_hi); sqrtps(xdst_lo, xdst_lo); sqrtps(xdst_hi, xdst_hi); // xdst = (xsum*xalpha_+xk_)^0.75 movups(xc_lo, ptr[src_]); movups(xc_hi, ptr[src_ + 4 * sizeof(float)]); divps(xc_lo, xdst_lo); divps(xc_hi, xdst_hi); // xdst = xsrc / (xsum*xalpha_+xk_)^0.75 movups(ptr[dst_], xc_lo); movups(ptr[dst_ + 4 * sizeof(float)], xc_hi); this->postamble(); ker = reinterpret_cast<decltype(ker)>( const_cast<uint8_t *>(this->getCode())); } template <> void jit_uni_lrn_fwd_kernel<sse41, dnnl::impl::data_type::f32>::nchw_body( int tail, int HW, prop_kind_t pk, Xbyak::Ymm ymask, Xbyak::Ymm ya, Xbyak::Ymm yb, Xbyak::Ymm yc, Xbyak::Ymm yd, Xbyak::Ymm ye, Xbyak::Ymm ysum) {} template <cpu_isa_t isa, data_type_t d_type> void jit_uni_lrn_fwd_kernel<isa, d_type>::nchw_body(int tail, int HW, prop_kind_t pk, Xbyak::Ymm ymask, Xbyak::Ymm ya, Xbyak::Ymm yb, Xbyak::Ymm yc, Xbyak::Ymm yd, Xbyak::Ymm ye, Xbyak::Ymm ysum) { Xbyak::Ymm ydst = ymm14; Xbyak::Ymm ybase = ymm15; vfmadd231ps(ysum, ye, ye); vmovups(ydst, ysum); vfmadd132ps(ydst, yk_, valpha_); // ydst <- ysum*valpha_+yk_ vmovaps(ybase, ydst); if (pk != prop_kind::forward_inference) { if (tail != 0) vmaskmovps(ptr[scratch_], ymask, ybase); else vmovups(ptr[scratch_], ybase); } vmulps(ydst, ydst, ydst); vmulps(ydst, ydst, ybase); // ydst = (ysum*valpha_+yk_)^3; vsqrtps(ydst, ydst); vsqrtps(ydst, ydst); // ydst = (ysum*valpha_+yk_)^0.75 vdivps(ydst, yc, ydst); // ydst = ysrc / (ysum*valpha_+yk_)^0.75 if (tail != 0) vmaskmovps(ptr[dst_], ymask, ydst); else vmovups(ptr[dst_], ydst); vfnmadd231ps(ysum, ya, ya); vmovups(ya, yb); vmovups(yb, yc); vmovups(yc, yd); vmovups(yd, ye); } template <cpu_isa_t isa, data_type_t d_type> void jit_uni_lrn_fwd_kernel<isa, d_type>::nchw_tail_sse41(int tail, Xbyak::Reg64 reg_dst, Xbyak::Xmm xtail_lo, Xbyak::Xmm xtail_hi) {} template <> void jit_uni_lrn_fwd_kernel<sse41, dnnl::impl::data_type::f32>::nchw_tail_sse41( int tail, Xbyak::Reg64 reg_dst, Xbyak::Xmm xtail_lo, Xbyak::Xmm xtail_hi) { Xbyak::Xmm xmm_tmp = xmm10; movaps(xmm_tmp, xtail_hi); if (tail > 3) { /* Store upper-half directly */ movups(ptr[reg_dst + (tail - 4) * sizeof(float)], xtail_hi); movaps(xmm_tmp, xtail_lo); tail -= 4; } if (tail > 0) { /* Store on a single-element basis when 'tail' overlaps * with 'src_' */ psrldq(xmm_tmp, (4 - tail) * sizeof(float)); movss(ptr[reg_dst], xmm_tmp); for (int i = 1; i < tail; i++) { psrldq(xmm_tmp, sizeof(float)); movss(ptr[reg_dst + i * sizeof(float)], xmm_tmp); } } } template <> void jit_uni_lrn_fwd_kernel<sse41, dnnl::impl::data_type::f32>::nchw_body_sse41( int tail, int HW, prop_kind_t pk, Xbyak::Xmm xe_lo, Xbyak::Xmm xe_hi, Xbyak::Xmm xsum_lo, Xbyak::Xmm xsum_hi) { Xbyak::Xmm xdst_lo = xmm0; Xbyak::Xmm xdst_hi = xmm1; Xbyak::Xmm xbase_lo = xmm6; Xbyak::Xmm xbase_hi = xmm7; Xbyak::Xmm xtmp_lo = xmm8; Xbyak::Xmm xtmp_hi = xmm9; Xbyak::Xmm xa_lo = xmm6; Xbyak::Xmm xa_hi = xmm7; Xbyak::Xmm xb_lo = xmm8; Xbyak::Xmm xb_hi = xmm9; Xbyak::Xmm xc_lo = xmm10; Xbyak::Xmm xc_hi = xmm11; Xbyak::Xmm xd_lo = xmm12; Xbyak::Xmm xd_hi = xmm13; // store xe movaps(ptr[store_addr_ + 10 * 4 * sizeof(float)], xe_lo); movaps(ptr[store_addr_ + 11 * 4 * sizeof(float)], xe_hi); mulps(xe_lo, xe_lo); mulps(xe_hi, xe_hi); addps(xsum_lo, xe_lo); addps(xsum_hi, xe_hi); // xdst <- xsum*xalpha_+xk_ movaps(xdst_lo, xsum_lo); movaps(xdst_hi, xsum_hi); mulps(xdst_lo, ptr[store_addr_ + 0 * 4 * sizeof(float)]); mulps(xdst_hi, ptr[store_addr_ + 0 * 4 * sizeof(float)]); addps(xdst_lo, ptr[store_addr_ + 1 * 4 * sizeof(float)]); addps(xdst_hi, ptr[store_addr_ + 1 * 4 * sizeof(float)]); movaps(xbase_lo, xdst_lo); movaps(xbase_hi, xdst_hi); if (pk != prop_kind::forward_inference) { if (tail != 0) { nchw_tail_sse41(tail, scratch_, xbase_lo, xbase_hi); } else { movups(ptr[scratch_], xbase_lo); movups(ptr[scratch_ + 4 * sizeof(float)], xbase_hi); } } mulps(xdst_lo, xdst_lo); mulps(xdst_hi, xdst_hi); mulps(xdst_lo, xbase_lo); mulps(xdst_hi, xbase_hi); // xdst = (xsum*xalpha_+xk_)^3; sqrtps(xdst_lo, xdst_lo); sqrtps(xdst_hi, xdst_hi); sqrtps(xdst_lo, xdst_lo); sqrtps(xdst_hi, xdst_hi); // xdst = (xsum*xalpha_+xk_)^0.75 movaps(xtmp_lo, ptr[store_addr_ + 6 * 4 * sizeof(float)]); movaps(xtmp_hi, ptr[store_addr_ + 7 * 4 * sizeof(float)]); divps(xtmp_lo, xdst_lo); divps(xtmp_hi, xdst_hi); // xdst = xsrc / (xsum*xalpha_+xk_)^0.75 movaps(xdst_lo, xtmp_lo); movaps(xdst_hi, xtmp_hi); if (tail != 0) { nchw_tail_sse41(tail, dst_, xdst_lo, xdst_hi); } else { movups(ptr[dst_], xdst_lo); movups(ptr[dst_ + 4 * sizeof(float)], xdst_hi); } movaps(xa_lo, ptr[store_addr_ + 2 * 4 * sizeof(float)]); movaps(xa_hi, ptr[store_addr_ + 3 * 4 * sizeof(float)]); mulps(xa_lo, xa_lo); mulps(xa_hi, xa_hi); subps(xsum_lo, xa_lo); subps(xsum_hi, xa_hi); // xa <- xb movaps(xb_lo, ptr[store_addr_ + 4 * 4 * sizeof(float)]); movaps(xb_hi, ptr[store_addr_ + 5 * 4 * sizeof(float)]); movaps(ptr[store_addr_ + 2 * 4 * sizeof(float)], xb_lo); movaps(ptr[store_addr_ + 3 * 4 * sizeof(float)], xb_hi); // xb <- xc movaps(xc_lo, ptr[store_addr_ + 6 * 4 * sizeof(float)]); movaps(xc_hi, ptr[store_addr_ + 7 * 4 * sizeof(float)]); movaps(ptr[store_addr_ + 4 * 4 * sizeof(float)], xc_lo); movaps(ptr[store_addr_ + 5 * 4 * sizeof(float)], xc_hi); // xc <- xd movaps(xd_lo, ptr[store_addr_ + 8 * 4 * sizeof(float)]); movaps(xd_hi, ptr[store_addr_ + 9 * 4 * sizeof(float)]); movaps(ptr[store_addr_ + 6 * 4 * sizeof(float)], xd_lo); movaps(ptr[store_addr_ + 7 * 4 * sizeof(float)], xd_hi); // xd <- xe movaps(xe_lo, ptr[store_addr_ + 10 * 4 * sizeof(float)]); movaps(xe_hi, ptr[store_addr_ + 11 * 4 * sizeof(float)]); movaps(ptr[store_addr_ + 8 * 4 * sizeof(float)], xe_lo); movaps(ptr[store_addr_ + 9 * 4 * sizeof(float)], xe_hi); } template <cpu_isa_t isa, data_type_t d_type> void jit_uni_lrn_fwd_kernel<isa, d_type>::nchw_body_sse41(int tail, int HW, prop_kind_t pk, Xbyak::Xmm xe_lo, Xbyak::Xmm xe_hi, Xbyak::Xmm xsum_lo, Xbyak::Xmm xsum_hi) {} template <cpu_isa_t isa, data_type_t d_type> jit_uni_lrn_fwd_kernel<isa, d_type>::jit_uni_lrn_fwd_kernel( const nchw_across &J, float A, float K, prop_kind_t pk, void *code_ptr, size_t code_size) : jit_generator(code_ptr, code_size), alpha_(A), k_(K) { static const uint32_t mask[] = {0x80000000, 0x80000000, 0x80000000, 0x80000000, 0x80000000, 0x80000000, 0x80000000, 0, 0, 0, 0, 0, 0, 0}; Xbyak::Reg64 c = r10; Xbyak::Ymm ymask = ymm2; Xbyak::Ymm ye = ymm3; Xbyak::Ymm ya = ymm4; Xbyak::Ymm yb = ymm5; Xbyak::Ymm yc = ymm6; Xbyak::Ymm yd = ymm7; Xbyak::Ymm ysum = ymm8; this->preamble(); if (J.tail != 0) { mov(imm_addr64_, reinterpret_cast<size_t>(&mask[7 - J.tail])); vmovups(ymask, ptr[imm_addr64_]); } mov(imm_addr64_, float2int(this->alpha_)); movq(xalpha_, imm_addr64_); vbroadcastss(valpha_, xalpha_); mov(imm_addr64_, float2int(this->k_)); movq(xk_, imm_addr64_); vbroadcastss(yk_, xk_); mov(src_, ptr[this->param1 + 0]); mov(dst_, ptr[this->param1 + 8]); if (pk != prop_kind::forward_inference) mov(scratch_, ptr[this->param1 + 16]); vxorps(ya, ya, ya); vxorps(yb, yb, yb); if (J.tail != 0) vmaskmovps(yc, ymask, ptr[src_ + J.HW * 0]); else vmovups(yc, ptr[src_ + J.HW * 0]); if (J.tail != 0) vmaskmovps(yd, ymask, ptr[src_ + J.HW * 4]); else vmovups(yd, ptr[src_ + J.HW * 4]); vxorps(ysum, ysum, ysum); vfmadd231ps(ysum, yc, yc); // ysum <- ysum + ya^2+yb^2+yc^2+yd^2+ye^2 vfmadd231ps(ysum, yd, yd); mov(c, J.C - 2); Label lrn_loop; L(lrn_loop); if (J.tail != 0) vmaskmovps(ye, ymask, ptr[src_ + J.HW * 8]); else vmovups(ye, ptr[src_ + J.HW * 8]); nchw_body(J.tail, J.HW, pk, ymask, ya, yb, yc, yd, ye, ysum); add(src_, J.HW * 4); add(dst_, J.HW * 4); if (pk != prop_kind::forward_inference) add(scratch_, J.HW * 4); dec(c); cmp(c, 0); jne(lrn_loop, T_NEAR); vxorps(ye, ye, ye); nchw_body(J.tail, J.HW, pk, ymask, ya, yb, yc, yd, ye, ysum); add(src_, J.HW * 4); add(dst_, J.HW * 4); if (pk != prop_kind::forward_inference) add(scratch_, J.HW * 4); nchw_body(J.tail, J.HW, pk, ymask, ya, yb, yc, yd, ye, ysum); this->postamble(); ker = reinterpret_cast<decltype(ker)>( const_cast<uint8_t *>(this->getCode())); } template <cpu_isa_t isa, data_type_t d_type> jit_uni_lrn_fwd_kernel<isa, d_type>::~jit_uni_lrn_fwd_kernel() = default; template <> jit_uni_lrn_fwd_kernel<sse41, dnnl::impl::data_type::f32>::jit_uni_lrn_fwd_kernel(const nchw_across &J, float A, float K, prop_kind_t pk, void *code_ptr, size_t code_size) : jit_generator(code_ptr, code_size), alpha_(A), k_(K) { /* Load from within the memory boundary of 'src_' and apply a zero-mask to * the 'x_hi' register: * block: src_ |tail = 3 * src_: [x,x,x,x|a,b,c] * x_hi: [x,a,b,c] * mask: [0,1,1,1] * (...) -- data -- | -- illegal reading -- (...) * ^ memory boundary * * 'x_lo' is loaded with the elements between 'src_' and 'x_hi' when * tail.size is between [5:7]. The register is then left-shifted to * clear the overlapping elements with 'x_hi'. * block: - src_ - | tail = 7 * src_: (...) [x,|a,b,c,d,e,f,g] * x_hi [d,e,f,g] * x_lo [a,b,c,d] * x_lo >> 1: [0,a,b,c] * (...) -- data -- | -- illegal reading -- (...) * ^ memory boundary * * - seg-fault happens if read occurs anywhere outside the * memory boundary. * */ static const uint32_t mask[] = {0, 0, 0, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff}; assert(J.HW > 3); Xbyak::Reg64 c = r10; // unused: xmm2 Xbyak::Xmm xmask_hi = xmm3; Xbyak::Xmm xsum_lo = xmm4; Xbyak::Xmm xsum_hi = xmm5; Xbyak::Xmm xa_lo = xmm6; Xbyak::Xmm xa_hi = xmm7; Xbyak::Xmm xb_lo = xmm8; Xbyak::Xmm xb_hi = xmm9; Xbyak::Xmm xc_lo = xmm10; Xbyak::Xmm xc_hi = xmm11; Xbyak::Xmm xd_lo = xmm12; Xbyak::Xmm xd_hi = xmm13; Xbyak::Xmm xe_lo = xmm14; Xbyak::Xmm xe_hi = xmm15; const int vlen = cpu_isa_traits<sse41>::vlen / sizeof(float); bool compute_tail = J.tail != 0; bool load_lo = J.tail == 0 || J.tail > 4; size_t h_offset = vlen; size_t l_shift = 0; this->preamble(); mov(src_, ptr[this->param1 + 0]); mov(dst_, ptr[this->param1 + 8]); if (pk != prop_kind::forward_inference) mov(scratch_, ptr[this->param1 + 16]); sub(rsp, stack_space_needed_); mov(store_addr_, rsp); and_(store_addr_, -15); mov(imm_addr64_, float2int(this->alpha_)); movq(xalpha_, imm_addr64_); shufps(xalpha_, xalpha_, 0); mov(imm_addr64_, float2int(this->k_)); movq(xk_, imm_addr64_); shufps(xk_, xk_, 0); // put alpha_ and k_ into store (free up regs) movaps(ptr[store_addr_ + 0 * 4 * sizeof(float)], xalpha_); movaps(ptr[store_addr_ + 1 * 4 * sizeof(float)], xk_); if (compute_tail) { assert(J.tail > 0 && J.tail < 2 * vlen); h_offset = J.tail - vlen; l_shift = nstl::min(2 * vlen - J.tail, vlen); /* if 'tail' is between [1:3], need to zero-mask for underflow */ size_t m_off = nstl::min(J.tail - 1, 3); mov(imm_addr64_, reinterpret_cast<size_t>(&mask[m_off])); movups(xmask_hi, ptr[imm_addr64_]); } // init xa, xb xorps(xa_lo, xa_lo); xorps(xa_hi, xa_hi); xorps(xb_lo, xb_lo); xorps(xb_hi, xb_hi); // read xc, xd if (load_lo) movups(xc_lo, ptr[src_ + J.HW * 0]); movups(xc_hi, ptr[src_ + J.HW * 0 + h_offset * sizeof(float)]); if (compute_tail) { pslldq(xc_lo, l_shift * sizeof(float)); andps(xc_hi, xmask_hi); } if (load_lo) movups(xd_lo, ptr[src_ + J.HW * 4]); movups(xd_hi, ptr[src_ + J.HW * 4 + h_offset * sizeof(float)]); if (compute_tail) { pslldq(xd_lo, l_shift * sizeof(float)); andps(xd_hi, xmask_hi); } // put xa, xb, xc, xd into store to free-up regs movaps(ptr[store_addr_ + 2 * 4 * sizeof(float)], xa_lo); movaps(ptr[store_addr_ + 3 * 4 * sizeof(float)], xa_hi); movaps(ptr[store_addr_ + 4 * 4 * sizeof(float)], xb_lo); movaps(ptr[store_addr_ + 5 * 4 * sizeof(float)], xb_hi); movaps(ptr[store_addr_ + 6 * 4 * sizeof(float)], xc_lo); movaps(ptr[store_addr_ + 7 * 4 * sizeof(float)], xc_hi); movaps(ptr[store_addr_ + 8 * 4 * sizeof(float)], xd_lo); movaps(ptr[store_addr_ + 9 * 4 * sizeof(float)], xd_hi); xorps(xsum_lo, xsum_lo); xorps(xsum_hi, xsum_hi); mulps(xc_lo, xc_lo); mulps(xc_hi, xc_hi); addps(xsum_lo, xc_lo); addps(xsum_hi, xc_hi); mulps(xd_lo, xd_lo); mulps(xd_hi, xd_hi); addps(xsum_lo, xd_lo); addps(xsum_hi, xd_hi); // xsum <- xsum + xa^2+xb^2+xc^2+xd^2+xe^2 mov(c, J.C - 2); Label lrn_loop; L(lrn_loop); if (load_lo) movups(xe_lo, ptr[src_ + J.HW * 8]); movups(xe_hi, ptr[src_ + J.HW * 8 + h_offset * sizeof(float)]); if (compute_tail) { pslldq(xe_lo, l_shift * sizeof(float)); andps(xe_hi, xmask_hi); } nchw_body_sse41(J.tail, J.HW, pk, xe_lo, xe_hi, xsum_lo, xsum_hi); add(src_, J.HW * 4); add(dst_, J.HW * 4); if (pk != prop_kind::forward_inference) add(scratch_, J.HW * 4); dec(c); cmp(c, 0); jne(lrn_loop, T_NEAR); xorps(xe_lo, xe_lo); xorps(xe_hi, xe_hi); nchw_body_sse41(J.tail, J.HW, pk, xe_lo, xe_hi, xsum_lo, xsum_hi); add(src_, J.HW * 4); add(dst_, J.HW * 4); if (pk != prop_kind::forward_inference) add(scratch_, J.HW * 4); nchw_body_sse41(J.tail, J.HW, pk, xe_lo, xe_hi, xsum_lo, xsum_hi); add(rsp, stack_space_needed_); this->postamble(); ker = reinterpret_cast<decltype(ker)>( const_cast<uint8_t *>(this->getCode())); } ////////////////////////////////////////////////////////////////////////////// // backward kernel template <cpu_isa_t isa> jit_uni_lrn_bwd_kernel_f32<isa>::jit_uni_lrn_bwd_kernel_f32( const struct nchw8c_across &J, float A, float B, int use_h_parallel, void *code_ptr, size_t code_size) : jit_generator(code_ptr, code_size) , nalphabeta(-2 * A * B) , use_h_parallelizm(use_h_parallel) { Xbyak::Reg64 t = rsp; Xbyak::Reg64 hw = r10; Xbyak::Xmm xsrc_prev = xmm1; Xbyak::Xmm xws_prev = xmm2; Xbyak::Xmm xdiffdst_prev = xmm3; Xbyak::Ymm ysrc = ymm4; Xbyak::Ymm yws = ymm5; Xbyak::Ymm ydiffdst = ymm6; Xbyak::Xmm xsrc_next = xmm7; Xbyak::Xmm xws_next = xmm8; Xbyak::Xmm xdiffdst_next = xmm9; Xbyak::Ymm ya = ymm10; Xbyak::Xmm xa = xmm10; Xbyak::Ymm yb = ymm11; Xbyak::Ymm yd = ymm12; Xbyak::Ymm ye = ymm13; Xbyak::Ymm ysum = ymm14; Xbyak::Ymm ydiffsrc = ymm15; this->preamble(); mov(src_, ptr[this->param1 + 0]); mov(diffdst, ptr[this->param1 + 8]); mov(workspace, ptr[this->param1 + 16]); mov(diffsrc, ptr[this->param1 + 24]); sub(t, 64); mov(imm_addr64_, float2int(this->nalphabeta)); movq(xnalphabeta, imm_addr64_); vbroadcastss(ynalphabeta, xnalphabeta); bool is_single = J.version == 3; bool is_first = J.version == -1 || J.version == -2; bool is_last = J.version == +1 || J.version == -2; if (is_first || is_single) { vxorps(xsrc_prev, xsrc_prev, xsrc_prev); vmovups(ptr[t + 0], xsrc_prev); } if (is_last || is_single) { vxorps(xsrc_next, xsrc_next, xsrc_next); vmovups(ptr[t + 48], xsrc_next); } mov(hw, this->use_h_parallelizm ? J.W : J.H * J.W); Label lrn_loop; L(lrn_loop); { if (!is_first && !is_single) { vmovups(xws_prev, ptr[workspace - J.H * J.W * 32 + 16]); vmovups(xsrc_prev, ptr[src_ - J.H * J.W * 32 + 16]); vmovups(xdiffdst_prev, ptr[diffdst - J.H * J.W * 32 + 16]); vmulps(xa, xws_prev, xws_prev); vmulps(xa, xa, xws_prev); vsqrtps(xa, xa); vsqrtps(xa, xa); vmulps(xa, xa, xws_prev); vdivps(xsrc_prev, xsrc_prev, xa); vmulps(xdiffdst_prev, xdiffdst_prev, xsrc_prev); } vmovups(ysrc, ptr[src_]); vmovups(yws, ptr[workspace]); vmovups(ydiffdst, ptr[diffdst]); vmulps(ya, yws, yws); vmulps(ya, ya, yws); vsqrtps(ya, ya); vsqrtps(ya, ya); vdivps(ydiffsrc, ydiffdst, ya); vdivps(ysum, ydiffsrc, yws); vmulps(ysum, ysum, ysrc); if (!is_last && !is_single) { vmovups(xws_next, ptr[workspace + J.H * J.W * 32]); vmovups(xsrc_next, ptr[src_ + J.H * J.W * 32]); vmovups(xdiffdst_next, ptr[diffdst + J.H * J.W * 32]); vmulps(xa, xws_next, xws_next); vmulps(xa, xa, xws_next); vsqrtps(xa, xa); vsqrtps(xa, xa); vmulps(xa, xa, xws_next); vdivps(xsrc_next, xsrc_next, xa); vmulps(xdiffdst_next, xdiffdst_next, xsrc_next); } if (!is_first && !is_single) vmovups(ptr[t + 0], xdiffdst_prev); vmovups(ptr[t + 16], ysum); if (!is_last && !is_single) vmovups(ptr[t + 48], xdiffdst_next); vmovups(ya, ptr[t + 16 - 8]); vmovups(yb, ptr[t + 16 - 4]); vaddps(ysum, ysum, ya); vmulps(ysrc, ysrc, ynalphabeta); vaddps(ysum, ysum, yb); vmovups(yd, ptr[t + 16 + 4]); vmovups(ye, ptr[t + 16 + 8]); vaddps(ysum, ysum, yd); vaddps(ysum, ysum, ye); vfmadd231ps(ydiffsrc, ysum, ysrc); vmovups(ptr[diffsrc], ydiffsrc); add(src_, 32); add(diffsrc, 32); add(diffdst, 32); add(workspace, 32); dec(hw); cmp(hw, 0); jne(lrn_loop, T_NEAR); } add(t, 64); this->postamble(); ker = reinterpret_cast<decltype(ker)>( const_cast<uint8_t *>(this->getCode())); } template struct jit_uni_lrn_fwd_kernel<sse41, dnnl::impl::data_type::f32>; template struct jit_uni_lrn_fwd_kernel<avx2, dnnl::impl::data_type::f32>; template struct jit_uni_lrn_fwd_kernel<avx512_common, dnnl::impl::data_type::f32>; template struct jit_uni_lrn_fwd_kernel<avx512_common, dnnl::impl::data_type::bf16>; template struct jit_uni_lrn_bwd_kernel_f32<avx2>; } // namespace x64 } // namespace cpu } // namespace impl } // namespace dnnl // vim: et ts=4 sw=4 cindent cino+=l0,\:4,N-s
[ "piotr.chmiel@intel.com" ]
piotr.chmiel@intel.com
65b7d4217ba59819cee93ea558b5d18308a3368f
38c10c01007624cd2056884f25e0d6ab85442194
/media/filters/decrypting_video_decoder.h
80b3b814bf5a4f904897c635879ecf5030dcbccf
[ "BSD-3-Clause" ]
permissive
zenoalbisser/chromium
6ecf37b6c030c84f1b26282bc4ef95769c62a9b2
e71f21b9b4b9b839f5093301974a45545dad2691
refs/heads/master
2022-12-25T14:23:18.568575
2016-07-14T21:49:52
2016-07-23T08:02:51
63,980,627
0
2
BSD-3-Clause
2022-12-12T12:43:41
2016-07-22T20:14:04
null
UTF-8
C++
false
false
4,138
h
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_FILTERS_DECRYPTING_VIDEO_DECODER_H_ #define MEDIA_FILTERS_DECRYPTING_VIDEO_DECODER_H_ #include "base/callback.h" #include "base/memory/weak_ptr.h" #include "media/base/decryptor.h" #include "media/base/video_decoder.h" #include "media/base/video_decoder_config.h" namespace base { class SingleThreadTaskRunner; } namespace media { class DecoderBuffer; class Decryptor; class MediaLog; // Decryptor-based VideoDecoder implementation that can decrypt and decode // encrypted video buffers and return decrypted and decompressed video frames. // All public APIs and callbacks are trampolined to the |task_runner_| so // that no locks are required for thread safety. class MEDIA_EXPORT DecryptingVideoDecoder : public VideoDecoder { public: DecryptingVideoDecoder( const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, const scoped_refptr<MediaLog>& media_log, const SetDecryptorReadyCB& set_decryptor_ready_cb, const base::Closure& waiting_for_decryption_key_cb); ~DecryptingVideoDecoder() override; // VideoDecoder implementation. std::string GetDisplayName() const override; void Initialize(const VideoDecoderConfig& config, bool low_delay, const InitCB& init_cb, const OutputCB& output_cb) override; void Decode(const scoped_refptr<DecoderBuffer>& buffer, const DecodeCB& decode_cb) override; void Reset(const base::Closure& closure) override; static const char kDecoderName[]; private: // For a detailed state diagram please see this link: http://goo.gl/8jAok // TODO(xhwang): Add a ASCII state diagram in this file after this class // stabilizes. enum State { kUninitialized = 0, kDecryptorRequested, kPendingDecoderInit, kIdle, kPendingDecode, kWaitingForKey, kDecodeFinished, kError }; // Callback for DecryptorHost::RequestDecryptor(). |decryptor_attached_cb| is // called when the decryptor has been completely attached to the pipeline. void SetDecryptor(Decryptor* decryptor, const DecryptorAttachedCB& decryptor_attached_cb); // Callback for Decryptor::InitializeVideoDecoder() during initialization. void FinishInitialization(bool success); void DecodePendingBuffer(); // Callback for Decryptor::DecryptAndDecodeVideo(). void DeliverFrame(int buffer_size, Decryptor::Status status, const scoped_refptr<VideoFrame>& frame); // Callback for the |decryptor_| to notify this object that a new key has been // added. void OnKeyAdded(); // Reset decoder and call |reset_cb_|. void DoReset(); scoped_refptr<base::SingleThreadTaskRunner> task_runner_; scoped_refptr<MediaLog> media_log_; State state_; InitCB init_cb_; OutputCB output_cb_; DecodeCB decode_cb_; base::Closure reset_cb_; base::Closure waiting_for_decryption_key_cb_; VideoDecoderConfig config_; // Callback to request/cancel decryptor creation notification. SetDecryptorReadyCB set_decryptor_ready_cb_; Decryptor* decryptor_; // The buffer that needs decrypting/decoding. scoped_refptr<media::DecoderBuffer> pending_buffer_to_decode_; // Indicates the situation where new key is added during pending decode // (in other words, this variable can only be set in state kPendingDecode). // If this variable is true and kNoKey is returned then we need to try // decrypting/decoding again in case the newly added key is the correct // decryption key. bool key_added_while_decode_pending_; // A unique ID to trace Decryptor::DecryptAndDecodeVideo() call and the // matching DecryptCB call (in DoDeliverFrame()). uint32 trace_id_; base::WeakPtr<DecryptingVideoDecoder> weak_this_; base::WeakPtrFactory<DecryptingVideoDecoder> weak_factory_; DISALLOW_COPY_AND_ASSIGN(DecryptingVideoDecoder); }; } // namespace media #endif // MEDIA_FILTERS_DECRYPTING_VIDEO_DECODER_H_
[ "zeno.albisser@hemispherian.com" ]
zeno.albisser@hemispherian.com
d3baef387cdb51563d731ce4bf8a8b3e31ea6cf0
eb50a330cb3d2402d17bee9a5f91f2b372c1e1c1
/Codeforces/1398D_ColoredRectangle.cpp
e7343e936efb5b872a400f2ccf20c1abc111a86b
[]
no_license
MaxSally/Competitive_Programming
2190552a8c8a97d13f33d5fdbeb94c5d92fa9038
8c57924224ec0d1bbc5f17078505ef8864f4caa3
refs/heads/master
2023-04-27T22:28:19.276998
2023-04-12T22:47:10
2023-04-12T22:47:10
270,885,835
0
0
null
null
null
null
UTF-8
C++
false
false
2,926
cpp
/* * Author : MaxSally */ /******** All Required Header Files ********/ #include<bits/stdc++.h> using namespace std; /******* All Required define Pre-Processors and typedef Constants *******/ #define SCD(t) scanf("%d",&t) #define SCLD(t) scanf("%ld",&t) #define SCLLD(t) scanf("%lld",&t) #define SCC(t) scanf("%c",&t) #define SCS(t) scanf("%s",t) #define SCF(t) scanf("%f",&t) #define SCLF(t) scanf("%lf",&t) #define mem(a, b) memset(a, (b), sizeof(a)) #define rep(i, j, k) for (int i = j ; i <= k ; ++i) #define rrep(i, j, k) for (int i = j; i >= k; --i) #define all(cont) cont.begin(), cont.end() #define rall(cont) cont.end(), cont.begin() #define foreach(i, a) for(auto i: a) #define forEach(it, l) for (auto it = l.begin(); it != l.end(); it++) #define in(A, B, C) assert( B <= A && A <= C) #define mp make_pair #define pb push_back #define inf (int) (1e9 + 7) #define epsi 1e-9 #define PI 3.1415926535897932384626433832795 #define mod 1000000007 #define read(type) readInt<type>() #define io ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); #define ll long long int #define left tuyiuoi #define right fgjhk #define ss second #define ff first #define debug(a) cout << #a << ": " << a << endl #define debuga1(a, l, r) rep(i, l, r) cout << a[i] << " "; cout << endl #define Flag(n) cout << "here " << n << endl const double pi=acos(-1.0); typedef pair<int, int> pii; typedef vector<int> vi; typedef vector<ll> vl; typedef vector<vl> vll; typedef pair<ll, ll> pll; typedef vector<string> vs; typedef vector<pii> vii; typedef vector<pll> vpll; typedef vector<vi> vvi; typedef map<int,int> MPII; typedef set<int> SETI; typedef multiset<int> MSETI; typedef long int int32; typedef unsigned long int uint32; typedef long long int int64; typedef unsigned long long int uint64; const int N = 205; ll r[N], g[N], b[N]; ll dp[N][N][N]; int n, n1, n2; bool compare(int x, int y){ return x > y; } int main(){ io; freopen("input.txt", "r", stdin); cin >> n >> n1 >> n2; rep(i, 0, n - 1){ cin >> r[i]; } rep(i, 0, n1 - 1){ cin >> g[i]; } rep(i, 0, n2 - 1){ cin >> b[i]; } sort(r, r + n, compare); sort(g, g + n1, compare); sort(b, b + n2, compare); ll ans = 0; rep(i, 0, n){ rep(j, 0, n1){ rep(k, 0, n2){ if(i + j + k < 2)continue; ll temp = 0; if(i > 0 && j > 0) { temp = max(temp, dp[i - 1][j - 1][k] + r[i - 1] * g[j - 1]); } if(j > 0 && k > 0){ temp = max(temp, dp[i][j - 1][k - 1] + g[j - 1] * b[k - 1]); } if(i > 0 && k > 0){ temp = max(temp, dp[i - 1][j][k - 1] + r[i - 1] * b[k - 1]); } dp[i][j][k] = temp; ans = max(ans, temp); } } } cout << ans; return 0; }
[ "qnguyen16@huskers.unl.edu" ]
qnguyen16@huskers.unl.edu
43b07b4cfaf3f8c8a8aa9ef3837bf3f48258d214
72a4cacb817094a01bb7f49f09207b34b85b30ae
/Languages1/lexem.cpp
1d1f6defb36f046c9646808539f98d95acfa4d3d
[]
no_license
Poletayson/LanguagesTLP
8ae627b9eeb93e97f242786e13fdc7c6bef6f94c
eeffce6506ea319cd9c419df9b92070a5bcdd944
refs/heads/master
2020-04-29T07:04:10.659853
2019-03-17T20:00:21
2019-03-17T20:00:21
175,939,694
0
0
null
null
null
null
UTF-8
C++
false
false
169
cpp
#include "lexem.h" Lexem::Lexem() { } Lexem::Lexem(int t, QString i) { image = i; type = t; } void Lexem::setPosInProgram (int p) { posInProgram = p; }
[ "dmitriipoletaev_1997@mail.ru" ]
dmitriipoletaev_1997@mail.ru
c08e2f84e0e697b05613ae876a917fce896bb7fb
0a6a43b691996499230276055523eb895da6ffec
/.history/spectrum/spectrum_20190117002614.hpp
03648b98c056dbcd7f27ea8b9329d1c6bd67f133
[]
no_license
SoundRabbit/voice-changer
362890a6e0ef1dda37c1666b946879fc12125370
e5a5d64426fc072504477ae30c96e8e293a07a52
refs/heads/master
2020-03-27T09:49:50.340212
2019-01-16T17:55:04
2019-01-16T17:55:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
174
hpp
#pragma once template<int length> class Spectrum { private: class Intensity { public: operator double(); double operator= (double); }; public: };
[ "neu1neu9neu9neu9neu@gmail.com" ]
neu1neu9neu9neu9neu@gmail.com
d054b4d5a85eea00c22c97ec0522f42901156b0d
c5abcc4ea4d670cbf2322725caa54892ed041d5b
/solving problem/Technique/DFS/Islands in the Data Stream.cpp
6253dda0b77455d68a8887901429137efb649d21
[]
no_license
sngvahmed/Problem
c2682f1b24ca61d090030a5e9fae55346c525b6e
b7dc0a8b94a054ce2e7f4e881c176277c5afda31
refs/heads/master
2020-04-06T04:01:36.419414
2015-03-10T20:29:22
2015-03-10T20:29:22
25,265,073
0
0
null
null
null
null
UTF-8
C++
false
false
1,953
cpp
#include <cstring> #include <string.h> #include <map> #include <deque> #include <queue> #include <stack> #include <sstream> #include <bitset> #include <iostream> #include <iomanip> #include <cstdio> #include <fstream> #include <cmath> #include <cstdlib> #include <ctime> #include <algorithm> #include <vector> #include <set> #include <complex> #include <list> #include <valarray> #include <memory.h> #include <climits> #include <math.h> using namespace std; #define FO(i, a, x) for(int i = a; i < (int)x; i++) #define FOR(i, x) FO(i, 0, x) #define RO(i, a, x) for(int i = a; i >= x; i--) #define ROF(i, x) for(int i = x; i >= 0; i--) #define FORIT(it, x) for(typeof(x.begin()) it = x.begin(); it != x.end(); it++) #define FOUND(s, x) find(all(s), x) != s.end() #define NOTFOUND(s, x) find(all(s), x) == s.end() #define SZ(x) (int)x.size() #define pb push_back #define mp make_pair #define F first #define S second #define pii pair<int, int> #define all(x) x.begin(), x.end() #define rall(x) x.rbegin(), x.rend() #define MMS(x, v) memset(x, v, sizeof(x)) #define SQ(x) (x) * (x) typedef long long ll; typedef unsigned long long ull; typedef unsigned long ul; typedef vector<string> vs; typedef vector<int> vi; int di[] = { 0, 0, 1, -1, 1, -1, 1, -1 }; int dj[] = { 1, -1, 0, 0, 1, -1, -1, 1 }; int ret = 0; int arr[16]; bool validate(string sum) { int i = 1; char I = sum[0], J = sum[SZ(sum) - 1]; while (i < SZ(sum) - 1) { if (sum[i] <= I || sum[i] <= J) return 0; i++; } return 1; } void DFS(int i, string sum, map<string, int> vis) { if (SZ(sum) > 2 && validate(sum) && vis[sum] == 0) { ret++, vis[sum] = 1; } if (i == 16) { return; } DFS(i + 1, sum + char(arr[i] + '0'), vis); } void Generate() { FO(i,1,16) { DFS(i, "", map<string, int>()); } } int main() { int co; scanf("%d", &co); while (co--) { ret = 0; FO(i,0,16) scanf("%d", &arr[i]); Generate(); cout << arr[0] << " " << ret << endl; } return 0; }
[ "ahmednasser1993@gmail.com" ]
ahmednasser1993@gmail.com
27ccec47b63697c69ed2066c7de9cbf3f91ad744
3ede3a538fa06a2082520016e84499281f3d167a
/Source/MyLevelProject/MyLevelProjectProjectile.cpp
2c821316c56a788ab779ecaa84af628c0c2beda8
[]
no_license
finoriko/MyLevelProject
ab4cb6d717cc61a6673b21e5165d019087f356ad
2190278a2906ceadda065d4b08e2fa375e3b6f41
refs/heads/master
2020-04-13T13:25:37.821881
2018-12-26T14:02:50
2018-12-26T14:02:50
163,230,130
0
0
null
null
null
null
UTF-8
C++
false
false
1,804
cpp
// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved. #include "MyLevelProjectProjectile.h" #include "GameFramework/ProjectileMovementComponent.h" #include "Components/SphereComponent.h" AMyLevelProjectProjectile::AMyLevelProjectProjectile() { // Use a sphere as a simple collision representation CollisionComp = CreateDefaultSubobject<USphereComponent>(TEXT("SphereComp")); CollisionComp->InitSphereRadius(5.0f); CollisionComp->BodyInstance.SetCollisionProfileName("Projectile"); CollisionComp->OnComponentHit.AddDynamic(this, &AMyLevelProjectProjectile::OnHit); // set up a notification for when this component hits something blocking // Players can't walk on it CollisionComp->SetWalkableSlopeOverride(FWalkableSlopeOverride(WalkableSlope_Unwalkable, 0.f)); CollisionComp->CanCharacterStepUpOn = ECB_No; // Set as root component RootComponent = CollisionComp; // Use a ProjectileMovementComponent to govern this projectile's movement ProjectileMovement = CreateDefaultSubobject<UProjectileMovementComponent>(TEXT("ProjectileComp")); ProjectileMovement->UpdatedComponent = CollisionComp; ProjectileMovement->InitialSpeed = 3000.f; ProjectileMovement->MaxSpeed = 3000.f; ProjectileMovement->bRotationFollowsVelocity = true; ProjectileMovement->bShouldBounce = true; // Die after 3 seconds by default InitialLifeSpan = 3.0f; } void AMyLevelProjectProjectile::OnHit(UPrimitiveComponent* HitComp, AActor* OtherActor, UPrimitiveComponent* OtherComp, FVector NormalImpulse, const FHitResult& Hit) { // Only add impulse and destroy projectile if we hit a physics if ((OtherActor != NULL) && (OtherActor != this) && (OtherComp != NULL) && OtherComp->IsSimulatingPhysics()) { OtherComp->AddImpulseAtLocation(GetVelocity() * 100.0f, GetActorLocation()); Destroy(); } }
[ "finoriko@Hotmail.com" ]
finoriko@Hotmail.com
a86ae42b4e8de2f398ef102456196a76ea31c556
9bf93209b0a9b0bdbf30b9a318b6da5115cc3e69
/src/Lista.cpp
bd7b6c7e19a42c8df18099df4604aec3459afbe0
[]
no_license
LeandroArista/Test
d9317b98a626723fc91dcb78aa868abaec43faf4
b16752d7cea7e175bbb7d188d6637f9f072208a4
refs/heads/master
2020-04-08T01:15:23.514581
2018-11-24T01:47:16
2018-11-24T01:47:16
158,887,218
0
0
null
2018-11-24T00:40:09
2018-11-23T23:46:05
C++
UTF-8
C++
false
false
4,478
cpp
#include "Lista.h" #include <cassert> template <typename t> Lista<t>::Lista(){ lista=NULL; punterofinal=NULL; cursor=NULL; cantidadelementos=0; } template<typename t> Lista<t>::~Lista(){ vaciar(); delete lista; } template<typename t> void Lista<t>::vaciar(){ if (!vacia()){ nodo*cursor; while (!vacia()){ cursor=lista->siguiente; delete lista; lista=cursor; } } } template<typename t> int Lista<t>::longitud() const{ return cantidadelementos; } template<typename t> bool Lista<t>::vacia() const{ return (lista==NULL); } template<typename t> void Lista<t>::agregar(const int & posicion, const t & elemento){ if (posicion>0 && posicion<=longitud()+1){ nodo * nodoagregar=new nodo; nodoagregar->dato=elemento; nodoagregar->siguiente=NULL; if ( vacia() || posicion==1){ nodoagregar->siguiente=lista; lista=nodoagregar; if (lista->siguiente==NULL){ punterofinal=lista; } } else{ if (posicion==longitud()+1){ punterofinal->siguiente=nodoagregar; punterofinal=nodoagregar; } else{ cursor=lista; int posicionactual=1; while(posicionactual<(posicion-1)){ cursor=cursor->siguiente; posicionactual++; } nodoagregar->siguiente=cursor->siguiente; cursor->siguiente=nodoagregar; } } cantidadelementos++; } } template<typename t> void Lista<t>::agregarp( const t & elemento){ agregar(1, elemento); } template<typename t> void Lista<t>::agregarf( const t & elemento){ agregar(cantidadelementos+1, elemento); } template<typename t> bool Lista<t>::pertenece(const t & elemento) const{ nodo * cursor = lista; while (cursor != NULL){ if (cursor->dato==elemento){ return true; } cursor=cursor->siguiente; } return false; } template<typename t> void Lista<t>::eliminarPos(const int & posicion){ if (lista!=NULL){ if (posicion==1){ nodo * aeliminar=lista; lista=lista->siguiente; aeliminar->siguiente=NULL; delete aeliminar; cantidadelementos--; } else{ if (posicion<=longitud()){ nodo * cursor = lista; for (int i=1; i<posicion; i++){ cursor=cursor->siguiente; } nodo * aeliminar=cursor->siguiente; cursor->siguiente=aeliminar->siguiente; aeliminar=NULL; delete aeliminar; cantidadelementos--; } } } } template<typename t> const t & Lista<t>::getElem(const int & posicion) const{ // cout<<"a:"<<posicion<<" b:"<<cantidadelementos<<endl; assert(posicion>0 && posicion<=cantidadelementos); int posicionactual=1; if (posicion == posicionactual){ return lista->dato; } else{ nodo*cursor=lista; if (posicion<cantidadelementos){ while (posicion != posicionactual && cursor->siguiente != NULL){ cursor=cursor->siguiente; posicionactual++; } } else{ cursor=punterofinal; } return cursor->dato; } } template<typename t> void Lista<t>::eliminarElem(const t & elemento){ nodo * cursor = lista; nodo * anterior= cursor; while (cursor != NULL){ if (cursor->dato==elemento){ nodo * aeliminar=cursor; if (lista==cursor){ lista=lista->siguiente; }else{ anterior->siguiente=cursor->siguiente; if (cursor->siguiente==NULL) punterofinal=anterior; } aeliminar->siguiente=NULL; delete aeliminar; cantidadelementos--; }else{ anterior=cursor; } cursor=cursor->siguiente; } anterior= NULL; cursor=NULL; delete cursor; delete anterior; } template class Lista<int>; template class Lista<char>; template class Lista<float>; template class Lista<string>; template class Lista<Figura*>; template class Lista<Punto>; template class Lista<Segmento>;
[ "leandroalbertoarista@gmail.com" ]
leandroalbertoarista@gmail.com
a9c71fde2bdc62169a843775145f15587ee488af
8e4a3464a9cfb59466f7ce80b276e7ba87044bc7
/ConsoleFive4/FiveArr.h
b0dea14f20305faf63034a8409b20f0bc4a7b345
[]
no_license
lilingshui/code-refrence
875daf6b69c6a1d0bb908e78cc718ccc967cf8e6
5bf07d09f12133a1fa10d8d3fb086f143f9f7c1e
refs/heads/master
2023-08-16T16:38:43.215233
2023-07-23T09:54:00
2023-07-23T09:54:00
26,759,907
0
1
null
null
null
null
WINDOWS-1252
C++
false
false
295
h
#pragma once #include "FivePos.h" #include "FiveCore.h" //Æå×ÓÐÅÏ¢Àà class CFiveArr { protected: char m_cArr[SIZE][SIZE]; friend class CFiveCore; public: void InitArr(); void PrintArr(); void SetArr(CFivePos& pos, char cPlayer); char GetArr(CFivePos& pos); };
[ "shuiming.peng@ning-hou.com" ]
shuiming.peng@ning-hou.com
1a99f06eb847e42f1e3ba4a361bb0579dacc6795
326828efd246514a09c2891ca9770fab765ebe57
/include/uwsim_netsim_scripts/HILNetSimTracing.h
b82b33d78d3987b186da248edbf3ac303556baf7
[]
no_license
dcentelles/uwsim_netsim_scripts
c6e264a4b15ce10ee83da164b48683f7fccdb96b
9a9cd955ceab700ac92717f6737e6afcb50205f5
refs/heads/master
2020-03-08T05:57:31.062718
2020-02-15T21:20:13
2020-02-15T21:20:13
127,960,102
0
0
null
null
null
null
UTF-8
C++
false
false
2,562
h
#include <nav_msgs/Odometry.h> #include <ros/publisher.h> #include <ros/subscriber.h> #include <underwater_sensor_msgs/LedLight.h> #include <uwsim/NetSim.h> namespace uwsim_netstim { using namespace uwsim; class HILNetSimTracing : public NetSimTracing { public: HILNetSimTracing(); void PacketTransmitting(std::string path, ROSCommsDevicePtr dev, ns3ConstPacketPtr pkt); void PacketError(std::string path, ROSCommsDevicePtr dev, ns3ConstPacketPtr pkt, bool propError, bool colError); void PacketReceived(std::string path, ROSCommsDevicePtr dev, ns3ConstPacketPtr pkt); void TxFifoUpdated(std::string path, uint32_t oldValue, uint32_t newValue); void PacketDropsUpdated(std::string path, uint32_t oldValue, uint32_t newValue); void MacTxFifoUpdated(std::string path, uint32_t oldValue, uint32_t newValue); void MacPacketDropsUpdated(std::string path, uint32_t oldValue, uint32_t newValue); void MacRx(std::string path, ROSCommsDevicePtr dev, ns3ConstPacketPtr pkt); void MacTx(std::string path, ROSCommsDevicePtr dev, ns3ConstPacketPtr pkt); void LeaderOdomCb(const nav_msgs::Odometry::ConstPtr &msg); void FollowerOdomCb(const nav_msgs::Odometry::ConstPtr &msg); void SupportOdomCb(const nav_msgs::Odometry::ConstPtr &msg); void Configure(); void DoRun(); void ShowPosition(string path, ROSCommsDevicePtr dev, const tf::Vector3 &pos); ros::NodeHandle node; underwater_sensor_msgs::LedLight ledmsg; ros::Publisher leader_pub, follower_pub, support_pub, e0_pub, e1_pub, e2_pub, e3_pub; ros::Publisher leader_joint_pub, follower_joint_pub; ros::Publisher leader_gled_pub, leader_rled_pub, follower_gled_pub, follower_rled_pub, support_gled_pub, support_rled_pub; // ros::Subscriber leader_sub, follower_sub, support_sub; // nav_msgs::Odometry leader_odom, follower_odom, support_odom; struct PIDStatus {}; PIDStatus leader_pid, follower_pid, support_pid; int freq; void GetLinearVel(const double &diffx, const double &diffy, const double &diffz, double &vx, double &vy, double &vz); void GetExplorerLinearVel(const double &diffx, const double &diffy, const double &diffz, double &vx, double &vy, double &vz); double GetAngularVel(const double &diff); double GetExplorerAngularVel(const double &diff); double AngleToRadians(const double &angle); }; } // namespace uwsim_netstim
[ "centelld@uji.es" ]
centelld@uji.es
7abe123d23f7926a6ff4a4f47d5550722887874e
891dcf3050a62b093c310269c9932ef8e5f83cdf
/Tests/TestUtils.cpp
0ecc8c2159c6d6b0c6900ca284f95254aca0e9e2
[]
no_license
Loreas/Tram_SECSPEC
0614db7ea08e6fdea75e588e5bf347a57539f51d
3ae9d5d8d415f2fa9fb3a62f611399845f0fff2b
refs/heads/master
2021-01-20T09:42:42.327223
2017-06-21T10:34:34
2017-06-21T10:34:34
90,278,022
0
1
null
null
null
null
UTF-8
C++
false
false
1,648
cpp
// TicTacToeUtils: // Copyright: Project Software Engineering - BA1 informatica - Serge Demeyer - // University of Antwerp #include <iostream> #include <fstream> #include <sys/stat.h> using namespace std; #include "TestUtils.h" /** Auxiliary functions for file manipulation. */ bool DirectoryExists(const std::string dirname) { struct stat st; return stat(dirname.c_str(), &st) == 0; } bool FileExists(const std::string filename) { struct stat st; if (stat(filename.c_str(), &st) != 0) return false; ifstream f(filename); if (f.good()) { f.close(); return true; } else { f.close(); return false; } } bool FileIsEmpty(const std::string filename) { struct stat st; if (stat(filename.c_str(), &st) != 0) return true; // File does not exist; thus it is empty return st.st_size == 0; } bool FileCompare(const std::string leftFileName, const std::string rightFileName) { ifstream leftFile, rightFile; char leftRead, rightRead; bool result; // Open the two files. leftFile.open(leftFileName); if (!leftFile.is_open()) { return false; }; rightFile.open(rightFileName); if (!rightFile.is_open()) { leftFile.close(); return false; }; result = true; // files exist and are open; assume equality unless a counterexamples shows up. while (result && leftFile.good() && rightFile.good()) { leftFile.get(leftRead); rightFile.get(rightRead); result = (leftRead == rightRead); }; if (result) { // last read was still equal; are we at the end of both files ? result = (!leftFile.good()) && (!rightFile.good()); }; leftFile.close(); rightFile.close(); return result; }
[ "loreas.clonen@student.uantwerpen.be" ]
loreas.clonen@student.uantwerpen.be
2700d334d5211a2d22743f81b82d83cb7105e06d
0783dd95ede971b91728a21074f11b70fd20aa55
/backwardFacingStep_baseCase_LRR/1500/R
3852954eae88310a1d360db8e74429478dd449a1
[]
no_license
bshambaugh/openfoam-experiments2
0c5430940ddb04c5f85d0fbdd09a7ae01f0ed3f1
dbd9ce7bec30d897f34da8871188fce3a5564a4d
refs/heads/master
2020-04-14T06:49:39.690493
2019-01-01T23:03:39
2019-01-01T23:03:39
163,696,599
0
0
null
null
null
null
UTF-8
C++
false
false
314,883
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 4.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volSymmTensorField; location "1500"; object R; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField nonuniform List<symmTensor> 6820 ( (0.205732 -0.0655181 0 0.119059 0 0.158783) (0.282327 -0.0957377 0 0.109535 0 0.187468) (0.351932 -0.111301 0 0.106212 0 0.215544) (0.414145 -0.120959 0 0.107184 0 0.242572) (0.468925 -0.12821 0 0.110858 0 0.268123) (0.516415 -0.134402 0 0.116011 0 0.291794) (0.556894 -0.139947 0 0.121756 0 0.313246) (0.590786 -0.144894 0 0.127486 0 0.332258) (0.618629 -0.149196 0 0.132821 0 0.348735) (0.641034 -0.152808 0 0.137552 0 0.362695) (0.658635 -0.155725 0 0.141583 0 0.374247) (0.672059 -0.157978 0 0.144898 0 0.383564) (0.681903 -0.15962 0 0.147528 0 0.390858) (0.688719 -0.160724 0 0.149532 0 0.396359) (0.693005 -0.161362 0 0.15098 0 0.4003) (0.695201 -0.161607 0 0.151946 0 0.402904) (0.695691 -0.161527 0 0.152504 0 0.40438) (0.694804 -0.161183 0 0.152719 0 0.404916) (0.692823 -0.160629 0 0.152653 0 0.404681) (0.689983 -0.15991 0 0.152359 0 0.40382) (0.686485 -0.159065 0 0.151883 0 0.402461) (0.682494 -0.158128 0 0.151264 0 0.40071) (0.678145 -0.157125 0 0.150536 0 0.39866) (0.673552 -0.15608 0 0.149727 0 0.396388) (0.668807 -0.15501 0 0.14886 0 0.393956) (0.663984 -0.15393 0 0.147955 0 0.391418) (0.659144 -0.152853 0 0.147027 0 0.388817) (0.654334 -0.151789 0 0.14609 0 0.386189) (0.649592 -0.150745 0 0.145154 0 0.383563) (0.644952 -0.149726 0 0.144227 0 0.380963) (0.640427 -0.148745 0 0.143317 0 0.378403) (0.636119 -0.147817 0 0.142462 0 0.375936) (0.633189 -0.147815 0 0.142585 0 0.37401) (0.141614 -0.00846611 0 0.126763 0 0.13657) (0.150539 -0.0154135 0 0.119378 0 0.139441) (0.159409 -0.0210922 0 0.112607 0 0.141974) (0.168024 -0.0259312 0 0.106663 0 0.144249) (0.176201 -0.0301002 0 0.101596 0 0.146285) (0.183857 -0.0337139 0 0.097394 0 0.148111) (0.190973 -0.0368714 0 0.0939942 0 0.149758) (0.197552 -0.0396512 0 0.0913087 0 0.151252) (0.20361 -0.0421152 0 0.0892405 0 0.152615) (0.20918 -0.0443157 0 0.0876945 0 0.153866) (0.214303 -0.0462989 0 0.0865824 0 0.155023) (0.219029 -0.0481053 0 0.0858255 0 0.156102) (0.223409 -0.0497697 0 0.0853555 0 0.15712) (0.227493 -0.0513217 0 0.0851151 0 0.158091) (0.23133 -0.0527853 0 0.0850569 0 0.159027) (0.234967 -0.0541803 0 0.0851425 0 0.159941) (0.238442 -0.055522 0 0.0853412 0 0.160843) (0.24179 -0.0568222 0 0.0856288 0 0.161742) (0.245043 -0.0580899 0 0.085986 0 0.162644) (0.248222 -0.0593317 0 0.0863981 0 0.163557) (0.25135 -0.0605522 0 0.0868532 0 0.164484) (0.254442 -0.061755 0 0.0873424 0 0.16543) (0.257512 -0.0629425 0 0.0878586 0 0.166396) (0.260568 -0.0641161 0 0.0883963 0 0.167385) (0.263616 -0.0652763 0 0.0889509 0 0.168397) (0.266662 -0.0664232 0 0.0895188 0 0.169433) (0.269705 -0.0675565 0 0.0900969 0 0.170491) (0.272747 -0.0686756 0 0.0906824 0 0.17157) (0.275786 -0.0697801 0 0.0912733 0 0.172669) (0.27882 -0.0708678 0 0.0918669 0 0.173786) (0.281847 -0.0719427 0 0.0924642 0 0.174917) (0.284862 -0.0729913 0 0.093058 0 0.176064) (0.288416 -0.0742581 0 0.0939424 0 0.177423) (0.135647 -0.00198165 0 0.129365 0 0.13447) (0.138143 -0.00333272 0 0.124875 0 0.135413) (0.140543 -0.00436743 0 0.120286 0 0.136113) (0.142758 -0.00525002 0 0.115857 0 0.136577) (0.144727 -0.00600338 0 0.111694 0 0.136818) (0.146449 -0.00665866 0 0.107826 0 0.136871) (0.147943 -0.00725513 0 0.104253 0 0.136769) (0.149225 -0.00782148 0 0.100966 0 0.136541) (0.150314 -0.00837534 0 0.0979486 0 0.136207) (0.151228 -0.00892807 0 0.0951834 0 0.135788) (0.151988 -0.00948721 0 0.0926519 0 0.135301) (0.152613 -0.0100575 0 0.0903353 0 0.134761) (0.153124 -0.0106413 0 0.0882154 0 0.134182) (0.153539 -0.0112398 0 0.0862748 0 0.133575) (0.153876 -0.0118528 0 0.0844974 0 0.13295) (0.15415 -0.0124797 0 0.0828685 0 0.132316) (0.154376 -0.0131192 0 0.0813746 0 0.131681) (0.154569 -0.0137699 0 0.0800036 0 0.131051) (0.154739 -0.0144303 0 0.0787445 0 0.130433) (0.154899 -0.0150985 0 0.0775878 0 0.12983) (0.155056 -0.0157729 0 0.0765245 0 0.129248) (0.155216 -0.0164511 0 0.0755465 0 0.128687) (0.155384 -0.0171311 0 0.0746463 0 0.12815) (0.155565 -0.0178111 0 0.0738173 0 0.127638) (0.155761 -0.0184892 0 0.0730537 0 0.127152) (0.155975 -0.0191641 0 0.0723504 0 0.126693) (0.156209 -0.0198343 0 0.0717026 0 0.12626) (0.156465 -0.0204987 0 0.0711062 0 0.125854) (0.156744 -0.0211561 0 0.0705573 0 0.125476) (0.157046 -0.0218057 0 0.0700529 0 0.125125) (0.15737 -0.0224458 0 0.0695882 0 0.1248) (0.157722 -0.0230796 0 0.0691668 0 0.124503) (0.158142 -0.0237186 0 0.0688028 0 0.124244) (0.134186 -0.000783012 0 0.130263 0 0.133857) (0.135191 -0.00139797 0 0.126844 0 0.134317) (0.136192 -0.00188094 0 0.123377 0 0.134657) (0.13712 -0.00231652 0 0.120006 0 0.134859) (0.137922 -0.00270631 0 0.116774 0 0.134922) (0.138592 -0.0030531 0 0.11369 0 0.13486) (0.139141 -0.00336936 0 0.110759 0 0.134693) (0.139579 -0.00366508 0 0.107987 0 0.134437) (0.139912 -0.00394647 0 0.105372 0 0.134105) (0.14015 -0.00421838 0 0.10291 0 0.133709) (0.140302 -0.00448512 0 0.100594 0 0.13326) (0.140379 -0.00475017 0 0.0984175 0 0.132768) (0.140389 -0.00501617 0 0.0963717 0 0.13224) (0.140342 -0.00528505 0 0.0944484 0 0.131685) (0.140246 -0.00555815 0 0.0926395 0 0.131109) (0.140107 -0.0058364 0 0.0909373 0 0.130516) (0.139935 -0.00612036 0 0.0893343 0 0.129913) (0.139734 -0.00641027 0 0.0878237 0 0.129304) (0.139511 -0.00670619 0 0.086399 0 0.128692) (0.139273 -0.00700798 0 0.0850544 0 0.128081) (0.139022 -0.00731534 0 0.0837845 0 0.127473) (0.138764 -0.00762773 0 0.0825843 0 0.126872) (0.138502 -0.0079445 0 0.0814491 0 0.126278) (0.138238 -0.00826499 0 0.0803747 0 0.125693) (0.137974 -0.00858852 0 0.0793572 0 0.125119) (0.137714 -0.0089144 0 0.0783929 0 0.124556) (0.137459 -0.00924197 0 0.0774785 0 0.124006) (0.137209 -0.00957058 0 0.0766109 0 0.123468) (0.136967 -0.00989962 0 0.0757874 0 0.122944) (0.136734 -0.0102284 0 0.0750053 0 0.122434) (0.13651 -0.0105565 0 0.0742622 0 0.121938) (0.136295 -0.0108841 0 0.0735561 0 0.121456) (0.13609 -0.0112142 0 0.0728905 0 0.120984) (0.133619 -0.000369894 0 0.1308 0 0.133544) (0.133991 -0.000663439 0 0.128074 0 0.133735) (0.134406 -0.000892727 0 0.12533 0 0.133878) (0.134816 -0.00111606 0 0.122627 0 0.133954) (0.135172 -0.0013308 0 0.119998 0 0.133949) (0.135457 -0.0015294 0 0.117456 0 0.133864) (0.135676 -0.00171501 0 0.115009 0 0.133709) (0.135831 -0.00189193 0 0.112665 0 0.133493) (0.135924 -0.00206238 0 0.110424 0 0.133222) (0.135958 -0.00222795 0 0.108285 0 0.132904) (0.135941 -0.00239026 0 0.106247 0 0.132546) (0.135875 -0.00255075 0 0.104304 0 0.132153) (0.135768 -0.00271053 0 0.102455 0 0.131733) (0.135623 -0.00287044 0 0.100694 0 0.131289) (0.135444 -0.00303113 0 0.0990169 0 0.130826) (0.135238 -0.00319308 0 0.0974205 0 0.130347) (0.135006 -0.00335665 0 0.0959005 0 0.129857) (0.134754 -0.00352207 0 0.0944528 0 0.129359) (0.134485 -0.00368946 0 0.0930736 0 0.128854) (0.134201 -0.00385888 0 0.0917593 0 0.128346) (0.133906 -0.00403033 0 0.0905065 0 0.127836) (0.133603 -0.00420371 0 0.0893117 0 0.127327) (0.133293 -0.00437884 0 0.0881719 0 0.12682) (0.132979 -0.00455553 0 0.0870843 0 0.126316) (0.132662 -0.00473354 0 0.086046 0 0.125817) (0.132344 -0.0049126 0 0.0850543 0 0.125323) (0.132026 -0.00509244 0 0.0841069 0 0.124836) (0.13171 -0.00527278 0 0.0832014 0 0.124356) (0.131395 -0.00545333 0 0.0823357 0 0.123883) (0.131084 -0.00563381 0 0.0815077 0 0.123418) (0.130776 -0.00581399 0 0.0807154 0 0.122961) (0.130472 -0.00599397 0 0.0799572 0 0.122513) (0.130166 -0.00617568 0 0.0792297 0 0.122066) (0.133352 -0.000209946 0 0.131145 0 0.133354) (0.133395 -0.000362812 0 0.128832 0 0.133363) (0.133482 -0.000470621 0 0.126514 0 0.13336) (0.133597 -0.000577732 0 0.124222 0 0.133333) (0.1337 -0.000685296 0 0.121981 0 0.133264) (0.133774 -0.000786661 0 0.119804 0 0.133149) (0.133814 -0.000882998 0 0.117695 0 0.132989) (0.133819 -0.000976802 0 0.115661 0 0.132788) (0.133788 -0.00106882 0 0.113702 0 0.132549) (0.133721 -0.00115929 0 0.11182 0 0.132277) (0.133622 -0.00124871 0 0.110014 0 0.131975) (0.133493 -0.00133764 0 0.108282 0 0.131647) (0.133336 -0.00142657 0 0.106622 0 0.131298) (0.133154 -0.00151586 0 0.105032 0 0.130931) (0.13295 -0.00160583 0 0.10351 0 0.130547) (0.132727 -0.00169672 0 0.102052 0 0.130152) (0.132487 -0.00178871 0 0.100656 0 0.129746) (0.132232 -0.0018819 0 0.0993187 0 0.129332) (0.131964 -0.00197638 0 0.0980383 0 0.128911) (0.131686 -0.00207216 0 0.0968116 0 0.128487) (0.131399 -0.00216922 0 0.0956363 0 0.12806) (0.131105 -0.00226752 0 0.0945098 0 0.127632) (0.130806 -0.00236697 0 0.0934299 0 0.127204) (0.130502 -0.00246745 0 0.0923943 0 0.126777) (0.130196 -0.00256882 0 0.0914009 0 0.126352) (0.129888 -0.00267093 0 0.0904478 0 0.12593) (0.129579 -0.0027736 0 0.089533 0 0.125512) (0.129269 -0.00287666 0 0.0886549 0 0.125097) (0.128961 -0.00297991 0 0.0878117 0 0.124688) (0.128654 -0.00308316 0 0.0870019 0 0.124283) (0.128348 -0.00318623 0 0.0862238 0 0.123884) (0.128044 -0.00328914 0 0.0854758 0 0.12349) (0.127736 -0.00339284 0 0.0847517 0 0.123095) (0.133205 -0.000140255 0 0.131382 0 0.133226) (0.133061 -0.000232535 0 0.129345 0 0.133103) (0.132946 -0.000282297 0 0.127332 0 0.132983) (0.132865 -0.000325301 0 0.12535 0 0.13286) (0.132794 -0.000369123 0 0.12341 0 0.132722) (0.132719 -0.000411025 0 0.121516 0 0.132563) (0.132633 -0.00045179 0 0.119673 0 0.132379) (0.132532 -0.000493015 0 0.117884 0 0.132171) (0.132415 -0.000534932 0 0.116153 0 0.13194) (0.132278 -0.000577353 0 0.11448 0 0.131686) (0.132123 -0.000620329 0 0.112867 0 0.131413) (0.131951 -0.000664033 0 0.111311 0 0.131121) (0.131761 -0.00070861 0 0.109813 0 0.130814) (0.131556 -0.000754158 0 0.108371 0 0.130494) (0.131338 -0.000800758 0 0.106983 0 0.130162) (0.131106 -0.000848469 0 0.105647 0 0.12982) (0.130863 -0.000897323 0 0.104363 0 0.12947) (0.130611 -0.000947327 0 0.103127 0 0.129114) (0.13035 -0.000998466 0 0.101939 0 0.128752) (0.130082 -0.00105071 0 0.100796 0 0.128387) (0.129808 -0.00110399 0 0.099696 0 0.12802) (0.129529 -0.00115826 0 0.0986382 0 0.127651) (0.129246 -0.00121343 0 0.0976206 0 0.127282) (0.128961 -0.00126941 0 0.0966414 0 0.126913) (0.128673 -0.00132608 0 0.095699 0 0.126545) (0.128384 -0.00138332 0 0.094792 0 0.126179) (0.128094 -0.00144101 0 0.0939189 0 0.125816) (0.127804 -0.00149901 0 0.0930782 0 0.125455) (0.127514 -0.00155716 0 0.0922687 0 0.125097) (0.127225 -0.0016153 0 0.0914891 0 0.124743) (0.126938 -0.00167327 0 0.0907382 0 0.124394) (0.126651 -0.00173097 0 0.0900139 0 0.124047) (0.12636 -0.00178877 0 0.089309 0 0.123698) (0.133111 -0.000104767 0 0.131554 0 0.133134) (0.132855 -0.000171958 0 0.12971 0 0.132914) (0.132611 -0.000199602 0 0.12791 0 0.1327) (0.132395 -0.000214154 0 0.126145 0 0.132493) (0.132198 -0.000225683 0 0.124419 0 0.132287) (0.132008 -0.000234567 0 0.122733 0 0.132075) (0.131822 -0.00024224 0 0.121088 0 0.131854) (0.131636 -0.000250567 0 0.119488 0 0.131623) (0.131446 -0.000260181 0 0.117934 0 0.13138) (0.13125 -0.000271097 0 0.116428 0 0.131124) (0.131046 -0.000283345 0 0.114969 0 0.130858) (0.130835 -0.000296988 0 0.113558 0 0.130581) (0.130615 -0.000312042 0 0.112195 0 0.130294) (0.130387 -0.000328488 0 0.110878 0 0.129998) (0.130152 -0.0003463 0 0.109607 0 0.129694) (0.12991 -0.000365447 0 0.10838 0 0.129385) (0.129661 -0.000385888 0 0.107197 0 0.12907) (0.129408 -0.000407574 0 0.106055 0 0.12875) (0.129149 -0.000430446 0 0.104954 0 0.128428) (0.128887 -0.000454439 0 0.103892 0 0.128103) (0.128621 -0.000479478 0 0.102868 0 0.127776) (0.128353 -0.000505481 0 0.10188 0 0.127449) (0.128082 -0.00053236 0 0.100928 0 0.127121) (0.127811 -0.000560019 0 0.100009 0 0.126794) (0.127538 -0.000588354 0 0.0991231 0 0.126467) (0.127265 -0.000617255 0 0.0982682 0 0.126143) (0.126991 -0.000646604 0 0.0974434 0 0.12582) (0.126719 -0.000676272 0 0.0966476 0 0.1255) (0.126447 -0.000706121 0 0.0958796 0 0.125182) (0.126176 -0.000736 0 0.0951384 0 0.124867) (0.125907 -0.000765736 0 0.0944228 0 0.124556) (0.125638 -0.000795194 0 0.0937309 0 0.124247) (0.125366 -0.00082447 0 0.0930545 0 0.123936) (0.133044 -8.35373e-05 0 0.131686 0 0.133064) (0.132713 -0.000139544 0 0.129983 0 0.132771) (0.132385 -0.000160936 0 0.128336 0 0.132484) (0.132077 -0.000165383 0 0.126731 0 0.132208) (0.131788 -0.000162596 0 0.125168 0 0.131939) (0.131512 -0.000154876 0 0.123645 0 0.131674) (0.131246 -0.000144421 0 0.122161 0 0.13141) (0.130988 -0.000133546 0 0.120715 0 0.131145) (0.130735 -0.000123415 0 0.119308 0 0.130878) (0.130484 -0.000114424 0 0.117942 0 0.130607) (0.130234 -0.000106795 0 0.116616 0 0.130332) (0.129983 -0.000100684 0 0.11533 0 0.130053) (0.129732 -9.61525e-05 0 0.114084 0 0.12977) (0.129478 -9.32007e-05 0 0.112877 0 0.129482) (0.129223 -9.17968e-05 0 0.111708 0 0.129191) (0.128966 -9.18927e-05 0 0.110578 0 0.128898) (0.128707 -9.34258e-05 0 0.109484 0 0.128601) (0.128447 -9.63221e-05 0 0.108426 0 0.128303) (0.128185 -0.0001005 0 0.107404 0 0.128004) (0.127922 -0.000105872 0 0.106415 0 0.127703) (0.127658 -0.000112345 0 0.105459 0 0.127403) (0.127394 -0.000119823 0 0.104535 0 0.127102) (0.127129 -0.000128205 0 0.103642 0 0.126802) (0.126865 -0.000137388 0 0.102779 0 0.126504) (0.126602 -0.000147265 0 0.101944 0 0.126206) (0.126339 -0.000157723 0 0.101138 0 0.125911) (0.126077 -0.000168644 0 0.100358 0 0.125617) (0.125816 -0.000179904 0 0.0996041 0 0.125326) (0.125557 -0.000191368 0 0.0988753 0 0.125037) (0.1253 -0.00020289 0 0.0981707 0 0.124752) (0.125044 -0.0002143 0 0.0974891 0 0.124469) (0.12479 -0.000225435 0 0.0968287 0 0.124188) (0.124533 -0.000236172 0 0.0961811 0 0.123906) (0.132993 -6.90284e-05 0 0.131791 0 0.133009) (0.132608 -0.000118691 0 0.130196 0 0.132659) (0.132222 -0.000139676 0 0.128662 0 0.132315) (0.13185 -0.000142971 0 0.127177 0 0.131982) (0.131495 -0.00013664 0 0.125735 0 0.13166) (0.131153 -0.000123573 0 0.124334 0 0.131346) (0.130824 -0.000106105 0 0.12297 0 0.131039) (0.130506 -8.66113e-05 0 0.121643 0 0.130738) (0.130198 -6.65821e-05 0 0.120353 0 0.13044) (0.129899 -4.67775e-05 0 0.119098 0 0.130145) (0.129605 -2.76851e-05 0 0.117878 0 0.129852) (0.129316 -9.65134e-06 0 0.116694 0 0.12956) (0.129032 7.1172e-06 0 0.115545 0 0.129268) (0.128751 2.25195e-05 0 0.11443 0 0.128977) (0.128472 3.65173e-05 0 0.113349 0 0.128686) (0.128196 4.91123e-05 0 0.112301 0 0.128396) (0.127921 6.03357e-05 0 0.111286 0 0.128106) (0.127649 7.02396e-05 0 0.110302 0 0.127816) (0.127378 7.88907e-05 0 0.109349 0 0.127528) (0.127109 8.63659e-05 0 0.108427 0 0.127241) (0.126841 9.27496e-05 0 0.107533 0 0.126954) (0.126575 9.81315e-05 0 0.106668 0 0.12667) (0.126311 0.000102606 0 0.10583 0 0.126387) (0.126049 0.000106271 0 0.105019 0 0.126106) (0.125789 0.00010923 0 0.104234 0 0.125827) (0.12553 0.000111587 0 0.103474 0 0.125551) (0.125274 0.000113455 0 0.102739 0 0.125277) (0.125021 0.000114952 0 0.102026 0 0.125006) (0.124769 0.000116202 0 0.101336 0 0.124737) (0.12452 0.000117345 0 0.100669 0 0.124472) (0.124274 0.000118535 0 0.100022 0 0.12421) (0.12403 0.000119937 0 0.0993936 0 0.12395) (0.123783 0.0001218 0 0.0987762 0 0.123689) (0.132951 -5.8204e-05 0 0.131876 0 0.132965) (0.132525 -0.000103076 0 0.130367 0 0.132569) (0.132097 -0.00012498 0 0.128922 0 0.13218) (0.131679 -0.000130296 0 0.127527 0 0.131802) (0.131275 -0.000125138 0 0.126178 0 0.131436) (0.130884 -0.000112262 0 0.12487 0 0.13108) (0.130507 -9.37982e-05 0 0.123601 0 0.130734) (0.130142 -7.19456e-05 0 0.122369 0 0.130397) (0.129789 -4.83012e-05 0 0.121171 0 0.130068) (0.129447 -2.38441e-05 0 0.120007 0 0.129746) (0.129115 7.48564e-07 0 0.118877 0 0.129429) (0.128791 2.4974e-05 0 0.117778 0 0.129118) (0.128475 4.84889e-05 0 0.116712 0 0.128811) (0.128165 7.10763e-05 0 0.115677 0 0.128508) (0.127862 9.26045e-05 0 0.114672 0 0.128209) (0.127564 0.000113001 0 0.113696 0 0.127913) (0.127271 0.000132236 0 0.11275 0 0.12762) (0.126983 0.000150317 0 0.111832 0 0.12733) (0.126699 0.000167272 0 0.110942 0 0.127044) (0.126419 0.000183149 0 0.110078 0 0.12676) (0.126143 0.000198009 0 0.109241 0 0.126479) (0.12587 0.000211923 0 0.108429 0 0.126201) (0.125602 0.000224971 0 0.107642 0 0.125927) (0.125336 0.000237238 0 0.106879 0 0.125655) (0.125074 0.000248815 0 0.106139 0 0.125386) (0.124816 0.000259798 0 0.105421 0 0.125121) (0.124561 0.000270289 0 0.104726 0 0.124859) (0.124309 0.000280395 0 0.104052 0 0.1246) (0.12406 0.000290231 0 0.103398 0 0.124345) (0.123815 0.000299919 0 0.102765 0 0.124092) (0.123573 0.000309597 0 0.10215 0 0.123844) (0.123334 0.000319423 0 0.101552 0 0.123598) (0.123094 0.000329715 0 0.100963 0 0.123351) (0.132917 -4.9688e-05 0 0.131946 0 0.132928) (0.132457 -9.02718e-05 0 0.130509 0 0.132494) (0.131996 -0.000112761 0 0.129133 0 0.132068) (0.131544 -0.00012059 0 0.12781 0 0.131654) (0.131103 -0.000118182 0 0.126533 0 0.131252) (0.130676 -0.000107918 0 0.125298 0 0.130861) (0.130261 -9.16108e-05 0 0.124103 0 0.130482) (0.129859 -7.11354e-05 0 0.122943 0 0.130113) (0.12947 -4.79856e-05 0 0.121818 0 0.129755) (0.129093 -2.3174e-05 0 0.120726 0 0.129405) (0.128728 2.56096e-06 0 0.119666 0 0.129065) (0.128373 2.86462e-05 0 0.118636 0 0.128732) (0.128027 5.46566e-05 0 0.117636 0 0.128406) (0.127691 8.02925e-05 0 0.116666 0 0.128087) (0.127364 0.000105345 0 0.115723 0 0.127774) (0.127044 0.000129674 0 0.114808 0 0.127467) (0.126731 0.00015319 0 0.11392 0 0.127165) (0.126425 0.000175848 0 0.113058 0 0.126868) (0.126125 0.00019763 0 0.112221 0 0.126577) (0.125832 0.000218548 0 0.111409 0 0.12629) (0.125544 0.000238627 0 0.11062 0 0.126008) (0.125262 0.000257911 0 0.109855 0 0.12573) (0.124984 0.000276454 0 0.109113 0 0.125456) (0.124712 0.000294317 0 0.108392 0 0.125187) (0.124445 0.000311573 0 0.107693 0 0.124922) (0.124182 0.000328298 0 0.107015 0 0.124661) (0.123924 0.000344575 0 0.106357 0 0.124404) (0.12367 0.000360495 0 0.105718 0 0.124151) (0.12342 0.000376152 0 0.105098 0 0.123903) (0.123175 0.000391649 0 0.104496 0 0.123658) (0.122934 0.000407098 0 0.103912 0 0.123417) (0.122696 0.000422643 0 0.103343 0 0.123179) (0.122458 0.000438651 0 0.102782 0 0.122941) (0.132888 -4.27617e-05 0 0.132006 0 0.132898) (0.1324 -7.93079e-05 0 0.130628 0 0.132432) (0.131913 -0.000101674 0 0.12931 0 0.131975) (0.131433 -0.000111502 0 0.128045 0 0.131531) (0.130964 -0.000111882 0 0.126825 0 0.131099) (0.130508 -0.000104768 0 0.125649 0 0.13068) (0.130065 -9.16431e-05 0 0.124511 0 0.130272) (0.129634 -7.40358e-05 0 0.123409 0 0.129876) (0.129216 -5.32507e-05 0 0.122342 0 0.129492) (0.128811 -3.02413e-05 0 0.121308 0 0.129118) (0.128418 -5.7317e-06 0 0.120304 0 0.128754) (0.128037 1.96975e-05 0 0.119331 0 0.1284) (0.127667 4.55936e-05 0 0.118386 0 0.128055) (0.127307 7.16163e-05 0 0.117469 0 0.127718) (0.126957 9.75125e-05 0 0.116579 0 0.12739) (0.126616 0.000123096 0 0.115715 0 0.127069) (0.126284 0.000148235 0 0.114877 0 0.126755) (0.125961 0.00017284 0 0.114062 0 0.126448) (0.125645 0.000196858 0 0.113272 0 0.126147) (0.125337 0.00022026 0 0.112504 0 0.125853) (0.125036 0.000243043 0 0.111758 0 0.125564) (0.124742 0.00026522 0 0.111035 0 0.125282) (0.124454 0.000286817 0 0.110332 0 0.125005) (0.124172 0.000307872 0 0.109649 0 0.124733) (0.123897 0.000328435 0 0.108987 0 0.124466) (0.123627 0.000348562 0 0.108343 0 0.124205) (0.123363 0.000368316 0 0.107718 0 0.123948) (0.123104 0.000387765 0 0.107111 0 0.123697) (0.122851 0.000406984 0 0.106522 0 0.12345) (0.122602 0.000426053 0 0.105949 0 0.123207) (0.122359 0.000445059 0 0.105392 0 0.12297) (0.122119 0.000464124 0 0.10485 0 0.122735) (0.121881 0.000483624 0 0.104314 0 0.122501) (0.132863 -3.6997e-05 0 0.132057 0 0.132872) (0.132351 -6.97343e-05 0 0.13073 0 0.132378) (0.131841 -9.13416e-05 0 0.129461 0 0.131896) (0.131339 -0.00010241 0 0.128243 0 0.131427) (0.130848 -0.000105042 0 0.127071 0 0.13097) (0.130369 -0.000100791 0 0.125942 0 0.130527) (0.129903 -9.08631e-05 0 0.124851 0 0.130095) (0.12945 -7.6491e-05 0 0.123796 0 0.129677) (0.129009 -5.87776e-05 0 0.122775 0 0.12927) (0.128581 -3.85748e-05 0 0.121787 0 0.128874) (0.128166 -1.65467e-05 0 0.120829 0 0.12849) (0.127763 6.7649e-06 0 0.119901 0 0.128117) (0.127372 3.09241e-05 0 0.119 0 0.127753) (0.126991 5.55906e-05 0 0.118127 0 0.127399) (0.126622 8.05006e-05 0 0.117279 0 0.127055) (0.126263 0.000105451 0 0.116456 0 0.126719) (0.125913 0.000130289 0 0.115658 0 0.126392) (0.125573 0.000154903 0 0.114883 0 0.126073) (0.125242 0.000179213 0 0.11413 0 0.125761) (0.124919 0.000203168 0 0.1134 0 0.125457) (0.124605 0.000226739 0 0.11269 0 0.12516) (0.124298 0.000249916 0 0.112001 0 0.124869) (0.123999 0.000272703 0 0.111332 0 0.124586) (0.123708 0.000295117 0 0.110682 0 0.124308) (0.123423 0.000317185 0 0.11005 0 0.124037) (0.123144 0.000338943 0 0.109437 0 0.123772) (0.122873 0.000360434 0 0.108841 0 0.123512) (0.122607 0.000381705 0 0.108261 0 0.123258) (0.122348 0.000402809 0 0.107699 0 0.123009) (0.122094 0.000423801 0 0.107152 0 0.122765) (0.121846 0.000444748 0 0.10662 0 0.122527) (0.121603 0.00046575 0 0.106101 0 0.122293) (0.121361 0.000487195 0 0.105589 0 0.122059) (0.132842 -3.21111e-05 0 0.132101 0 0.132849) (0.132309 -6.12877e-05 0 0.130818 0 0.132333) (0.13178 -8.16824e-05 0 0.129591 0 0.131828) (0.131259 -9.33004e-05 0 0.128413 0 0.131337) (0.130749 -9.75277e-05 0 0.127281 0 0.13086) (0.130252 -9.5574e-05 0 0.126191 0 0.130396) (0.129767 -8.84164e-05 0 0.125139 0 0.129944) (0.129295 -7.70436e-05 0 0.124123 0 0.129506) (0.128836 -6.23721e-05 0 0.12314 0 0.12908) (0.12839 -4.51414e-05 0 0.122189 0 0.128667) (0.127957 -2.59409e-05 0 0.121269 0 0.128265) (0.127536 -5.25764e-06 0 0.120377 0 0.127874) (0.127127 1.6508e-05 0 0.119513 0 0.127494) (0.12673 3.9035e-05 0 0.118675 0 0.127125) (0.126344 6.2068e-05 0 0.117862 0 0.126766) (0.125968 8.54048e-05 0 0.117074 0 0.126416) (0.125604 0.000108887 0 0.116309 0 0.126076) (0.125249 0.000132394 0 0.115567 0 0.125744) (0.124904 0.000155833 0 0.114847 0 0.125421) (0.124568 0.000179141 0 0.114147 0 0.125106) (0.124241 0.000202272 0 0.113468 0 0.1248) (0.123923 0.0002252 0 0.112808 0 0.1245) (0.123613 0.000247912 0 0.112168 0 0.124208) (0.123311 0.00027041 0 0.111546 0 0.123924) (0.123017 0.000292701 0 0.110941 0 0.123646) (0.122729 0.000314806 0 0.110354 0 0.123374) (0.122449 0.000336748 0 0.109783 0 0.123109) (0.122176 0.000358557 0 0.109228 0 0.12285) (0.12191 0.000380267 0 0.108689 0 0.122598) (0.12165 0.000401913 0 0.108164 0 0.122351) (0.121396 0.000423538 0 0.107654 0 0.122109) (0.121148 0.000445224 0 0.107157 0 0.121872) (0.120901 0.000467335 0 0.106664 0 0.121637) (0.132823 -2.7905e-05 0 0.13214 0 0.132829) (0.132272 -5.37786e-05 0 0.130895 0 0.132293) (0.131726 -7.26767e-05 0 0.129704 0 0.131769) (0.131189 -8.42996e-05 0 0.128561 0 0.13126) (0.130664 -8.95282e-05 0 0.127464 0 0.130764) (0.130151 -8.92823e-05 0 0.126406 0 0.130282) (0.12965 -8.43498e-05 0 0.125387 0 0.129814) (0.129163 -7.55267e-05 0 0.124403 0 0.129359) (0.128689 -6.35704e-05 0 0.123452 0 0.128917) (0.128228 -4.91161e-05 0 0.122533 0 0.128488) (0.127779 -3.26803e-05 0 0.121643 0 0.12807) (0.127344 -1.46939e-05 0 0.120782 0 0.127665) (0.12692 4.48476e-06 0 0.119947 0 0.127271) (0.126509 2.45633e-05 0 0.119139 0 0.126888) (0.126109 4.53057e-05 0 0.118355 0 0.126515) (0.12572 6.65219e-05 0 0.117595 0 0.126153) (0.125343 8.806e-05 0 0.116858 0 0.1258) (0.124975 0.000109801 0 0.116143 0 0.125457) (0.124618 0.000131651 0 0.115448 0 0.125123) (0.124271 0.000153542 0 0.114775 0 0.124798) (0.123933 0.000175422 0 0.11412 0 0.124482) (0.123604 0.000197256 0 0.113485 0 0.124173) (0.123284 0.000219022 0 0.112868 0 0.123873) (0.122972 0.00024071 0 0.112269 0 0.12358) (0.122668 0.000262318 0 0.111687 0 0.123295) (0.122373 0.000283851 0 0.111121 0 0.123016) (0.122085 0.00030532 0 0.110572 0 0.122745) (0.121804 0.000326741 0 0.110037 0 0.12248) (0.12153 0.000348131 0 0.109518 0 0.122222) (0.121264 0.00036951 0 0.109013 0 0.12197) (0.121004 0.000390906 0 0.108521 0 0.121724) (0.12075 0.000412383 0 0.108041 0 0.121483) (0.120498 0.000434295 0 0.107567 0 0.121244) (0.132807 -2.42325e-05 0 0.132174 0 0.132812) (0.132239 -4.70542e-05 0 0.130962 0 0.132258) (0.131678 -6.42989e-05 0 0.129803 0 0.131717) (0.131128 -7.55285e-05 0 0.128692 0 0.131191) (0.130589 -8.12751e-05 0 0.127623 0 0.13068) (0.130062 -8.22212e-05 0 0.126595 0 0.130183) (0.129549 -7.89959e-05 0 0.125604 0 0.1297) (0.129048 -7.22408e-05 0 0.124647 0 0.129231) (0.128561 -6.25792e-05 0 0.123723 0 0.128775) (0.128087 -5.05511e-05 0 0.122831 0 0.128332) (0.127627 -3.66049e-05 0 0.121967 0 0.127902) (0.127179 -2.11177e-05 0 0.121131 0 0.127483) (0.126743 -4.40582e-06 0 0.120322 0 0.127077) (0.12632 1.32693e-05 0 0.119538 0 0.126681) (0.125909 3.16941e-05 0 0.118778 0 0.126297) (0.125509 5.06947e-05 0 0.118042 0 0.125924) (0.12512 7.01301e-05 0 0.117327 0 0.12556) (0.124742 8.98876e-05 0 0.116635 0 0.125207) (0.124374 0.000109878 0 0.115963 0 0.124863) (0.124017 0.000130032 0 0.115311 0 0.124529) (0.123669 0.000150297 0 0.114678 0 0.124203) (0.123331 0.000170634 0 0.114063 0 0.123886) (0.123002 0.000191016 0 0.113466 0 0.123577) (0.122681 0.000211426 0 0.112886 0 0.123277) (0.12237 0.000231853 0 0.112323 0 0.122984) (0.122066 0.000252294 0 0.111776 0 0.122699) (0.121771 0.00027275 0 0.111244 0 0.122421) (0.121483 0.000293225 0 0.110727 0 0.12215) (0.121203 0.000313725 0 0.110225 0 0.121886) (0.12093 0.000334258 0 0.109736 0 0.121628) (0.120664 0.000354837 0 0.10926 0 0.121377) (0.120404 0.000375513 0 0.108796 0 0.121132) (0.120147 0.000396609 0 0.108337 0 0.120888) (0.132792 -2.09835e-05 0 0.132204 0 0.132797) (0.13221 -4.09861e-05 0 0.131023 0 0.132227) (0.131636 -5.65063e-05 0 0.129892 0 0.131671) (0.131073 -6.70637e-05 0 0.128807 0 0.131131) (0.130522 -7.29549e-05 0 0.127764 0 0.130606) (0.129984 -7.46726e-05 0 0.126761 0 0.130096) (0.129459 -7.27121e-05 0 0.125795 0 0.1296) (0.128947 -6.75886e-05 0 0.124862 0 0.129118) (0.128449 -5.98125e-05 0 0.123961 0 0.12865) (0.127965 -4.98391e-05 0 0.123091 0 0.128195) (0.127493 -3.80551e-05 0 0.12225 0 0.127753) (0.127035 -2.47884e-05 0 0.121436 0 0.127324) (0.126589 -1.03169e-05 0 0.120648 0 0.126906) (0.126156 5.12757e-06 0 0.119885 0 0.126501) (0.125735 2.13539e-05 0 0.119146 0 0.126106) (0.125325 3.82049e-05 0 0.118429 0 0.125723) (0.124927 5.55525e-05 0 0.117734 0 0.12535) (0.12454 7.32929e-05 0 0.117061 0 0.124988) (0.124164 9.13428e-05 0 0.116407 0 0.124635) (0.123798 0.000109636 0 0.115773 0 0.124292) (0.123442 0.000128122 0 0.115158 0 0.123958) (0.123095 0.000146761 0 0.11456 0 0.123633) (0.122758 0.000165523 0 0.11398 0 0.123317) (0.122431 0.000184388 0 0.113417 0 0.123009) (0.122112 0.000203342 0 0.112869 0 0.122709) (0.121801 0.000222374 0 0.112337 0 0.122417) (0.121499 0.00024148 0 0.11182 0 0.122133) (0.121205 0.000260655 0 0.111318 0 0.121856) (0.120919 0.000279899 0 0.110829 0 0.121586) (0.12064 0.000299209 0 0.110354 0 0.121324) (0.120369 0.000318591 0 0.109892 0 0.121067) (0.120104 0.000338086 0 0.109441 0 0.120817) (0.119841 0.000357997 0 0.108994 0 0.120568) (0.132779 -1.80732e-05 0 0.13223 0 0.132783) (0.132184 -3.54656e-05 0 0.131076 0 0.132199) (0.131598 -4.92443e-05 0 0.129971 0 0.13163) (0.131024 -5.89401e-05 0 0.12891 0 0.131077) (0.130462 -6.46947e-05 0 0.12789 0 0.13054) (0.129914 -6.68529e-05 0 0.126909 0 0.130018) (0.129379 -6.57972e-05 0 0.125964 0 0.129511) (0.128858 -6.19375e-05 0 0.125052 0 0.129018) (0.12835 -5.56885e-05 0 0.124172 0 0.128539) (0.127856 -4.74301e-05 0 0.123322 0 0.128074) (0.127376 -3.74917e-05 0 0.1225 0 0.127622) (0.126908 -2.61563e-05 0 0.121705 0 0.127183) (0.126454 -1.36656e-05 0 0.120935 0 0.126756) (0.126012 -2.22909e-07 0 0.12019 0 0.126341) (0.125582 1.40022e-05 0 0.119469 0 0.125938) (0.125165 2.88696e-05 0 0.118769 0 0.125546) (0.124759 4.42639e-05 0 0.118091 0 0.125165) (0.124364 6.00908e-05 0 0.117434 0 0.124794) (0.12398 7.6274e-05 0 0.116796 0 0.124434) (0.123607 9.27519e-05 0 0.116177 0 0.124083) (0.123243 0.000109476 0 0.115577 0 0.123742) (0.12289 0.000126407 0 0.114994 0 0.12341) (0.122547 0.000143516 0 0.114428 0 0.123087) (0.122212 0.00016078 0 0.113878 0 0.122773) (0.121887 0.000178181 0 0.113344 0 0.122467) (0.121571 0.000195706 0 0.112825 0 0.122169) (0.121263 0.000213345 0 0.112321 0 0.121879) (0.120963 0.00023109 0 0.111831 0 0.121596) (0.120672 0.000248931 0 0.111355 0 0.121321) (0.120388 0.000266863 0 0.110891 0 0.121053) (0.120112 0.000284882 0 0.11044 0 0.120792) (0.119842 0.000303021 0 0.11 0 0.120537) (0.119575 0.000321555 0 0.109564 0 0.120284) (0.132767 -1.54349e-05 0 0.132254 0 0.132771) (0.13216 -3.03998e-05 0 0.131125 0 0.132174) (0.131564 -4.2452e-05 0 0.130042 0 0.131594) (0.13098 -5.11613e-05 0 0.129002 0 0.131029) (0.130409 -5.65712e-05 0 0.128003 0 0.130481) (0.129851 -5.89134e-05 0 0.127042 0 0.129948) (0.129307 -5.84761e-05 0 0.126116 0 0.129431) (0.128778 -5.55807e-05 0 0.125223 0 0.128928) (0.128262 -5.05597e-05 0 0.124361 0 0.12844) (0.127759 -4.37256e-05 0 0.123528 0 0.127966) (0.127271 -3.53552e-05 0 0.122723 0 0.127505) (0.126796 -2.56894e-05 0 0.121944 0 0.127057) (0.126334 -1.49361e-05 0 0.121191 0 0.126622) (0.125884 -3.27211e-06 0 0.120461 0 0.126199) (0.125448 9.1538e-06 0 0.119755 0 0.125788) (0.125023 2.22176e-05 0 0.11907 0 0.125389) (0.12461 3.58162e-05 0 0.118406 0 0.125) (0.124208 4.98648e-05 0 0.117763 0 0.124623) (0.123818 6.42936e-05 0 0.117139 0 0.124255) (0.123438 7.90461e-05 0 0.116533 0 0.123898) (0.123069 9.40762e-05 0 0.115945 0 0.123551) (0.12271 0.000109347 0 0.115375 0 0.123213) (0.122361 0.000124829 0 0.114821 0 0.122884) (0.122021 0.000140499 0 0.114283 0 0.122564) (0.121691 0.000156337 0 0.11376 0 0.122252) (0.121369 0.000172327 0 0.113252 0 0.121949) (0.121057 0.000188457 0 0.112759 0 0.121654) (0.120752 0.000204714 0 0.112279 0 0.121366) (0.120456 0.000221086 0 0.111812 0 0.121086) (0.120168 0.000237562 0 0.111359 0 0.120814) (0.119887 0.000254136 0 0.110917 0 0.120548) (0.119614 0.000270835 0 0.110486 0 0.120289) (0.119342 0.00028791 0 0.11006 0 0.120031) (0.132756 -1.30152e-05 0 0.132276 0 0.13276) (0.132139 -2.57092e-05 0 0.131168 0 0.132152) (0.131533 -3.60672e-05 0 0.130106 0 0.13156) (0.13094 -4.37107e-05 0 0.129086 0 0.130986) (0.13036 -4.86236e-05 0 0.128106 0 0.130428) (0.129794 -5.09531e-05 0 0.127162 0 0.129886) (0.129243 -5.09088e-05 0 0.126253 0 0.129359) (0.128705 -4.87373e-05 0 0.125376 0 0.128848) (0.128182 -4.47004e-05 0 0.12453 0 0.128351) (0.127672 -3.90498e-05 0 0.123713 0 0.127869) (0.127177 -3.20136e-05 0 0.122923 0 0.1274) (0.126695 -2.37933e-05 0 0.122159 0 0.126945) (0.126226 -1.45647e-05 0 0.121419 0 0.126502) (0.125771 -4.4792e-06 0 0.120703 0 0.126072) (0.125328 6.33472e-06 0 0.12001 0 0.125655) (0.124897 1.77687e-05 0 0.119338 0 0.125249) (0.124478 2.97321e-05 0 0.118686 0 0.124854) (0.124071 4.21492e-05 0 0.118055 0 0.12447) (0.123675 5.49573e-05 0 0.117442 0 0.124097) (0.12329 6.81047e-05 0 0.116848 0 0.123734) (0.122916 8.15488e-05 0 0.116271 0 0.123381) (0.122552 9.52546e-05 0 0.115711 0 0.123038) (0.122198 0.000109193 0 0.115167 0 0.122703) (0.121853 0.000123341 0 0.114639 0 0.122378) (0.121518 0.000137677 0 0.114126 0 0.122062) (0.121193 0.000152185 0 0.113628 0 0.121754) (0.120876 0.000166849 0 0.113143 0 0.121455) (0.120567 0.000181654 0 0.112672 0 0.121163) (0.120267 0.000196585 0 0.112214 0 0.120879) (0.119975 0.00021163 0 0.111768 0 0.120602) (0.119691 0.000226779 0 0.111334 0 0.120333) (0.119414 0.000242051 0 0.110911 0 0.120069) (0.119139 0.000257675 0 0.110492 0 0.119808) (0.132747 -1.07701e-05 0 0.132296 0 0.13275) (0.13212 -2.13251e-05 0 0.131208 0 0.132132) (0.131505 -3.00283e-05 0 0.130164 0 0.131531) (0.130903 -3.6558e-05 0 0.129162 0 0.130947) (0.130316 -4.08643e-05 0 0.128198 0 0.13038) (0.129743 -4.30313e-05 0 0.12727 0 0.129829) (0.129184 -4.32043e-05 0 0.126377 0 0.129295) (0.12864 -4.1566e-05 0 0.125515 0 0.128775) (0.12811 -3.83164e-05 0 0.124683 0 0.128271) (0.127594 -3.36527e-05 0 0.123879 0 0.127782) (0.127093 -2.77579e-05 0 0.123102 0 0.127306) (0.126605 -2.07962e-05 0 0.12235 0 0.126844) (0.12613 -1.2913e-05 0 0.121623 0 0.126396) (0.125669 -4.23515e-06 0 0.120919 0 0.12596) (0.125221 5.1285e-06 0 0.120236 0 0.125536) (0.124785 1.5085e-05 0 0.119575 0 0.125124) (0.124361 2.55554e-05 0 0.118935 0 0.124724) (0.123949 3.64735e-05 0 0.118313 0 0.124335) (0.123549 4.77831e-05 0 0.11771 0 0.123957) (0.123159 5.94376e-05 0 0.117125 0 0.123589) (0.122781 7.13977e-05 0 0.116558 0 0.123231) (0.122413 8.36305e-05 0 0.116006 0 0.122883) (0.122055 9.61081e-05 0 0.115471 0 0.122545) (0.121706 0.000108807 0 0.114951 0 0.122216) (0.121368 0.000121706 0 0.114446 0 0.121895) (0.121038 0.000134787 0 0.113955 0 0.121583) (0.120718 0.000148033 0 0.113478 0 0.12128) (0.120406 0.000161428 0 0.113014 0 0.120985) (0.120103 0.000174955 0 0.112563 0 0.120697) (0.119808 0.0001886 0 0.112124 0 0.120417) (0.119521 0.000202352 0 0.111697 0 0.120144) (0.119241 0.000216227 0 0.11128 0 0.119878) (0.118964 0.000230432 0 0.110867 0 0.119614) (0.132738 -8.66223e-06 0 0.132313 0 0.132741) (0.132102 -1.71863e-05 0 0.131244 0 0.132113) (0.131479 -2.42748e-05 0 0.130217 0 0.131503) (0.13087 -2.96624e-05 0 0.12923 0 0.130911) (0.130276 -3.32826e-05 0 0.128282 0 0.130336) (0.129696 -3.51732e-05 0 0.127368 0 0.129778) (0.129131 -3.54262e-05 0 0.126488 0 0.129237) (0.128581 -3.41694e-05 0 0.125638 0 0.128711) (0.128045 -3.15485e-05 0 0.124818 0 0.1282) (0.127524 -2.77119e-05 0 0.124026 0 0.127705) (0.127018 -2.28003e-05 0 0.12326 0 0.127223) (0.126525 -1.69429e-05 0 0.122519 0 0.126756) (0.126046 -1.02562e-05 0 0.121802 0 0.126302) (0.12558 -2.84292e-06 0 0.121107 0 0.125861) (0.125127 5.20702e-06 0 0.120435 0 0.125432) (0.124687 1.38159e-05 0 0.119783 0 0.125016) (0.12426 2.29168e-05 0 0.11915 0 0.124611) (0.123844 3.24526e-05 0 0.118537 0 0.124218) (0.12344 4.23744e-05 0 0.117942 0 0.123835) (0.123047 5.26404e-05 0 0.117365 0 0.123463) (0.122665 6.32153e-05 0 0.116804 0 0.123102) (0.122293 7.40684e-05 0 0.11626 0 0.12275) (0.121932 8.51733e-05 0 0.115732 0 0.122408) (0.121581 9.65068e-05 0 0.115218 0 0.122076) (0.121239 0.000108048 0 0.114719 0 0.121752) (0.120907 0.000119779 0 0.114234 0 0.121437) (0.120584 0.000131681 0 0.113763 0 0.121131) (0.12027 0.000143737 0 0.113305 0 0.120832) (0.119964 0.000155931 0 0.112859 0 0.120542) (0.119667 0.000168245 0 0.112425 0 0.120259) (0.119378 0.000180668 0 0.112003 0 0.119984) (0.119095 0.000193211 0 0.111591 0 0.119715) (0.118816 0.00020606 0 0.111183 0 0.119448) (0.13273 -6.65829e-06 0 0.13233 0 0.132733) (0.132086 -1.32367e-05 0 0.131276 0 0.132097) (0.131456 -1.87464e-05 0 0.130264 0 0.131479) (0.130841 -2.29757e-05 0 0.129291 0 0.13088) (0.13024 -2.58522e-05 0 0.128355 0 0.130298) (0.129655 -2.73792e-05 0 0.127454 0 0.129734) (0.129085 -2.76049e-05 0 0.126584 0 0.129187) (0.12853 -2.66089e-05 0 0.125745 0 0.128655) (0.12799 -2.44894e-05 0 0.124935 0 0.12814) (0.127465 -2.13499e-05 0 0.124152 0 0.127639) (0.126954 -1.72924e-05 0 0.123394 0 0.127153) (0.126458 -1.24128e-05 0 0.122661 0 0.126681) (0.125975 -6.79975e-06 0 0.121952 0 0.126223) (0.125506 -5.33145e-07 0 0.121265 0 0.125778) (0.12505 6.31571e-06 0 0.120599 0 0.125346) (0.124607 1.3684e-05 0 0.119953 0 0.124926) (0.124176 2.15165e-05 0 0.119328 0 0.124518) (0.123758 2.97653e-05 0 0.118721 0 0.124121) (0.123351 3.83886e-05 0 0.118131 0 0.123736) (0.122955 4.73499e-05 0 0.11756 0 0.123361) (0.122571 5.66175e-05 0 0.117005 0 0.122997) (0.122197 6.61635e-05 0 0.116465 0 0.122642) (0.121834 7.59633e-05 0 0.115942 0 0.122298) (0.121481 8.59947e-05 0 0.115433 0 0.121962) (0.121137 9.62373e-05 0 0.114939 0 0.121636) (0.120803 0.000106672 0 0.114458 0 0.121319) (0.120478 0.000117282 0 0.113991 0 0.12101) (0.120162 0.000128048 0 0.113536 0 0.12071) (0.119855 0.000138954 0 0.113094 0 0.120418) (0.119556 0.000149982 0 0.112664 0 0.120133) (0.119265 0.000161121 0 0.112245 0 0.119856) (0.118981 0.000172382 0 0.111837 0 0.119585) (0.1187 0.000183933 0 0.111432 0 0.119316) (0.132723 -4.7268e-06 0 0.132343 0 0.132726) (0.132073 -9.41872e-06 0 0.131303 0 0.132083) (0.131437 -1.33729e-05 0 0.130303 0 0.13146) (0.130817 -1.64292e-05 0 0.12934 0 0.130855) (0.130212 -1.85167e-05 0 0.128413 0 0.130268) (0.129623 -1.96124e-05 0 0.12752 0 0.1297) (0.12905 -1.97271e-05 0 0.126657 0 0.129148) (0.128492 -1.88981e-05 0 0.125825 0 0.128613) (0.127949 -1.71803e-05 0 0.125021 0 0.128094) (0.127422 -1.46363e-05 0 0.124243 0 0.127591) (0.126909 -1.13311e-05 0 0.123491 0 0.127102) (0.12641 -7.32909e-06 0 0.122764 0 0.126627) (0.125925 -2.69193e-06 0 0.122059 0 0.126166) (0.125454 2.52281e-06 0 0.121376 0 0.125719) (0.124996 8.26223e-06 0 0.120714 0 0.125284) (0.124551 1.44783e-05 0 0.120073 0 0.124862) (0.124119 2.11279e-05 0 0.119451 0 0.124452) (0.123699 2.81723e-05 0 0.118847 0 0.124053) (0.123291 3.55768e-05 0 0.118261 0 0.123666) (0.122894 4.33106e-05 0 0.117693 0 0.12329) (0.122508 5.1346e-05 0 0.11714 0 0.122924) (0.122133 5.96581e-05 0 0.116604 0 0.122568) (0.121769 6.8224e-05 0 0.116083 0 0.122222) (0.121414 7.70231e-05 0 0.115577 0 0.121885) (0.12107 8.60355e-05 0 0.115085 0 0.121557) (0.120735 9.52428e-05 0 0.114607 0 0.121239) (0.120409 0.000104627 0 0.114141 0 0.120929) (0.120092 0.000114171 0 0.113689 0 0.120627) (0.119784 0.000123858 0 0.113249 0 0.120333) (0.119484 0.000133672 0 0.112821 0 0.120048) (0.119193 0.000143599 0 0.112404 0 0.119769) (0.118908 0.000153648 0 0.111997 0 0.119497) (0.118627 0.000163964 0 0.111594 0 0.119228) (0.132719 -2.84683e-06 0 0.132351 0 0.132723) (0.132066 -5.68967e-06 0 0.131316 0 0.132076) (0.131429 -8.09947e-06 0 0.13032 0 0.131451) (0.130807 -9.96855e-06 0 0.129361 0 0.130844) (0.130201 -1.12323e-05 0 0.128437 0 0.130256) (0.129612 -1.18472e-05 0 0.127545 0 0.129686) (0.129038 -1.17906e-05 0 0.126685 0 0.129134) (0.128479 -1.10613e-05 0 0.125854 0 0.128597) (0.127936 -9.67364e-06 0 0.125051 0 0.128077) (0.127408 -7.65168e-06 0 0.124275 0 0.127573) (0.126894 -5.02551e-06 0 0.123524 0 0.127083) (0.126395 -1.8291e-06 0 0.122797 0 0.126608) (0.12591 1.90175e-06 0 0.122093 0 0.126147) (0.125439 6.13106e-06 0 0.121411 0 0.125698) (0.124981 1.08238e-05 0 0.12075 0 0.125263) (0.124536 1.59466e-05 0 0.120109 0 0.124841) (0.124104 2.1468e-05 0 0.119488 0 0.12443) (0.123684 2.73587e-05 0 0.118885 0 0.124031) (0.123275 3.35914e-05 0 0.1183 0 0.123643) (0.122878 4.01411e-05 0 0.117731 0 0.123266) (0.122493 4.69844e-05 0 0.11718 0 0.1229) (0.122118 5.40997e-05 0 0.116644 0 0.122543) (0.121753 6.14667e-05 0 0.116123 0 0.122197) (0.121399 6.90664e-05 0 0.115617 0 0.12186) (0.121055 7.68808e-05 0 0.115126 0 0.121532) (0.12072 8.48924e-05 0 0.114647 0 0.121213) (0.120394 9.30841e-05 0 0.114182 0 0.120903) (0.120077 0.000101439 0 0.11373 0 0.120601) (0.119769 0.000109941 0 0.11329 0 0.120307) (0.11947 0.000118574 0 0.112862 0 0.120021) (0.119178 0.000127326 0 0.112445 0 0.119743) (0.118894 0.000136204 0 0.112039 0 0.119471) (0.118612 0.000145341 0 0.111635 0 0.119201) (0.132725 -9.86914e-07 0 0.132339 0 0.132728) (0.132077 -1.99426e-06 0 0.131295 0 0.132087) (0.131444 -2.86674e-06 0 0.130291 0 0.131465) (0.130825 -3.5497e-06 0 0.129324 0 0.130862) (0.130223 -3.98519e-06 0 0.128394 0 0.130277) (0.129636 -4.10877e-06 0 0.127497 0 0.12971) (0.129065 -3.86475e-06 0 0.126632 0 0.129159) (0.128509 -3.21393e-06 0 0.125796 0 0.128625) (0.127968 -2.13113e-06 0 0.124989 0 0.128107) (0.127442 -6.01967e-07 0 0.124209 0 0.127604) (0.12693 1.37829e-06 0 0.123455 0 0.127116) (0.126433 3.80593e-06 0 0.122724 0 0.126643) (0.12595 6.67089e-06 0 0.122017 0 0.126183) (0.125481 9.95873e-06 0 0.121332 0 0.125736) (0.125024 1.36521e-05 0 0.120668 0 0.125302) (0.124581 1.77319e-05 0 0.120024 0 0.12488) (0.12415 2.2178e-05 0 0.1194 0 0.124471) (0.123731 2.69703e-05 0 0.118794 0 0.124073) (0.123324 3.20886e-05 0 0.118206 0 0.123686) (0.122929 3.75133e-05 0 0.117636 0 0.12331) (0.122544 4.32256e-05 0 0.117082 0 0.122945) (0.122171 4.92071e-05 0 0.116543 0 0.122589) (0.121807 5.54398e-05 0 0.11602 0 0.122244) (0.121454 6.19067e-05 0 0.115512 0 0.121908) (0.121111 6.85908e-05 0 0.115018 0 0.121581) (0.120777 7.54757e-05 0 0.114538 0 0.121262) (0.120453 8.25449e-05 0 0.114071 0 0.120953) (0.120137 8.97825e-05 0 0.113617 0 0.120652) (0.11983 9.71723e-05 0 0.113175 0 0.120358) (0.119531 0.000104698 0 0.112745 0 0.120073) (0.119241 0.000112348 0 0.112327 0 0.119795) (0.118957 0.000120125 0 0.111918 0 0.119524) (0.118677 0.000128142 0 0.111513 0 0.119255) (0.132733 9.41501e-07 0 0.132323 0 0.132737) (0.132094 1.81841e-06 0 0.131261 0 0.132104) (0.131468 2.50019e-06 0 0.130242 0 0.131489) (0.130857 2.99083e-06 0 0.129262 0 0.130893) (0.130261 3.35005e-06 0 0.128319 0 0.130315) (0.12968 3.67153e-06 0 0.12741 0 0.129753) (0.129114 4.04958e-06 0 0.126534 0 0.129208) (0.128563 4.56474e-06 0 0.125688 0 0.128679) (0.128027 5.28384e-06 0 0.124871 0 0.128166) (0.127506 6.26058e-06 0 0.124082 0 0.127667) (0.126999 7.53469e-06 0 0.123319 0 0.127183) (0.126506 9.13272e-06 0 0.12258 0 0.126714) (0.126027 1.10703e-05 0 0.121865 0 0.126257) (0.125561 1.33548e-05 0 0.121173 0 0.125814) (0.125108 1.59869e-05 0 0.120502 0 0.125383) (0.124669 1.89622e-05 0 0.119852 0 0.124965) (0.124241 2.2273e-05 0 0.119221 0 0.124558) (0.123825 2.59086e-05 0 0.118609 0 0.124163) (0.123422 2.98567e-05 0 0.118016 0 0.123779) (0.123029 3.4104e-05 0 0.117439 0 0.123406) (0.122647 3.86362e-05 0 0.11688 0 0.123043) (0.122276 4.34386e-05 0 0.116337 0 0.12269) (0.121916 4.84963e-05 0 0.115809 0 0.122346) (0.121565 5.37943e-05 0 0.115296 0 0.122012) (0.121224 5.93173e-05 0 0.114798 0 0.121688) (0.120893 6.50501e-05 0 0.114313 0 0.121372) (0.120571 7.09776e-05 0 0.113842 0 0.121064) (0.120257 7.70844e-05 0 0.113384 0 0.120765) (0.119952 8.33555e-05 0 0.112938 0 0.120473) (0.119656 8.97763e-05 0 0.112504 0 0.12019) (0.119367 9.63358e-05 0 0.112082 0 0.119913) (0.119086 0.000103037 0 0.111669 0 0.119644) (0.118807 0.000109984 0 0.111261 0 0.119376) (0.132743 2.99245e-06 0 0.132302 0 0.132747) (0.132114 5.85592e-06 0 0.131221 0 0.132124) (0.131498 8.1423e-06 0 0.130182 0 0.13152) (0.130896 9.80268e-06 0 0.129183 0 0.130933) (0.130308 1.09103e-05 0 0.128222 0 0.130363) (0.129736 1.16017e-05 0 0.127297 0 0.12981) (0.129178 1.202e-05 0 0.126405 0 0.129273) (0.128634 1.22958e-05 0 0.125544 0 0.128751) (0.128106 1.25453e-05 0 0.124713 0 0.128245) (0.127591 1.28683e-05 0 0.123911 0 0.127753) (0.127091 1.33438e-05 0 0.123134 0 0.127275) (0.126604 1.40308e-05 0 0.122383 0 0.126811) (0.126131 1.49717e-05 0 0.121656 0 0.126361) (0.125671 1.61952e-05 0 0.120952 0 0.125923) (0.125224 1.77197e-05 0 0.12027 0 0.125498) (0.124789 1.95546e-05 0 0.119609 0 0.125084) (0.124366 2.17032e-05 0 0.118969 0 0.124682) (0.123956 2.41638e-05 0 0.118347 0 0.124292) (0.123557 2.69311e-05 0 0.117744 0 0.123912) (0.123168 2.99973e-05 0 0.117159 0 0.123543) (0.122791 3.33525e-05 0 0.11659 0 0.123184) (0.122425 3.69855e-05 0 0.116039 0 0.122835) (0.122068 4.08841e-05 0 0.115503 0 0.122495) (0.121721 4.50352e-05 0 0.114982 0 0.122165) (0.121384 4.94254e-05 0 0.114476 0 0.121843) (0.121056 5.40406e-05 0 0.113984 0 0.12153) (0.120738 5.88666e-05 0 0.113505 0 0.121226) (0.120428 6.38888e-05 0 0.11304 0 0.12093) (0.120126 6.90925e-05 0 0.112588 0 0.120641) (0.119833 7.44629e-05 0 0.112147 0 0.120361) (0.119548 7.99873e-05 0 0.111719 0 0.120087) (0.119269 8.5665e-05 0 0.1113 0 0.11982) (0.118994 9.15789e-05 0 0.110886 0 0.119555) (0.132755 5.23437e-06 0 0.132279 0 0.132759) (0.132138 1.02424e-05 0 0.131172 0 0.132149) (0.131534 1.42087e-05 0 0.13011 0 0.131556) (0.130942 1.70301e-05 0 0.129088 0 0.130981) (0.130365 1.88146e-05 0 0.128106 0 0.130422) (0.129803 1.9762e-05 0 0.12716 0 0.129879) (0.129255 2.00754e-05 0 0.126248 0 0.129352) (0.128721 1.99411e-05 0 0.125369 0 0.12884) (0.128201 1.95311e-05 0 0.124519 0 0.128343) (0.127695 1.89965e-05 0 0.123699 0 0.12786) (0.127204 1.84614e-05 0 0.122906 0 0.12739) (0.126725 1.80228e-05 0 0.122138 0 0.126935) (0.12626 1.77549e-05 0 0.121396 0 0.126492) (0.125808 1.77131e-05 0 0.120677 0 0.126062) (0.125368 1.7937e-05 0 0.11998 0 0.125643) (0.124941 1.84535e-05 0 0.119305 0 0.125237) (0.124525 1.92794e-05 0 0.118651 0 0.124842) (0.124121 2.04235e-05 0 0.118016 0 0.124458) (0.123729 2.1889e-05 0 0.117401 0 0.124084) (0.123347 2.36742e-05 0 0.116803 0 0.123721) (0.122976 2.5774e-05 0 0.116223 0 0.123368) (0.122615 2.81807e-05 0 0.11566 0 0.123024) (0.122264 3.08847e-05 0 0.115113 0 0.12269) (0.121923 3.38746e-05 0 0.114582 0 0.122364) (0.121592 3.71382e-05 0 0.114065 0 0.122048) (0.121269 4.06622e-05 0 0.113563 0 0.12174) (0.120956 4.4433e-05 0 0.113075 0 0.12144) (0.120651 4.84362e-05 0 0.1126 0 0.121148) (0.120354 5.26577e-05 0 0.112138 0 0.120864) (0.120065 5.70836e-05 0 0.111689 0 0.120588) (0.119784 6.17027e-05 0 0.111252 0 0.120318) (0.11951 6.65152e-05 0 0.110825 0 0.120055) (0.119239 7.15994e-05 0 0.110402 0 0.119794) (0.13277 7.75897e-06 0 0.13225 0 0.132773) (0.132167 1.51322e-05 0 0.131113 0 0.132179) (0.131576 2.0862e-05 0 0.130022 0 0.131601) (0.130998 2.47979e-05 0 0.128974 0 0.131039) (0.130434 2.71273e-05 0 0.127966 0 0.130493) (0.129884 2.81563e-05 0 0.126994 0 0.129963) (0.129348 2.81778e-05 0 0.126058 0 0.129448) (0.128825 2.74571e-05 0 0.125155 0 0.128948) (0.128317 2.62373e-05 0 0.124282 0 0.128463) (0.127822 2.47293e-05 0 0.123439 0 0.127991) (0.127341 2.3103e-05 0 0.122624 0 0.127532) (0.126873 2.14913e-05 0 0.121836 0 0.127086) (0.126418 1.99979e-05 0 0.121073 0 0.126653) (0.125975 1.87024e-05 0 0.120334 0 0.126233) (0.125545 1.76642e-05 0 0.119618 0 0.125824) (0.125127 1.69262e-05 0 0.118924 0 0.125426) (0.12472 1.65181e-05 0 0.118251 0 0.125039) (0.124325 1.64592e-05 0 0.117599 0 0.124663) (0.123941 1.67607e-05 0 0.116966 0 0.124298) (0.123567 1.74273e-05 0 0.116352 0 0.123942) (0.123204 1.84585e-05 0 0.115756 0 0.123596) (0.122851 1.985e-05 0 0.115177 0 0.12326) (0.122508 2.1594e-05 0 0.114615 0 0.122933) (0.122174 2.36805e-05 0 0.114068 0 0.122614) (0.12185 2.60975e-05 0 0.113537 0 0.122304) (0.121534 2.88315e-05 0 0.113021 0 0.122002) (0.121227 3.18679e-05 0 0.11252 0 0.121708) (0.120929 3.51911e-05 0 0.112032 0 0.121422) (0.120639 3.87848e-05 0 0.111557 0 0.121144) (0.120356 4.26325e-05 0 0.111096 0 0.120872) (0.120082 4.67189e-05 0 0.110646 0 0.120608) (0.119814 5.10389e-05 0 0.110207 0 0.12035) (0.119548 5.56575e-05 0 0.109773 0 0.120094) (0.132787 1.07032e-05 0 0.132214 0 0.132791) (0.132203 2.07476e-05 0 0.131041 0 0.132215) (0.131629 2.83233e-05 0 0.129915 0 0.131655) (0.131067 3.32626e-05 0 0.128833 0 0.131111) (0.130518 3.59009e-05 0 0.127793 0 0.130582) (0.129983 3.66897e-05 0 0.12679 0 0.130068) (0.129462 3.60302e-05 0 0.125824 0 0.129568) (0.128954 3.4294e-05 0 0.124891 0 0.129083) (0.12846 3.18334e-05 0 0.123991 0 0.128612) (0.127979 2.89535e-05 0 0.12312 0 0.128154) (0.127512 2.58965e-05 0 0.122279 0 0.127709) (0.127057 2.28506e-05 0 0.121464 0 0.127277) (0.126615 1.99616e-05 0 0.120676 0 0.126857) (0.126185 1.73407e-05 0 0.119912 0 0.126448) (0.125768 1.50698e-05 0 0.119172 0 0.126051) (0.125362 1.32068e-05 0 0.118455 0 0.125665) (0.124967 1.17916e-05 0 0.11776 0 0.125289) (0.124583 1.08493e-05 0 0.117085 0 0.124924) (0.124211 1.03938e-05 0 0.116431 0 0.124569) (0.123848 1.04301e-05 0 0.115796 0 0.124223) (0.123496 1.09561e-05 0 0.115179 0 0.123887) (0.123153 1.19645e-05 0 0.11458 0 0.12356) (0.12282 1.34437e-05 0 0.113998 0 0.123241) (0.122496 1.5379e-05 0 0.113433 0 0.122931) (0.122182 1.77531e-05 0 0.112883 0 0.122629) (0.121876 2.0547e-05 0 0.112349 0 0.122335) (0.121578 2.37405e-05 0 0.111829 0 0.122049) (0.121288 2.73124e-05 0 0.111324 0 0.12177) (0.121007 3.12414e-05 0 0.110833 0 0.121499) (0.120733 3.55065e-05 0 0.110355 0 0.121234) (0.120466 4.00896e-05 0 0.109889 0 0.120976) (0.120206 4.49857e-05 0 0.109435 0 0.120724) (0.119948 5.02743e-05 0 0.108984 0 0.120474) (0.13281 1.4286e-05 0 0.132169 0 0.132814) (0.132248 2.74177e-05 0 0.130949 0 0.132262) (0.131695 3.68772e-05 0 0.129779 0 0.131725) (0.131153 4.26197e-05 0 0.128655 0 0.131202) (0.130625 4.53447e-05 0 0.127573 0 0.130694) (0.130109 4.57758e-05 0 0.12653 0 0.130201) (0.129606 4.4464e-05 0 0.125524 0 0.129721) (0.129117 4.18969e-05 0 0.124553 0 0.129255) (0.128641 3.85354e-05 0 0.123614 0 0.128802) (0.128178 3.47716e-05 0 0.122706 0 0.128362) (0.127728 3.09132e-05 0 0.121828 0 0.127934) (0.127291 2.71991e-05 0 0.120977 0 0.127518) (0.126866 2.38151e-05 0 0.120154 0 0.127114) (0.126454 2.09015e-05 0 0.119356 0 0.126721) (0.126052 1.8559e-05 0 0.118583 0 0.126339) (0.125663 1.68565e-05 0 0.117834 0 0.125967) (0.125284 1.58373e-05 0 0.117107 0 0.125606) (0.124916 1.55248e-05 0 0.116402 0 0.125254) (0.124559 1.59263e-05 0 0.115717 0 0.124912) (0.124211 1.70369e-05 0 0.115053 0 0.124578) (0.123873 1.88422e-05 0 0.114408 0 0.124254) (0.123545 2.13208e-05 0 0.113781 0 0.123938) (0.123226 2.44459e-05 0 0.113172 0 0.12363) (0.122916 2.81873e-05 0 0.11258 0 0.123331) (0.122614 3.2512e-05 0 0.112005 0 0.123039) (0.122321 3.73856e-05 0 0.111446 0 0.122754) (0.122036 4.27729e-05 0 0.110903 0 0.122477) (0.121758 4.86382e-05 0 0.110374 0 0.122207) (0.121489 5.49462e-05 0 0.10986 0 0.121943) (0.121226 6.16624e-05 0 0.109359 0 0.121686) (0.120971 6.87564e-05 0 0.108872 0 0.121436) (0.120722 7.62177e-05 0 0.108396 0 0.121191) (0.120475 8.41531e-05 0 0.107925 0 0.120948) (0.132839 1.88991e-05 0 0.132109 0 0.132844) (0.132306 3.57631e-05 0 0.13083 0 0.132323) (0.131781 4.71238e-05 0 0.129602 0 0.131816) (0.131266 5.32702e-05 0 0.128423 0 0.131322) (0.130764 5.5539e-05 0 0.127287 0 0.130842) (0.130275 5.51271e-05 0 0.126192 0 0.130376) (0.129799 5.29277e-05 0 0.125136 0 0.129923) (0.129336 4.97243e-05 0 0.124114 0 0.129483) (0.128887 4.61959e-05 0 0.123127 0 0.129055) (0.12845 4.28548e-05 0 0.122171 0 0.128639) (0.128026 4.00595e-05 0 0.121245 0 0.128234) (0.127614 3.80621e-05 0 0.120348 0 0.127841) (0.127214 3.70364e-05 0 0.119479 0 0.127458) (0.126826 3.70916e-05 0 0.118636 0 0.127086) (0.126449 3.82854e-05 0 0.117818 0 0.126723) (0.126083 4.06371e-05 0 0.117025 0 0.12637) (0.125728 4.41379e-05 0 0.116255 0 0.126026) (0.125382 4.87584e-05 0 0.115508 0 0.125691) (0.125047 5.44541e-05 0 0.114782 0 0.125365) (0.124721 6.11705e-05 0 0.114078 0 0.125046) (0.124404 6.88461e-05 0 0.113393 0 0.124736) (0.124097 7.74157e-05 0 0.112728 0 0.124433) (0.123797 8.68119e-05 0 0.112082 0 0.124138) (0.123506 9.69672e-05 0 0.111454 0 0.12385) (0.123223 0.000107815 0 0.110844 0 0.123569) (0.122948 0.00011929 0 0.11025 0 0.123295) (0.12268 0.000131329 0 0.109673 0 0.123027) (0.12242 0.000143874 0 0.109111 0 0.122766) (0.122166 0.000156867 0 0.108565 0 0.122511) (0.121919 0.000170257 0 0.108034 0 0.122262) (0.121679 0.000183999 0 0.107517 0 0.122018) (0.121444 0.000198088 0 0.107012 0 0.12178) (0.121212 0.000212717 0 0.106512 0 0.121543) (0.132879 2.53122e-05 0 0.132029 0 0.132885) (0.132386 4.71666e-05 0 0.130667 0 0.132407) (0.131899 6.14426e-05 0 0.12936 0 0.13194) (0.131421 6.98614e-05 0 0.128101 0 0.131486) (0.130957 7.48833e-05 0 0.126885 0 0.131044) (0.130506 7.80118e-05 0 0.12571 0 0.130615) (0.130069 8.02548e-05 0 0.124575 0 0.130198) (0.129646 8.25984e-05 0 0.123476 0 0.129792) (0.129236 8.58795e-05 0 0.122412 0 0.129397) (0.128839 9.06415e-05 0 0.121381 0 0.129013) (0.128454 9.71884e-05 0 0.120382 0 0.128639) (0.128082 0.000105678 0 0.119413 0 0.128275) (0.127721 0.000116164 0 0.118474 0 0.127919) (0.127371 0.00012862 0 0.117563 0 0.127572) (0.127032 0.000142957 0 0.116679 0 0.127234) (0.126703 0.000159052 0 0.115821 0 0.126903) (0.126383 0.000176759 0 0.114988 0 0.12658) (0.126073 0.000195923 0 0.114179 0 0.126264) (0.125771 0.000216385 0 0.113394 0 0.125955) (0.125478 0.00023799 0 0.112632 0 0.125653) (0.125192 0.000260588 0 0.111892 0 0.125357) (0.124915 0.000284037 0 0.111173 0 0.125068) (0.124645 0.000308208 0 0.110474 0 0.124786) (0.124382 0.000332979 0 0.109795 0 0.124509) (0.124126 0.000358239 0 0.109136 0 0.124238) (0.123877 0.000383888 0 0.108495 0 0.123973) (0.123634 0.000409836 0 0.107872 0 0.123713) (0.123397 0.000436001 0 0.107266 0 0.123459) (0.123167 0.000462312 0 0.106677 0 0.12321) (0.122942 0.000488705 0 0.106105 0 0.122967) (0.122723 0.000515137 0 0.105548 0 0.122728) (0.122508 0.000541627 0 0.105004 0 0.122494) (0.122296 0.000568536 0 0.104467 0 0.122261) (0.132936 3.61115e-05 0 0.131913 0 0.132944) (0.132503 6.70917e-05 0 0.130434 0 0.132528) (0.132077 8.83687e-05 0 0.129013 0 0.132122) (0.131663 0.000105492 0 0.127642 0 0.131727) (0.131266 0.000123604 0 0.126315 0 0.131343) (0.130884 0.000144687 0 0.125029 0 0.13097) (0.130516 0.000169342 0 0.12378 0 0.130605) (0.130163 0.000197991 0 0.122567 0 0.130248) (0.129823 0.0002308 0 0.12139 0 0.129899) (0.129497 0.000267573 0 0.120246 0 0.129558) (0.129182 0.000307906 0 0.119135 0 0.129223) (0.128878 0.000351341 0 0.118057 0 0.128894) (0.128583 0.000397411 0 0.117011 0 0.128571) (0.128298 0.000445659 0 0.115995 0 0.128253) (0.128022 0.00049565 0 0.11501 0 0.127941) (0.127753 0.000546987 0 0.114054 0 0.127633) (0.127492 0.000599314 0 0.113126 0 0.127331) (0.127237 0.000652319 0 0.112226 0 0.127033) (0.126989 0.000705728 0 0.111353 0 0.12674) (0.126747 0.000759305 0 0.110506 0 0.126452) (0.126511 0.000812851 0 0.109684 0 0.126168) (0.12628 0.000866194 0 0.108887 0 0.125888) (0.126054 0.000919192 0 0.108113 0 0.125614) (0.125834 0.000971725 0 0.107362 0 0.125343) (0.125618 0.00102369 0 0.106634 0 0.125078) (0.125407 0.00107502 0 0.105926 0 0.124816) (0.1252 0.00112564 0 0.10524 0 0.124559) (0.124998 0.00117549 0 0.104574 0 0.124307) (0.124801 0.00122454 0 0.103927 0 0.124059) (0.124607 0.00127276 0 0.103298 0 0.123815) (0.124417 0.00132015 0 0.102688 0 0.123576) (0.124231 0.00136678 0 0.102094 0 0.12334) (0.124046 0.0014133 0 0.101506 0 0.123104) (0.13303 6.56697e-05 0 0.131731 0 0.133038) (0.132702 0.000139744 0 0.130049 0 0.132719) (0.132389 0.000215332 0 0.128415 0 0.132406) (0.132103 0.00029859 0 0.126827 0 0.132101) (0.131843 0.00039226 0 0.125285 0 0.131802) (0.131603 0.000495193 0 0.123787 0 0.131508) (0.131381 0.000605632 0 0.122332 0 0.131216) (0.131173 0.000722059 0 0.120917 0 0.130926) (0.130978 0.000842855 0 0.119544 0 0.130637) (0.130793 0.000966349 0 0.118211 0 0.130347) (0.130615 0.00109106 0 0.116919 0 0.130058) (0.130443 0.0012158 0 0.115666 0 0.129769) (0.130275 0.00133961 0 0.114453 0 0.12948) (0.130112 0.00146173 0 0.113277 0 0.129192) (0.129951 0.0015816 0 0.11214 0 0.128904) (0.129793 0.0016988 0 0.111039 0 0.128616) (0.129637 0.00181304 0 0.109974 0 0.12833) (0.129482 0.00192413 0 0.108944 0 0.128045) (0.129328 0.00203196 0 0.107947 0 0.127762) (0.129176 0.00213649 0 0.106983 0 0.127481) (0.129024 0.00223772 0 0.10605 0 0.127202) (0.128874 0.00233567 0 0.105148 0 0.126925) (0.128724 0.00243043 0 0.104275 0 0.126651) (0.128576 0.00252205 0 0.103431 0 0.126379) (0.128429 0.00261065 0 0.102615 0 0.126111) (0.128283 0.00269632 0 0.101824 0 0.125846) (0.128138 0.00277917 0 0.101059 0 0.125584) (0.127994 0.0028593 0 0.100319 0 0.125326) (0.127852 0.00293683 0 0.0996019 0 0.125071) (0.127711 0.00301188 0 0.0989077 0 0.12482) (0.127572 0.00308459 0 0.0982351 0 0.124572) (0.127434 0.00315522 0 0.097582 0 0.124328) (0.127295 0.00322483 0 0.096939 0 0.124083) (0.133253 0.000219926 0 0.131421 0 0.133214) (0.133216 0.000514503 0 0.12941 0 0.133078) (0.133236 0.000849257 0 0.127418 0 0.132936) (0.133311 0.00121672 0 0.125448 0 0.132789) (0.133427 0.00159771 0 0.123513 0 0.132633) (0.133567 0.00197544 0 0.121622 0 0.132465) (0.133721 0.00234142 0 0.119782 0 0.132285) (0.133882 0.00269178 0 0.117996 0 0.132093) (0.134044 0.00302421 0 0.116269 0 0.131888) (0.134202 0.00333743 0 0.114602 0 0.131673) (0.134352 0.00363121 0 0.112995 0 0.131447) (0.134494 0.00390604 0 0.111448 0 0.131213) (0.134625 0.00416279 0 0.109961 0 0.13097) (0.134744 0.00440253 0 0.10853 0 0.13072) (0.134853 0.00462639 0 0.107156 0 0.130465) (0.134949 0.00483557 0 0.105836 0 0.130205) (0.135034 0.00503122 0 0.104568 0 0.129941) (0.135108 0.00521447 0 0.103349 0 0.129674) (0.135172 0.00538636 0 0.102179 0 0.129405) (0.135225 0.00554788 0 0.101055 0 0.129135) (0.135269 0.00569991 0 0.0999745 0 0.128864) (0.135305 0.0058433 0 0.0989362 0 0.128593) (0.135332 0.00597879 0 0.0979381 0 0.128323) (0.135352 0.00610707 0 0.0969784 0 0.128054) (0.135364 0.00622875 0 0.0960555 0 0.127786) (0.135371 0.0063444 0 0.0951677 0 0.12752) (0.135371 0.00645451 0 0.0943134 0 0.127257) (0.135367 0.00655954 0 0.0934911 0 0.126996) (0.135357 0.00665987 0 0.0926994 0 0.126737) (0.135343 0.00675584 0 0.0919369 0 0.126482) (0.135325 0.00684775 0 0.0912023 0 0.12623) (0.135304 0.00693599 0 0.0904933 0 0.125981) (0.13528 0.00702179 0 0.0898008 0 0.125732) (0.134245 0.00198965 0 0.130543 0 0.133667) (0.135642 0.00441956 0 0.127472 0 0.134029) (0.137282 0.00677636 0 0.12443 0 0.134383) (0.139045 0.00898983 0 0.121465 0 0.134716) (0.140844 0.0110298 0 0.118608 0 0.135013) (0.142635 0.0128871 0 0.115875 0 0.135273) (0.144394 0.0145716 0 0.113275 0 0.135498) (0.146108 0.0161008 0 0.110812 0 0.135691) (0.147766 0.017492 0 0.108485 0 0.135853) (0.149364 0.0187613 0 0.106289 0 0.135988) (0.150899 0.0199231 0 0.104222 0 0.136099) (0.152371 0.0209905 0 0.102276 0 0.136188) (0.153781 0.0219747 0 0.100447 0 0.136258) (0.15513 0.0228856 0 0.0987272 0 0.136312) (0.156422 0.0237318 0 0.097111 0 0.136351) (0.157657 0.0245203 0 0.0955921 0 0.136377) (0.15884 0.0252577 0 0.0941645 0 0.136393) (0.159973 0.0259491 0 0.0928226 0 0.136399) (0.161057 0.0265993 0 0.0915609 0 0.136398) (0.162097 0.0272122 0 0.0903744 0 0.13639) (0.163093 0.0277914 0 0.0892581 0 0.136376) (0.16405 0.0283399 0 0.0882076 0 0.136358) (0.164967 0.0288603 0 0.0872187 0 0.136336) (0.165849 0.0293549 0 0.0862874 0 0.136311) (0.166696 0.0298259 0 0.08541 0 0.136284) (0.167512 0.0302749 0 0.0845831 0 0.136254) (0.168296 0.0307037 0 0.0838036 0 0.136223) (0.169052 0.0311137 0 0.0830683 0 0.136191) (0.16978 0.0315061 0 0.0823745 0 0.136159) (0.170483 0.0318823 0 0.0817197 0 0.136126) (0.17116 0.0322433 0 0.0811015 0 0.136094) (0.171816 0.0325902 0 0.0805175 0 0.136061) (0.172457 0.0329267 0 0.0799625 0 0.136031) (0.153287 0.0371801 0 0.126079 0 0.139664) (0.1751 0.0584548 0 0.118906 0 0.146688) (0.195336 0.0714444 0 0.112966 0 0.153314) (0.214186 0.0800748 0 0.108075 0 0.159598) (0.231802 0.0860709 0 0.104077 0 0.165587) (0.24831 0.0903587 0 0.10084 0 0.171316) (0.26381 0.093495 0 0.0982535 0 0.176811) (0.278387 0.0958404 0 0.0962213 0 0.182095) (0.292113 0.0976384 0 0.0946618 0 0.187182) (0.305051 0.0990577 0 0.093504 0 0.192086) (0.317259 0.100216 0 0.0926868 0 0.196819) (0.328786 0.101197 0 0.0921573 0 0.201388) (0.339679 0.102059 0 0.0918701 0 0.205801) (0.349978 0.102843 0 0.0917857 0 0.210063) (0.359719 0.103578 0 0.0918704 0 0.21418) (0.368939 0.104282 0 0.0920951 0 0.218157) (0.377667 0.104967 0 0.0924347 0 0.221997) (0.385933 0.105643 0 0.092868 0 0.225703) (0.393764 0.106312 0 0.0933764 0 0.22928) (0.401184 0.106977 0 0.0939444 0 0.23273) (0.408218 0.107639 0 0.0945586 0 0.236056) (0.414885 0.108297 0 0.0952076 0 0.239262) (0.421207 0.10895 0 0.0958819 0 0.24235) (0.427202 0.109596 0 0.0965732 0 0.245324) (0.432889 0.110234 0 0.0972747 0 0.248186) (0.438283 0.110862 0 0.0979808 0 0.25094) (0.443401 0.111478 0 0.0986865 0 0.253588) (0.448257 0.112083 0 0.0993879 0 0.256133) (0.452866 0.112673 0 0.100082 0 0.25858) (0.45724 0.113248 0 0.100765 0 0.26093) (0.461391 0.113807 0 0.101436 0 0.263186) (0.465334 0.11435 0 0.102094 0 0.265354) (0.469105 0.114881 0 0.102741 0 0.26745) (0.703992 -0.183392 0 0.188204 0 0.396319) (0.85652 -0.260166 0 0.306258 0 0.447384) (1.03463 -0.341051 0 0.419576 0 0.514754) (1.22247 -0.419904 0 0.526269 0 0.591181) (1.39097 -0.48729 0 0.617794 0 0.664155) (1.52746 -0.540322 0 0.691832 0 0.727009) (1.63108 -0.580086 0 0.749515 0 0.777754) (1.70637 -0.60912 0 0.793441 0 0.817034) (1.75998 -0.630255 0 0.826806 0 0.846874) (1.79825 -0.645901 0 0.852523 0 0.86958) (1.8259 -0.657735 0 0.872739 0 0.88705) (1.84586 -0.666734 0 0.88883 0 0.900563) (1.86028 -0.6736 0 0.901768 0 0.911106) (1.87056 -0.678772 0 0.912162 0 0.919357) (1.87757 -0.682424 0 0.920221 0 0.925747) (1.88215 -0.684435 0 0.925445 0 0.930624) (1.88525 -0.684362 0 0.92608 0 0.934404) (1.88989 -0.682144 0 0.9181 0 0.938988) (1.88902 -0.678713 0 0.911484 0 0.940978) (1.88367 -0.674448 0 0.905239 0 0.940863) (1.8748 -0.669527 0 0.89885 0 0.939037) (1.86326 -0.664065 0 0.892058 0 0.935843) (1.84989 -0.658203 0 0.884787 0 0.931607) (1.83545 -0.652115 0 0.877119 0 0.926649) (1.8206 -0.645981 0 0.869227 0 0.921266) (1.80584 -0.639949 0 0.861294 0 0.915715) (1.79158 -0.634132 0 0.853466 0 0.910207) (1.77816 -0.628627 0 0.845852 0 0.904918) (1.76589 -0.623519 0 0.838543 0 0.899991) (1.75498 -0.618877 0 0.83163 0 0.895542) (1.74555 -0.614748 0 0.825189 0 0.891654) (1.73769 -0.611159 0 0.819274 0 0.888386) (1.73143 -0.608122 0 0.813913 0 0.885772) (1.72676 -0.605639 0 0.809115 0 0.883828) (1.72365 -0.603702 0 0.804877 0 0.882546) (1.72199 -0.602289 0 0.801184 0 0.881898) (1.72164 -0.601357 0 0.798002 0 0.881835) (1.72242 -0.600851 0 0.795277 0 0.882289) (1.72415 -0.600707 0 0.792944 0 0.883179) (1.7266 -0.600852 0 0.790927 0 0.884417) (1.72956 -0.601212 0 0.789144 0 0.885903) (1.73279 -0.601708 0 0.78751 0 0.887534) (1.73606 -0.602258 0 0.785937 0 0.889206) (1.73914 -0.602781 0 0.784335 0 0.890809) (1.7418 -0.603195 0 0.782616 0 0.89224) (1.74383 -0.603422 0 0.780692 0 0.893395) (1.74501 -0.603384 0 0.778479 0 0.894176) (1.74516 -0.603008 0 0.775896 0 0.894489) (1.7441 -0.602227 0 0.772869 0 0.89425) (1.74169 -0.600979 0 0.76933 0 0.893381) (1.73778 -0.599212 0 0.765219 0 0.891814) (1.73228 -0.596879 0 0.760487 0 0.889489) (1.72508 -0.593943 0 0.755091 0 0.88636) (1.71612 -0.590377 0 0.749 0 0.882387) (1.70536 -0.58616 0 0.742194 0 0.877546) (1.69278 -0.581282 0 0.734659 0 0.871819) (1.67838 -0.575742 0 0.726395 0 0.865203) (1.66218 -0.569545 0 0.717409 0 0.857704) (1.64423 -0.562708 0 0.707718 0 0.84934) (1.6246 -0.555253 0 0.697348 0 0.84014) (1.60338 -0.547212 0 0.686336 0 0.830142) (1.58068 -0.538624 0 0.674724 0 0.819396) (1.55662 -0.529534 0 0.662565 0 0.807959) (1.53134 -0.519993 0 0.649918 0 0.7959) (1.505 -0.510058 0 0.636848 0 0.783293) (1.47777 -0.499791 0 0.623425 0 0.770217) (1.44982 -0.489256 0 0.609723 0 0.75676) (1.42133 -0.478521 0 0.595821 0 0.743012) (1.39251 -0.467655 0 0.581795 0 0.729064) (1.36352 -0.456728 0 0.567727 0 0.715013) (1.33458 -0.445811 0 0.553697 0 0.700951) (1.30585 -0.434976 0 0.539783 0 0.686973) (1.27753 -0.42429 0 0.526064 0 0.673171) (1.24978 -0.413819 0 0.512611 0 0.65963) (1.22276 -0.403625 0 0.499496 0 0.646433) (1.19661 -0.393764 0 0.48678 0 0.633653) (1.17146 -0.384283 0 0.474518 0 0.621356) (1.14739 -0.375219 0 0.462756 0 0.609593) (1.12447 -0.366595 0 0.451522 0 0.598405) (1.10275 -0.358421 0 0.440834 0 0.587817) (1.08225 -0.350699 0 0.430695 0 0.577844) (1.06297 -0.34342 0 0.4211 0 0.568491) (1.04491 -0.336575 0 0.412038 0 0.559755) (1.02804 -0.330148 0 0.403496 0 0.551623) (1.01231 -0.32412 0 0.395453 0 0.544076) (0.997659 -0.318465 0 0.387883 0 0.537085) (0.98402 -0.313154 0 0.380757 0 0.530616) (0.971305 -0.30815 0 0.37404 0 0.524627) (0.959421 -0.303418 0 0.367692 0 0.519074) (0.948265 -0.298916 0 0.361674 0 0.513906) (0.937735 -0.294603 0 0.35594 0 0.509068) (0.927723 -0.290436 0 0.350444 0 0.504507) (0.918136 -0.286373 0 0.345142 0 0.50017) (0.908881 -0.282379 0 0.339987 0 0.496006) (0.899949 -0.278433 0 0.33495 0 0.491996) (0.891311 -0.274542 0 0.330013 0 0.488123) (0.883318 -0.270807 0 0.325243 0 0.484518) (0.876088 -0.267403 0 0.320763 0 0.481283) (0.871168 -0.265014 0 0.317205 0 0.479083) (0.868451 -0.263568 0 0.314748 0 0.478044) (0.296652 -0.0773868 0 0.0988084 0 0.180222) (0.313054 -0.0854737 0 0.114532 0 0.187454) (0.346271 -0.0995775 0 0.13672 0 0.20133) (0.400268 -0.121155 0 0.167718 0 0.224233) (0.473854 -0.149586 0 0.207274 0 0.256171) (0.562973 -0.183223 0 0.253705 0 0.295764) (0.661297 -0.219705 0 0.304223 0 0.340439) (0.762178 -0.25667 0 0.355795 0 0.387269) (0.860195 -0.292274 0 0.405883 0 0.433692) (0.951612 -0.325312 0 0.452709 0 0.477792) (1.03437 -0.355177 0 0.495272 0 0.518372) (1.10773 -0.381718 0 0.533215 0 0.554867) (1.172 -0.405112 0 0.566681 0 0.587228) (1.22805 -0.425697 0 0.596095 0 0.615733) (1.27692 -0.44382 0 0.621921 0 0.640799) (1.31968 -0.459702 0 0.644389 0 0.662858) (1.35738 -0.473317 0 0.663013 0 0.68235) (1.39339 -0.484389 0 0.673874 0 0.700609) (1.4239 -0.493654 0 0.683518 0 0.716435) (1.4493 -0.501409 0 0.691977 0 0.729973) (1.47001 -0.507832 0 0.699233 0 0.741367) (1.4865 -0.513047 0 0.705234 0 0.750784) (1.49928 -0.517175 0 0.709971 0 0.758409) (1.50889 -0.520348 0 0.713503 0 0.76445) (1.51583 -0.522703 0 0.715949 0 0.769123) (1.52059 -0.524369 0 0.717448 0 0.772648) (1.52363 -0.525472 0 0.718141 0 0.775238) (1.52539 -0.526136 0 0.718163 0 0.777092) (1.52626 -0.526479 0 0.717648 0 0.778396) (1.52658 -0.526606 0 0.716727 0 0.779312) (1.52662 -0.526608 0 0.715522 0 0.779979) (1.52661 -0.526559 0 0.714138 0 0.78052) (1.52675 -0.526523 0 0.712661 0 0.781036) (1.5272 -0.526552 0 0.711162 0 0.781609) (1.52803 -0.526687 0 0.709696 0 0.782298) (1.52932 -0.52695 0 0.708302 0 0.783141) (1.53106 -0.527348 0 0.707001 0 0.784152) (1.53321 -0.527871 0 0.705795 0 0.785327) (1.5357 -0.528498 0 0.704669 0 0.786643) (1.53843 -0.529195 0 0.703594 0 0.788062) (1.54127 -0.529922 0 0.702531 0 0.789534) (1.54408 -0.530632 0 0.701433 0 0.790998) (1.5467 -0.531271 0 0.700245 0 0.792387) (1.54898 -0.531784 0 0.698911 0 0.793627) (1.55073 -0.532113 0 0.697369 0 0.794642) (1.5518 -0.532199 0 0.695557 0 0.795357) (1.55203 -0.531986 0 0.693415 0 0.795696) (1.55127 -0.531419 0 0.690883 0 0.795587) (1.54937 -0.530448 0 0.687905 0 0.794963) (1.54623 -0.529027 0 0.684433 0 0.793763) (1.54174 -0.527117 0 0.680421 0 0.791933) (1.5358 -0.524686 0 0.675834 0 0.789428) (1.52837 -0.521709 0 0.670643 0 0.78621) (1.51938 -0.518166 0 0.664826 0 0.782251) (1.50881 -0.514048 0 0.658373 0 0.777534) (1.49666 -0.509351 0 0.651277 0 0.772048) (1.48294 -0.504077 0 0.643545 0 0.765796) (1.46767 -0.498239 0 0.635187 0 0.758787) (1.45092 -0.491854 0 0.626224 0 0.751041) (1.43276 -0.484947 0 0.616685 0 0.742589) (1.41326 -0.477549 0 0.606606 0 0.733468) (1.39253 -0.469698 0 0.596031 0 0.723727) (1.37071 -0.461438 0 0.585009 0 0.713422) (1.34791 -0.452819 0 0.573599 0 0.702615) (1.32429 -0.443894 0 0.561862 0 0.691377) (1.29999 -0.434721 0 0.549863 0 0.679782) (1.27519 -0.425362 0 0.537673 0 0.667909) (1.25006 -0.415877 0 0.525361 0 0.655841) (1.22475 -0.40633 0 0.513 0 0.64366) (1.19943 -0.396785 0 0.50066 0 0.63145) (1.17429 -0.387304 0 0.488412 0 0.619295) (1.14947 -0.377948 0 0.476324 0 0.607274) (1.12514 -0.368776 0 0.464462 0 0.595468) (1.10143 -0.359844 0 0.452888 0 0.583948) (1.07847 -0.351202 0 0.441659 0 0.572785) (1.0564 -0.342897 0 0.430825 0 0.562039) (1.03529 -0.334966 0 0.420432 0 0.551763) (1.01524 -0.327438 0 0.410513 0 0.542001) (0.996279 -0.320331 0 0.401092 0 0.532783) (0.978453 -0.31365 0 0.392179 0 0.524129) (0.961771 -0.307394 0 0.383773 0 0.516048) (0.946229 -0.301552 0 0.375868 0 0.508541) (0.931809 -0.296111 0 0.368449 0 0.501602) (0.918479 -0.291055 0 0.361502 0 0.495215) (0.906191 -0.286362 0 0.355003 0 0.48936) (0.894886 -0.282006 0 0.348927 0 0.484009) (0.884492 -0.277958 0 0.343245 0 0.479129) (0.874927 -0.274182 0 0.337922 0 0.474679) (0.866103 -0.270645 0 0.332923 0 0.470617) (0.857922 -0.267305 0 0.328207 0 0.466896) (0.850287 -0.264124 0 0.323733 0 0.463465) (0.843097 -0.261062 0 0.319459 0 0.460272) (0.836263 -0.25808 0 0.315343 0 0.45727) (0.829696 -0.255144 0 0.311343 0 0.45441) (0.823386 -0.252238 0 0.307433 0 0.451673) (0.817299 -0.249368 0 0.303599 0 0.449043) (0.811743 -0.246626 0 0.299905 0 0.446636) (0.806808 -0.244173 0 0.296468 0 0.444536) (0.803802 -0.242591 0 0.293832 0 0.443307) (0.802485 -0.241751 0 0.292111 0 0.44298) (0.158933 -0.0246931 0 0.0688535 0 0.123979) (0.159046 -0.0261788 0 0.071336 0 0.124375) (0.161564 -0.0284241 0 0.0744944 0 0.125368) (0.167583 -0.0319204 0 0.0790156 0 0.127606) (0.178243 -0.0371037 0 0.0855565 0 0.131724) (0.194509 -0.044303 0 0.0946605 0 0.138263) (0.21766 -0.053942 0 0.106988 0 0.147913) (0.248505 -0.0662535 0 0.122968 0 0.161169) (0.287087 -0.0811931 0 0.142651 0 0.178175) (0.332673 -0.0984489 0 0.165707 0 0.198701) (0.384149 -0.117608 0 0.191597 0 0.22229) (0.440116 -0.138186 0 0.219634 0 0.24831) (0.499059 -0.159683 0 0.249077 0 0.276036) (0.559514 -0.181625 0 0.27921 0 0.304742) (0.620181 -0.203595 0 0.309383 0 0.333759) (0.679974 -0.225214 0 0.338988 0 0.36251) (0.73806 -0.246097 0 0.367314 0 0.39053) (0.793872 -0.265786 0 0.39322 0 0.417458) (0.848281 -0.284167 0 0.415298 0 0.443451) (0.898999 -0.301266 0 0.436019 0 0.467879) (0.945846 -0.317091 0 0.455339 0 0.490627) (0.988739 -0.331647 0 0.473192 0 0.511618) (1.02768 -0.344947 0 0.489528 0 0.530818) (1.06276 -0.357016 0 0.504325 0 0.54823) (1.09411 -0.367893 0 0.517603 0 0.563895) (1.12193 -0.377629 0 0.529407 0 0.577886) (1.14647 -0.386289 0 0.539803 0 0.590305) (1.16802 -0.393955 0 0.548875 0 0.601275) (1.1869 -0.400717 0 0.556724 0 0.610934) (1.20343 -0.406674 0 0.563465 0 0.619426) (1.21793 -0.411919 0 0.569219 0 0.626893) (1.23067 -0.416543 0 0.574104 0 0.633474) (1.24193 -0.420632 0 0.578231 0 0.6393) (1.25199 -0.424269 0 0.581706 0 0.644493) (1.26104 -0.42753 0 0.584626 0 0.649163) (1.26929 -0.430476 0 0.587074 0 0.653402) (1.27685 -0.433157 0 0.589121 0 0.657284) (1.28385 -0.435609 0 0.59082 0 0.660863) (1.29034 -0.437854 0 0.592208 0 0.664179) (1.29635 -0.439903 0 0.593309 0 0.667252) (1.30188 -0.441757 0 0.594133 0 0.670088) (1.3069 -0.443408 0 0.594679 0 0.672679) (1.31135 -0.44484 0 0.594936 0 0.675006) (1.31518 -0.446031 0 0.594886 0 0.677041) (1.31829 -0.446953 0 0.594505 0 0.678749) (1.3206 -0.447575 0 0.593763 0 0.680088) (1.32201 -0.447866 0 0.592628 0 0.681015) (1.32242 -0.447791 0 0.591067 0 0.681485) (1.32175 -0.447318 0 0.589045 0 0.681454) (1.31992 -0.446417 0 0.586532 0 0.680879) (1.31684 -0.445062 0 0.583499 0 0.679724) (1.31246 -0.443229 0 0.579922 0 0.677955) (1.30673 -0.440901 0 0.575784 0 0.675546) (1.29962 -0.438065 0 0.571071 0 0.672478) (1.29111 -0.434716 0 0.565779 0 0.668737) (1.2812 -0.430852 0 0.559907 0 0.66432) (1.26992 -0.42648 0 0.553464 0 0.659231) (1.25729 -0.421612 0 0.546465 0 0.653483) (1.24337 -0.416266 0 0.538932 0 0.647096) (1.22822 -0.410467 0 0.530895 0 0.640101) (1.21194 -0.404247 0 0.52239 0 0.632535) (1.19462 -0.397642 0 0.51346 0 0.624443) (1.17637 -0.390694 0 0.504154 0 0.615878) (1.15733 -0.383452 0 0.494525 0 0.606899) (1.13761 -0.375964 0 0.484631 0 0.597569) (1.11738 -0.368285 0 0.474532 0 0.587957) (1.09676 -0.36047 0 0.464293 0 0.578133) (1.07592 -0.352574 0 0.453975 0 0.56817) (1.05499 -0.344655 0 0.443643 0 0.558141) (1.03413 -0.336767 0 0.433357 0 0.548119) (1.01349 -0.328964 0 0.423179 0 0.538175) (0.993186 -0.321299 0 0.413167 0 0.528378) (0.973365 -0.31382 0 0.403376 0 0.518794) (0.954143 -0.306576 0 0.393857 0 0.509486) (0.935631 -0.299606 0 0.384657 0 0.500509) (0.917924 -0.29295 0 0.375818 0 0.491916) (0.901102 -0.286637 0 0.367375 0 0.48375) (0.885228 -0.280691 0 0.359356 0 0.476047) (0.870344 -0.275124 0 0.351778 0 0.468831) (0.856474 -0.269942 0 0.344649 0 0.462119) (0.843624 -0.26514 0 0.337968 0 0.455917) (0.831788 -0.260709 0 0.331727 0 0.450223) (0.820947 -0.256635 0 0.325912 0 0.445031) (0.811068 -0.252901 0 0.320507 0 0.440327) (0.802108 -0.249486 0 0.315491 0 0.436091) (0.79401 -0.246366 0 0.310842 0 0.432297) (0.786709 -0.243512 0 0.30653 0 0.428914) (0.780131 -0.240894 0 0.302525 0 0.425908) (0.774194 -0.238478 0 0.298794 0 0.423239) (0.76881 -0.236227 0 0.2953 0 0.420864) (0.76389 -0.234105 0 0.292007 0 0.418737) (0.75934 -0.232075 0 0.288875 0 0.416811) (0.755079 -0.230102 0 0.285867 0 0.415042) (0.751024 -0.228156 0 0.282946 0 0.413386) (0.747163 -0.22622 0 0.28009 0 0.411827) (0.743462 -0.224304 0 0.277287 0 0.410346) (0.740184 -0.222488 0 0.274598 0 0.409046) (0.737389 -0.220918 0 0.272127 0 0.407992) (0.736165 -0.220079 0 0.270345 0 0.407653) (0.73613 -0.219786 0 0.269284 0 0.407965) (0.135764 -0.0116607 0 0.0722201 0 0.120359) (0.134278 -0.0121751 0 0.0728061 0 0.119892) (0.133302 -0.0127922 0 0.0733736 0 0.119401) (0.132993 -0.013611 0 0.0740713 0 0.119015) (0.133562 -0.014741 0 0.0750602 0 0.118879) (0.135266 -0.0162951 0 0.0765038 0 0.119148) (0.138453 -0.0184124 0 0.0785971 0 0.120003) (0.143517 -0.0212403 0 0.0815484 0 0.121645) (0.150841 -0.0249166 0 0.0855566 0 0.124269) (0.160966 -0.0296332 0 0.0908829 0 0.128144) (0.174311 -0.0355215 0 0.0977377 0 0.133495) (0.191203 -0.0426762 0 0.106287 0 0.14051) (0.211895 -0.0511675 0 0.116658 0 0.149342) (0.236528 -0.0610251 0 0.12892 0 0.160091) (0.265098 -0.0722297 0 0.143069 0 0.172785) (0.297436 -0.0847012 0 0.159004 0 0.187364) (0.333183 -0.0982807 0 0.176485 0 0.203667) (0.371822 -0.112714 0 0.195042 0 0.221439) (0.413296 -0.127681 0 0.213434 0 0.240466) (0.456216 -0.142976 0 0.232274 0 0.260326) (0.499877 -0.158384 0 0.251315 0 0.28069) (0.543589 -0.173696 0 0.270299 0 0.301224) (0.586709 -0.188724 0 0.288973 0 0.321611) (0.628667 -0.203298 0 0.307107 0 0.341564) (0.668988 -0.217281 0 0.32451 0 0.360838) (0.707298 -0.230562 0 0.341027 0 0.379241) (0.743339 -0.243064 0 0.356546 0 0.39663) (0.776957 -0.254741 0 0.370992 0 0.412917) (0.808092 -0.265576 0 0.384327 0 0.428055) (0.836758 -0.275573 0 0.396547 0 0.442038) (0.863022 -0.284754 0 0.407675 0 0.454886) (0.886996 -0.293153 0 0.417751 0 0.466644) (0.908828 -0.300814 0 0.426829 0 0.477376) (0.928686 -0.307791 0 0.434974 0 0.487155) (0.946748 -0.314142 0 0.442258 0 0.496062) (0.96319 -0.319922 0 0.448753 0 0.50418) (0.978173 -0.325187 0 0.454531 0 0.511585) (0.991843 -0.329981 0 0.459655 0 0.518348) (1.00432 -0.334346 0 0.46418 0 0.52453) (1.01571 -0.338314 0 0.468154 0 0.53018) (1.02609 -0.34191 0 0.471613 0 0.535337) (1.03549 -0.345148 0 0.474585 0 0.540028) (1.04396 -0.348039 0 0.477088 0 0.544268) (1.05149 -0.350583 0 0.479133 0 0.548064) (1.05807 -0.352776 0 0.480722 0 0.551413) (1.06368 -0.354609 0 0.481851 0 0.554304) (1.06827 -0.356067 0 0.482512 0 0.55672) (1.07181 -0.357135 0 0.482692 0 0.558641) (1.07423 -0.357794 0 0.482377 0 0.560046) (1.07551 -0.358028 0 0.481552 0 0.560909) (1.07559 -0.35782 0 0.480202 0 0.56121) (1.07443 -0.357156 0 0.478317 0 0.560928) (1.07201 -0.356025 0 0.475887 0 0.560048) (1.06831 -0.354422 0 0.472909 0 0.558559) (1.06333 -0.352345 0 0.469383 0 0.556456) (1.05708 -0.349796 0 0.465316 0 0.55374) (1.04958 -0.346785 0 0.46072 0 0.550419) (1.04087 -0.343325 0 0.455612 0 0.546507) (1.03099 -0.339438 0 0.450017 0 0.542028) (1.02003 -0.335146 0 0.443965 0 0.537009) (1.00807 -0.330482 0 0.437492 0 0.531487) (0.995179 -0.325481 0 0.430637 0 0.525505) (0.981481 -0.320181 0 0.423446 0 0.51911) (0.967084 -0.314626 0 0.41597 0 0.512355) (0.952107 -0.308861 0 0.408259 0 0.505296) (0.936677 -0.302935 0 0.400368 0 0.497995) (0.920921 -0.296897 0 0.392353 0 0.490512) (0.904969 -0.290794 0 0.384269 0 0.482911) (0.888949 -0.284676 0 0.37617 0 0.475253) (0.872986 -0.278591 0 0.368109 0 0.467602) (0.857203 -0.272584 0 0.360139 0 0.460017) (0.841716 -0.2667 0 0.352307 0 0.452557) (0.826634 -0.260979 0 0.344661 0 0.445278) (0.81206 -0.255462 0 0.337243 0 0.438231) (0.798084 -0.250182 0 0.330092 0 0.431464) (0.784789 -0.245172 0 0.323243 0 0.425021) (0.772243 -0.240455 0 0.316724 0 0.418937) (0.760497 -0.236053 0 0.31056 0 0.413243) (0.749589 -0.231975 0 0.304765 0 0.407962) (0.739541 -0.228226 0 0.299346 0 0.403106) (0.730358 -0.224803 0 0.294302 0 0.398683) (0.722036 -0.221697 0 0.289626 0 0.394691) (0.714559 -0.218896 0 0.285308 0 0.391125) (0.7079 -0.216386 0 0.281334 0 0.387974) (0.702021 -0.214147 0 0.277686 0 0.385221) (0.696875 -0.212157 0 0.274344 0 0.382844) (0.692405 -0.210393 0 0.271282 0 0.380818) (0.688548 -0.208825 0 0.268475 0 0.379112) (0.685231 -0.207423 0 0.265894 0 0.377691) (0.682377 -0.206157 0 0.263506 0 0.376518) (0.679908 -0.204991 0 0.261279 0 0.375554) (0.677739 -0.203894 0 0.259178 0 0.374756) (0.675797 -0.202833 0 0.257171 0 0.374086) (0.674009 -0.201782 0 0.255226 0 0.373503) (0.672359 -0.200726 0 0.253323 0 0.372992) (0.670814 -0.199676 0 0.251454 0 0.372538) (0.669597 -0.1987 0 0.249675 0 0.372226) (0.668738 -0.197926 0 0.248076 0 0.372105) (0.669117 -0.197753 0 0.247057 0 0.372553) (0.670217 -0.197941 0 0.246574 0 0.373418) (0.129732 -0.00641288 0 0.0783888 0 0.121473) (0.129091 -0.00665822 0 0.0778151 0 0.120845) (0.127668 -0.00691661 0 0.078022 0 0.120305) (0.126489 -0.00721501 0 0.0782063 0 0.119728) (0.125579 -0.00758543 0 0.0784103 0 0.119157) (0.124986 -0.00805941 0 0.0786767 0 0.118636) (0.12479 -0.00867738 0 0.0790596 0 0.118218) (0.125095 -0.0094866 0 0.0796222 0 0.117965) (0.12602 -0.010537 0 0.0804318 0 0.117939) (0.127712 -0.0118897 0 0.0815671 0 0.118217) (0.130355 -0.0136172 0 0.0831189 0 0.118888) (0.13414 -0.0157923 0 0.0851871 0 0.120048) (0.139265 -0.0184868 0 0.0878716 0 0.121798) (0.145935 -0.0217733 0 0.0912763 0 0.124242) (0.154362 -0.0257242 0 0.0955062 0 0.127489) (0.164755 -0.0304073 0 0.100662 0 0.131648) (0.177301 -0.0358767 0 0.106822 0 0.136817) (0.192158 -0.0421591 0 0.114003 0 0.143074) (0.209652 -0.0492288 0 0.121854 0 0.150469) (0.229524 -0.0570786 0 0.130679 0 0.159022) (0.251718 -0.0656683 0 0.140456 0 0.168724) (0.276089 -0.0749322 0 0.151129 0 0.179522) (0.302406 -0.0847788 0 0.162601 0 0.191321) (0.330358 -0.0950943 0 0.174742 0 0.203982) (0.359564 -0.105747 0 0.18739 0 0.217332) (0.389603 -0.116597 0 0.200368 0 0.231173) (0.420046 -0.127502 0 0.213489 0 0.245298) (0.450477 -0.13833 0 0.226574 0 0.259504) (0.480517 -0.148963 0 0.239454 0 0.273604) (0.509842 -0.159298 0 0.251988 0 0.287432) (0.538181 -0.169255 0 0.264058 0 0.300851) (0.565332 -0.178772 0 0.275573 0 0.313753) (0.591153 -0.187807 0 0.286468 0 0.326062) (0.615559 -0.196336 0 0.296703 0 0.337728) (0.638517 -0.204351 0 0.306261 0 0.348728) (0.660028 -0.211855 0 0.315137 0 0.359056) (0.680121 -0.218858 0 0.323344 0 0.36872) (0.698842 -0.225377 0 0.3309 0 0.37774) (0.716247 -0.23143 0 0.337826 0 0.386138) (0.732395 -0.237035 0 0.344149 0 0.393942) (0.747342 -0.24221 0 0.349892 0 0.401177) (0.761134 -0.24697 0 0.355077 0 0.407865) (0.77381 -0.251326 0 0.359723 0 0.414026) (0.785397 -0.255286 0 0.363845 0 0.419673) (0.795908 -0.258854 0 0.367453 0 0.424813) (0.805349 -0.26203 0 0.370555 0 0.429451) (0.813712 -0.264811 0 0.373151 0 0.433583) (0.820985 -0.267191 0 0.375242 0 0.437204) (0.827148 -0.269163 0 0.376823 0 0.440306) (0.832182 -0.270717 0 0.377892 0 0.442879) (0.836066 -0.271847 0 0.378443 0 0.444911) (0.838782 -0.272546 0 0.378474 0 0.446395) (0.84032 -0.272808 0 0.377982 0 0.447321) (0.840675 -0.272633 0 0.37697 0 0.447686) (0.839852 -0.272023 0 0.375442 0 0.44749) (0.837865 -0.270983 0 0.373409 0 0.446738) (0.834742 -0.269523 0 0.370884 0 0.445438) (0.830521 -0.267658 0 0.367884 0 0.443608) (0.82525 -0.265407 0 0.364435 0 0.441266) (0.81899 -0.262792 0 0.360563 0 0.43844) (0.811814 -0.259843 0 0.3563 0 0.435161) (0.803803 -0.256588 0 0.351684 0 0.431468) (0.795047 -0.253065 0 0.346753 0 0.4274) (0.785643 -0.249309 0 0.341552 0 0.423003) (0.775694 -0.245361 0 0.336124 0 0.418326) (0.765308 -0.241261 0 0.330518 0 0.413419) (0.754592 -0.237051 0 0.324779 0 0.408335) (0.743657 -0.232773 0 0.318956 0 0.403127) (0.732611 -0.228468 0 0.313094 0 0.397847) (0.721559 -0.224176 0 0.307239 0 0.392547) (0.710604 -0.219937 0 0.301435 0 0.387279) (0.699845 -0.215787 0 0.295722 0 0.38209) (0.689375 -0.211762 0 0.290139 0 0.377029) (0.679279 -0.207895 0 0.284724 0 0.372139) (0.669636 -0.204214 0 0.279508 0 0.367459) (0.660516 -0.200747 0 0.274522 0 0.363028) (0.651978 -0.197516 0 0.269792 0 0.358877) (0.644071 -0.194537 0 0.265336 0 0.355033) (0.636829 -0.191821 0 0.261171 0 0.351516) (0.630274 -0.189373 0 0.257302 0 0.34834) (0.624416 -0.187191 0 0.253732 0 0.345512) (0.619257 -0.18527 0 0.250458 0 0.343035) (0.614784 -0.1836 0 0.24747 0 0.340905) (0.610981 -0.182169 0 0.24476 0 0.339116) (0.607818 -0.180963 0 0.242313 0 0.337654) (0.605259 -0.179962 0 0.240113 0 0.336503) (0.603257 -0.179145 0 0.238141 0 0.335644) (0.601762 -0.17849 0 0.236374 0 0.33505) (0.600712 -0.177969 0 0.234788 0 0.334695) (0.600043 -0.177554 0 0.233357 0 0.334546) (0.599687 -0.177218 0 0.232053 0 0.334569) (0.59957 -0.17693 0 0.230845 0 0.334729) (0.599631 -0.176662 0 0.229706 0 0.334991) (0.599801 -0.176391 0 0.228608 0 0.335321) (0.600067 -0.176105 0 0.227535 0 0.335705) (0.600395 -0.175813 0 0.226482 0 0.336127) (0.600968 -0.175574 0 0.225498 0 0.336661) (0.601792 -0.175494 0 0.224657 0 0.337336) (0.603553 -0.175896 0 0.224295 0 0.33845) (0.605616 -0.176493 0 0.2243 0 0.33977) (0.127318 -0.00352657 0 0.0838848 0 0.122574) (0.126819 -0.00366231 0 0.0831242 0 0.122009) (0.126129 -0.00379979 0 0.0825785 0 0.121426) (0.124783 -0.00394871 0 0.0826553 0 0.120908) (0.1236 -0.00411915 0 0.0826765 0 0.120349) (0.12257 -0.00431921 0 0.0826708 0 0.119767) (0.121703 -0.00456111 0 0.0826657 0 0.119186) (0.121021 -0.00486165 0 0.0826897 0 0.11863) (0.120561 -0.00524018 0 0.0827721 0 0.118125) (0.120367 -0.00571955 0 0.082944 0 0.117699) (0.120498 -0.00632723 0 0.0832394 0 0.117386) (0.121027 -0.00709669 0 0.0836978 0 0.117223) (0.12203 -0.0080606 0 0.0843609 0 0.117249) (0.123593 -0.00925371 0 0.0852727 0 0.117509) (0.125808 -0.0107125 0 0.0864804 0 0.118047) (0.128773 -0.0124748 0 0.088033 0 0.118915) (0.132595 -0.0145785 0 0.0899794 0 0.120164) (0.137382 -0.0170582 0 0.0923574 0 0.121845) (0.143267 -0.0199378 0 0.0951523 0 0.124008) (0.150509 -0.023243 0 0.0982382 0 0.126697) (0.158984 -0.0269972 0 0.101857 0 0.129969) (0.168778 -0.0312182 0 0.106037 0 0.133869) (0.179956 -0.035916 0 0.1108 0 0.138435) (0.192553 -0.0410906 0 0.116159 0 0.143688) (0.206567 -0.0467292 0 0.12211 0 0.149637) (0.221955 -0.0528052 0 0.128634 0 0.156269) (0.238626 -0.0592775 0 0.135691 0 0.163549) (0.25645 -0.0660927 0 0.143224 0 0.171421) (0.275256 -0.0731866 0 0.151158 0 0.179811) (0.294843 -0.0804869 0 0.159406 0 0.188625) (0.314992 -0.0879171 0 0.16787 0 0.19776) (0.335473 -0.0954003 0 0.176453 0 0.207109) (0.356067 -0.102863 0 0.185056 0 0.216565) (0.376565 -0.110239 0 0.193588 0 0.226026) (0.396787 -0.117471 0 0.20197 0 0.235401) (0.416576 -0.124511 0 0.210131 0 0.244613) (0.435806 -0.131318 0 0.218015 0 0.253595) (0.454375 -0.137865 0 0.225578 0 0.262296) (0.472211 -0.144127 0 0.232786 0 0.270676) (0.489258 -0.150089 0 0.239613 0 0.278706) (0.505479 -0.15574 0 0.246043 0 0.286365) (0.520849 -0.161072 0 0.252063 0 0.293637) (0.535349 -0.16608 0 0.257666 0 0.300513) (0.548965 -0.170759 0 0.262845 0 0.306983) (0.561685 -0.175105 0 0.267597 0 0.313041) (0.573495 -0.179112 0 0.271916 0 0.318679) (0.58438 -0.182777 0 0.275799 0 0.323891) (0.594324 -0.186091 0 0.279241 0 0.328666) (0.603309 -0.189049 0 0.282237 0 0.332997) (0.611317 -0.191644 0 0.284781 0 0.336873) (0.618331 -0.19387 0 0.28687 0 0.340286) (0.624335 -0.195722 0 0.288499 0 0.343228) (0.62932 -0.197195 0 0.289667 0 0.345691) (0.63328 -0.198289 0 0.290376 0 0.347671) (0.636218 -0.199004 0 0.290628 0 0.349168) (0.638143 -0.199346 0 0.290431 0 0.350184) (0.639075 -0.199322 0 0.289795 0 0.350727) (0.639042 -0.198944 0 0.288735 0 0.350806) (0.638081 -0.198225 0 0.287269 0 0.350439) (0.636239 -0.197186 0 0.285419 0 0.349645) (0.633574 -0.195849 0 0.283212 0 0.348448) (0.630148 -0.194237 0 0.280677 0 0.346879) (0.626033 -0.192379 0 0.277845 0 0.344969) (0.621308 -0.190307 0 0.274752 0 0.342754) (0.616055 -0.188051 0 0.271435 0 0.340274) (0.61036 -0.185646 0 0.267931 0 0.337569) (0.604313 -0.183125 0 0.26428 0 0.334681) (0.598001 -0.180524 0 0.26052 0 0.331653) (0.591515 -0.177875 0 0.25669 0 0.328528) (0.584942 -0.175214 0 0.252827 0 0.32535) (0.578366 -0.172572 0 0.248967 0 0.322159) (0.571871 -0.16998 0 0.245146 0 0.318996) (0.565534 -0.167468 0 0.241396 0 0.315902) (0.559429 -0.165065 0 0.237748 0 0.312911) (0.553623 -0.162794 0 0.234231 0 0.310061) (0.548177 -0.16068 0 0.230871 0 0.307381) (0.543147 -0.158742 0 0.227691 0 0.304901) (0.538575 -0.156995 0 0.224709 0 0.302646) (0.534496 -0.15545 0 0.22194 0 0.300634) (0.530937 -0.154114 0 0.219393 0 0.29888) (0.527911 -0.152986 0 0.217072 0 0.297394) (0.525425 -0.152065 0 0.214976 0 0.296181) (0.523478 -0.151344 0 0.213103 0 0.295241) (0.522059 -0.150814 0 0.211446 0 0.294572) (0.52115 -0.150465 0 0.209995 0 0.294166) (0.520726 -0.150282 0 0.208739 0 0.294012) (0.520753 -0.150248 0 0.207663 0 0.294094) (0.52119 -0.150343 0 0.206751 0 0.294395) (0.52199 -0.150546 0 0.205982 0 0.294893) (0.5231 -0.150834 0 0.205335 0 0.29556) (0.524464 -0.15118 0 0.204787 0 0.296371) (0.52602 -0.15156 0 0.204313 0 0.297295) (0.527714 -0.15195 0 0.203889 0 0.298302) (0.529489 -0.152329 0 0.203492 0 0.299364) (0.531329 -0.152687 0 0.203109 0 0.300468) (0.533202 -0.153032 0 0.202736 0 0.301599) (0.535256 -0.153412 0 0.202416 0 0.302817) (0.537471 -0.153914 0 0.202207 0 0.304136) (0.540363 -0.15479 0 0.202384 0 0.305779) (0.543193 -0.155717 0 0.202781 0 0.307448) (0.125974 -0.00186268 0 0.0884526 0 0.123243) (0.125537 -0.00193765 0 0.0876523 0 0.122749) (0.124997 -0.00201199 0 0.0869739 0 0.122229) (0.123858 -0.0020904 0 0.0868444 0 0.121758) (0.122771 -0.00217661 0 0.0867143 0 0.121252) (0.121746 -0.00227339 0 0.0865767 0 0.120717) (0.120793 -0.00238489 0 0.0864323 0 0.120161) (0.119921 -0.00251763 0 0.0862872 0 0.119594) (0.119142 -0.00267956 0 0.0861506 0 0.119028) (0.118472 -0.0028802 0 0.086034 0 0.118475) (0.117932 -0.00313113 0 0.0859515 0 0.117949) (0.11755 -0.00344697 0 0.0859201 0 0.117467) (0.117359 -0.00384323 0 0.0859591 0 0.117046) (0.117394 -0.00433656 0 0.0860901 0 0.116706) (0.117696 -0.00494476 0 0.0863361 0 0.11647) (0.118311 -0.00568654 0 0.0867216 0 0.116362) (0.119287 -0.00658108 0 0.0872714 0 0.116404) (0.120675 -0.00764716 0 0.0880076 0 0.116625) (0.122541 -0.00890125 0 0.0889358 0 0.117046) (0.125079 -0.0103568 0 0.0899331 0 0.117683) (0.128185 -0.0120305 0 0.0911625 0 0.118574) (0.131906 -0.0139367 0 0.0926472 0 0.119747) (0.136289 -0.0160892 0 0.0944083 0 0.121227) (0.141383 -0.0185002 0 0.0964644 0 0.123038) (0.14723 -0.0211798 0 0.0988322 0 0.125205) (0.153867 -0.0241348 0 0.101525 0 0.127747) (0.161319 -0.0273684 0 0.104552 0 0.13068) (0.169601 -0.0308788 0 0.107918 0 0.134015) (0.17871 -0.0346588 0 0.111618 0 0.137753) (0.188625 -0.0386952 0 0.115645 0 0.14189) (0.199307 -0.0429682 0 0.119979 0 0.14641) (0.210696 -0.0474522 0 0.124596 0 0.15129) (0.222716 -0.0521164 0 0.129462 0 0.156497) (0.235278 -0.0569262 0 0.134536 0 0.16199) (0.248278 -0.0618443 0 0.139777 0 0.167723) (0.26161 -0.0668325 0 0.145136 0 0.173647) (0.275163 -0.0718525 0 0.150565 0 0.179708) (0.288827 -0.0768674 0 0.156018 0 0.185856) (0.3025 -0.0818424 0 0.161448 0 0.19204) (0.316084 -0.0867457 0 0.166813 0 0.198213) (0.329491 -0.0915485 0 0.172074 0 0.204331) (0.342642 -0.0962252 0 0.177196 0 0.210356) (0.355467 -0.100753 0 0.182148 0 0.21625) (0.367903 -0.105112 0 0.186902 0 0.221984) (0.379894 -0.109285 0 0.191433 0 0.227529) (0.391389 -0.113254 0 0.19572 0 0.232858) (0.402341 -0.117005 0 0.199742 0 0.237949) (0.412708 -0.120524 0 0.203481 0 0.242779) (0.422451 -0.123797 0 0.206922 0 0.247328) (0.431532 -0.126814 0 0.21005 0 0.251578) (0.439919 -0.129563 0 0.212852 0 0.255512) (0.447582 -0.132034 0 0.215316 0 0.259113) (0.454496 -0.134221 0 0.217433 0 0.262369) (0.460643 -0.136117 0 0.219198 0 0.265269) (0.466008 -0.137719 0 0.220607 0 0.267805) (0.470588 -0.139027 0 0.22166 0 0.269972) (0.474383 -0.140044 0 0.222359 0 0.271769) (0.477403 -0.140773 0 0.222711 0 0.2732) (0.479667 -0.141225 0 0.222725 0 0.274271) (0.481201 -0.14141 0 0.222415 0 0.274992) (0.48204 -0.141343 0 0.221797 0 0.275379) (0.482226 -0.141042 0 0.220892 0 0.275451) (0.481807 -0.140526 0 0.219722 0 0.275228) (0.480838 -0.139819 0 0.218311 0 0.274736) (0.47938 -0.138943 0 0.216688 0 0.274002) (0.477495 -0.137924 0 0.21488 0 0.273057) (0.475251 -0.13679 0 0.212918 0 0.271932) (0.472716 -0.135566 0 0.210831 0 0.27066) (0.469959 -0.13428 0 0.208649 0 0.269273) (0.467048 -0.132958 0 0.206403 0 0.267805) (0.464053 -0.131626 0 0.204122 0 0.26629) (0.46104 -0.130312 0 0.201834 0 0.264759) (0.458073 -0.129037 0 0.199567 0 0.263246) (0.455214 -0.127828 0 0.197346 0 0.261781) (0.45252 -0.126704 0 0.195198 0 0.260393) (0.450045 -0.125686 0 0.193143 0 0.25911) (0.447838 -0.124791 0 0.191204 0 0.257956) (0.44594 -0.124035 0 0.189397 0 0.256956) (0.444386 -0.123427 0 0.187737 0 0.256126) (0.443204 -0.122975 0 0.186235 0 0.255484) (0.442411 -0.122681 0 0.184896 0 0.255039) (0.442022 -0.122547 0 0.183724 0 0.254799) (0.442042 -0.122569 0 0.182719 0 0.254769) (0.442468 -0.122742 0 0.181878 0 0.25495) (0.443294 -0.123058 0 0.181197 0 0.255339) (0.444502 -0.123507 0 0.180667 0 0.255929) (0.446072 -0.124076 0 0.180279 0 0.25671) (0.447972 -0.124748 0 0.180021 0 0.257671) (0.450169 -0.125508 0 0.179876 0 0.258794) (0.452621 -0.126335 0 0.179829 0 0.26006) (0.455281 -0.127209 0 0.17986 0 0.261446) (0.458101 -0.128107 0 0.17995 0 0.262929) (0.461034 -0.129009 0 0.180078 0 0.264484) (0.464031 -0.129899 0 0.180226 0 0.266086) (0.467078 -0.130766 0 0.180382 0 0.267724) (0.470142 -0.131617 0 0.180543 0 0.269385) (0.473342 -0.132491 0 0.180747 0 0.271115) (0.476632 -0.133457 0 0.181035 0 0.272916) (0.480384 -0.134701 0 0.181627 0 0.274944) (0.483774 -0.135878 0 0.182316 0 0.276851) (0.125009 -0.000861436 0 0.0922265 0 0.123532) (0.124616 -0.00089866 0 0.0914298 0 0.123096) (0.124171 -0.000935136 0 0.0907008 0 0.122635) (0.123561 -0.00097336 0 0.0901364 0 0.122163) (0.12245 -0.00101558 0 0.0900335 0 0.121729) (0.121423 -0.00106306 0 0.0898823 0 0.121258) (0.120463 -0.0011171 0 0.0896985 0 0.120759) (0.119562 -0.00118017 0 0.0894935 0 0.120238) (0.118717 -0.00125562 0 0.0892765 0 0.119701) (0.11793 -0.00134756 0 0.0890556 0 0.119155) (0.117205 -0.00146113 0 0.0888387 0 0.118608) (0.116553 -0.0016031 0 0.0886343 0 0.118068) (0.115985 -0.0017809 0 0.0884522 0 0.117542) (0.115515 -0.00200277 0 0.0883031 0 0.117041) (0.115164 -0.00227774 0 0.0881993 0 0.116577) (0.114951 -0.00261549 0 0.0881537 0 0.11616) (0.114901 -0.0030262 0 0.0881799 0 0.115805) (0.115041 -0.00352026 0 0.0882916 0 0.115525) (0.115402 -0.00410753 0 0.088497 0 0.115333) (0.116045 -0.00479637 0 0.0887758 0 0.115241) (0.117118 -0.00559552 0 0.0890288 0 0.115255) (0.118477 -0.0065133 0 0.0894214 0 0.115404) (0.120156 -0.00755772 0 0.08996 0 0.115701) (0.122183 -0.00873634 0 0.090652 0 0.11616) (0.124587 -0.0100562 0 0.0915047 0 0.116794) (0.127394 -0.0115236 0 0.0925253 0 0.117616) (0.130628 -0.013144 0 0.0937202 0 0.118638) (0.134309 -0.014922 0 0.0950955 0 0.119871) (0.138456 -0.0168607 0 0.0966558 0 0.121325) (0.143081 -0.0189615 0 0.0984046 0 0.123006) (0.148192 -0.0212238 0 0.100343 0 0.12492) (0.15379 -0.0236447 0 0.102471 0 0.127071) (0.159869 -0.0262187 0 0.104785 0 0.129457) (0.166417 -0.028938 0 0.107277 0 0.132074) (0.173412 -0.0317922 0 0.10994 0 0.134916) (0.180827 -0.0347687 0 0.112761 0 0.13797) (0.188626 -0.0378524 0 0.115724 0 0.141222) (0.196768 -0.0410266 0 0.118812 0 0.144654) (0.205205 -0.0442729 0 0.122004 0 0.148246) (0.213886 -0.0475722 0 0.125279 0 0.151973) (0.222758 -0.0509044 0 0.128612 0 0.155812) (0.231764 -0.0542496 0 0.13198 0 0.159735) (0.240849 -0.0575877 0 0.135358 0 0.163718) (0.249956 -0.0608991 0 0.138721 0 0.167732) (0.259029 -0.0641646 0 0.142045 0 0.171751) (0.268014 -0.0673655 0 0.145306 0 0.175748) (0.276857 -0.0704839 0 0.148481 0 0.179697) (0.285506 -0.0735024 0 0.151547 0 0.183574) (0.293912 -0.0764045 0 0.154483 0 0.187352) (0.302027 -0.0791745 0 0.157268 0 0.191009) (0.309805 -0.0817976 0 0.159883 0 0.194522) (0.317204 -0.0842604 0 0.162311 0 0.197869) (0.324187 -0.0865509 0 0.164536 0 0.201031) (0.330719 -0.0886587 0 0.166544 0 0.203991) (0.336771 -0.0905754 0 0.168324 0 0.206733) (0.342319 -0.0922947 0 0.169868 0 0.209245) (0.347348 -0.0938129 0 0.171169 0 0.211517) (0.351847 -0.0951286 0 0.172225 0 0.213543) (0.355813 -0.0962431 0 0.173036 0 0.215319) (0.359249 -0.0971603 0 0.173606 0 0.216847) (0.362167 -0.0978871 0 0.173941 0 0.21813) (0.364586 -0.0984324 0 0.174049 0 0.219175) (0.366529 -0.0988081 0 0.173945 0 0.219993) (0.368027 -0.0990277 0 0.173641 0 0.220597) (0.369117 -0.0991069 0 0.173156 0 0.221004) (0.369837 -0.0990629 0 0.172507 0 0.221232) (0.370233 -0.0989142 0 0.171715 0 0.221302) (0.370351 -0.0986799 0 0.170801 0 0.221235) (0.370241 -0.0983798 0 0.169786 0 0.221055) (0.369951 -0.0980342 0 0.168693 0 0.220786) (0.369533 -0.0976632 0 0.167544 0 0.220452) (0.369039 -0.0972868 0 0.166361 0 0.220079) (0.368518 -0.0969246 0 0.165167 0 0.219692) (0.36802 -0.0965955 0 0.163982 0 0.219315) (0.367592 -0.0963177 0 0.162826 0 0.218971) (0.36728 -0.0961081 0 0.16172 0 0.218684) (0.367126 -0.0959818 0 0.160681 0 0.218476) (0.367168 -0.095952 0 0.159726 0 0.218367) (0.367438 -0.0960292 0 0.158867 0 0.218373) (0.367964 -0.0962212 0 0.158117 0 0.218511) (0.368769 -0.0965326 0 0.157483 0 0.218792) (0.36987 -0.0969656 0 0.156971 0 0.219226) (0.371276 -0.0975198 0 0.156583 0 0.219819) (0.372994 -0.0981929 0 0.156319 0 0.220576) (0.375022 -0.0989801 0 0.156179 0 0.221497) (0.377355 -0.0998744 0 0.156158 0 0.22258) (0.379977 -0.100866 0 0.156249 0 0.22382) (0.382872 -0.101944 0 0.156445 0 0.225208) (0.386012 -0.103094 0 0.156734 0 0.226733) (0.389366 -0.1043 0 0.157103 0 0.228381) (0.392901 -0.105545 0 0.157538 0 0.230134) (0.396575 -0.106812 0 0.158023 0 0.231974) (0.40035 -0.108082 0 0.158541 0 0.23388) (0.404186 -0.109342 0 0.159076 0 0.235832) (0.408069 -0.110582 0 0.159619 0 0.237821) (0.411967 -0.111807 0 0.160168 0 0.239833) (0.41597 -0.113049 0 0.160754 0 0.241904) (0.420015 -0.114356 0 0.161404 0 0.244024) (0.424349 -0.115864 0 0.162288 0 0.246294) (0.428092 -0.11721 0 0.163172 0 0.248328) (0.124199 -0.000249266 0 0.0953844 0 0.123541) (0.123838 -0.000261978 0 0.0946044 0 0.12315) (0.123443 -0.000273999 0 0.0938681 0 0.122737) (0.122965 -0.000286633 0 0.0932221 0 0.122307) (0.122027 -0.000301617 0 0.0929947 0 0.121907) (0.121113 -0.000319514 0 0.0927642 0 0.121481) (0.120225 -0.000340902 0 0.0925262 0 0.12103) (0.119368 -0.000366966 0 0.0922791 0 0.120558) (0.118542 -0.000399373 0 0.0920234 0 0.120067) (0.117749 -0.000440124 0 0.0917606 0 0.119562) (0.116989 -0.000491674 0 0.0914934 0 0.119045) (0.116266 -0.000557292 0 0.091225 0 0.118521) (0.115585 -0.000640504 0 0.0909599 0 0.117994) (0.11495 -0.000745269 0 0.0907035 0 0.117469) (0.114369 -0.000875975 0 0.090462 0 0.116952) (0.113853 -0.00103742 0 0.0902426 0 0.116449) (0.113411 -0.00123479 0 0.090053 0 0.115968) (0.113057 -0.00147357 0 0.0899013 0 0.115515) (0.11281 -0.00175936 0 0.0897939 0 0.115099) (0.1127 -0.00209745 0 0.0897235 0 0.114728) (0.112886 -0.00249261 0 0.0895684 0 0.114397) (0.113218 -0.00295006 0 0.0894865 0 0.114132) (0.113716 -0.00347494 0 0.0894832 0 0.113943) (0.114398 -0.00407216 0 0.0895636 0 0.113836) (0.115281 -0.00474638 0 0.0897329 0 0.113822) (0.116384 -0.00550193 0 0.0899955 0 0.113907) (0.11772 -0.00634278 0 0.0903552 0 0.1141) (0.119306 -0.0072725 0 0.0908156 0 0.114407) (0.121153 -0.00829413 0 0.0913795 0 0.114836) (0.123272 -0.00941008 0 0.0920494 0 0.115391) (0.125674 -0.0106221 0 0.0928271 0 0.116078) (0.128364 -0.011931 0 0.0937139 0 0.116902) (0.131349 -0.0133371 0 0.0947105 0 0.117865) (0.134632 -0.0148395 0 0.0958166 0 0.11897) (0.138212 -0.0164368 0 0.0970316 0 0.120219) (0.142087 -0.0181262 0 0.0983535 0 0.121612) (0.146252 -0.0199039 0 0.0997795 0 0.123146) (0.150698 -0.021765 0 0.101306 0 0.124821) (0.155413 -0.0237035 0 0.102926 0 0.12663) (0.160382 -0.0257124 0 0.104635 0 0.128569) (0.165587 -0.0277835 0 0.106424 0 0.13063) (0.171008 -0.0299079 0 0.108284 0 0.132804) (0.17662 -0.0320758 0 0.110205 0 0.13508) (0.182396 -0.0342767 0 0.112174 0 0.137448) (0.188309 -0.0364994 0 0.11418 0 0.139893) (0.194326 -0.0387321 0 0.116209 0 0.142402) (0.200416 -0.0409628 0 0.118246 0 0.144959) (0.206543 -0.0431789 0 0.120276 0 0.147548) (0.212672 -0.0453678 0 0.122284 0 0.150151) (0.218765 -0.0475165 0 0.124253 0 0.152752) (0.224787 -0.0496125 0 0.126168 0 0.155332) (0.230699 -0.0516434 0 0.128013 0 0.157872) (0.236467 -0.0535974 0 0.129773 0 0.160356) (0.242054 -0.0554634 0 0.131433 0 0.162766) (0.24743 -0.0572314 0 0.13298 0 0.165086) (0.252563 -0.0588928 0 0.134401 0 0.167301) (0.257429 -0.0604403 0 0.135688 0 0.169397) (0.262007 -0.0618684 0 0.136831 0 0.171364) (0.266278 -0.0631736 0 0.137825 0 0.173191) (0.270232 -0.0643541 0 0.138665 0 0.174874) (0.273862 -0.0654105 0 0.139352 0 0.176406) (0.277168 -0.0663453 0 0.139885 0 0.177788) (0.280155 -0.0671631 0 0.140269 0 0.179021) (0.282832 -0.0678704 0 0.140509 0 0.180108) (0.285214 -0.0684755 0 0.140613 0 0.181057) (0.287322 -0.0689882 0 0.140592 0 0.181874) (0.289179 -0.0694196 0 0.140456 0 0.182573) (0.290812 -0.0697822 0 0.140218 0 0.183164) (0.292251 -0.0700892 0 0.139892 0 0.183663) (0.293528 -0.0703544 0 0.139494 0 0.184084) (0.294678 -0.0705921 0 0.139039 0 0.184445) (0.295737 -0.0708171 0 0.138542 0 0.184762) (0.296741 -0.0710441 0 0.13802 0 0.185053) (0.297727 -0.0712877 0 0.137489 0 0.185337) (0.298732 -0.0715623 0 0.136966 0 0.185633) (0.299792 -0.0718814 0 0.136465 0 0.185958) (0.300942 -0.0722578 0 0.136003 0 0.186329) (0.302213 -0.0727028 0 0.135592 0 0.186765) (0.303636 -0.0732261 0 0.135246 0 0.18728) (0.305236 -0.0738351 0 0.134976 0 0.187889) (0.307037 -0.0745353 0 0.134788 0 0.188603) (0.309056 -0.07533 0 0.134691 0 0.189432) (0.311307 -0.0762207 0 0.134688 0 0.190385) (0.3138 -0.0772068 0 0.134782 0 0.191466) (0.31654 -0.078286 0 0.134974 0 0.192681) (0.319526 -0.0794539 0 0.135262 0 0.194028) (0.322752 -0.0807039 0 0.135642 0 0.195507) (0.326206 -0.0820274 0 0.13611 0 0.197112) (0.329872 -0.0834138 0 0.136658 0 0.198837) (0.333727 -0.0848506 0 0.137276 0 0.200671) (0.337744 -0.0863239 0 0.137953 0 0.202601) (0.341892 -0.087819 0 0.138676 0 0.204613) (0.346142 -0.0893212 0 0.139433 0 0.20669) (0.350457 -0.0908181 0 0.140209 0 0.208817) (0.354825 -0.092302 0 0.140998 0 0.210985) (0.359217 -0.0937761 0 0.141796 0 0.21318) (0.363696 -0.0952632 0 0.14263 0 0.215431) (0.368188 -0.0967965 0 0.143513 0 0.217716) (0.372842 -0.0984673 0 0.144574 0 0.220094) (0.376741 -0.0999089 0 0.145563 0 0.222157) (0.123466 0.000124729 0 0.098014 0 0.123353) (0.123127 0.000128462 0 0.0972592 0 0.122995) (0.122765 0.000132879 0 0.0965339 0 0.122618) (0.122364 0.00013717 0 0.0958555 0 0.122224) (0.121833 0.000140125 0 0.0953018 0 0.121822) (0.120946 0.000141199 0 0.095078 0 0.121439) (0.120082 0.000139966 0 0.0948443 0 0.121033) (0.119245 0.0001357 0 0.0945973 0 0.120606) (0.118436 0.000127461 0 0.0943367 0 0.12016) (0.117654 0.000114184 0 0.0940637 0 0.119697) (0.116896 9.46226e-05 0 0.0937804 0 0.119219) (0.116164 6.71656e-05 0 0.0934891 0 0.11873) (0.115456 3.01116e-05 0 0.0931927 0 0.11823) (0.114774 -1.84148e-05 0 0.0928946 0 0.117724) (0.11412 -8.04596e-05 0 0.0925986 0 0.117215) (0.113497 -0.000158246 0 0.0923088 0 0.116705) (0.11291 -0.000254188 0 0.0920297 0 0.116198) (0.112364 -0.000370917 0 0.091766 0 0.1157) (0.111868 -0.000511223 0 0.0915216 0 0.115213) (0.111444 -0.000677944 0 0.0912912 0 0.114743) (0.111223 -0.000873644 0 0.0909663 0 0.114284) (0.111087 -0.00110136 0 0.0906691 0 0.113855) (0.111041 -0.00136425 0 0.0904095 0 0.113461) (0.111094 -0.00166557 0 0.0901938 0 0.11311) (0.111258 -0.00200862 0 0.0900271 0 0.112806) (0.111544 -0.00239664 0 0.0899132 0 0.112556) (0.111964 -0.00283278 0 0.0898553 0 0.112365) (0.112528 -0.00331997 0 0.0898562 0 0.112239) (0.113246 -0.00386088 0 0.0899182 0 0.112182) (0.114127 -0.00445777 0 0.0900431 0 0.112198) (0.115179 -0.00511252 0 0.0902323 0 0.112292) (0.116408 -0.00582662 0 0.0904869 0 0.112468) (0.117819 -0.00660114 0 0.0908076 0 0.112727) (0.119417 -0.00743676 0 0.0911948 0 0.113073) (0.121205 -0.00833374 0 0.0916487 0 0.113508) (0.123185 -0.00929183 0 0.092169 0 0.114033) (0.125358 -0.0103103 0 0.0927553 0 0.11465) (0.127723 -0.0113881 0 0.0934068 0 0.115359) (0.130278 -0.0125234 0 0.094122 0 0.116161) (0.133021 -0.013714 0 0.0948993 0 0.117054) (0.135948 -0.0149572 0 0.0957365 0 0.118037) (0.139053 -0.0162497 0 0.0966307 0 0.119109) (0.142327 -0.0175877 0 0.0975784 0 0.120267) (0.145763 -0.0189669 0 0.0985756 0 0.121508) (0.14935 -0.0203824 0 0.0996173 0 0.122826) (0.153076 -0.0218286 0 0.100698 0 0.124218) (0.156925 -0.0232996 0 0.101811 0 0.125676) (0.160883 -0.0247889 0 0.10295 0 0.127193) (0.16493 -0.0262894 0 0.104106 0 0.128762) (0.169049 -0.0277937 0 0.10527 0 0.130372) (0.173216 -0.029294 0 0.106434 0 0.132015) (0.177411 -0.0307822 0 0.107587 0 0.13368) (0.181609 -0.0322501 0 0.10872 0 0.135355) (0.185786 -0.0336898 0 0.109822 0 0.137029) (0.189918 -0.0350933 0 0.110883 0 0.138689) (0.193981 -0.0364533 0 0.111893 0 0.140325) (0.197953 -0.037763 0 0.112843 0 0.141925) (0.201812 -0.0390163 0 0.113724 0 0.143478) (0.205539 -0.0402085 0 0.114529 0 0.144975) (0.209119 -0.0413358 0 0.115253 0 0.146407) (0.212537 -0.0423956 0 0.115891 0 0.147768) (0.215785 -0.043387 0 0.116439 0 0.149053) (0.218856 -0.0443103 0 0.116898 0 0.150257) (0.221748 -0.0451675 0 0.117266 0 0.15138) (0.224463 -0.0459618 0 0.117546 0 0.152422) (0.227006 -0.0466977 0 0.117742 0 0.153384) (0.229386 -0.0473813 0 0.11786 0 0.154271) (0.231615 -0.0480193 0 0.117905 0 0.155088) (0.23371 -0.0486198 0 0.117886 0 0.155843) (0.235687 -0.0491915 0 0.117812 0 0.156544) (0.237568 -0.0497439 0 0.117692 0 0.157201) (0.239374 -0.0502869 0 0.117537 0 0.157824) (0.241131 -0.0508311 0 0.117359 0 0.158427) (0.242864 -0.0513869 0 0.117168 0 0.159021) (0.244599 -0.0519653 0 0.116977 0 0.15962) (0.246364 -0.0525766 0 0.116798 0 0.160237) (0.248185 -0.0532309 0 0.116643 0 0.160885) (0.250087 -0.0539375 0 0.116523 0 0.16158) (0.252097 -0.0547045 0 0.11645 0 0.162332) (0.254236 -0.0555389 0 0.116431 0 0.163155) (0.256526 -0.0564459 0 0.116476 0 0.164059) (0.258984 -0.0574293 0 0.116591 0 0.165054) (0.261626 -0.0584914 0 0.116782 0 0.166148) (0.264462 -0.0596332 0 0.117051 0 0.167348) (0.267501 -0.0608537 0 0.117401 0 0.168659) (0.270747 -0.0621504 0 0.117832 0 0.170082) (0.274198 -0.0635191 0 0.118344 0 0.171619) (0.277848 -0.0649535 0 0.118932 0 0.173268) (0.281688 -0.0664456 0 0.119592 0 0.175024) (0.285701 -0.0679858 0 0.120317 0 0.176881) (0.289869 -0.0695631 0 0.121099 0 0.17883) (0.294166 -0.0711653 0 0.121927 0 0.180858) (0.29857 -0.0727803 0 0.122792 0 0.182955) (0.303051 -0.0743976 0 0.123681 0 0.185106) (0.307599 -0.0760104 0 0.124591 0 0.187305) (0.312183 -0.0776202 0 0.125516 0 0.189539) (0.316849 -0.0792431 0 0.126478 0 0.191827) (0.321513 -0.0808986 0 0.127481 0 0.194143) (0.32625 -0.0826434 0 0.128616 0 0.196512) (0.330137 -0.0841144 0 0.129633 0 0.198518) (0.122787 0.000343306 0 0.100234 0 0.123035) (0.122462 0.000357997 0 0.0995066 0 0.1227) (0.12212 0.000373427 0 0.0987994 0 0.122351) (0.121757 0.000389014 0 0.0981201 0 0.121984) (0.121347 0.000403922 0 0.0974907 0 0.121605) (0.120817 0.000417544 0 0.0969764 0 0.121219) (0.119939 0.000429617 0 0.0967842 0 0.120852) (0.119108 0.000439575 0 0.0965566 0 0.120462) (0.118314 0.000446792 0 0.0963037 0 0.120054) (0.117549 0.000450578 0 0.096032 0 0.119628) (0.116807 0.000450158 0 0.0957457 0 0.119187) (0.116087 0.000444637 0 0.0954478 0 0.118733) (0.115385 0.000433128 0 0.0951412 0 0.118267) (0.1147 0.000414728 0 0.0948285 0 0.11779) (0.114031 0.000388538 0 0.0945123 0 0.117306) (0.11338 0.000353646 0 0.0941951 0 0.116816) (0.112746 0.000309112 0 0.0938797 0 0.116321) (0.112132 0.000253918 0 0.093569 0 0.115824) (0.111542 0.000186958 0 0.0932653 0 0.115329) (0.110984 0.000107049 0 0.0929677 0 0.114836) (0.110497 1.30592e-05 0 0.0926494 0 0.114347) (0.110186 -9.63646e-05 0 0.0922216 0 0.113857) (0.109908 -0.000222836 0 0.0918233 0 0.113384) (0.109675 -0.000368271 0 0.091453 0 0.112932) (0.109497 -0.000534788 0 0.0911113 0 0.112503) (0.109386 -0.000724669 0 0.0907997 0 0.112101) (0.109348 -0.000940294 0 0.0905203 0 0.111731) (0.109394 -0.00118406 0 0.0902748 0 0.111397) (0.109531 -0.00145828 0 0.0900652 0 0.111101) (0.109766 -0.00176513 0 0.0898931 0 0.110848) (0.110106 -0.00210654 0 0.0897597 0 0.110642) (0.110557 -0.00248424 0 0.0896663 0 0.110484) (0.111125 -0.00289968 0 0.0896137 0 0.110377) (0.111813 -0.00335405 0 0.0896024 0 0.110325) (0.112626 -0.00384823 0 0.0896329 0 0.110329) (0.113566 -0.00438279 0 0.0897054 0 0.110391) (0.114635 -0.00495799 0 0.0898199 0 0.110512) (0.115835 -0.00557381 0 0.0899762 0 0.110693) (0.117166 -0.00622992 0 0.0901739 0 0.110936) (0.118629 -0.00692574 0 0.0904126 0 0.111241) (0.120223 -0.00766039 0 0.0906913 0 0.111608) (0.121948 -0.00843273 0 0.0910093 0 0.112037) (0.1238 -0.00924136 0 0.0913653 0 0.112528) (0.125779 -0.0100846 0 0.0917577 0 0.113081) (0.12788 -0.0109604 0 0.0921849 0 0.113694) (0.1301 -0.0118664 0 0.0926446 0 0.114367) (0.132433 -0.0128001 0 0.0931343 0 0.115096) (0.134873 -0.0137585 0 0.0936508 0 0.11588) (0.137413 -0.0147382 0 0.0941908 0 0.116716) (0.140044 -0.0157355 0 0.0947501 0 0.117599) (0.142757 -0.0167466 0 0.0953242 0 0.118526) (0.14554 -0.017767 0 0.095908 0 0.119491) (0.148382 -0.0187924 0 0.0964961 0 0.120489) (0.151268 -0.0198179 0 0.0970827 0 0.121513) (0.154185 -0.0208388 0 0.0976616 0 0.122557) (0.157117 -0.0218503 0 0.0982267 0 0.123614) (0.160051 -0.0228478 0 0.0987717 0 0.124676) (0.16297 -0.023827 0 0.0992906 0 0.125737) (0.165861 -0.0247838 0 0.0997779 0 0.126788) (0.16871 -0.0257149 0 0.100228 0 0.127825) (0.171504 -0.0266175 0 0.100637 0 0.128839) (0.174232 -0.0274897 0 0.101002 0 0.129827) (0.176887 -0.0283303 0 0.101318 0 0.130783) (0.179461 -0.0291391 0 0.101586 0 0.131705) (0.18195 -0.0299171 0 0.101804 0 0.132589) (0.184352 -0.0306657 0 0.101973 0 0.133435) (0.186669 -0.0313879 0 0.102095 0 0.134244) (0.188904 -0.0320871 0 0.102173 0 0.135017) (0.191064 -0.0327677 0 0.102211 0 0.135757) (0.193156 -0.0334349 0 0.102213 0 0.136467) (0.195192 -0.0340946 0 0.102185 0 0.137154) (0.197184 -0.0347534 0 0.102135 0 0.137823) (0.199148 -0.0354182 0 0.10207 0 0.138482) (0.2011 -0.0360965 0 0.101997 0 0.139139) (0.203057 -0.0367958 0 0.101925 0 0.139803) (0.20504 -0.0375241 0 0.101863 0 0.140484) (0.207067 -0.0382888 0 0.10182 0 0.141192) (0.209159 -0.0390974 0 0.101806 0 0.141937) (0.211335 -0.0399563 0 0.101828 0 0.14273) (0.213614 -0.0408714 0 0.101895 0 0.14358) (0.216015 -0.0418475 0 0.102013 0 0.144496) (0.218552 -0.0428883 0 0.10219 0 0.145489) (0.221242 -0.0439966 0 0.102431 0 0.146565) (0.224097 -0.0451738 0 0.102738 0 0.147731) (0.227124 -0.0464201 0 0.103117 0 0.148992) (0.230331 -0.0477344 0 0.103567 0 0.150352) (0.23372 -0.0491139 0 0.104089 0 0.151814) (0.237289 -0.0505544 0 0.104681 0 0.153376) (0.241032 -0.05205 0 0.105341 0 0.155038) (0.24494 -0.0535934 0 0.106064 0 0.156795) (0.248999 -0.0551758 0 0.106844 0 0.158641) (0.25319 -0.0567875 0 0.107672 0 0.160567) (0.257496 -0.0584187 0 0.108541 0 0.162565) (0.261893 -0.0600605 0 0.109442 0 0.164623) (0.266371 -0.0617068 0 0.110371 0 0.166736) (0.270902 -0.0633578 0 0.111323 0 0.168892) (0.275516 -0.0650236 0 0.112314 0 0.171104) (0.280124 -0.0667135 0 0.113341 0 0.173341) (0.284751 -0.0684575 0 0.114469 0 0.175606) (0.288489 -0.0699051 0 0.115452 0 0.17749) (0.122156 0.000459433 0 0.102086 0 0.122637) (0.121838 0.000481481 0 0.101386 0 0.122318) (0.121509 0.000504288 0 0.100702 0 0.121987) (0.121164 0.000527419 0 0.100036 0 0.121641) (0.120796 0.000550258 0 0.0993981 0 0.121282) (0.120366 0.000572319 0 0.0988224 0 0.120913) (0.119608 0.000593284 0 0.0985494 0 0.12056) (0.118856 0.000612719 0 0.0982764 0 0.120192) (0.118116 0.000630107 0 0.0979975 0 0.119808) (0.117392 0.00064493 0 0.0977105 0 0.11941) (0.116681 0.000656624 0 0.0974145 0 0.118997) (0.115985 0.000664657 0 0.0971098 0 0.118572) (0.115301 0.000668532 0 0.0967973 0 0.118136) (0.11463 0.000667815 0 0.0964783 0 0.117688) (0.113968 0.000662151 0 0.0961543 0 0.117232) (0.113317 0.000651263 0 0.0958268 0 0.116766) (0.112676 0.000634931 0 0.0954975 0 0.116294) (0.112045 0.000612961 0 0.0951682 0 0.115816) (0.111425 0.000585144 0 0.0948403 0 0.115333) (0.110821 0.000551252 0 0.094514 0 0.114848) (0.110249 0.000511023 0 0.0941774 0 0.11436) (0.109827 0.000464147 0 0.0937276 0 0.113863) (0.109434 0.000410092 0 0.0932791 0 0.113371) (0.109068 0.000347992 0 0.0928388 0 0.112886) (0.108733 0.000276722 0 0.0924109 0 0.112411) (0.108432 0.000194907 0 0.0919979 0 0.111948) (0.108172 0.000100963 0 0.0916016 0 0.111501) (0.107958 -6.84502e-06 0 0.0912239 0 0.111072) (0.107796 -0.000130331 0 0.0908659 0 0.110664) (0.107693 -0.000271322 0 0.0905291 0 0.11028) (0.107652 -0.000431603 0 0.0902145 0 0.109921) (0.107681 -0.000612874 0 0.0899233 0 0.109592) (0.107783 -0.000816713 0 0.0896562 0 0.109293) (0.107963 -0.00104454 0 0.0894141 0 0.109027) (0.108225 -0.00129758 0 0.0891975 0 0.108796) (0.108572 -0.00157685 0 0.089007 0 0.108603) (0.109006 -0.00188311 0 0.0888428 0 0.108447) (0.10953 -0.00221691 0 0.088705 0 0.108331) (0.110145 -0.00257856 0 0.0885937 0 0.108256) (0.110853 -0.0029682 0 0.0885089 0 0.108222) (0.111654 -0.00338573 0 0.0884502 0 0.10823) (0.112548 -0.00383092 0 0.0884173 0 0.108282) (0.113537 -0.00430332 0 0.0884098 0 0.108377) (0.114618 -0.00480235 0 0.088427 0 0.108516) (0.115793 -0.00532724 0 0.0884683 0 0.108698) (0.11706 -0.00587705 0 0.0885327 0 0.108924) (0.118416 -0.00645069 0 0.0886192 0 0.109194) (0.119861 -0.00704686 0 0.0887263 0 0.109506) (0.121392 -0.00766409 0 0.0888527 0 0.109859) (0.123004 -0.00830072 0 0.0889965 0 0.110254) (0.124695 -0.0089549 0 0.0891555 0 0.110687) (0.12646 -0.0096246 0 0.0893273 0 0.111157) (0.128292 -0.0103076 0 0.0895094 0 0.111662) (0.130186 -0.0110015 0 0.0896986 0 0.112198) (0.132134 -0.0117039 0 0.0898919 0 0.112763) (0.134128 -0.0124121 0 0.0900857 0 0.113352) (0.136161 -0.0131235 0 0.0902766 0 0.113962) (0.138223 -0.0138357 0 0.0904609 0 0.114589) (0.140305 -0.0145461 0 0.090635 0 0.115229) (0.142398 -0.0152525 0 0.0907957 0 0.115876) (0.144493 -0.0159529 0 0.0909398 0 0.116528) (0.146582 -0.0166459 0 0.0910645 0 0.11718) (0.148658 -0.0173302 0 0.0911675 0 0.117828) (0.150715 -0.0180053 0 0.0912471 0 0.118469) (0.152746 -0.0186711 0 0.0913023 0 0.119102) (0.154748 -0.0193281 0 0.0913327 0 0.119723) (0.15672 -0.0199776 0 0.0913387 0 0.120333) (0.158661 -0.0206213 0 0.0913214 0 0.120931) (0.160572 -0.0212618 0 0.0912829 0 0.121518) (0.162457 -0.0219019 0 0.0912257 0 0.122095) (0.16432 -0.0225454 0 0.0911533 0 0.122665) (0.166169 -0.0231964 0 0.09107 0 0.123232) (0.168013 -0.0238596 0 0.0909804 0 0.1238) (0.16986 -0.0245399 0 0.0908901 0 0.124375) (0.171724 -0.0252429 0 0.0908052 0 0.124961) (0.173617 -0.0259741 0 0.090732 0 0.125567) (0.175554 -0.0267391 0 0.0906774 0 0.126198) (0.177549 -0.0275435 0 0.0906483 0 0.126864) (0.179616 -0.0283924 0 0.0906517 0 0.127571) (0.181773 -0.0292907 0 0.0906942 0 0.128329) (0.184033 -0.0302424 0 0.090782 0 0.129144) (0.186411 -0.0312509 0 0.0909208 0 0.130025) (0.18892 -0.032319 0 0.0911155 0 0.130978) (0.191572 -0.0334485 0 0.0913702 0 0.132011) (0.194377 -0.0346402 0 0.0916882 0 0.133127) (0.197341 -0.0358939 0 0.0920718 0 0.134333) (0.200471 -0.0372082 0 0.092522 0 0.13563) (0.203766 -0.0385802 0 0.0930387 0 0.13702) (0.207226 -0.0400057 0 0.0936202 0 0.138502) (0.210843 -0.0414793 0 0.0942637 0 0.140076) (0.21461 -0.0429943 0 0.0949646 0 0.141736) (0.218513 -0.0445432 0 0.0957173 0 0.143478) (0.222538 -0.0461177 0 0.0965157 0 0.145293) (0.226667 -0.0477108 0 0.0973527 0 0.147175) (0.230891 -0.0493168 0 0.0982246 0 0.149117) (0.235183 -0.0509349 0 0.0991266 0 0.151109) (0.239563 -0.0525708 0 0.100071 0 0.153161) (0.24394 -0.0542256 0 0.10105 0 0.155237) (0.248311 -0.0559111 0 0.102107 0 0.157329) (0.251804 -0.0572958 0 0.103012 0 0.159047) (0.121578 0.000508774 0 0.103648 0 0.122204) (0.121263 0.000535315 0 0.102977 0 0.121894) (0.120939 0.00056266 0 0.102316 0 0.121573) (0.120604 0.000590482 0 0.101668 0 0.121241) (0.120254 0.000618311 0 0.101038 0 0.120897) (0.119877 0.000645721 0 0.100437 0 0.120542) (0.119407 0.00067238 0 0.099925 0 0.120182) (0.118671 0.000697979 0 0.0996605 0 0.119833) (0.117952 0.000722047 0 0.099385 0 0.119469) (0.117248 0.00074414 0 0.0990996 0 0.119092) (0.116557 0.000763838 0 0.0988048 0 0.118703) (0.115879 0.000780779 0 0.0985012 0 0.118301) (0.115212 0.00079465 0 0.0981899 0 0.117888) (0.114554 0.000805225 0 0.0978719 0 0.117466) (0.113905 0.000812387 0 0.0975481 0 0.117033) (0.113263 0.000816134 0 0.0972197 0 0.116592) (0.112628 0.000816568 0 0.0968878 0 0.116142) (0.111998 0.000813871 0 0.0965536 0 0.115686) (0.111375 0.000808269 0 0.0962181 0 0.115223) (0.11076 0.00080002 0 0.0958816 0 0.114755) (0.110159 0.000789362 0 0.0955401 0 0.114281) (0.109605 0.000776492 0 0.0951648 0 0.113802) (0.109199 0.000761567 0 0.0946651 0 0.113312) (0.108796 0.000744454 0 0.0941773 0 0.112823) (0.108403 0.000724734 0 0.0936995 0 0.112338) (0.108024 0.000701743 0 0.093231 0 0.111858) (0.107663 0.000674584 0 0.092772 0 0.111385) (0.107327 0.000642163 0 0.0923228 0 0.110919) (0.107019 0.000603234 0 0.0918839 0 0.110464) (0.106743 0.00055644 0 0.0914559 0 0.110021) (0.106505 0.00050036 0 0.0910397 0 0.109591) (0.106308 0.000433543 0 0.0906358 0 0.109177) (0.106157 0.000354555 0 0.090245 0 0.108781) (0.106054 0.00026201 0 0.0898679 0 0.108404) (0.106005 0.000154617 0 0.0895051 0 0.108048) (0.106011 3.1206e-05 0 0.0891571 0 0.107715) (0.106075 -0.00010924 0 0.0888243 0 0.107405) (0.1062 -0.000267576 0 0.0885073 0 0.107121) (0.106389 -0.000444494 0 0.0882061 0 0.106863) (0.106642 -0.000640523 0 0.0879209 0 0.106632) (0.10696 -0.000856041 0 0.0876519 0 0.10643) (0.107346 -0.00109128 0 0.0873989 0 0.106257) (0.1078 -0.00134633 0 0.087162 0 0.106113) (0.108322 -0.00162116 0 0.0869407 0 0.106) (0.108914 -0.00191563 0 0.0867349 0 0.105918) (0.109574 -0.00222945 0 0.0865442 0 0.105867) (0.110303 -0.00256227 0 0.0863681 0 0.105847) (0.1111 -0.0029136 0 0.0862059 0 0.105858) (0.111965 -0.00328288 0 0.0860571 0 0.105901) (0.112896 -0.00366942 0 0.0859207 0 0.105975) (0.113893 -0.00407246 0 0.0857958 0 0.10608) (0.114954 -0.00449114 0 0.0856812 0 0.106215) (0.116075 -0.0049245 0 0.0855756 0 0.106379) (0.117256 -0.0053715 0 0.0854777 0 0.106571) (0.118491 -0.00583102 0 0.0853857 0 0.10679) (0.119778 -0.00630187 0 0.0852981 0 0.107034) (0.121112 -0.00678281 0 0.0852129 0 0.107302) (0.122489 -0.00727263 0 0.0851282 0 0.107591) (0.123904 -0.00777009 0 0.0850422 0 0.107898) (0.125351 -0.00827405 0 0.0849529 0 0.108223) (0.126825 -0.00878348 0 0.0848584 0 0.108562) (0.12832 -0.00929751 0 0.0847572 0 0.108913) (0.129833 -0.00981549 0 0.0846477 0 0.109273) (0.131357 -0.010337 0 0.0845289 0 0.109641) (0.132889 -0.010862 0 0.0843998 0 0.110015) (0.134426 -0.0113908 0 0.0842603 0 0.110393) (0.135965 -0.011924 0 0.0841102 0 0.110773) (0.137503 -0.0124626 0 0.0839503 0 0.111157) (0.139042 -0.0130081 0 0.0837815 0 0.111542) (0.140582 -0.0135623 0 0.0836055 0 0.111931) (0.142124 -0.0141277 0 0.0834246 0 0.112325) (0.143673 -0.0147069 0 0.0832413 0 0.112724) (0.145234 -0.015303 0 0.0830591 0 0.113133) (0.146812 -0.0159195 0 0.0828817 0 0.113554) (0.148416 -0.0165602 0 0.0827136 0 0.113991) (0.150053 -0.017229 0 0.0825593 0 0.11445) (0.151735 -0.0179302 0 0.0824242 0 0.114934) (0.153471 -0.0186679 0 0.0823135 0 0.115451) (0.155275 -0.0194461 0 0.0822329 0 0.116005) (0.157156 -0.0202685 0 0.0821878 0 0.116605) (0.159129 -0.0211387 0 0.0821835 0 0.117255) (0.161206 -0.0220597 0 0.082225 0 0.117963) (0.163397 -0.023034 0 0.0823169 0 0.118735) (0.165715 -0.0240636 0 0.0824633 0 0.119577) (0.168169 -0.0251498 0 0.0826675 0 0.120494) (0.170767 -0.0262929 0 0.0829324 0 0.121492) (0.173516 -0.0274925 0 0.0832596 0 0.122572) (0.176419 -0.0287469 0 0.08365 0 0.123739) (0.179476 -0.0300535 0 0.0841031 0 0.124992) (0.182685 -0.0314083 0 0.0846174 0 0.126332) (0.186042 -0.0328064 0 0.08519 0 0.127757) (0.189537 -0.034242 0 0.085817 0 0.129262) (0.19316 -0.0357088 0 0.0864938 0 0.130843) (0.196897 -0.0372008 0 0.0872148 0 0.132494) (0.200739 -0.038713 0 0.087977 0 0.13421) (0.204665 -0.0402439 0 0.0887759 0 0.135982) (0.208684 -0.0417959 0 0.0896205 0 0.137816) (0.212708 -0.0433646 0 0.0904991 0 0.139677) (0.216723 -0.0449497 0 0.0914424 0 0.141552) (0.21991 -0.0462453 0 0.0922401 0 0.143077) (0.121056 0.000514796 0 0.10495 0 0.121764) (0.120739 0.000543846 0 0.104305 0 0.121457) (0.120415 0.000573729 0 0.103667 0 0.121141) (0.120083 0.000604188 0 0.103039 0 0.120816) (0.119742 0.000634865 0 0.102423 0 0.120481) (0.119386 0.000665387 0 0.101823 0 0.120136) (0.118999 0.000695435 0 0.101255 0 0.119782) (0.118529 0.000724722 0 0.100766 0 0.119424) (0.11782 0.000752948 0 0.1005 0 0.119075) (0.117127 0.000779686 0 0.100223 0 0.118713) (0.116447 0.000804586 0 0.099936 0 0.11834) (0.11578 0.000827364 0 0.0996392 0 0.117956) (0.115124 0.000847804 0 0.0993339 0 0.117562) (0.114477 0.000865781 0 0.0990212 0 0.117158) (0.113838 0.000881284 0 0.0987021 0 0.116745) (0.113205 0.000894427 0 0.0983775 0 0.116323) (0.112578 0.000905442 0 0.0980484 0 0.115894) (0.111956 0.000914665 0 0.0977156 0 0.115457) (0.111338 0.000922504 0 0.0973798 0 0.115013) (0.110725 0.000929422 0 0.0970415 0 0.114563) (0.11012 0.000935895 0 0.0966983 0 0.114107) (0.109541 0.000942378 0 0.096334 0 0.113644) (0.109117 0.000949319 0 0.0958312 0 0.113167) (0.108696 0.000957055 0 0.0953307 0 0.11269) (0.108279 0.000965595 0 0.0948336 0 0.112211) (0.107869 0.000974746 0 0.0943401 0 0.111734) (0.107467 0.000984109 0 0.0938506 0 0.111258) (0.107078 0.000993091 0 0.0933654 0 0.110785) (0.106703 0.00100093 0 0.0928846 0 0.110316) (0.106346 0.00100673 0 0.0924086 0 0.109853) (0.106009 0.00100947 0 0.0919376 0 0.109395) (0.105698 0.00100804 0 0.0914719 0 0.108946) (0.105413 0.00100129 0 0.091012 0 0.108506) (0.105159 0.000988055 0 0.0905583 0 0.108076) (0.104938 0.000967167 0 0.0901112 0 0.107658) (0.104753 0.000937517 0 0.0896711 0 0.107252) (0.104606 0.000898067 0 0.0892384 0 0.106861) (0.1045 0.00084787 0 0.0888134 0 0.106486) (0.104437 0.000786086 0 0.0883965 0 0.106126) (0.104418 0.000711982 0 0.087988 0 0.105784) (0.104445 0.000624943 0 0.087588 0 0.105461) (0.104519 0.00052446 0 0.0871967 0 0.105156) (0.104642 0.000410135 0 0.0868142 0 0.104871) (0.104815 0.000281672 0 0.0864404 0 0.104606) (0.105038 0.000138871 0 0.0860753 0 0.104362) (0.105311 -1.83821e-05 0 0.0857187 0 0.10414) (0.105637 -0.000190119 0 0.0853706 0 0.103939) (0.106013 -0.0003763 0 0.0850305 0 0.103761) (0.106442 -0.000576823 0 0.0846983 0 0.103605) (0.106923 -0.000791529 0 0.0843735 0 0.103472) (0.107454 -0.00102021 0 0.0840557 0 0.103362) (0.108037 -0.00126261 0 0.0837443 0 0.103275) (0.10867 -0.00151843 0 0.0834387 0 0.10321) (0.109353 -0.00178734 0 0.0831383 0 0.103167) (0.110083 -0.00206898 0 0.0828423 0 0.103146) (0.11086 -0.00236293 0 0.0825499 0 0.103147) (0.111682 -0.0026688 0 0.0822602 0 0.103168) (0.112545 -0.00298615 0 0.0819723 0 0.103209) (0.113449 -0.00331457 0 0.0816854 0 0.103269) (0.114389 -0.00365366 0 0.0813984 0 0.103346) (0.115364 -0.00400309 0 0.0811105 0 0.10344) (0.11637 -0.00436259 0 0.080821 0 0.103549) (0.117403 -0.00473199 0 0.0805291 0 0.103672) (0.118462 -0.00511127 0 0.0802342 0 0.103807) (0.119543 -0.00550055 0 0.0799362 0 0.103954) (0.120644 -0.00590016 0 0.0796348 0 0.104112) (0.121763 -0.00631062 0 0.0793303 0 0.104279) (0.122898 -0.0067327 0 0.0790231 0 0.104456) (0.124049 -0.00716743 0 0.0787141 0 0.104643) (0.125215 -0.0076161 0 0.0784046 0 0.104838) (0.126398 -0.00808031 0 0.078096 0 0.105045) (0.127599 -0.00856192 0 0.0777904 0 0.105262) (0.128821 -0.00906309 0 0.0774901 0 0.105493) (0.130067 -0.00958626 0 0.0771981 0 0.105739) (0.131344 -0.0101341 0 0.0769175 0 0.106003) (0.132657 -0.0107095 0 0.076652 0 0.106288) (0.134012 -0.0113154 0 0.0764055 0 0.106599) (0.135418 -0.011955 0 0.0761823 0 0.106939) (0.136885 -0.0126313 0 0.0759868 0 0.107313) (0.13842 -0.0133474 0 0.0758236 0 0.107727) (0.140035 -0.014106 0 0.0756972 0 0.108185) (0.141741 -0.0149097 0 0.075612 0 0.108694) (0.143546 -0.0157609 0 0.0755722 0 0.109258) (0.145463 -0.0166616 0 0.0755818 0 0.109884) (0.1475 -0.0176133 0 0.0756441 0 0.110577) (0.149667 -0.018617 0 0.0757623 0 0.111341) (0.151969 -0.0196728 0 0.0759386 0 0.112181) (0.154413 -0.0207802 0 0.0761747 0 0.113099) (0.157002 -0.0219376 0 0.076471 0 0.114097) (0.159735 -0.0231426 0 0.0768273 0 0.115178) (0.162612 -0.0243919 0 0.077242 0 0.116339) (0.165627 -0.0256812 0 0.0777127 0 0.11758) (0.168774 -0.0270057 0 0.0782361 0 0.118897) (0.172042 -0.0283608 0 0.0788082 0 0.120286) (0.175423 -0.0297422 0 0.0794267 0 0.121744) (0.178899 -0.0311479 0 0.0800871 0 0.123262) (0.182475 -0.0325778 0 0.0807963 0 0.124843) (0.186067 -0.0340245 0 0.0815408 0 0.126457) (0.189662 -0.0354809 0 0.0823428 0 0.128087) (0.192511 -0.0366715 0 0.0830172 0 0.129409) (0.120591 0.000495764 0 0.106051 0 0.121339) (0.120271 0.000525673 0 0.105429 0 0.121032) (0.119945 0.000556452 0 0.104813 0 0.120717) (0.119612 0.000587888 0 0.104203 0 0.120395) (0.119272 0.000619694 0 0.103603 0 0.120064) (0.118923 0.000651551 0 0.103013 0 0.119725) (0.118561 0.000683158 0 0.102438 0 0.119377) (0.11817 0.000714263 0 0.101892 0 0.119021) (0.117705 0.000744617 0 0.101416 0 0.118662) (0.117021 0.000773963 0 0.101146 0 0.11831) (0.11635 0.00080196 0 0.100865 0 0.117948) (0.115691 0.000828357 0 0.100575 0 0.117576) (0.115043 0.000852992 0 0.100277 0 0.117195) (0.114404 0.000875793 0 0.0999709 0 0.116805) (0.113772 0.000896789 0 0.0996579 0 0.116406) (0.113147 0.000916133 0 0.0993389 0 0.116) (0.112528 0.000934092 0 0.0990148 0 0.115586) (0.111913 0.00095104 0 0.0986861 0 0.115165) (0.111302 0.000967434 0 0.0983533 0 0.114737) (0.110696 0.000983795 0 0.0980163 0 0.114303) (0.110098 0.00100069 0 0.0976724 0 0.113862) (0.109526 0.00101867 0 0.0973051 0 0.113415) (0.109104 0.00103828 0 0.0967986 0 0.112953) (0.108683 0.00106011 0 0.0962917 0 0.112488) (0.108263 0.00108439 0 0.0957856 0 0.112022) (0.107844 0.0011112 0 0.0952805 0 0.111555) (0.107429 0.00114046 0 0.0947767 0 0.111088) (0.10702 0.00117191 0 0.094274 0 0.11062) (0.106617 0.00120515 0 0.0937725 0 0.110154) (0.106224 0.00123963 0 0.093272 0 0.109688) (0.105843 0.00127468 0 0.0927726 0 0.109226) (0.105476 0.00130953 0 0.0922743 0 0.108766) (0.105126 0.00134331 0 0.0917771 0 0.10831) (0.104794 0.00137511 0 0.0912812 0 0.10786) (0.104483 0.00140399 0 0.0907868 0 0.107416) (0.104195 0.00142902 0 0.0902942 0 0.106978) (0.103931 0.00144925 0 0.0898035 0 0.106548) (0.103695 0.00146381 0 0.089315 0 0.106127) (0.103488 0.00147187 0 0.0888291 0 0.105715) (0.10331 0.00147265 0 0.0883459 0 0.105314) (0.103165 0.00146546 0 0.0878656 0 0.104924) (0.103053 0.00144968 0 0.0873884 0 0.104545) (0.102975 0.00142475 0 0.0869146 0 0.104179) (0.102932 0.00139021 0 0.0864441 0 0.103827) (0.102926 0.00134565 0 0.085977 0 0.103488) (0.102957 0.00129075 0 0.0855135 0 0.103163) (0.103026 0.00122524 0 0.0850533 0 0.102853) (0.103134 0.00114889 0 0.0845965 0 0.102558) (0.103281 0.00106156 0 0.0841429 0 0.102279) (0.103467 0.000963096 0 0.0836924 0 0.102015) (0.103692 0.000853411 0 0.0832448 0 0.101768) (0.103957 0.000732429 0 0.0827998 0 0.101537) (0.104262 0.000600092 0 0.0823571 0 0.101323) (0.104606 0.000456356 0 0.0819166 0 0.101125) (0.104989 0.000301189 0 0.0814778 0 0.100943) (0.10541 0.000134561 0 0.0810404 0 0.100779) (0.105869 -4.35552e-05 0 0.0806041 0 0.10063) (0.106364 -0.000233191 0 0.0801684 0 0.100498) (0.106895 -0.000434388 0 0.0797331 0 0.100381) (0.107461 -0.000647209 0 0.0792978 0 0.100279) (0.108059 -0.000871742 0 0.0788623 0 0.100192) (0.108688 -0.00110812 0 0.0784262 0 0.100119) (0.109346 -0.00135652 0 0.0779895 0 0.10006) (0.110032 -0.00161721 0 0.077552 0 0.100014) (0.110744 -0.00189051 0 0.0771138 0 0.0999804) (0.111481 -0.00217686 0 0.0766752 0 0.0999588) (0.11224 -0.00247681 0 0.0762366 0 0.0999487) (0.113021 -0.00279105 0 0.0757984 0 0.0999501) (0.113824 -0.0031204 0 0.0753616 0 0.0999627) (0.114647 -0.00346586 0 0.0749271 0 0.0999869) (0.115492 -0.00382862 0 0.0744964 0 0.100023) (0.116359 -0.00421001 0 0.0740709 0 0.100072) (0.11725 -0.00461159 0 0.0736526 0 0.100135) (0.118167 -0.0050351 0 0.0732438 0 0.100213) (0.119114 -0.00548243 0 0.0728468 0 0.100309) (0.120095 -0.00595563 0 0.0724647 0 0.100424) (0.121114 -0.00645689 0 0.0721004 0 0.100562) (0.122177 -0.00698847 0 0.0717574 0 0.100726) (0.123292 -0.00755264 0 0.0714394 0 0.100919) (0.124466 -0.00815169 0 0.07115 0 0.101145) (0.125706 -0.00878787 0 0.0708931 0 0.101409) (0.127023 -0.00946334 0 0.0706726 0 0.101716) (0.128424 -0.0101802 0 0.0704922 0 0.102071) (0.12992 -0.0109402 0 0.0703556 0 0.102478) (0.131519 -0.0117451 0 0.0702664 0 0.102942) (0.133231 -0.0125962 0 0.0702277 0 0.103468) (0.135063 -0.0134942 0 0.0702422 0 0.104061) (0.137022 -0.0144394 0 0.070312 0 0.104723) (0.139113 -0.0154314 0 0.0704387 0 0.10546) (0.141339 -0.016469 0 0.070623 0 0.106271) (0.143702 -0.0175501 0 0.0708646 0 0.107159) (0.146198 -0.0186723 0 0.0711623 0 0.108123) (0.148827 -0.0198322 0 0.0715145 0 0.109162) (0.15158 -0.0210264 0 0.0719182 0 0.110273) (0.154452 -0.0222516 0 0.072372 0 0.111454) (0.157427 -0.0235055 0 0.0728719 0 0.112699) (0.160508 -0.0247869 0 0.0734233 0 0.114009) (0.16362 -0.0260866 0 0.0740121 0 0.115356) (0.166756 -0.0273952 0 0.0746566 0 0.116729) (0.16925 -0.0284709 0 0.0751991 0 0.117844) (0.120182 0.000462487 0 0.106975 0 0.120943) (0.119856 0.000492151 0 0.106374 0 0.120632) (0.119526 0.000522699 0 0.105777 0 0.120316) (0.11919 0.000553958 0 0.105185 0 0.119993) (0.118849 0.000585697 0 0.1046 0 0.119663) (0.118501 0.00061765 0 0.104022 0 0.119325) (0.118145 0.000649551 0 0.103454 0 0.11898) (0.117776 0.000681152 0 0.102899 0 0.118628) (0.117383 0.00071225 0 0.102369 0 0.118269) (0.116923 0.000742647 0 0.101903 0 0.117907) (0.116261 0.000772152 0 0.101627 0 0.117551) (0.115609 0.000800516 0 0.101342 0 0.117186) (0.114967 0.000827596 0 0.101049 0 0.116813) (0.114334 0.000853341 0 0.100748 0 0.116432) (0.113709 0.000877802 0 0.10044 0 0.116044) (0.113091 0.000901136 0 0.100126 0 0.115648) (0.112478 0.000923609 0 0.0998068 0 0.115245) (0.11187 0.000945583 0 0.099482 0 0.114836) (0.111267 0.000967508 0 0.0991519 0 0.11442) (0.110671 0.000989899 0 0.098815 0 0.113998) (0.110089 0.00101333 0 0.0984643 0 0.113569) (0.109548 0.00103841 0 0.0980743 0 0.113133) (0.109144 0.00106572 0 0.097555 0 0.112685) (0.108732 0.00109584 0 0.0970407 0 0.112234) (0.108317 0.00112912 0 0.0965292 0 0.111782) (0.1079 0.00116579 0 0.0960192 0 0.111327) (0.107482 0.00120592 0 0.0955097 0 0.110872) (0.107067 0.00124948 0 0.0950001 0 0.110415) (0.106655 0.00129631 0 0.09449 0 0.109957) (0.106248 0.00134608 0 0.0939789 0 0.109499) (0.105848 0.00139839 0 0.0934665 0 0.109041) (0.105456 0.0014527 0 0.0929526 0 0.108584) (0.105074 0.00150842 0 0.092437 0 0.108128) (0.104704 0.00156486 0 0.0919198 0 0.107674) (0.104348 0.00162129 0 0.0914007 0 0.107223) (0.104007 0.00167696 0 0.0908799 0 0.106774) (0.103682 0.0017311 0 0.0903575 0 0.10633) (0.103376 0.00178294 0 0.0898335 0 0.10589) (0.103089 0.00183176 0 0.0893082 0 0.105455) (0.102823 0.00187683 0 0.0887816 0 0.105026) (0.102579 0.00191747 0 0.0882539 0 0.104603) (0.102358 0.00195306 0 0.0877253 0 0.104188) (0.102162 0.001983 0 0.0871959 0 0.103779) (0.101991 0.00200677 0 0.0866659 0 0.103379) (0.101847 0.00202388 0 0.0861352 0 0.102988) (0.10173 0.00203388 0 0.0856041 0 0.102605) (0.101641 0.00203638 0 0.0850725 0 0.102232) (0.101581 0.00203104 0 0.0845404 0 0.101869) (0.10155 0.00201752 0 0.0840079 0 0.101516) (0.101548 0.00199554 0 0.0834749 0 0.101174) (0.101577 0.00196482 0 0.0829414 0 0.100843) (0.101636 0.00192511 0 0.0824072 0 0.100523) (0.101725 0.00187615 0 0.0818723 0 0.100215) (0.101846 0.0018177 0 0.0813366 0 0.0999188) (0.101997 0.0017495 0 0.0808 0 0.0996343) (0.102178 0.00167131 0 0.0802624 0 0.0993617) (0.10239 0.00158287 0 0.0797238 0 0.0991013) (0.102632 0.0014839 0 0.0791839 0 0.0988528) (0.102904 0.00137412 0 0.0786428 0 0.0986164) (0.103204 0.00125322 0 0.0781006 0 0.0983919) (0.103532 0.00112088 0 0.0775571 0 0.0981792) (0.103887 0.000976751 0 0.0770125 0 0.0979781) (0.104269 0.000820447 0 0.076467 0 0.0977883) (0.104676 0.00065155 0 0.0759208 0 0.0976097) (0.105107 0.000469596 0 0.0753742 0 0.0974421) (0.105561 0.000274073 0 0.0748276 0 0.0972852) (0.106038 6.44053e-05 0 0.0742816 0 0.0971389) (0.106536 -0.000160049 0 0.0737368 0 0.0970032) (0.107055 -0.000400011 0 0.0731942 0 0.0968781) (0.107594 -0.000656292 0 0.0726546 0 0.0967637) (0.108155 -0.000929801 0 0.0721193 0 0.0966605) (0.108736 -0.00122155 0 0.0715897 0 0.0965689) (0.109339 -0.00153267 0 0.0710672 0 0.0964898) (0.109966 -0.00186439 0 0.0705538 0 0.0964242) (0.110618 -0.00221805 0 0.0700515 0 0.0963734) (0.111299 -0.00259507 0 0.0695625 0 0.0963392) (0.112011 -0.00299698 0 0.0690894 0 0.0963234) (0.112759 -0.00342535 0 0.0686348 0 0.0963286) (0.113548 -0.00388177 0 0.0682018 0 0.0963575) (0.114384 -0.0043679 0 0.0677933 0 0.0964132) (0.115272 -0.00488537 0 0.0674127 0 0.0964993) (0.116221 -0.00543586 0 0.0670631 0 0.0966195) (0.117237 -0.00602104 0 0.066748 0 0.0967779) (0.11833 -0.00664252 0 0.0664706 0 0.096979) (0.119507 -0.00730186 0 0.0662343 0 0.0972273) (0.120777 -0.00800045 0 0.0660423 0 0.0975271) (0.122149 -0.00873946 0 0.0658974 0 0.097883) (0.123629 -0.00951972 0 0.0658022 0 0.098299) (0.125224 -0.0103417 0 0.065759 0 0.0987789) (0.12694 -0.0112052 0 0.0657693 0 0.0993258) (0.128781 -0.0121097 0 0.0658339 0 0.099942) (0.130747 -0.0130539 0 0.065953 0 0.100629) (0.13284 -0.0140361 0 0.0661262 0 0.101387) (0.135056 -0.0150544 0 0.0663518 0 0.102215) (0.137393 -0.0161062 0 0.0666296 0 0.103113) (0.139837 -0.0171901 0 0.0669561 0 0.104075) (0.142393 -0.0183039 0 0.0673363 0 0.105104) (0.144992 -0.0194387 0 0.0677564 0 0.106173) (0.147644 -0.0205853 0 0.0682336 0 0.107282) (0.149771 -0.0215385 0 0.0686391 0 0.108188) (0.119824 0.00042376 0 0.107763 0 0.120582) (0.119493 0.000452353 0 0.107181 0 0.120266) (0.119158 0.000481835 0 0.106601 0 0.119946) (0.118818 0.000512063 0 0.106024 0 0.119621) (0.118473 0.00054285 0 0.105453 0 0.119289) (0.118124 0.000573975 0 0.104888 0 0.118951) (0.117768 0.000605207 0 0.104329 0 0.118607) (0.117405 0.000636328 0 0.103779 0 0.118255) (0.117031 0.000667144 0 0.10324 0 0.117898) (0.116636 0.000697495 0 0.102722 0 0.117534) (0.116179 0.000727247 0 0.102263 0 0.117168) (0.115535 0.000756285 0 0.10198 0 0.116807) (0.1149 0.000784457 0 0.10169 0 0.116439) (0.114272 0.000811718 0 0.101393 0 0.116063) (0.113653 0.000838122 0 0.101088 0 0.115681) (0.113041 0.000863825 0 0.100777 0 0.115292) (0.112435 0.000889077 0 0.10046 0 0.114896) (0.111835 0.000914215 0 0.100136 0 0.114495) (0.111242 0.000939652 0 0.0998055 0 0.114087) (0.110663 0.00096588 0 0.0994611 0 0.113674) (0.110122 0.000993448 0 0.0990796 0 0.113253) (0.109701 0.00102295 0 0.0985828 0 0.112822) (0.109282 0.00105499 0 0.0980819 0 0.112387) (0.108862 0.00109004 0 0.0975787 0 0.11195) (0.108442 0.00112848 0 0.097074 0 0.111511) (0.108022 0.00117058 0 0.0965679 0 0.111069) (0.107602 0.00121654 0 0.0960604 0 0.110625) (0.107184 0.00126643 0 0.0955512 0 0.11018) (0.106767 0.00132023 0 0.0950397 0 0.109733) (0.106354 0.00137777 0 0.0945258 0 0.109285) (0.105946 0.00143881 0 0.094009 0 0.108836) (0.105543 0.001503 0 0.0934889 0 0.108387) (0.105147 0.00156991 0 0.0929654 0 0.107937) (0.104759 0.00163904 0 0.0924382 0 0.107488) (0.104381 0.00170985 0 0.0919071 0 0.107039) (0.104013 0.00178173 0 0.0913721 0 0.106592) (0.103657 0.00185407 0 0.090833 0 0.106146) (0.103314 0.00192624 0 0.0902898 0 0.105702) (0.102985 0.00199762 0 0.0897426 0 0.10526) (0.102671 0.00206757 0 0.0891915 0 0.104821) (0.102373 0.0021355 0 0.0886365 0 0.104386) (0.102092 0.0022008 0 0.0880776 0 0.103954) (0.101829 0.00226293 0 0.0875151 0 0.103527) (0.101584 0.00232135 0 0.086949 0 0.103104) (0.101359 0.00237556 0 0.0863793 0 0.102686) (0.101155 0.00242507 0 0.0858062 0 0.102274) (0.100971 0.00246946 0 0.0852297 0 0.101868) (0.100809 0.00250829 0 0.0846499 0 0.101468) (0.100669 0.00254117 0 0.0840668 0 0.101075) (0.100552 0.00256773 0 0.0834805 0 0.100688) (0.100458 0.00258758 0 0.082891 0 0.100309) (0.100388 0.00260039 0 0.0822982 0 0.0999375) (0.100341 0.00260578 0 0.0817023 0 0.0995738) (0.100318 0.00260339 0 0.0811031 0 0.0992181) (0.10032 0.00259288 0 0.0805008 0 0.0988707) (0.100345 0.00257386 0 0.0798953 0 0.0985317) (0.100395 0.00254595 0 0.0792868 0 0.0982013) (0.100469 0.00250876 0 0.0786753 0 0.0978795) (0.100566 0.00246188 0 0.0780609 0 0.0975665) (0.100687 0.00240489 0 0.0774438 0 0.0972623) (0.100831 0.00233735 0 0.0768241 0 0.0969669) (0.100998 0.0022588 0 0.0762022 0 0.0966803) (0.101186 0.00216877 0 0.0755784 0 0.0964024) (0.101395 0.00206677 0 0.074953 0 0.0961332) (0.101625 0.00195227 0 0.0743266 0 0.0958726) (0.101875 0.00182473 0 0.0736996 0 0.0956206) (0.102144 0.0016836 0 0.0730728 0 0.0953772) (0.102431 0.00152827 0 0.0724468 0 0.0951423) (0.102736 0.00135811 0 0.0718224 0 0.0949161) (0.103058 0.00117245 0 0.0712008 0 0.0946986) (0.103398 0.000970578 0 0.0705828 0 0.0944901) (0.103755 0.000751728 0 0.0699698 0 0.094291) (0.10413 0.00051509 0 0.0693631 0 0.0941017) (0.104524 0.000259805 0 0.0687642 0 0.0939231) (0.104937 -1.50328e-05 0 0.0681748 0 0.093756) (0.105371 -0.000310364 0 0.0675968 0 0.0936015) (0.105829 -0.000627163 0 0.0670321 0 0.093461) (0.106313 -0.000966423 0 0.066483 0 0.0933362) (0.106827 -0.00132916 0 0.0659519 0 0.0932291) (0.107374 -0.0017164 0 0.0654411 0 0.0931419) (0.10796 -0.0021292 0 0.0649534 0 0.0930774) (0.10859 -0.00256867 0 0.0644913 0 0.0930385) (0.10927 -0.00303596 0 0.0640578 0 0.0930284) (0.110007 -0.00353227 0 0.0636558 0 0.0930507) (0.110808 -0.00405883 0 0.0632881 0 0.0931094) (0.11168 -0.00461688 0 0.0629577 0 0.0932083) (0.112632 -0.00520761 0 0.0626674 0 0.0933516) (0.113671 -0.00583212 0 0.06242 0 0.0935434) (0.114805 -0.0064913 0 0.0622181 0 0.0937876) (0.116039 -0.00718587 0 0.0620636 0 0.094088) (0.11738 -0.00791617 0 0.0619584 0 0.0944478) (0.118832 -0.00868226 0 0.0619037 0 0.0948697) (0.120398 -0.00948373 0 0.0619002 0 0.0953556) (0.122079 -0.01032 0 0.0619476 0 0.0959063) (0.123875 -0.01119 0 0.0620467 0 0.0965229) (0.125778 -0.0120929 0 0.0621952 0 0.097202) (0.127793 -0.013027 0 0.0623979 0 0.0979468) (0.129863 -0.0139843 0 0.0626423 0 0.0987355) (0.132013 -0.0149579 0 0.0629466 0 0.0995744) (0.133758 -0.0157802 0 0.0632109 0 0.100269) (0.119512 0.000383649 0 0.108437 0 0.120256) (0.119175 0.000410688 0 0.107869 0 0.119936) (0.118835 0.000438599 0 0.107304 0 0.119611) (0.11849 0.00046727 0 0.106741 0 0.119282) (0.118142 0.000496547 0 0.106182 0 0.118947) (0.117789 0.000526251 0 0.105628 0 0.118608) (0.117431 0.00055619 0 0.105079 0 0.118262) (0.117068 0.000586181 0 0.104536 0 0.11791) (0.116699 0.000616048 0 0.103999 0 0.117552) (0.116321 0.000645641 0 0.103473 0 0.117189) (0.115922 0.000674857 0 0.102965 0 0.11682) (0.115469 0.000703629 0 0.10251 0 0.116449) (0.114839 0.000731919 0 0.102221 0 0.116083) (0.114218 0.00075967 0 0.101925 0 0.11571) (0.113608 0.000786928 0 0.101619 0 0.115331) (0.113004 0.000813827 0 0.101306 0 0.114946) (0.112407 0.000840594 0 0.100986 0 0.114555) (0.111818 0.000867539 0 0.10066 0 0.114158) (0.111241 0.000895049 0 0.10032 0 0.113756) (0.110703 0.00092358 0 0.099943 0 0.113347) (0.110288 0.000953642 0 0.0994472 0 0.112928) (0.10987 0.000985822 0 0.0989513 0 0.112506) (0.109449 0.00102059 0 0.0984546 0 0.112082) (0.109028 0.00105839 0 0.0979566 0 0.111655) (0.108606 0.00109959 0 0.097457 0 0.111227) (0.108183 0.00114451 0 0.0969555 0 0.110796) (0.107761 0.00119337 0 0.0964517 0 0.110363) (0.10734 0.00124629 0 0.0959452 0 0.109928) (0.106921 0.00130333 0 0.0954357 0 0.109492) (0.106504 0.00136441 0 0.0949226 0 0.109054) (0.106092 0.0014294 0 0.0944057 0 0.108616) (0.105684 0.00149806 0 0.0938843 0 0.108176) (0.105281 0.00157008 0 0.0933584 0 0.107735) (0.104885 0.00164509 0 0.0928274 0 0.107293) (0.104496 0.00172267 0 0.0922912 0 0.106852) (0.104116 0.00180234 0 0.0917496 0 0.10641) (0.103744 0.00188362 0 0.0912024 0 0.105969) (0.103383 0.00196599 0 0.0906495 0 0.105528) (0.103032 0.00204891 0 0.0900908 0 0.105088) (0.102693 0.00213185 0 0.0895263 0 0.10465) (0.102366 0.00221429 0 0.088956 0 0.104212) (0.102053 0.00229571 0 0.08838 0 0.103777) (0.101753 0.00237558 0 0.0877982 0 0.103344) (0.101468 0.00245341 0 0.0872107 0 0.102913) (0.101197 0.00252872 0 0.0866175 0 0.102486) (0.100943 0.00260105 0 0.0860188 0 0.102061) (0.100705 0.00266993 0 0.0854146 0 0.10164) (0.100484 0.00273494 0 0.084805 0 0.101223) (0.10028 0.00279565 0 0.0841899 0 0.10081) (0.100094 0.00285164 0 0.0835696 0 0.100401) (0.0999262 0.00290251 0 0.082944 0 0.0999969) (0.099777 0.00294784 0 0.0823131 0 0.0995977) (0.0996468 0.00298723 0 0.0816772 0 0.0992038) (0.0995357 0.00302025 0 0.0810362 0 0.0988152) (0.0994439 0.00304649 0 0.0803902 0 0.0984322) (0.0993714 0.00306551 0 0.0797394 0 0.098055) (0.0993184 0.00307687 0 0.0790838 0 0.0976837) (0.0992848 0.00308012 0 0.0784238 0 0.0973185) (0.0992703 0.0030748 0 0.0777594 0 0.0969595) (0.0992748 0.00306042 0 0.0770909 0 0.0966067) (0.099298 0.0030365 0 0.0764187 0 0.0962603) (0.0993395 0.00300253 0 0.075743 0 0.0959202) (0.0993987 0.00295801 0 0.0750644 0 0.0955866) (0.0994752 0.00290242 0 0.0743832 0 0.0952593) (0.0995684 0.00283522 0 0.0737 0 0.0949385) (0.0996777 0.00275589 0 0.0730155 0 0.094624) (0.0998023 0.0026639 0 0.0723302 0 0.0943159) (0.0999417 0.00255868 0 0.0716451 0 0.0940142) (0.100095 0.0024397 0 0.0709608 0 0.093719) (0.100263 0.00230639 0 0.0702783 0 0.0934302) (0.100443 0.00215819 0 0.0695986 0 0.0931481) (0.100637 0.00199453 0 0.0689229 0 0.0928729) (0.100843 0.00181484 0 0.0682523 0 0.0926047) (0.101063 0.00161853 0 0.067588 0 0.0923442) (0.101297 0.00140504 0 0.0669316 0 0.0920918) (0.101544 0.00117381 0 0.0662845 0 0.0918482) (0.101808 0.000924285 0 0.0656484 0 0.0916143) (0.102088 0.000655946 0 0.0650251 0 0.0913912) (0.102388 0.000368287 0 0.0644164 0 0.0911803) (0.10271 6.08156e-05 0 0.0638243 0 0.090983) (0.103057 -0.000266966 0 0.0632508 0 0.0908013) (0.103433 -0.000615587 0 0.0626982 0 0.0906372) (0.103843 -0.000985631 0 0.0621686 0 0.0904933) (0.104291 -0.00137776 0 0.0616645 0 0.0903721) (0.104783 -0.0017927 0 0.0611883 0 0.0902768) (0.105326 -0.00223127 0 0.0607424 0 0.0902105) (0.105926 -0.00269438 0 0.0603295 0 0.0901767) (0.106589 -0.00318297 0 0.059952 0 0.0901791) (0.107323 -0.00369802 0 0.0596124 0 0.0902213) (0.108133 -0.0042405 0 0.0593132 0 0.0903072) (0.109028 -0.00481131 0 0.0590563 0 0.0904402) (0.110013 -0.00541129 0 0.0588436 0 0.0906237) (0.111092 -0.00604104 0 0.0586768 0 0.0908608) (0.11227 -0.00670116 0 0.0585565 0 0.0911535) (0.11355 -0.00739171 0 0.0584846 0 0.0915044) (0.114927 -0.00811289 0 0.0584599 0 0.0919119) (0.116411 -0.00886381 0 0.0584877 0 0.0923808) (0.117951 -0.00963822 0 0.058557 0 0.0928932) (0.119594 -0.0104325 0 0.0586878 0 0.0934636) (0.120944 -0.0111159 0 0.0588073 0 0.0939429) (0.11924 0.000345447 0 0.10902 0 0.119966) (0.118898 0.000370652 0 0.108466 0 0.11964) (0.118552 0.000396705 0 0.107913 0 0.119311) (0.118204 0.000423512 0 0.107362 0 0.118978) (0.117851 0.000450948 0 0.106814 0 0.11864) (0.117495 0.000478868 0 0.106269 0 0.118297) (0.117135 0.000507123 0 0.105729 0 0.117949) (0.11677 0.000535555 0 0.105193 0 0.117596) (0.116401 0.000564015 0 0.104662 0 0.117237) (0.116026 0.000592371 0 0.104137 0 0.116873) (0.115642 0.000620527 0 0.10362 0 0.116504) (0.115241 0.000648439 0 0.10312 0 0.116131) (0.11479 0.00067611 0 0.102668 0 0.115755) (0.114177 0.000703576 0 0.102369 0 0.115383) (0.113589 0.000730867 0 0.102046 0 0.115005) (0.113 0.000758094 0 0.101724 0 0.114621) (0.112415 0.000785452 0 0.101397 0 0.114232) (0.111841 0.000813216 0 0.10106 0 0.113838) (0.111303 0.000841745 0 0.100687 0 0.113438) (0.110892 0.000871472 0 0.100193 0 0.113029) (0.110476 0.000902884 0 0.0996994 0 0.112617) (0.110057 0.000936415 0 0.0992065 0 0.112203) (0.109635 0.000972515 0 0.0987133 0 0.111787) (0.109211 0.00101159 0 0.0982193 0 0.111369) (0.108786 0.00105401 0 0.0977237 0 0.110949) (0.108361 0.00110007 0 0.0972261 0 0.110528) (0.107937 0.00115001 0 0.0967257 0 0.110104) (0.107513 0.00120397 0 0.0962221 0 0.109679) (0.107092 0.00126203 0 0.0957149 0 0.109252) (0.106673 0.00132419 0 0.0952034 0 0.108824) (0.106258 0.00139036 0 0.0946873 0 0.108394) (0.105847 0.00146037 0 0.0941661 0 0.107963) (0.105441 0.00153401 0 0.0936394 0 0.107531) (0.105041 0.00161098 0 0.0931069 0 0.107099) (0.104648 0.00169095 0 0.0925683 0 0.106665) (0.104261 0.00177354 0 0.0920232 0 0.106231) (0.103883 0.00185834 0 0.0914716 0 0.105797) (0.103512 0.00194493 0 0.0909131 0 0.105363) (0.103151 0.00203286 0 0.0903478 0 0.104928) (0.1028 0.00212166 0 0.0897754 0 0.104494) (0.102459 0.00221089 0 0.089196 0 0.104061) (0.102129 0.00230008 0 0.0886095 0 0.103628) (0.10181 0.00238877 0 0.0880158 0 0.103197) (0.101503 0.0024765 0 0.0874151 0 0.102766) (0.101208 0.00256284 0 0.0868073 0 0.102338) (0.100927 0.00264734 0 0.0861924 0 0.101911) (0.100659 0.00272956 0 0.0855705 0 0.101485) (0.100404 0.00280908 0 0.0849417 0 0.101063) (0.100164 0.00288547 0 0.084306 0 0.100642) (0.0999389 0.00295832 0 0.0836635 0 0.100224) (0.0997285 0.00302719 0 0.0830142 0 0.0998098) (0.0995334 0.00309167 0 0.0823583 0 0.0993982) (0.0993538 0.00315131 0 0.0816959 0 0.0989901) (0.09919 0.00320568 0 0.081027 0 0.0985855) (0.0990422 0.00325434 0 0.0803518 0 0.0981846) (0.0989103 0.00329682 0 0.0796705 0 0.0977877) (0.0987945 0.00333265 0 0.0789832 0 0.0973949) (0.0986947 0.00336136 0 0.0782902 0 0.0970062) (0.0986107 0.00338245 0 0.0775918 0 0.0966219) (0.0985425 0.00339543 0 0.0768882 0 0.096242) (0.0984896 0.00339978 0 0.0761799 0 0.0958666) (0.0984517 0.003395 0 0.0754672 0 0.0954957) (0.0984285 0.00338056 0 0.0747506 0 0.0951293) (0.0984193 0.00335595 0 0.0740306 0 0.0947676) (0.0984237 0.00332065 0 0.0733078 0 0.0944104) (0.0984409 0.00327413 0 0.0725829 0 0.0940577) (0.0984705 0.00321591 0 0.0718565 0 0.0937096) (0.0985116 0.00314548 0 0.0711293 0 0.093366) (0.0985637 0.00306235 0 0.0704024 0 0.093027) (0.098626 0.00296606 0 0.0696764 0 0.0926924) (0.098698 0.00285615 0 0.0689523 0 0.0923624) (0.0987793 0.00273219 0 0.0682312 0 0.0920371) (0.0988693 0.00259378 0 0.0675141 0 0.0917165) (0.0989679 0.00244054 0 0.0668022 0 0.0914008) (0.0990749 0.00227215 0 0.0660967 0 0.0910904) (0.0991907 0.00208833 0 0.0653988 0 0.0907856) (0.0993155 0.00188885 0 0.0647099 0 0.0904868) (0.0994501 0.00167354 0 0.0640315 0 0.0901948) (0.0995956 0.0014423 0 0.0633651 0 0.0899104) (0.0997535 0.00119507 0 0.0627122 0 0.0896344) (0.0999258 0.000931827 0 0.0620744 0 0.0893682) (0.100115 0.000652554 0 0.0614535 0 0.0891131) (0.100324 0.000357203 0 0.0608511 0 0.0888707) (0.100556 4.56766e-05 0 0.0602691 0 0.0886429) (0.100815 -0.000282202 0 0.0597095 0 0.0884319) (0.101105 -0.000626708 0 0.0591742 0 0.0882401) (0.101432 -0.000988234 0 0.0586653 0 0.08807) (0.101801 -0.00136731 0 0.0581849 0 0.0879245) (0.102216 -0.00176459 0 0.0577351 0 0.0878068) (0.102685 -0.00218089 0 0.0573181 0 0.08772) (0.103213 -0.00261713 0 0.0569361 0 0.0876674) (0.103807 -0.00307435 0 0.0565908 0 0.0876523) (0.104471 -0.0035536 0 0.0562843 0 0.0876781) (0.105211 -0.0040561 0 0.0560179 0 0.0877474) (0.106032 -0.00458269 0 0.0557941 0 0.0878635) (0.106933 -0.00513437 0 0.0556124 0 0.0880266) (0.107925 -0.00571113 0 0.0554785 0 0.0882425) (0.108968 -0.00630853 0 0.0553832 0 0.0884968) (0.110122 -0.00692609 0 0.0553485 0 0.0888115) (0.111074 -0.00746682 0 0.0553245 0 0.0890771) (0.119003 0.000309942 0 0.109527 0 0.119709) (0.118655 0.000333205 0 0.108984 0 0.119378) (0.118305 0.000357275 0 0.108441 0 0.119044) (0.117953 0.000382078 0 0.1079 0 0.118706) (0.117596 0.000407517 0 0.107361 0 0.118365) (0.117237 0.000433481 0 0.106824 0 0.118019) (0.116874 0.000459844 0 0.106291 0 0.117669) (0.116507 0.000486481 0 0.105762 0 0.117314) (0.116136 0.000513267 0 0.105236 0 0.116954) (0.115761 0.000540094 0 0.104715 0 0.116589) (0.11538 0.000566879 0 0.104198 0 0.116219) (0.114993 0.000593575 0 0.103689 0 0.115845) (0.11459 0.000620194 0 0.103194 0 0.115466) (0.114153 0.0006468 0 0.102732 0 0.115085) (0.113682 0.000673477 0 0.102301 0 0.114701) (0.113073 0.000700369 0 0.102 0 0.11432) (0.112494 0.000727631 0 0.101671 0 0.113933) (0.111946 0.000755508 0 0.101311 0 0.11354) (0.111526 0.000784353 0 0.100827 0 0.113139) (0.111103 0.000814528 0 0.100343 0 0.112736) (0.110677 0.0008464 0 0.0998596 0 0.11233) (0.110249 0.000880377 0 0.0993747 0 0.111924) (0.10982 0.000916867 0 0.0988881 0 0.111515) (0.10939 0.000956248 0 0.0983992 0 0.111104) (0.108961 0.000998858 0 0.0979077 0 0.110692) (0.108533 0.00104498 0 0.0974131 0 0.110278) (0.108105 0.00109485 0 0.096915 0 0.109862) (0.10768 0.00114862 0 0.0964129 0 0.109445) (0.107257 0.00120638 0 0.0959065 0 0.109026) (0.106838 0.00126816 0 0.0953953 0 0.108606) (0.106421 0.0013339 0 0.0948788 0 0.108184) (0.10601 0.00140349 0 0.0943567 0 0.107762) (0.105603 0.00147675 0 0.0938286 0 0.107338) (0.105202 0.00155346 0 0.0932942 0 0.106913) (0.104807 0.00163334 0 0.092753 0 0.106488) (0.104418 0.00171607 0 0.0922049 0 0.106062) (0.104037 0.00180131 0 0.0916496 0 0.105635) (0.103663 0.0018887 0 0.0910868 0 0.105208) (0.103298 0.00197785 0 0.0905164 0 0.104781) (0.102942 0.00206836 0 0.0899383 0 0.104354) (0.102594 0.00215983 0 0.0893524 0 0.103927) (0.102256 0.00225185 0 0.0887585 0 0.1035) (0.101929 0.00234401 0 0.0881566 0 0.103073) (0.101611 0.00243589 0 0.0875467 0 0.102647) (0.101305 0.00252709 0 0.0869288 0 0.102222) (0.10101 0.0026172 0 0.0863028 0 0.101797) (0.100726 0.0027058 0 0.0856689 0 0.101374) (0.100455 0.0027925 0 0.085027 0 0.100952) (0.100195 0.00287688 0 0.0843772 0 0.100532) (0.0999487 0.00295852 0 0.0837195 0 0.100113) (0.099715 0.00303702 0 0.0830541 0 0.099696) (0.0994944 0.00311195 0 0.082381 0 0.0992811) (0.0992872 0.00318287 0 0.0817004 0 0.0988685) (0.0990935 0.00324935 0 0.0810123 0 0.0984583) (0.0989134 0.00331092 0 0.080317 0 0.0980507) (0.0987471 0.00336713 0 0.0796146 0 0.0976457) (0.0985945 0.0034175 0 0.0789053 0 0.0972435) (0.0984556 0.00346154 0 0.0781895 0 0.0968443) (0.0983303 0.00349877 0 0.0774675 0 0.0964481) (0.0982182 0.00352867 0 0.0767395 0 0.096055) (0.0981193 0.00355073 0 0.076006 0 0.0956651) (0.098033 0.00356444 0 0.0752674 0 0.0952783) (0.097959 0.00356929 0 0.0745242 0 0.0948948) (0.0978968 0.00356477 0 0.0737771 0 0.0945146) (0.0978458 0.00355037 0 0.0730265 0 0.0941375) (0.0978053 0.0035256 0 0.0722731 0 0.0937636) (0.0977748 0.00348998 0 0.0715177 0 0.0933929) (0.0977533 0.00344305 0 0.070761 0 0.0930252) (0.0977403 0.00338437 0 0.0700039 0 0.0926605) (0.0977349 0.00331353 0 0.0692471 0 0.0922988) (0.0977365 0.00323016 0 0.0684916 0 0.09194) (0.0977443 0.00313392 0 0.0677383 0 0.0915841) (0.0977577 0.00302451 0 0.0669882 0 0.091231) (0.0977762 0.00290172 0 0.0662424 0 0.0908809) (0.0977993 0.00276536 0 0.0655018 0 0.0905337) (0.0978268 0.00261535 0 0.0647677 0 0.0901896) (0.0978585 0.00245169 0 0.0640412 0 0.0898489) (0.0978946 0.00227446 0 0.0633235 0 0.0895118) (0.0979355 0.00208384 0 0.0626158 0 0.0891788) (0.0979817 0.00188009 0 0.0619193 0 0.0888504) (0.0980344 0.00166354 0 0.0612354 0 0.0885273) (0.0980947 0.00143458 0 0.0605654 0 0.0882103) (0.0981644 0.0011936 0 0.0599107 0 0.0879005) (0.0982456 0.000940981 0 0.0592726 0 0.087599) (0.0983407 0.000677047 0 0.0586525 0 0.0873072) (0.0984525 0.000402058 0 0.0580521 0 0.0870267) (0.0985843 0.000116159 0 0.0574729 0 0.0867593) (0.0987397 -0.000180647 0 0.0569165 0 0.0865071) (0.0989226 -0.000488528 0 0.0563847 0 0.0862722) (0.0991375 -0.000807854 0 0.055879 0 0.0860572) (0.099389 -0.0011392 0 0.0554014 0 0.0858645) (0.0996821 -0.00148337 0 0.0549535 0 0.085697) (0.100022 -0.00184135 0 0.0545371 0 0.0855576) (0.100413 -0.00221437 0 0.0541537 0 0.0854488) (0.100861 -0.00260353 0 0.0538056 0 0.0853742) (0.101366 -0.00301009 0 0.0534931 0 0.0853343) (0.101941 -0.00343457 0 0.0532218 0 0.0853357) (0.102551 -0.00387388 0 0.0529835 0 0.0853664) (0.103269 -0.00432998 0 0.0528018 0 0.0854537) (0.103848 -0.00473357 0 0.0526441 0 0.08552) (0.118796 0.000277845 0 0.109969 0 0.119481) (0.118444 0.00029916 0 0.109435 0 0.119146) (0.11809 0.000321237 0 0.108901 0 0.118808) (0.117734 0.000344021 0 0.108368 0 0.118467) (0.117374 0.000367436 0 0.107837 0 0.118122) (0.117012 0.000391394 0 0.107307 0 0.117773) (0.116646 0.000415793 0 0.10678 0 0.11742) (0.116277 0.000440534 0 0.106256 0 0.117063) (0.115905 0.000465517 0 0.105735 0 0.116702) (0.115528 0.000490657 0 0.105217 0 0.116336) (0.115148 0.000515885 0 0.104703 0 0.115965) (0.114764 0.000541157 0 0.104193 0 0.11559) (0.114373 0.000566477 0 0.103688 0 0.115211) (0.113972 0.000591903 0 0.103193 0 0.114828) (0.113557 0.000617544 0 0.102711 0 0.114442) (0.113112 0.000643566 0 0.102256 0 0.114054) (0.11265 0.000670169 0 0.101816 0 0.113663) (0.112181 0.000697659 0 0.101379 0 0.113271) (0.111726 0.000726254 0 0.100926 0 0.112876) (0.111279 0.000756242 0 0.100463 0 0.11248) (0.110837 0.000787959 0 0.0999922 0 0.112081) (0.110399 0.000821766 0 0.0995149 0 0.11168) (0.109964 0.000858019 0 0.0990325 0 0.111277) (0.109531 0.000897057 0 0.0985455 0 0.110873) (0.1091 0.000939189 0 0.0980542 0 0.110467) (0.10867 0.000984681 0 0.0975587 0 0.110059) (0.108243 0.00103375 0 0.0970587 0 0.10965) (0.107819 0.00108655 0 0.0965543 0 0.10924) (0.107397 0.00114317 0 0.0960449 0 0.108828) (0.106979 0.00120367 0 0.0955304 0 0.108415) (0.106565 0.001268 0 0.0950103 0 0.108) (0.106155 0.00133609 0 0.0944844 0 0.107585) (0.10575 0.00140779 0 0.0939522 0 0.107168) (0.10535 0.00148292 0 0.0934133 0 0.106751) (0.104956 0.00156124 0 0.0928676 0 0.106333) (0.104569 0.00164249 0 0.0923146 0 0.105914) (0.104189 0.00172637 0 0.0917541 0 0.105495) (0.103815 0.00181256 0 0.0911859 0 0.105075) (0.10345 0.00190073 0 0.0906098 0 0.104655) (0.103093 0.00199051 0 0.0900255 0 0.104235) (0.102744 0.00208155 0 0.089433 0 0.103814) (0.102404 0.00217349 0 0.0888321 0 0.103394) (0.102074 0.00226595 0 0.0882228 0 0.102973) (0.101753 0.00235855 0 0.0876049 0 0.102553) (0.101442 0.00245092 0 0.0869784 0 0.102133) (0.101141 0.00254267 0 0.0863433 0 0.101714) (0.10085 0.00263344 0 0.0856996 0 0.101296) (0.100571 0.00272283 0 0.0850474 0 0.100878) (0.100303 0.00281045 0 0.0843865 0 0.100461) (0.100046 0.00289591 0 0.0837172 0 0.100046) (0.0998006 0.00297881 0 0.0830395 0 0.0996313) (0.0995671 0.00305873 0 0.0823534 0 0.0992183) (0.0993455 0.00313526 0 0.0816591 0 0.0988068) (0.0991361 0.00320797 0 0.0809567 0 0.098397) (0.0989388 0.00327639 0 0.0802465 0 0.097989) (0.0987538 0.00334009 0 0.0795285 0 0.0975829) (0.0985809 0.00339859 0 0.0788032 0 0.0971788) (0.0984202 0.00345141 0 0.0780707 0 0.0967768) (0.0982715 0.00349806 0 0.0773313 0 0.096377) (0.0981345 0.00353804 0 0.0765856 0 0.0959794) (0.098009 0.00357085 0 0.0758338 0 0.0955841) (0.0978946 0.00359599 0 0.0750764 0 0.0951911) (0.0977909 0.00361295 0 0.0743141 0 0.0948004) (0.0976973 0.00362123 0 0.0735473 0 0.094412) (0.0976132 0.00362034 0 0.0727766 0 0.0940258) (0.0975381 0.0036098 0 0.0720029 0 0.0936418) (0.0974711 0.00358916 0 0.0712266 0 0.0932599) (0.0974115 0.00355798 0 0.0704487 0 0.09288) (0.0973586 0.00351586 0 0.0696699 0 0.0925021) (0.0973114 0.00346242 0 0.0688911 0 0.0921259) (0.0972693 0.00339732 0 0.0681132 0 0.0917514) (0.0972312 0.00332031 0 0.0673369 0 0.0913785) (0.0971966 0.00323114 0 0.0665633 0 0.091007) (0.0971645 0.00312969 0 0.0657934 0 0.090637) (0.0971345 0.00301586 0 0.0650281 0 0.0902683) (0.0971058 0.00288971 0 0.0642684 0 0.0899008) (0.0970781 0.00275135 0 0.0635153 0 0.0895348) (0.0970511 0.00260104 0 0.0627699 0 0.0891701) (0.0970247 0.00243914 0 0.0620332 0 0.0888071) (0.0969989 0.00226613 0 0.0613063 0 0.0884459) (0.0969741 0.00208258 0 0.0605903 0 0.0880868) (0.0969508 0.00188915 0 0.0598861 0 0.0877304) (0.0969299 0.00168655 0 0.0591949 0 0.0873771) (0.0969124 0.00147552 0 0.0585177 0 0.0870276) (0.0968996 0.00125678 0 0.0578557 0 0.0866829) (0.0968931 0.00103103 0 0.05721 0 0.0863438) (0.0968948 0.00079886 0 0.0565818 0 0.0860114) (0.0969068 0.000560762 0 0.0559723 0 0.0856872) (0.0969317 0.000317063 0 0.0553827 0 0.0853724) (0.0969721 6.78856e-05 0 0.0548144 0 0.0850687) (0.0970313 -0.000186868 0 0.0542687 0 0.0847781) (0.0971125 -0.000447574 0 0.0537469 0 0.0845024) (0.0972198 -0.000714814 0 0.0532504 0 0.0842439) (0.0973561 -0.000989508 0 0.0527805 0 0.0840047) (0.0975272 -0.00127252 0 0.0523393 0 0.0837876) (0.0977316 -0.00156496 0 0.0519267 0 0.0835932) (0.0979844 -0.00186735 0 0.0515484 0 0.083428) (0.0982518 -0.00217732 0 0.0511963 0 0.0832811) (0.0986163 -0.00249827 0 0.050895 0 0.0831835) (0.0988746 -0.00278144 0 0.0506231 0 0.0830791) (0.118617 0.000248785 0 0.110351 0 0.119283) (0.118262 0.000268195 0 0.109824 0 0.118944) (0.117904 0.000288325 0 0.109298 0 0.118602) (0.117545 0.00030913 0 0.108772 0 0.118258) (0.117183 0.000330551 0 0.108246 0 0.11791) (0.116818 0.000352519 0 0.107722 0 0.117559) (0.116451 0.000374955 0 0.1072 0 0.117203) (0.11608 0.000397782 0 0.106679 0 0.116845) (0.115706 0.000420923 0 0.106162 0 0.116482) (0.115329 0.000444312 0 0.105646 0 0.116115) (0.114948 0.000467897 0 0.105134 0 0.115744) (0.114564 0.000491651 0 0.104624 0 0.115369) (0.114176 0.000515575 0 0.104117 0 0.11499) (0.113784 0.000539722 0 0.103614 0 0.114607) (0.113386 0.0005642 0 0.103115 0 0.114222) (0.112981 0.000589232 0 0.10262 0 0.113835) (0.112568 0.000615007 0 0.102129 0 0.113446) (0.112148 0.000641724 0 0.101643 0 0.113057) (0.111725 0.000669623 0 0.101156 0 0.112665) (0.1113 0.000698977 0 0.100669 0 0.112273) (0.110874 0.000730086 0 0.100179 0 0.111878) (0.110449 0.000763258 0 0.0996874 0 0.111482) (0.110024 0.000798804 0 0.0991924 0 0.111085) (0.109599 0.000837025 0 0.0986943 0 0.110685) (0.109176 0.000878196 0 0.0981928 0 0.110285) (0.108754 0.00092256 0 0.0976877 0 0.109882) (0.108333 0.000970318 0 0.0971786 0 0.109479) (0.107915 0.00102162 0 0.0966653 0 0.109074) (0.1075 0.00107657 0 0.0961474 0 0.108668) (0.107087 0.0011352 0 0.0956246 0 0.10826) (0.106678 0.00119752 0 0.0950963 0 0.107852) (0.106274 0.00126344 0 0.0945624 0 0.107443) (0.105873 0.00133287 0 0.0940223 0 0.107033) (0.105478 0.00140564 0 0.0934757 0 0.106622) (0.105089 0.00148155 0 0.0929223 0 0.10621) (0.104706 0.00156038 0 0.0923617 0 0.105798) (0.104329 0.00164186 0 0.0917937 0 0.105385) (0.103959 0.0017257 0 0.0912179 0 0.104972) (0.103597 0.00181162 0 0.0906341 0 0.104559) (0.103242 0.00189928 0 0.0900422 0 0.104145) (0.102895 0.00198837 0 0.0894419 0 0.103731) (0.102557 0.00207854 0 0.0888331 0 0.103317) (0.102227 0.00216947 0 0.0882156 0 0.102903) (0.101907 0.00226079 0 0.0875894 0 0.10249) (0.101596 0.00235217 0 0.0869543 0 0.102076) (0.101294 0.00244326 0 0.0863103 0 0.101663) (0.101003 0.00253369 0 0.0856575 0 0.101251) (0.100721 0.0026231 0 0.0849957 0 0.100839) (0.10045 0.00271113 0 0.084325 0 0.100427) (0.10019 0.00279741 0 0.0836454 0 0.100017) (0.0999401 0.00288154 0 0.0829571 0 0.0996071) (0.0997014 0.00296315 0 0.08226 0 0.0991986) (0.0994738 0.00304182 0 0.0815543 0 0.0987912) (0.0992573 0.00311713 0 0.0808402 0 0.0983851) (0.0990521 0.00318866 0 0.0801177 0 0.0979803) (0.0988581 0.00325596 0 0.0793873 0 0.0975769) (0.0986753 0.00331859 0 0.078649 0 0.0971751) (0.0985037 0.00337607 0 0.0779033 0 0.0967749) (0.0983429 0.00342792 0 0.0771503 0 0.0963763) (0.0981929 0.00347367 0 0.0763907 0 0.0959793) (0.0980533 0.00351283 0 0.0756247 0 0.0955841) (0.0979237 0.0035449 0 0.0748529 0 0.0951906) (0.0978036 0.00356938 0 0.0740758 0 0.0947987) (0.0976927 0.00358581 0 0.073294 0 0.0944085) (0.0975901 0.00359369 0 0.0725081 0 0.0940198) (0.0974953 0.00359256 0 0.0717188 0 0.0936326) (0.0974075 0.00358198 0 0.070927 0 0.0932468) (0.0973259 0.00356153 0 0.0701332 0 0.0928622) (0.0972497 0.00353083 0 0.0693383 0 0.0924788) (0.0971781 0.00348951 0 0.0685432 0 0.0920963) (0.09711 0.00343727 0 0.0677487 0 0.0917146) (0.0970448 0.00337387 0 0.0669556 0 0.0913335) (0.0969813 0.00329913 0 0.0661649 0 0.0909529) (0.0969189 0.00321293 0 0.0653775 0 0.0905726) (0.0968568 0.00311526 0 0.0645944 0 0.0901924) (0.0967941 0.00300622 0 0.0638163 0 0.0898123) (0.0967303 0.00288601 0 0.0630444 0 0.0894321) (0.0966648 0.00275498 0 0.0622794 0 0.0890518) (0.0965972 0.0026136 0 0.0615224 0 0.0886713) (0.0965274 0.00246247 0 0.0607742 0 0.0882908) (0.0964551 0.00230233 0 0.0600358 0 0.0879104) (0.0963804 0.002134 0 0.0593081 0 0.0875301) (0.0963037 0.0019584 0 0.0585918 0 0.0871504) (0.0962252 0.00177653 0 0.057888 0 0.0867715) (0.0961455 0.00158937 0 0.0571974 0 0.0863939) (0.0960654 0.00139792 0 0.0565211 0 0.0860181) (0.0959857 0.00120312 0 0.0558598 0 0.0856447) (0.0959076 0.00100585 0 0.0552145 0 0.0852746) (0.0958321 0.000806809 0 0.0545861 0 0.0849085) (0.095761 0.000606553 0 0.0539756 0 0.0845474) (0.0956958 0.000405415 0 0.0533839 0 0.0841926) (0.0956386 0.000203468 0 0.0528119 0 0.0838452) (0.0955918 5.66476e-07 0 0.0522607 0 0.0835068) (0.0955572 -0.000203749 0 0.0517311 0 0.0831787) (0.0955391 -0.000409952 0 0.0512249 0 0.0828633) (0.0955352 -0.000618702 0 0.0507418 0 0.0825605) (0.0955603 -0.0008303 0 0.0502867 0 0.0822765) (0.0955808 -0.00104255 0 0.0498516 0 0.0820003) (0.0956857 -0.00125943 0 0.0494612 0 0.0817655) (0.0956971 -0.00144635 0 0.0491005 0 0.0815286) (0.118466 0.000222674 0 0.110672 0 0.119114) (0.118109 0.000240264 0 0.110152 0 0.118772) (0.117749 0.00025853 0 0.109631 0 0.118428) (0.117387 0.000277438 0 0.109109 0 0.118081) (0.117023 0.000296942 0 0.108588 0 0.117731) (0.116657 0.000316988 0 0.108068 0 0.117377) (0.116288 0.00033752 0 0.107549 0 0.117021) (0.115916 0.000358476 0 0.107031 0 0.116661) (0.115541 0.000379802 0 0.106515 0 0.116297) (0.115164 0.00040145 0 0.106001 0 0.115929) (0.114783 0.000423388 0 0.105489 0 0.115558) (0.1144 0.000445611 0 0.104978 0 0.115184) (0.114014 0.000468137 0 0.104468 0 0.114807) (0.113627 0.00049107 0 0.103957 0 0.114427) (0.113238 0.000514513 0 0.103445 0 0.114046) (0.112846 0.000538572 0 0.102933 0 0.113663) (0.112451 0.000563398 0 0.102421 0 0.113279) (0.112053 0.00058919 0 0.101909 0 0.112893) (0.111652 0.000616183 0 0.101398 0 0.112506) (0.111247 0.000644632 0 0.100887 0 0.112117) (0.110841 0.000674805 0 0.100375 0 0.111727) (0.110432 0.000706981 0 0.099863 0 0.111335) (0.110023 0.000741438 0 0.0993493 0 0.110942) (0.109613 0.000778449 0 0.0988337 0 0.110548) (0.109202 0.000818264 0 0.098316 0 0.110151) (0.108792 0.000861105 0 0.0977956 0 0.109754) (0.108383 0.000907157 0 0.0972721 0 0.109355) (0.107975 0.000956564 0 0.0967451 0 0.108955) (0.10757 0.00100942 0 0.0962142 0 0.108554) (0.107167 0.00106579 0 0.0956788 0 0.108152) (0.106766 0.00112565 0 0.0951385 0 0.107749) (0.10637 0.00118897 0 0.0945929 0 0.107346) (0.105978 0.00125565 0 0.0940416 0 0.106941) (0.10559 0.00132556 0 0.0934842 0 0.106536) (0.105207 0.00139853 0 0.0929202 0 0.10613) (0.104831 0.00147435 0 0.0923493 0 0.105723) (0.10446 0.0015528 0 0.0917711 0 0.105316) (0.104096 0.00163361 0 0.0911855 0 0.104909) (0.103739 0.00171652 0 0.090592 0 0.104502) (0.103389 0.00180124 0 0.0899904 0 0.104094) (0.103046 0.00188748 0 0.0893806 0 0.103687) (0.102712 0.00197492 0 0.0887623 0 0.103279) (0.102386 0.00206325 0 0.0881353 0 0.102871) (0.102069 0.00215215 0 0.0874996 0 0.102464) (0.101761 0.0022413 0 0.0868551 0 0.102056) (0.101462 0.00233037 0 0.0862015 0 0.10165) (0.101172 0.00241903 0 0.085539 0 0.101243) (0.100893 0.00250694 0 0.0848674 0 0.100837) (0.100623 0.00259374 0 0.0841867 0 0.100432) (0.100363 0.0026791 0 0.0834971 0 0.100027) (0.100113 0.00276264 0 0.0827984 0 0.0996234) (0.0998739 0.002844 0 0.0820909 0 0.0992204) (0.0996452 0.00292278 0 0.0813746 0 0.0988184) (0.0994271 0.0029986 0 0.0806496 0 0.0984175) (0.0992196 0.00307103 0 0.0799162 0 0.0980177) (0.0990228 0.00313966 0 0.0791745 0 0.097619) (0.0988365 0.00320406 0 0.0784249 0 0.0972216) (0.0986606 0.00326377 0 0.0776676 0 0.0968255) (0.098495 0.00331834 0 0.076903 0 0.0964307) (0.0983393 0.0033673 0 0.0761315 0 0.0960372) (0.0981934 0.00341017 0 0.0753535 0 0.095645) (0.0980568 0.00344649 0 0.0745696 0 0.0952541) (0.097929 0.00347577 0 0.0737803 0 0.0948645) (0.0978095 0.00349755 0 0.0729861 0 0.0944761) (0.0976976 0.00351135 0 0.0721879 0 0.0940887) (0.0975928 0.00351672 0 0.0713862 0 0.0937024) (0.0974941 0.00351324 0 0.0705817 0 0.0933169) (0.0974009 0.00350048 0 0.0697753 0 0.0929321) (0.0973123 0.00347808 0 0.0689678 0 0.0925478) (0.0972273 0.00344567 0 0.0681599 0 0.0921638) (0.097145 0.00340298 0 0.0673526 0 0.09178) (0.0970646 0.00334976 0 0.0665467 0 0.0913961) (0.096985 0.00328584 0 0.065743 0 0.091012) (0.0969054 0.00321112 0 0.0649425 0 0.0906273) (0.096825 0.00312563 0 0.064146 0 0.090242) (0.0967429 0.00302948 0 0.0633544 0 0.0898557) (0.0966584 0.00292291 0 0.0625686 0 0.0894685) (0.0965707 0.0028063 0 0.0617895 0 0.08908) (0.0964795 0.00268019 0 0.0610179 0 0.0886902) (0.0963842 0.00254525 0 0.0602547 0 0.0882991) (0.0962845 0.00240229 0 0.0595006 0 0.0879067) (0.0961802 0.00225226 0 0.0587564 0 0.0875129) (0.0960712 0.00209619 0 0.0580229 0 0.0871179) (0.0959575 0.00193522 0 0.0573009 0 0.0867217) (0.0958391 0.00177054 0 0.0565911 0 0.0863247) (0.0957161 0.00160333 0 0.0558943 0 0.085927) (0.0955889 0.00143479 0 0.055211 0 0.085529) (0.0954578 0.00126601 0 0.0545422 0 0.0851311) (0.0953231 0.00109802 0 0.0538884 0 0.0847337) (0.0951854 0.000931652 0 0.0532503 0 0.0843373) (0.0950455 0.000767577 0 0.0526287 0 0.0839426) (0.0949042 0.000606222 0 0.0520242 0 0.0835504) (0.0947628 0.000447814 0 0.0514375 0 0.0831616) (0.0946219 0.000292302 0 0.0508692 0 0.0827769) (0.0944846 0.000139607 0 0.0503205 0 0.082398) (0.0943477 -1.04798e-05 0 0.0497908 0 0.0820244) (0.0942253 -0.000157935 0 0.0492846 0 0.0816617) (0.0940831 -0.000300546 0 0.0487935 0 0.0812987) (0.0940149 -0.000442371 0 0.0483419 0 0.0809704) (0.0938544 -0.000558259 0 0.047918 0 0.0806397) (0.118349 0.000198887 0 0.110926 0 0.11898) (0.11799 0.00021474 0 0.110409 0 0.118636) (0.117629 0.000231224 0 0.109891 0 0.11829) (0.117266 0.000248318 0 0.109373 0 0.117941) (0.1169 0.000265987 0 0.108855 0 0.117589) (0.116533 0.000284193 0 0.108337 0 0.117235) (0.116163 0.000302894 0 0.107819 0 0.116878) (0.115791 0.000322051 0 0.107302 0 0.116517) (0.115417 0.000341629 0 0.106786 0 0.116153) (0.11504 0.0003616 0 0.10627 0 0.115787) (0.114662 0.000381951 0 0.105755 0 0.115417) (0.114282 0.000402763 0 0.105237 0 0.115046) (0.113901 0.000424034 0 0.104717 0 0.114674) (0.11352 0.0004458 0 0.104196 0 0.114299) (0.113137 0.000468131 0 0.103673 0 0.113923) (0.112752 0.000491126 0 0.103149 0 0.113545) (0.112366 0.000514923 0 0.102623 0 0.113166) (0.111978 0.0005397 0 0.102097 0 0.112784) (0.111588 0.000565664 0 0.101571 0 0.112402) (0.111196 0.000593046 0 0.101043 0 0.112017) (0.110802 0.000622093 0 0.100515 0 0.111631) (0.110407 0.000653058 0 0.0999852 0 0.111244) (0.110011 0.000686199 0 0.0994547 0 0.110855) (0.109613 0.000721763 0 0.0989225 0 0.110465) (0.109216 0.000759977 0 0.0983885 0 0.110073) (0.108818 0.000801048 0 0.0978523 0 0.10968) (0.10842 0.000845148 0 0.0973133 0 0.109286) (0.108024 0.000892414 0 0.0967713 0 0.108891) (0.107629 0.000942942 0 0.0962256 0 0.108494) (0.107237 0.000996784 0 0.095676 0 0.108097) (0.106847 0.00105395 0 0.0951219 0 0.107699) (0.10646 0.00111441 0 0.0945628 0 0.1073) (0.106076 0.00117808 0 0.0939984 0 0.1069) (0.105698 0.00124485 0 0.0934282 0 0.1065) (0.105323 0.00131458 0 0.0928517 0 0.106099) (0.104955 0.00138708 0 0.0922687 0 0.105698) (0.104591 0.00146216 0 0.0916787 0 0.105296) (0.104234 0.00153957 0 0.0910815 0 0.104895) (0.103884 0.00161908 0 0.0904766 0 0.104493) (0.10354 0.00170043 0 0.0898639 0 0.10409) (0.103204 0.00178335 0 0.089243 0 0.103688) (0.102876 0.00186754 0 0.0886139 0 0.103286) (0.102556 0.00195273 0 0.0879762 0 0.102884) (0.102244 0.0020386 0 0.0873298 0 0.102483) (0.10194 0.00212488 0 0.0866747 0 0.102081) (0.101646 0.00221124 0 0.0860106 0 0.10168) (0.10136 0.00229737 0 0.0853376 0 0.10128) (0.101084 0.00238296 0 0.0846555 0 0.10088) (0.100818 0.00246768 0 0.0839644 0 0.100481) (0.100561 0.0025512 0 0.0832642 0 0.100082) (0.100314 0.00263318 0 0.082555 0 0.0996839) (0.100077 0.00271326 0 0.0818369 0 0.0992869) (0.0998507 0.00279108 0 0.0811099 0 0.0988906) (0.0996343 0.00286627 0 0.0803743 0 0.0984954) (0.0994281 0.00293843 0 0.0796301 0 0.0981012) (0.0992321 0.00300717 0 0.0788776 0 0.097708) (0.0990462 0.00307207 0 0.0781171 0 0.0973159) (0.0988703 0.0031327 0 0.077349 0 0.0969249) (0.0987042 0.00318864 0 0.0765734 0 0.096535) (0.0985476 0.00323942 0 0.075791 0 0.0961462) (0.0984003 0.0032846 0 0.0750021 0 0.0957585) (0.0982617 0.00332373 0 0.0742072 0 0.0953718) (0.0981315 0.00335633 0 0.0734069 0 0.0949861) (0.098009 0.00338195 0 0.0726019 0 0.0946013) (0.0978937 0.00340014 0 0.0717927 0 0.0942172) (0.0977848 0.00341045 0 0.0709802 0 0.0938337) (0.0976816 0.00341246 0 0.070165 0 0.0934507) (0.0975833 0.00340575 0 0.0693478 0 0.0930679) (0.097489 0.00338996 0 0.0685296 0 0.0926852) (0.0973977 0.00336473 0 0.0677112 0 0.0923024) (0.0973086 0.00332977 0 0.0668933 0 0.0919192) (0.0972207 0.00328484 0 0.0660769 0 0.0915355) (0.097133 0.00322976 0 0.0652627 0 0.0911508) (0.0970447 0.00316443 0 0.0644518 0 0.0907651) (0.0969549 0.00308888 0 0.0636449 0 0.0903781) (0.0968627 0.00300321 0 0.0628429 0 0.0899895) (0.0967673 0.00290768 0 0.0620466 0 0.0895992) (0.0966681 0.00280269 0 0.0612569 0 0.0892069) (0.0965645 0.00268877 0 0.0604745 0 0.0888126) (0.0964558 0.00256665 0 0.0597003 0 0.088416) (0.0963418 0.00243716 0 0.0589349 0 0.0880172) (0.096222 0.0023013 0 0.0581792 0 0.0876161) (0.0960961 0.00216021 0 0.0574338 0 0.0872126) (0.095964 0.00201509 0 0.0566994 0 0.0868069) (0.0958253 0.00186725 0 0.0559766 0 0.0863989) (0.0956799 0.00171801 0 0.0552661 0 0.0859888) (0.0955277 0.00156871 0 0.0545685 0 0.0855766) (0.0953684 0.00142061 0 0.0538843 0 0.0851627) (0.095202 0.00127492 0 0.0532143 0 0.084747) (0.0950284 0.00113269 0 0.0525589 0 0.08433) (0.0948475 0.000994816 0 0.0519186 0 0.083912) (0.0946596 0.000861962 0 0.0512938 0 0.0834932) (0.094465 0.000734623 0 0.0506852 0 0.0830742) (0.0942636 0.000613054 0 0.050093 0 0.0826555) (0.0940575 0.000497479 0 0.0495181 0 0.0822381) (0.0938429 0.000388045 0 0.0489597 0 0.0818212) (0.0936332 0.000285055 0 0.0484217 0 0.0814101) (0.093393 0.000190716 0 0.0478954 0 0.0809927) (0.0932203 0.000101124 0 0.0474051 0 0.0806058) (0.0929515 3.49701e-05 0 0.0469397 0 0.080214) (0.118274 0.000177335 0 0.111089 0 0.118891) (0.117914 0.000191535 0 0.110575 0 0.118546) (0.117553 0.00020633 0 0.110058 0 0.118198) (0.117189 0.000221706 0 0.109541 0 0.117849) (0.116824 0.000237641 0 0.109023 0 0.117497) (0.116457 0.000254111 0 0.108504 0 0.117142) (0.116088 0.000271087 0 0.107986 0 0.116785) (0.115718 0.000288561 0 0.107466 0 0.116426) (0.115346 0.000306546 0 0.106944 0 0.116065) (0.114974 0.000325017 0 0.106419 0 0.115703) (0.1146 0.000343961 0 0.105894 0 0.115338) (0.114226 0.000363388 0 0.105367 0 0.114972) (0.11385 0.00038332 0 0.104838 0 0.114603) (0.113473 0.0004038 0 0.104307 0 0.114233) (0.113095 0.000424894 0 0.103775 0 0.113862) (0.112716 0.000446698 0 0.103241 0 0.113488) (0.112335 0.000469336 0 0.102705 0 0.113113) (0.111953 0.000492965 0 0.102169 0 0.112736) (0.11157 0.000517771 0 0.101631 0 0.112358) (0.111186 0.000543959 0 0.101091 0 0.111977) (0.110801 0.000571752 0 0.100551 0 0.111596) (0.110414 0.000601378 0 0.100008 0 0.111213) (0.110027 0.000633069 0 0.0994646 0 0.110828) (0.109639 0.000667049 0 0.0989189 0 0.110442) (0.109251 0.000703527 0 0.0983711 0 0.110054) (0.108863 0.000742692 0 0.097821 0 0.109666) (0.108476 0.000784706 0 0.0972681 0 0.109276) (0.10809 0.000829698 0 0.0967121 0 0.108885) (0.107705 0.000877765 0 0.0961526 0 0.108493) (0.107322 0.000928961 0 0.0955892 0 0.1081) (0.106941 0.000983305 0 0.0950214 0 0.107706) (0.106564 0.00104077 0 0.0944489 0 0.107312) (0.10619 0.00110131 0 0.0938711 0 0.106917) (0.10582 0.00116482 0 0.0932878 0 0.106521) (0.105454 0.00123118 0 0.0926984 0 0.106125) (0.105094 0.00130022 0 0.0921026 0 0.105728) (0.104739 0.00137178 0 0.0915001 0 0.105332) (0.104389 0.00144564 0 0.0908905 0 0.104935) (0.104046 0.00152159 0 0.0902734 0 0.104538) (0.10371 0.00159938 0 0.0896487 0 0.104141) (0.103381 0.00167878 0 0.089016 0 0.103744) (0.103059 0.00175951 0 0.0883751 0 0.103347) (0.102745 0.00184132 0 0.0877258 0 0.10295) (0.10244 0.00192393 0 0.087068 0 0.102554) (0.102142 0.00200705 0 0.0864015 0 0.102158) (0.101853 0.00209041 0 0.0857261 0 0.101762) (0.101573 0.00217371 0 0.0850418 0 0.101367) (0.101302 0.00225666 0 0.0843486 0 0.100973) (0.101041 0.00233894 0 0.0836463 0 0.100579) (0.100789 0.00242026 0 0.0829351 0 0.100186) (0.100547 0.00250028 0 0.0822148 0 0.0997939) (0.100314 0.00257868 0 0.0814857 0 0.0994025) (0.100091 0.00265511 0 0.0807477 0 0.099012) (0.0998787 0.00272922 0 0.0800011 0 0.0986223) (0.099676 0.00280065 0 0.079246 0 0.0982336) (0.0994832 0.00286901 0 0.0784827 0 0.097846) (0.0993001 0.00293392 0 0.0777114 0 0.0974593) (0.0991268 0.00299497 0 0.0769324 0 0.0970736) (0.098963 0.00305174 0 0.0761462 0 0.0966888) (0.0988083 0.00310382 0 0.0753531 0 0.0963051) (0.0986626 0.00315076 0 0.0745536 0 0.0959222) (0.0985253 0.00319213 0 0.0737482 0 0.0955401) (0.0983959 0.00322749 0 0.0729376 0 0.0951588) (0.098274 0.00325638 0 0.0721223 0 0.0947781) (0.0981588 0.00327837 0 0.071303 0 0.0943979) (0.0980497 0.00329302 0 0.0704805 0 0.094018) (0.0979459 0.0032999 0 0.0696554 0 0.0936383) (0.0978465 0.00329862 0 0.0688286 0 0.0932584) (0.0977508 0.00328878 0 0.0680009 0 0.0928783) (0.0976577 0.00327003 0 0.0671731 0 0.0924977) (0.0975663 0.00324208 0 0.066346 0 0.0921163) (0.0974758 0.00320466 0 0.0655206 0 0.0917338) (0.0973851 0.00315758 0 0.0646977 0 0.0913501) (0.0972934 0.00310074 0 0.0638781 0 0.0909647) (0.0971997 0.00303413 0 0.0630627 0 0.0905776) (0.0971034 0.00295785 0 0.0622523 0 0.0901885) (0.0970035 0.00287214 0 0.0614477 0 0.0897971) (0.0968994 0.00277738 0 0.0606498 0 0.0894032) (0.0967906 0.00267413 0 0.0598593 0 0.0890067) (0.0966764 0.00256308 0 0.0590769 0 0.0886075) (0.0965564 0.00244511 0 0.0583034 0 0.0882054) (0.0964303 0.00232124 0 0.0575395 0 0.0878004) (0.0962976 0.00219263 0 0.0567857 0 0.0873925) (0.096158 0.00206056 0 0.0560428 0 0.0869816) (0.0960111 0.0019264 0 0.0553114 0 0.0865677) (0.0958566 0.00179155 0 0.054592 0 0.0861508) (0.0956941 0.00165744 0 0.0538853 0 0.085731) (0.0955231 0.00152547 0 0.0531917 0 0.0853084) (0.0953431 0.00139694 0 0.0525117 0 0.0848828) (0.0951537 0.00127306 0 0.0518459 0 0.0844546) (0.0949544 0.00115484 0 0.0511946 0 0.0840237) (0.0947449 0.00104313 0 0.0505582 0 0.0835903) (0.094525 0.000938579 0 0.049937 0 0.0831547) (0.094294 0.000841657 0 0.0493313 0 0.0827169) (0.0940535 0.000752789 0 0.0487416 0 0.082278) (0.0937991 0.000672356 0 0.048167 0 0.0818366) (0.0935441 0.000600857 0 0.0476109 0 0.0813979) (0.0932519 0.000540384 0 0.0470645 0 0.0809493) (0.0930242 0.000487254 0 0.0465519 0 0.0805287) (0.092695 0.000455438 0 0.0460619 0 0.0801006) (0.11826 0.000157212 0 0.111131 0 0.118863) (0.117901 0.000169852 0 0.110616 0 0.118518) (0.11754 0.000183064 0 0.110098 0 0.118172) (0.117178 0.000196843 0 0.109578 0 0.117823) (0.116815 0.00021118 0 0.109056 0 0.117473) (0.116451 0.000226062 0 0.108533 0 0.117121) (0.116085 0.000241473 0 0.108007 0 0.116767) (0.115719 0.000257401 0 0.10748 0 0.116411) (0.115351 0.000273838 0 0.106951 0 0.116053) (0.114982 0.000290778 0 0.10642 0 0.115694) (0.114612 0.000308225 0 0.105888 0 0.115333) (0.114241 0.00032619 0 0.105353 0 0.11497) (0.113869 0.000344704 0 0.104816 0 0.114605) (0.113496 0.00036381 0 0.104278 0 0.114238) (0.113122 0.000383577 0 0.103738 0 0.11387) (0.112746 0.000404094 0 0.103196 0 0.1135) (0.11237 0.000425476 0 0.102653 0 0.113129) (0.111993 0.000447865 0 0.102108 0 0.112756) (0.111616 0.000471426 0 0.101561 0 0.112381) (0.111237 0.000496342 0 0.101012 0 0.112005) (0.110857 0.000522809 0 0.100461 0 0.111627) (0.110477 0.000551034 0 0.0999089 0 0.111247) (0.110097 0.000581224 0 0.0993544 0 0.110867) (0.109716 0.000613579 0 0.0987977 0 0.110484) (0.109336 0.000648292 0 0.0982385 0 0.110101) (0.108955 0.000685537 0 0.0976766 0 0.109716) (0.108576 0.000725464 0 0.0971117 0 0.10933) (0.108198 0.000768196 0 0.0965434 0 0.108943) (0.107821 0.000813827 0 0.0959715 0 0.108555) (0.107446 0.000862414 0 0.0953955 0 0.108167) (0.107074 0.000913983 0 0.0948151 0 0.107777) (0.106705 0.000968523 0 0.0942299 0 0.107387) (0.106339 0.00102599 0 0.0936394 0 0.106996) (0.105977 0.00108631 0 0.0930433 0 0.106604) (0.10562 0.00114936 0 0.0924413 0 0.106213) (0.105267 0.00121503 0 0.0918328 0 0.105821) (0.10492 0.00128315 0 0.0912177 0 0.105428) (0.104579 0.00135353 0 0.0905956 0 0.105036) (0.104243 0.00142599 0 0.0899661 0 0.104643) (0.103914 0.00150031 0 0.089329 0 0.104251) (0.103592 0.00157626 0 0.088684 0 0.103859) (0.103277 0.00165361 0 0.0880309 0 0.103467) (0.10297 0.00173211 0 0.0873695 0 0.103075) (0.102671 0.00181151 0 0.0866996 0 0.102683) (0.10238 0.00189155 0 0.0860211 0 0.102292) (0.102097 0.00197198 0 0.0853338 0 0.101902) (0.101824 0.0020525 0 0.0846377 0 0.101512) (0.101559 0.00213286 0 0.0839327 0 0.101122) (0.101303 0.00221277 0 0.0832187 0 0.100734) (0.101057 0.00229193 0 0.0824957 0 0.100346) (0.10082 0.00237005 0 0.0817639 0 0.0999588) (0.100593 0.00244681 0 0.0810232 0 0.0995725) (0.100375 0.0025219 0 0.0802737 0 0.0991872) (0.100167 0.00259499 0 0.0795157 0 0.0988027) (0.0999695 0.00266573 0 0.0787493 0 0.0984191) (0.0997812 0.00273377 0 0.0779747 0 0.0980364) (0.0996026 0.00279874 0 0.0771922 0 0.0976547) (0.0994334 0.00286026 0 0.0764022 0 0.0972739) (0.0992735 0.00291794 0 0.0756051 0 0.0968939) (0.0991226 0.00297138 0 0.0748012 0 0.0965148) (0.0989803 0.00302016 0 0.0739911 0 0.0961364) (0.0988461 0.00306385 0 0.0731753 0 0.0957586) (0.0987197 0.00310204 0 0.0723544 0 0.0953814) (0.0986005 0.0031343 0 0.071529 0 0.0950046) (0.0984877 0.00316018 0 0.0706999 0 0.094628) (0.0983807 0.00317926 0 0.0698677 0 0.0942515) (0.0982786 0.00319112 0 0.0690333 0 0.0938748) (0.0981808 0.00319534 0 0.0681974 0 0.0934977) (0.0980863 0.00319155 0 0.0673608 0 0.0931201) (0.0979941 0.00317937 0 0.0665245 0 0.0927415) (0.0979035 0.00315849 0 0.0656892 0 0.0923619) (0.0978134 0.00312862 0 0.0648558 0 0.0919808) (0.0977229 0.00308955 0 0.0640251 0 0.091598) (0.0976311 0.00304115 0 0.0631981 0 0.0912134) (0.0975373 0.00298339 0 0.0623756 0 0.0908265) (0.0974406 0.00291633 0 0.0615583 0 0.0904372) (0.0973403 0.0028402 0 0.0607472 0 0.0900454) (0.0972359 0.00275536 0 0.0599429 0 0.0896507) (0.0971266 0.00266232 0 0.0591462 0 0.089253) (0.0970121 0.00256179 0 0.0583579 0 0.0888523) (0.0968919 0.00245463 0 0.0575786 0 0.0884485) (0.0967656 0.00234188 0 0.056809 0 0.0880414) (0.0966329 0.00222471 0 0.0560498 0 0.0876312) (0.0964934 0.00210445 0 0.0553015 0 0.0872176) (0.0963467 0.0019825 0 0.0545648 0 0.0868008) (0.0961922 0.00186033 0 0.0538402 0 0.0863806) (0.0960296 0.00173943 0 0.0531282 0 0.0859572) (0.095858 0.00162128 0 0.0524294 0 0.0855305) (0.095677 0.00150727 0 0.0517443 0 0.0851004) (0.0954856 0.00139869 0 0.0510732 0 0.0846669) (0.0952833 0.00129665 0 0.0504165 0 0.0842302) (0.0950692 0.00120209 0 0.0497746 0 0.08379) (0.094843 0.00111579 0 0.0491476 0 0.0833467) (0.0946036 0.00103831 0 0.0485357 0 0.0829) (0.0943522 0.000970233 0 0.0479394 0 0.0824508) (0.0940841 0.000912062 0 0.0473575 0 0.0819977) (0.0938126 0.000864419 0 0.0467932 0 0.0815456) (0.0935 0.000829164 0 0.0462374 0 0.0810816) (0.0932517 0.000802847 0 0.0457144 0 0.0806449) (0.092896 0.000795648 0 0.0452122 0 0.080198) (0.118326 0.000138578 0 0.111007 0 0.118918) (0.117968 0.000149725 0 0.110489 0 0.118574) (0.117608 0.000161414 0 0.109969 0 0.118228) (0.117248 0.000173646 0 0.109446 0 0.117881) (0.116886 0.000186418 0 0.108921 0 0.117532) (0.116524 0.000199724 0 0.108394 0 0.117181) (0.11616 0.000213559 0 0.107865 0 0.116829) (0.115796 0.000227916 0 0.107333 0 0.116475) (0.115431 0.000242794 0 0.106799 0 0.116119) (0.115064 0.000258196 0 0.106263 0 0.115762) (0.114697 0.000274131 0 0.105725 0 0.115403) (0.114329 0.000290619 0 0.105184 0 0.115043) (0.11396 0.000307693 0 0.104642 0 0.114681) (0.11359 0.000325402 0 0.104097 0 0.114317) (0.11322 0.000343813 0 0.10355 0 0.113952) (0.112848 0.00036301 0 0.103002 0 0.113585) (0.112476 0.000383102 0 0.102451 0 0.113217) (0.112103 0.000404216 0 0.101898 0 0.112847) (0.11173 0.000426502 0 0.101343 0 0.112475) (0.111356 0.000450122 0 0.100786 0 0.112102) (0.110981 0.000475253 0 0.100227 0 0.111728) (0.110606 0.00050208 0 0.0996656 0 0.111352) (0.110231 0.000530788 0 0.0991018 0 0.110975) (0.109856 0.000561561 0 0.0985353 0 0.110596) (0.109482 0.000594571 0 0.097966 0 0.110216) (0.109108 0.000629978 0 0.0973937 0 0.109835) (0.108735 0.000667921 0 0.0968181 0 0.109453) (0.108364 0.000708518 0 0.0962388 0 0.10907) (0.107994 0.000751859 0 0.0956557 0 0.108686) (0.107627 0.000798003 0 0.0950682 0 0.108301) (0.107262 0.000846982 0 0.0944761 0 0.107915) (0.1069 0.000898794 0 0.093879 0 0.107529) (0.106542 0.000953408 0 0.0932765 0 0.107142) (0.106187 0.00101076 0 0.0926684 0 0.106755) (0.105837 0.00107077 0 0.0920541 0 0.106367) (0.105492 0.00113332 0 0.0914335 0 0.105979) (0.105152 0.00119826 0 0.090806 0 0.105591) (0.104818 0.00126545 0 0.0901716 0 0.105202) (0.104489 0.00133471 0 0.0895297 0 0.104814) (0.104168 0.00140585 0 0.0888803 0 0.104426) (0.103853 0.00147867 0 0.0882229 0 0.104038) (0.103545 0.00155295 0 0.0875575 0 0.10365) (0.103245 0.00162848 0 0.0868838 0 0.103263) (0.102952 0.00170501 0 0.0862016 0 0.102876) (0.102668 0.00178232 0 0.0855108 0 0.102489) (0.102392 0.00186017 0 0.0848112 0 0.102103) (0.102125 0.00193829 0 0.0841028 0 0.101717) (0.101866 0.00201645 0 0.0833856 0 0.101332) (0.101617 0.00209437 0 0.0826594 0 0.100948) (0.101377 0.00217179 0 0.0819243 0 0.100565) (0.101146 0.00224842 0 0.0811804 0 0.100182) (0.100925 0.00232399 0 0.0804277 0 0.0998005) (0.100713 0.0023982 0 0.0796664 0 0.0994195) (0.100511 0.00247074 0 0.0788966 0 0.0990394) (0.100318 0.00254128 0 0.0781184 0 0.0986601) (0.100136 0.0026095 0 0.0773323 0 0.0982817) (0.0999623 0.00267506 0 0.0765384 0 0.0979041) (0.0997983 0.00273759 0 0.0757371 0 0.0975273) (0.0996433 0.00279673 0 0.0749288 0 0.0971513) (0.0994972 0.0028521 0 0.074114 0 0.0967759) (0.0993595 0.0029033 0 0.0732932 0 0.0964011) (0.0992298 0.00294993 0 0.0724669 0 0.0960267) (0.0991076 0.00299159 0 0.0716358 0 0.0956527) (0.0989924 0.00302784 0 0.0708005 0 0.0952789) (0.0988834 0.00305827 0 0.0699618 0 0.094905) (0.09878 0.00308246 0 0.0691203 0 0.094531) (0.0986814 0.00309998 0 0.0682769 0 0.0941565) (0.0985868 0.00311041 0 0.0674323 0 0.0937814) (0.0984952 0.00311336 0 0.0665875 0 0.0934053) (0.0984059 0.00310845 0 0.0657433 0 0.0930281) (0.0983179 0.00309534 0 0.0649005 0 0.0926494) (0.0982304 0.00307371 0 0.0640601 0 0.092269) (0.0981423 0.00304333 0 0.0632228 0 0.0918866) (0.098053 0.00300402 0 0.0623895 0 0.091502) (0.0979616 0.00295572 0 0.0615612 0 0.091115) (0.0978675 0.00289847 0 0.0607385 0 0.0907253) (0.0977699 0.00283244 0 0.0599223 0 0.0903327) (0.0976684 0.00275796 0 0.0591134 0 0.0899372) (0.0975624 0.00267552 0 0.0583125 0 0.0895386) (0.0974516 0.00258581 0 0.0575202 0 0.0891368) (0.0973357 0.00248967 0 0.0567374 0 0.0887318) (0.0972142 0.00238814 0 0.0559646 0 0.0883236) (0.0970869 0.00228241 0 0.0552025 0 0.0879122) (0.0969535 0.00217383 0 0.0544516 0 0.0874976) (0.0968135 0.00206382 0 0.0537126 0 0.0870798) (0.0966665 0.00195393 0 0.0529861 0 0.0866588) (0.0965117 0.00184568 0 0.0522724 0 0.0862346) (0.0963486 0.00174062 0 0.0515723 0 0.0858072) (0.0961762 0.00164021 0 0.050886 0 0.0853764) (0.0959937 0.00154579 0 0.050214 0 0.0849423) (0.0958002 0.00145856 0 0.0495567 0 0.0845047) (0.0955946 0.00137952 0 0.0489143 0 0.0840637) (0.0953764 0.00130951 0 0.0482871 0 0.0836191) (0.0951442 0.00124918 0 0.0476749 0 0.0831709) (0.0948993 0.00119918 0 0.0470783 0 0.0827198) (0.0946365 0.00116008 0 0.0464961 0 0.0822641) (0.0943695 0.00113259 0 0.0459312 0 0.081809) (0.0940594 0.00111824 0 0.0453745 0 0.081341) (0.0938151 0.00111383 0 0.04485 0 0.0809006) (0.0934573 0.00112616 0 0.0443453 0 0.0804476) (0.118459 0.000119071 0 0.11075 0 0.119041) (0.118103 0.000128819 0 0.110227 0 0.118699) (0.117746 0.000139082 0 0.109703 0 0.118355) (0.117388 0.000149866 0 0.109175 0 0.11801) (0.117029 0.000161175 0 0.108646 0 0.117663) (0.116669 0.000173011 0 0.108114 0 0.117315) (0.116308 0.000185374 0 0.107579 0 0.116965) (0.115947 0.000198268 0 0.107042 0 0.116613) (0.115584 0.000211697 0 0.106503 0 0.11626) (0.115221 0.000225673 0 0.105961 0 0.115905) (0.114857 0.000240211 0 0.105417 0 0.115549) (0.114492 0.000255339 0 0.10487 0 0.115191) (0.114126 0.000271092 0 0.104321 0 0.114832) (0.11376 0.000287522 0 0.10377 0 0.114471) (0.113393 0.000304695 0 0.103217 0 0.114108) (0.113025 0.000322693 0 0.102661 0 0.113744) (0.112657 0.000341617 0 0.102102 0 0.113379) (0.112288 0.000361585 0 0.101542 0 0.113012) (0.111919 0.000382732 0 0.100979 0 0.112644) (0.111549 0.000405207 0 0.100414 0 0.112274) (0.111179 0.000429167 0 0.0998457 0 0.111903) (0.110809 0.00045478 0 0.0992752 0 0.11153) (0.11044 0.000482213 0 0.0987019 0 0.111157) (0.11007 0.000511632 0 0.0981258 0 0.110782) (0.109701 0.000543194 0 0.0975465 0 0.110405) (0.109333 0.000577047 0 0.0969638 0 0.110028) (0.108967 0.000613319 0 0.0963775 0 0.109649) (0.108602 0.000652122 0 0.0957874 0 0.10927) (0.108238 0.000693542 0 0.095193 0 0.108889) (0.107878 0.000737641 0 0.0945941 0 0.108508) (0.107519 0.000784455 0 0.0939903 0 0.108126) (0.107164 0.00083399 0 0.0933814 0 0.107743) (0.106813 0.000886227 0 0.0927669 0 0.10736) (0.106465 0.00094112 0 0.0921466 0 0.106977) (0.106122 0.000998597 0 0.09152 0 0.106593) (0.105784 0.00105856 0 0.0908869 0 0.106208) (0.105451 0.0011209 0 0.0902469 0 0.105824) (0.105124 0.00118547 0 0.0895999 0 0.105439) (0.104802 0.00125213 0 0.0889453 0 0.105055) (0.104488 0.0013207 0 0.0882831 0 0.10467) (0.10418 0.00139101 0 0.087613 0 0.104286) (0.103879 0.00146286 0 0.0869347 0 0.103902) (0.103585 0.00153606 0 0.0862481 0 0.103518) (0.103299 0.0016104 0 0.085553 0 0.103135) (0.103022 0.00168566 0 0.0848493 0 0.102752) (0.102753 0.00176163 0 0.0841369 0 0.10237) (0.102492 0.00183807 0 0.0834156 0 0.101988) (0.10224 0.00191476 0 0.0826855 0 0.101607) (0.101997 0.00199145 0 0.0819466 0 0.101226) (0.101763 0.00206789 0 0.0811987 0 0.100846) (0.101539 0.00214384 0 0.0804421 0 0.100467) (0.101324 0.00221903 0 0.0796769 0 0.100089) (0.101118 0.00229318 0 0.078903 0 0.0997111) (0.100923 0.00236601 0 0.0781208 0 0.0993342) (0.100736 0.00243723 0 0.0773304 0 0.0989581) (0.100559 0.00250653 0 0.0765322 0 0.0985827) (0.100392 0.00257359 0 0.0757264 0 0.098208) (0.100234 0.00263808 0 0.0749135 0 0.097834) (0.100084 0.00269965 0 0.0740938 0 0.0974605) (0.0999435 0.00275795 0 0.0732678 0 0.0970876) (0.0998112 0.0028126 0 0.0724362 0 0.096715) (0.0996867 0.00286321 0 0.0715993 0 0.0963426) (0.0995697 0.00290941 0 0.070758 0 0.0959704) (0.0994594 0.00295077 0 0.0699129 0 0.0955981) (0.0993552 0.00298688 0 0.0690647 0 0.0952256) (0.0992566 0.00301733 0 0.0682142 0 0.0948526) (0.0991626 0.00304168 0 0.0673623 0 0.0944789) (0.0990725 0.00305952 0 0.0665096 0 0.0941043) (0.0989854 0.00307044 0 0.0656572 0 0.0937285) (0.0989005 0.00307403 0 0.0648059 0 0.0933512) (0.0988169 0.00306993 0 0.0639566 0 0.0929723) (0.0987337 0.00305779 0 0.0631102 0 0.0925914) (0.0986502 0.00303734 0 0.0622675 0 0.0922083) (0.0985656 0.00300837 0 0.0614294 0 0.0918228) (0.0984792 0.00297075 0 0.0605968 0 0.0914348) (0.0983904 0.0029245 0 0.0597704 0 0.0910439) (0.0982986 0.00286972 0 0.0589511 0 0.0906503) (0.0982035 0.00280672 0 0.0581396 0 0.0902536) (0.0981046 0.00273595 0 0.0573366 0 0.089854) (0.0980017 0.00265806 0 0.0565429 0 0.0894514) (0.0978947 0.00257389 0 0.0557591 0 0.0890458) (0.0977832 0.00248445 0 0.0549859 0 0.0886373) (0.097667 0.00239097 0 0.0542239 0 0.088226) (0.0975459 0.00229479 0 0.0534736 0 0.087812) (0.0974196 0.0021974 0 0.0527358 0 0.0873952) (0.0972874 0.00210036 0 0.0520108 0 0.0869757) (0.0971488 0.00200529 0 0.0512993 0 0.0865536) (0.097003 0.00191376 0 0.0506018 0 0.0861288) (0.096849 0.00182731 0 0.0499187 0 0.0857012) (0.0966858 0.00174736 0 0.0492503 0 0.0852707) (0.0965123 0.00167515 0 0.0485971 0 0.0848373) (0.0963275 0.00161175 0 0.0479593 0 0.0844008) (0.0961304 0.00155803 0 0.047337 0 0.0839611) (0.0959197 0.00151471 0 0.0467303 0 0.083518) (0.0956964 0.00148248 0 0.0461395 0 0.0830722) (0.0954554 0.00146196 0 0.0455633 0 0.082622) (0.0952106 0.00145389 0 0.0450046 0 0.0821727) (0.0949219 0.00145947 0 0.0444541 0 0.0817101) (0.0947015 0.00147577 0 0.0439362 0 0.0812762) (0.094361 0.00150619 0 0.0434375 0 0.0808273) (0.118649 9.93586e-05 0 0.110367 0 0.119224) (0.118297 0.000107769 0 0.109837 0 0.118885) (0.117944 0.000116693 0 0.109305 0 0.118545) (0.11759 0.000126141 0 0.10877 0 0.118202) (0.117235 0.000136117 0 0.108233 0 0.117859) (0.116879 0.000146631 0 0.107693 0 0.117514) (0.116522 0.000157689 0 0.107151 0 0.117167) (0.116164 0.0001693 0 0.106606 0 0.116818) (0.115805 0.000181476 0 0.106059 0 0.116468) (0.115446 0.000194235 0 0.10551 0 0.116117) (0.115086 0.000207599 0 0.104957 0 0.115764) (0.114725 0.000221599 0 0.104403 0 0.115409) (0.114364 0.000236277 0 0.103846 0 0.115053) (0.114002 0.000251685 0 0.103286 0 0.114696) (0.113639 0.000267889 0 0.102724 0 0.114337) (0.113276 0.000284969 0 0.102159 0 0.113977) (0.112912 0.000303019 0 0.101592 0 0.113615) (0.112548 0.00032215 0 0.101022 0 0.113251) (0.112184 0.000342485 0 0.100449 0 0.112886) (0.111819 0.00036416 0 0.0998741 0 0.11252) (0.111455 0.000387318 0 0.0992962 0 0.112152) (0.111091 0.000412109 0 0.0987154 0 0.111783) (0.110727 0.000438687 0 0.0981316 0 0.111413) (0.110363 0.000467202 0 0.0975446 0 0.111042) (0.11 0.000497798 0 0.0969542 0 0.110669) (0.109639 0.00053061 0 0.0963602 0 0.110295) (0.109278 0.000565759 0 0.0957623 0 0.10992) (0.10892 0.00060335 0 0.0951603 0 0.109544) (0.108563 0.000643466 0 0.0945539 0 0.109167) (0.108209 0.00068617 0 0.0939428 0 0.10879) (0.107857 0.000731502 0 0.0933266 0 0.108411) (0.107509 0.000779476 0 0.092705 0 0.108032) (0.107165 0.000830081 0 0.0920778 0 0.107652) (0.106824 0.000883286 0 0.0914445 0 0.107272) (0.106488 0.000939033 0 0.090805 0 0.106892) (0.106157 0.000997245 0 0.0901587 0 0.106511) (0.105831 0.00105782 0 0.0895056 0 0.10613) (0.10551 0.00112065 0 0.0888452 0 0.105748) (0.105196 0.0011856 0 0.0881773 0 0.105367) (0.104888 0.00125253 0 0.0875016 0 0.104986) (0.104587 0.00132127 0 0.086818 0 0.104604) (0.104293 0.00139165 0 0.0861263 0 0.104223) (0.104006 0.00146351 0 0.0854262 0 0.103842) (0.103728 0.00153666 0 0.0847176 0 0.103462) (0.103457 0.0016109 0 0.0840004 0 0.103082) (0.103194 0.00168604 0 0.0832744 0 0.102702) (0.10294 0.00176187 0 0.0825397 0 0.102323) (0.102695 0.00183818 0 0.0817962 0 0.101944) (0.102459 0.00191476 0 0.0810439 0 0.101566) (0.102232 0.00199137 0 0.0802829 0 0.101188) (0.102014 0.0020678 0 0.0795132 0 0.100811) (0.101805 0.00214379 0 0.0787349 0 0.100435) (0.101606 0.00221911 0 0.0779482 0 0.100059) (0.101417 0.00229349 0 0.0771533 0 0.0996842) (0.101237 0.00236667 0 0.0763505 0 0.0993097) (0.101066 0.00243836 0 0.07554 0 0.0989357) (0.100905 0.00250827 0 0.0747223 0 0.0985623) (0.100753 0.00257609 0 0.0738977 0 0.0981893) (0.10061 0.0026415 0 0.0730667 0 0.0978167) (0.100475 0.00270417 0 0.0722297 0 0.0974444) (0.100349 0.00276374 0 0.0713874 0 0.0970723) (0.100231 0.00281986 0 0.0705404 0 0.0967002) (0.10012 0.00287214 0 0.0696894 0 0.096328) (0.100015 0.0029202 0 0.0688351 0 0.0959554) (0.0999171 0.00296361 0 0.0679782 0 0.0955824) (0.0998244 0.00300198 0 0.0671195 0 0.0952088) (0.0997364 0.00303487 0 0.06626 0 0.0948342) (0.0996524 0.00306185 0 0.0654004 0 0.0944584) (0.0995715 0.00308249 0 0.0645417 0 0.0940813) (0.099493 0.00309636 0 0.0636848 0 0.0937026) (0.099416 0.00310308 0 0.0628306 0 0.093322) (0.0993398 0.00310225 0 0.0619799 0 0.0929394) (0.0992636 0.00309357 0 0.0611338 0 0.0925546) (0.0991868 0.00307676 0 0.060293 0 0.0921674) (0.0991089 0.00305166 0 0.0594584 0 0.0917776) (0.0990293 0.00301822 0 0.0586308 0 0.0913853) (0.0989476 0.00297651 0 0.0578111 0 0.0909904) (0.0988637 0.00292676 0 0.057 0 0.0905928) (0.0987772 0.0028694 0 0.0561982 0 0.0901927) (0.0986882 0.00280504 0 0.0554064 0 0.0897901) (0.0985965 0.0027345 0 0.0546252 0 0.0893852) (0.0985021 0.00265881 0 0.0538554 0 0.0889782) (0.0984048 0.00257918 0 0.0530975 0 0.0885691) (0.0983046 0.002497 0 0.0523521 0 0.0881582) (0.0982011 0.0024138 0 0.0516199 0 0.0877456) (0.0980937 0.0023312 0 0.0509013 0 0.0873314) (0.0979819 0.00225088 0 0.0501968 0 0.0869155) (0.0978648 0.00217449 0 0.0495071 0 0.086498) (0.0977414 0.00210364 0 0.0488324 0 0.0860788) (0.0976105 0.00203983 0 0.0481733 0 0.0856577) (0.0974708 0.00198436 0 0.04753 0 0.0852347) (0.0973211 0.00193835 0 0.0469029 0 0.0848094) (0.0971603 0.00190273 0 0.046292 0 0.0843818) (0.0969869 0.00187825 0 0.0456973 0 0.0839516) (0.0968019 0.00186564 0 0.0451191 0 0.0835194) (0.0966001 0.00186555 0 0.0445562 0 0.0830834) (0.0963956 0.00187879 0 0.0440114 0 0.082649) (0.0961473 0.00190622 0 0.0434753 0 0.0822016) (0.0959704 0.00194528 0 0.0429725 0 0.0817845) (0.0956653 0.00199563 0 0.0424888 0 0.0813493) (0.1189 7.83732e-05 0 0.109873 0 0.119467) (0.118553 8.57766e-05 0 0.109332 0 0.119133) (0.118206 9.37104e-05 0 0.108789 0 0.118797) (0.117857 0.000102191 0 0.108243 0 0.11846) (0.117507 0.000111231 0 0.107695 0 0.118121) (0.117157 0.000120845 0 0.107145 0 0.11778) (0.116805 0.000131047 0 0.106592 0 0.117438) (0.116453 0.000141851 0 0.106036 0 0.117094) (0.1161 0.000153278 0 0.105478 0 0.116748) (0.115746 0.000165349 0 0.104917 0 0.116401) (0.115392 0.000178093 0 0.104353 0 0.116053) (0.115036 0.000191546 0 0.103787 0 0.115702) (0.114681 0.000205751 0 0.103219 0 0.115351) (0.114324 0.000220762 0 0.102648 0 0.114997) (0.113968 0.000236646 0 0.102074 0 0.114643) (0.11361 0.000253478 0 0.101497 0 0.114286) (0.113253 0.00027135 0 0.100918 0 0.113928) (0.112895 0.000290362 0 0.100336 0 0.113569) (0.112537 0.000310628 0 0.0997513 0 0.113208) (0.112178 0.000332272 0 0.0991636 0 0.112846) (0.11182 0.000355425 0 0.098573 0 0.112482) (0.111462 0.000380223 0 0.0979793 0 0.112117) (0.111105 0.000406805 0 0.0973823 0 0.11175) (0.110748 0.000435307 0 0.096782 0 0.111382) (0.110392 0.000465862 0 0.096178 0 0.111013) (0.110038 0.000498594 0 0.0955703 0 0.110643) (0.109684 0.000533615 0 0.0949585 0 0.110271) (0.109333 0.000571024 0 0.0943424 0 0.109899) (0.108983 0.000610901 0 0.0937217 0 0.109525) (0.108636 0.000653309 0 0.0930961 0 0.109151) (0.108292 0.00069829 0 0.0924654 0 0.108775) (0.107951 0.000745864 0 0.0918292 0 0.108399) (0.107614 0.000796031 0 0.0911873 0 0.108022) (0.107281 0.000848768 0 0.0905392 0 0.107645) (0.106952 0.000904033 0 0.0898848 0 0.107267) (0.106628 0.000961764 0 0.0892236 0 0.106888) (0.106309 0.00102188 0 0.0885555 0 0.10651) (0.105996 0.00108428 0 0.0878801 0 0.106131) (0.105689 0.00114886 0 0.0871973 0 0.105751) (0.105388 0.0012155 0 0.0865067 0 0.105372) (0.105094 0.00128404 0 0.0858081 0 0.104993) (0.104807 0.00135436 0 0.0851015 0 0.104613) (0.104528 0.00142629 0 0.0843865 0 0.104234) (0.104256 0.00149968 0 0.0836631 0 0.103855) (0.103992 0.00157435 0 0.0829312 0 0.103476) (0.103736 0.00165012 0 0.0821906 0 0.103098) (0.103489 0.00172682 0 0.0814414 0 0.102719) (0.10325 0.00180426 0 0.0806835 0 0.102341) (0.103021 0.00188225 0 0.079917 0 0.101964) (0.102801 0.00196058 0 0.0791419 0 0.101587) (0.10259 0.00203906 0 0.0783583 0 0.10121) (0.102388 0.00211746 0 0.0775664 0 0.100834) (0.102196 0.00219557 0 0.0767664 0 0.100458) (0.102013 0.00227315 0 0.0759585 0 0.100082) (0.10184 0.00234996 0 0.0751429 0 0.0997074) (0.101676 0.00242575 0 0.0743201 0 0.0993328) (0.101521 0.00250026 0 0.0734904 0 0.0989584) (0.101376 0.0025732 0 0.0726542 0 0.0985844) (0.10124 0.00264427 0 0.0718121 0 0.0982105) (0.101112 0.00271318 0 0.0709645 0 0.0978367) (0.100993 0.00277959 0 0.0701122 0 0.0974628) (0.100882 0.00284316 0 0.0692558 0 0.0970888) (0.100778 0.00290354 0 0.0683959 0 0.0967145) (0.100681 0.00296034 0 0.0675334 0 0.0963398) (0.10059 0.00301316 0 0.0666691 0 0.0959644) (0.100506 0.0030616 0 0.0658037 0 0.0955882) (0.100426 0.00310523 0 0.0649383 0 0.0952109) (0.100351 0.0031436 0 0.0640737 0 0.0948325) (0.100279 0.00317627 0 0.0632108 0 0.0944527) (0.10021 0.00320279 0 0.0623506 0 0.0940713) (0.100144 0.00322272 0 0.061494 0 0.0936882) (0.100079 0.00323566 0 0.060642 0 0.0933032) (0.100015 0.00324122 0 0.0597955 0 0.0929162) (0.0999511 0.0032391 0 0.0589553 0 0.0925272) (0.0998875 0.00322908 0 0.0581224 0 0.0921361) (0.0998237 0.00321103 0 0.0572976 0 0.0917429) (0.0997595 0.00318498 0 0.0564816 0 0.0913478) (0.0996948 0.00315111 0 0.0556753 0 0.0909509) (0.0996297 0.00310981 0 0.0548794 0 0.0905525) (0.0995642 0.00306166 0 0.0540945 0 0.0901526) (0.0994985 0.00300747 0 0.0533214 0 0.0897517) (0.0994327 0.00294826 0 0.0525605 0 0.0893499) (0.0993668 0.00288528 0 0.0518126 0 0.0889477) (0.0993009 0.00281994 0 0.0510783 0 0.0885451) (0.0992345 0.00275384 0 0.050358 0 0.0881425) (0.0991673 0.00268867 0 0.0496524 0 0.0877399) (0.0990985 0.00262617 0 0.0489619 0 0.0873373) (0.0990271 0.00256811 0 0.048287 0 0.0869348) (0.098952 0.00251618 0 0.0476282 0 0.0865322) (0.0988717 0.00247194 0 0.0469858 0 0.0861293) (0.0987849 0.0024368 0 0.0463603 0 0.0857259) (0.0986898 0.00241192 0 0.0457517 0 0.0853215) (0.0985853 0.00239828 0 0.0451604 0 0.084916) (0.0984697 0.00239668 0 0.0445863 0 0.0845091) (0.0983439 0.00240788 0 0.0440295 0 0.0841011) (0.0982026 0.00243256 0 0.0434889 0 0.0836903) (0.0980601 0.00247169 0 0.0429673 0 0.0832822) (0.097874 0.0025258 0 0.0424556 0 0.0828614) (0.0977627 0.0025929 0 0.0419784 0 0.0824728) (0.0975127 0.00266807 0 0.0415204 0 0.0820621) (0.119216 6.18945e-05 0 0.109229 0 0.119773) (0.118877 6.88236e-05 0 0.108674 0 0.119445) (0.118537 7.63623e-05 0 0.108116 0 0.119116) (0.118196 8.45286e-05 0 0.107555 0 0.118784) (0.117854 9.33395e-05 0 0.106992 0 0.118451) (0.117511 0.000102812 0 0.106427 0 0.118116) (0.117167 0.000112966 0 0.105859 0 0.11778) (0.116822 0.00012382 0 0.105288 0 0.117441) (0.116477 0.000135398 0 0.104715 0 0.117101) (0.11613 0.000147726 0 0.104139 0 0.11676) (0.115783 0.000160836 0 0.10356 0 0.116416) (0.115436 0.000174765 0 0.102979 0 0.116071) (0.115088 0.000189559 0 0.102395 0 0.115725) (0.114739 0.00020527 0 0.101808 0 0.115376) (0.11439 0.000221961 0 0.101219 0 0.115026) (0.11404 0.000239706 0 0.100627 0 0.114674) (0.11369 0.000258588 0 0.100032 0 0.114321) (0.11334 0.000278701 0 0.0994337 0 0.113966) (0.112989 0.000300148 0 0.0988329 0 0.113609) (0.112639 0.00032304 0 0.0982291 0 0.113251) (0.112289 0.000347496 0 0.0976223 0 0.112891) (0.111939 0.000373638 0 0.0970122 0 0.11253) (0.111589 0.000401592 0 0.0963987 0 0.112167) (0.111241 0.00043148 0 0.0957817 0 0.111802) (0.110893 0.000463423 0 0.095161 0 0.111437) (0.110546 0.000497533 0 0.0945365 0 0.111069) (0.110201 0.000533915 0 0.0939077 0 0.110701) (0.109857 0.000572659 0 0.0932746 0 0.110331) (0.109516 0.000613843 0 0.0926369 0 0.10996) (0.109177 0.000657528 0 0.0919942 0 0.109588) (0.108841 0.000703756 0 0.0913464 0 0.109214) (0.108508 0.000752555 0 0.0906931 0 0.10884) (0.108179 0.000803929 0 0.090034 0 0.108465) (0.107854 0.000857866 0 0.0893688 0 0.108089) (0.107533 0.000914336 0 0.0886973 0 0.107712) (0.107216 0.00097329 0 0.0880192 0 0.107335) (0.106905 0.00103467 0 0.0873342 0 0.106957) (0.1066 0.00109838 0 0.086642 0 0.106579) (0.1063 0.00116435 0 0.0859425 0 0.1062) (0.106007 0.00123246 0 0.0852353 0 0.105821) (0.10572 0.0013026 0 0.0845204 0 0.105442) (0.10544 0.00137464 0 0.0837974 0 0.105062) (0.105168 0.00144846 0 0.0830664 0 0.104683) (0.104903 0.00152391 0 0.0823271 0 0.104303) (0.104646 0.00160085 0 0.0815796 0 0.103923) (0.104398 0.00167912 0 0.0808236 0 0.103543) (0.104158 0.00175858 0 0.0800593 0 0.103164) (0.103926 0.00183905 0 0.0792866 0 0.102784) (0.103704 0.00192038 0 0.0785055 0 0.102405) (0.103491 0.00200238 0 0.0777163 0 0.102026) (0.103287 0.00208489 0 0.0769189 0 0.101647) (0.103092 0.00216772 0 0.0761136 0 0.101269) (0.102907 0.00225066 0 0.0753006 0 0.10089) (0.102732 0.00233353 0 0.0744802 0 0.100512) (0.102566 0.00241611 0 0.0736526 0 0.100134) (0.10241 0.00249817 0 0.0728184 0 0.0997563) (0.102264 0.00257949 0 0.0719778 0 0.0993786) (0.102127 0.00265981 0 0.0711314 0 0.0990011) (0.101999 0.00273888 0 0.0702798 0 0.0986236) (0.10188 0.0028164 0 0.0694234 0 0.0982461) (0.10177 0.0028921 0 0.0685631 0 0.0978684) (0.101668 0.00296564 0 0.0676994 0 0.0974905) (0.101574 0.0030367 0 0.0668332 0 0.0971123) (0.101488 0.00310491 0 0.0659652 0 0.0967337) (0.101409 0.00316989 0 0.0650964 0 0.0963545) (0.101337 0.00323124 0 0.0642276 0 0.0959745) (0.10127 0.00328853 0 0.0633598 0 0.0955937) (0.101209 0.00334132 0 0.0624939 0 0.095212) (0.101152 0.00338914 0 0.0616309 0 0.0948292) (0.1011 0.00343154 0 0.0607718 0 0.0944452) (0.101051 0.00346804 0 0.0599176 0 0.09406) (0.101005 0.00349819 0 0.0590692 0 0.0936736) (0.100962 0.00352158 0 0.0582277 0 0.0932859) (0.100922 0.00353785 0 0.0573939 0 0.0928971) (0.100884 0.00354671 0 0.0565688 0 0.0925072) (0.100848 0.003548 0 0.0557532 0 0.0921165) (0.100815 0.00354167 0 0.054948 0 0.0917253) (0.100784 0.00352787 0 0.0541538 0 0.0913338) (0.100756 0.00350692 0 0.0533715 0 0.0909425) (0.100731 0.00347939 0 0.0526017 0 0.0905517) (0.10071 0.00344605 0 0.0518451 0 0.090162) (0.100692 0.00340794 0 0.0511022 0 0.0897737) (0.100679 0.00336631 0 0.0503737 0 0.0893872) (0.10067 0.00332262 0 0.0496601 0 0.0890028) (0.100664 0.00327852 0 0.048962 0 0.0886209) (0.100662 0.00323576 0 0.0482798 0 0.0882414) (0.100662 0.00319619 0 0.0476141 0 0.0878644) (0.100663 0.00316164 0 0.0469653 0 0.0874898) (0.100663 0.00313393 0 0.0463338 0 0.0871173) (0.100661 0.00311473 0 0.0457201 0 0.0867464) (0.100654 0.00310553 0 0.0451243 0 0.0863767) (0.100642 0.00310757 0 0.0445468 0 0.0860077) (0.100621 0.0031219 0 0.0439878 0 0.0856389) (0.100591 0.00314936 0 0.0434471 0 0.0852697) (0.100552 0.00319081 0 0.042925 0 0.0849006) (0.100498 0.00324701 0 0.0424203 0 0.0845295) (0.100444 0.00331918 0 0.0419358 0 0.0841621) (0.100347 0.0034077 0 0.0414627 0 0.0837823) (0.100328 0.00351148 0 0.0410257 0 0.0834368) (0.100155 0.00361976 0 0.0406083 0 0.0830629) (0.119626 5.74736e-05 0 0.108421 0 0.120161) (0.119297 6.55058e-05 0 0.107846 0 0.11984) (0.118967 7.42695e-05 0 0.107268 0 0.119518) (0.118636 8.37876e-05 0 0.106687 0 0.119194) (0.118304 9.40811e-05 0 0.106104 0 0.118867) (0.117971 0.00010517 0 0.105518 0 0.118539) (0.117637 0.000117077 0 0.104929 0 0.118209) (0.117302 0.000129823 0 0.104338 0 0.117877) (0.116967 0.000143434 0 0.103744 0 0.117543) (0.11663 0.000157936 0 0.103148 0 0.117207) (0.116293 0.000173363 0 0.102549 0 0.11687) (0.115955 0.00018975 0 0.101947 0 0.11653) (0.115617 0.00020714 0 0.101342 0 0.116189) (0.115278 0.000225585 0 0.100735 0 0.115845) (0.114938 0.00024514 0 0.100124 0 0.1155) (0.114598 0.000265872 0 0.0995113 0 0.115153) (0.114258 0.000287857 0 0.0988954 0 0.114803) (0.113917 0.000311178 0 0.0982767 0 0.114452) (0.113576 0.000335925 0 0.0976549 0 0.114099) (0.113235 0.000362199 0 0.0970301 0 0.113744) (0.112894 0.000390103 0 0.0964022 0 0.113387) (0.112554 0.000419745 0 0.0957711 0 0.113029) (0.112213 0.000451237 0 0.0951365 0 0.112668) (0.111874 0.000484687 0 0.0944985 0 0.112306) (0.111535 0.000520203 0 0.0938568 0 0.111942) (0.111198 0.000557887 0 0.0932112 0 0.111576) (0.110861 0.000597832 0 0.0925615 0 0.111209) (0.110527 0.000640124 0 0.0919075 0 0.11084) (0.110194 0.000684834 0 0.0912489 0 0.11047) (0.109864 0.00073202 0 0.0905855 0 0.110098) (0.109537 0.000781729 0 0.0899171 0 0.109725) (0.109213 0.000833987 0 0.0892434 0 0.10935) (0.108892 0.000888809 0 0.0885641 0 0.108975) (0.108575 0.000946189 0 0.0878788 0 0.108598) (0.108262 0.00100611 0 0.0871875 0 0.10822) (0.107954 0.00106854 0 0.0864898 0 0.107841) (0.107651 0.00113342 0 0.0857854 0 0.107462) (0.107353 0.0012007 0 0.0850742 0 0.107081) (0.107061 0.00127031 0 0.0843559 0 0.1067) (0.106775 0.00134216 0 0.0836303 0 0.106319) (0.106496 0.00141615 0 0.0828973 0 0.105937) (0.106224 0.00149218 0 0.0821567 0 0.105554) (0.105959 0.00157016 0 0.0814083 0 0.105171) (0.105702 0.00164996 0 0.0806522 0 0.104787) (0.105453 0.00173146 0 0.0798881 0 0.104404) (0.105211 0.00181454 0 0.0791162 0 0.10402) (0.104979 0.00189907 0 0.0783363 0 0.103636) (0.104755 0.00198492 0 0.0775486 0 0.103252) (0.104541 0.00207195 0 0.0767531 0 0.102868) (0.104336 0.00216003 0 0.0759499 0 0.102484) (0.10414 0.002249 0 0.0751393 0 0.1021) (0.103954 0.00233871 0 0.0743214 0 0.101716) (0.103778 0.002429 0 0.0734965 0 0.101332) (0.103611 0.00251971 0 0.0726649 0 0.100948) (0.103455 0.00261067 0 0.071827 0 0.100565) (0.103309 0.00270169 0 0.0709831 0 0.100181) (0.103173 0.00279257 0 0.0701339 0 0.0997981) (0.103048 0.00288311 0 0.0692797 0 0.0994149) (0.102932 0.00297309 0 0.0684213 0 0.0990319) (0.102826 0.00306226 0 0.0675592 0 0.0986489) (0.10273 0.00315037 0 0.0666942 0 0.098266) (0.102643 0.00323714 0 0.0658271 0 0.0978831) (0.102565 0.00332227 0 0.0649586 0 0.0975001) (0.102497 0.00340543 0 0.0640896 0 0.0971172) (0.102437 0.00348628 0 0.0632212 0 0.0967341) (0.102385 0.00356443 0 0.0623542 0 0.0963509) (0.10234 0.00363947 0 0.0614897 0 0.0959676) (0.102304 0.00371096 0 0.0606287 0 0.0955842) (0.102274 0.00377846 0 0.0597722 0 0.0952006) (0.102251 0.00384148 0 0.0589214 0 0.0948169) (0.102234 0.00389953 0 0.0580772 0 0.0944333) (0.102224 0.00395213 0 0.0572407 0 0.0940499) (0.102219 0.00399883 0 0.056413 0 0.0936669) (0.102221 0.00403918 0 0.055595 0 0.0932845) (0.102229 0.00407286 0 0.0547877 0 0.0929031) (0.102244 0.0040996 0 0.053992 0 0.0925232) (0.102265 0.0041193 0 0.0532087 0 0.0921452) (0.102295 0.00413199 0 0.0524387 0 0.0917697) (0.102332 0.00413793 0 0.0516825 0 0.0913973) (0.102378 0.00413761 0 0.050941 0 0.0910285) (0.102433 0.00413175 0 0.0502147 0 0.0906641) (0.102498 0.00412133 0 0.0495042 0 0.0903044) (0.102572 0.00410762 0 0.0488101 0 0.0899501) (0.102656 0.00409209 0 0.0481327 0 0.0896014) (0.102749 0.00407642 0 0.0474726 0 0.0892585) (0.10285 0.00406246 0 0.0468302 0 0.0889214) (0.102958 0.00405215 0 0.0462058 0 0.0885898) (0.103071 0.00404746 0 0.0455998 0 0.0882633) (0.103186 0.00405035 0 0.0450126 0 0.0879412) (0.103301 0.00406265 0 0.0444444 0 0.0876229) (0.103414 0.00408601 0 0.0438957 0 0.0873073) (0.10352 0.00412182 0 0.0433665 0 0.0869935) (0.10362 0.00417126 0 0.0428573 0 0.0866809) (0.103709 0.00423531 0 0.0423678 0 0.0863685) (0.10379 0.00431501 0 0.0418984 0 0.0860567) (0.103857 0.00441135 0 0.0414482 0 0.0857435) (0.103925 0.00452606 0 0.0410199 0 0.0854349) (0.103949 0.00465959 0 0.0406053 0 0.085114) (0.104056 0.00481266 0 0.0402295 0 0.0848302) (0.103987 0.00496549 0 0.0398733 0 0.0845084) (0.120166 9.48168e-05 0 0.107336 0 0.120643) (0.119851 0.000106581 0 0.106734 0 0.12033) (0.119534 0.000119283 0 0.106129 0 0.120015) (0.119216 0.000132939 0 0.105521 0 0.119698) (0.118897 0.000147565 0 0.104911 0 0.119379) (0.118577 0.000163174 0 0.104299 0 0.119057) (0.118257 0.000179782 0 0.103683 0 0.118734) (0.117935 0.000197404 0 0.103065 0 0.118408) (0.117612 0.000216058 0 0.102444 0 0.118079) (0.117288 0.000235766 0 0.101821 0 0.117749) (0.116963 0.000256553 0 0.101195 0 0.117416) (0.116638 0.000278448 0 0.100566 0 0.117081) (0.116312 0.000301485 0 0.0999349 0 0.116743) (0.115985 0.000325707 0 0.0993008 0 0.116404) (0.115657 0.000351162 0 0.098664 0 0.116062) (0.115328 0.000377904 0 0.0980245 0 0.115717) (0.115 0.000405997 0 0.0973823 0 0.11537) (0.11467 0.000435513 0 0.0967373 0 0.115021) (0.114341 0.000466529 0 0.0960894 0 0.11467) (0.114011 0.000499129 0 0.0954387 0 0.114316) (0.113681 0.000533403 0 0.0947849 0 0.11396) (0.113351 0.000569446 0 0.0941281 0 0.113601) (0.113021 0.000607352 0 0.0934681 0 0.113241) (0.112692 0.000647219 0 0.0928048 0 0.112878) (0.112364 0.00068914 0 0.092138 0 0.112513) (0.112036 0.000733207 0 0.0914676 0 0.112146) (0.11171 0.000779505 0 0.0907934 0 0.111777) (0.111385 0.000828112 0 0.0901151 0 0.111406) (0.111062 0.000879095 0 0.0894326 0 0.111033) (0.110741 0.000932514 0 0.0887456 0 0.110658) (0.110423 0.000988412 0 0.0880539 0 0.110282) (0.110108 0.00104682 0 0.0873573 0 0.109903) (0.109796 0.00110777 0 0.0866555 0 0.109524) (0.109487 0.00117126 0 0.0859483 0 0.109142) (0.109183 0.00123728 0 0.0852354 0 0.10876) (0.108884 0.00130582 0 0.0845166 0 0.108376) (0.108589 0.00137685 0 0.0837917 0 0.107991) (0.1083 0.00145032 0 0.0830605 0 0.107605) (0.108016 0.00152619 0 0.0823228 0 0.107218) (0.107739 0.00160439 0 0.0815785 0 0.10683) (0.107468 0.00168486 0 0.0808273 0 0.106441) (0.107204 0.00176752 0 0.0800692 0 0.106051) (0.106947 0.0018523 0 0.079304 0 0.105661) (0.106699 0.00193911 0 0.0785318 0 0.105271) (0.106458 0.00202787 0 0.0777525 0 0.10488) (0.106226 0.00211848 0 0.076966 0 0.104488) (0.106003 0.00221085 0 0.0761725 0 0.104096) (0.105789 0.00230488 0 0.075372 0 0.103705) (0.105585 0.00240049 0 0.0745646 0 0.103313) (0.10539 0.00249756 0 0.0737505 0 0.102921) (0.105206 0.00259599 0 0.0729299 0 0.102529) (0.105032 0.00269569 0 0.0721031 0 0.102137) (0.104868 0.00279653 0 0.0712704 0 0.101745) (0.104716 0.00289839 0 0.0704321 0 0.101354) (0.104575 0.00300117 0 0.0695888 0 0.100963) (0.104445 0.00310472 0 0.0687407 0 0.100573) (0.104326 0.00320891 0 0.0678886 0 0.100183) (0.104219 0.00331358 0 0.067033 0 0.0997937) (0.104124 0.00341857 0 0.0661745 0 0.099405) (0.104041 0.0035237 0 0.065314 0 0.0990171) (0.103969 0.00362878 0 0.0644521 0 0.09863) (0.103909 0.00373357 0 0.0635898 0 0.0982438) (0.10386 0.00383782 0 0.0627279 0 0.0978586) (0.103824 0.00394127 0 0.0618674 0 0.0974745) (0.103799 0.00404359 0 0.0610094 0 0.0970916) (0.103785 0.00414444 0 0.0601549 0 0.0967101) (0.103783 0.00424341 0 0.0593051 0 0.09633) (0.103792 0.00434009 0 0.058461 0 0.0959516) (0.103812 0.004434 0 0.0576239 0 0.0955751) (0.103844 0.00452461 0 0.0567949 0 0.0952008) (0.103887 0.0046114 0 0.0559752 0 0.0948289) (0.103941 0.00469378 0 0.055166 0 0.09446) (0.104007 0.00477119 0 0.0543685 0 0.0940944) (0.104086 0.00484309 0 0.0535836 0 0.0937327) (0.104177 0.00490898 0 0.0528126 0 0.0933754) (0.104282 0.00496845 0 0.0520562 0 0.0930234) (0.104401 0.00502122 0 0.0513156 0 0.0926773) (0.104534 0.00506718 0 0.0505914 0 0.092338) (0.104684 0.00510644 0 0.0498844 0 0.0920062) (0.10485 0.00513936 0 0.0491953 0 0.0916828) (0.105033 0.0051666 0 0.0485245 0 0.0913685) (0.105234 0.00518911 0 0.0478725 0 0.0910638) (0.105452 0.00520817 0 0.0472397 0 0.0907692) (0.105686 0.00522535 0 0.0466262 0 0.0904848) (0.105935 0.00524248 0 0.0460324 0 0.0902103) (0.106197 0.00526159 0 0.0454583 0 0.0899454) (0.106469 0.00528488 0 0.0449041 0 0.0896892) (0.106749 0.00531461 0 0.0443699 0 0.0894406) (0.107033 0.00535309 0 0.0438557 0 0.0891983) (0.107317 0.00540252 0 0.0433619 0 0.0889609) (0.107597 0.00546491 0 0.0428885 0 0.0887268) (0.107869 0.00554201 0 0.0424358 0 0.0884946) (0.108133 0.00563537 0 0.0420041 0 0.0882633) (0.108384 0.00574633 0 0.0415934 0 0.088032) (0.108626 0.00587634 0 0.0412045 0 0.0878013) (0.108854 0.00602689 0 0.0408364 0 0.0875697) (0.109087 0.00620064 0 0.0404927 0 0.0873443) (0.109277 0.00639865 0 0.0401657 0 0.0871079) (0.109562 0.00662488 0 0.0398822 0 0.0869139) (0.109638 0.00684567 0 0.0396163 0 0.0866672) (0.12092 0.000231892 0 0.105887 0 0.121245) (0.120623 0.00025249 0 0.105248 0 0.120939) (0.120324 0.00027418 0 0.104607 0 0.120631) (0.120024 0.000296969 0 0.103963 0 0.120319) (0.119722 0.000320865 0 0.103317 0 0.120005) (0.119419 0.000345873 0 0.102668 0 0.119689) (0.119115 0.000371998 0 0.102017 0 0.119369) (0.118809 0.000399249 0 0.101363 0 0.119047) (0.118502 0.000427633 0 0.100707 0 0.118721) (0.118194 0.000457161 0 0.100049 0 0.118393) (0.117885 0.000487849 0 0.0993877 0 0.118062) (0.117574 0.000519716 0 0.0987245 0 0.117728) (0.117263 0.000552786 0 0.098059 0 0.117391) (0.11695 0.00058709 0 0.097391 0 0.117051) (0.116636 0.000622665 0 0.0967208 0 0.116709) (0.116322 0.000659554 0 0.0960482 0 0.116363) (0.116006 0.00069781 0 0.0953732 0 0.116014) (0.11569 0.000737492 0 0.0946959 0 0.115663) (0.115373 0.000778665 0 0.0940162 0 0.115309) (0.115055 0.000821401 0 0.093334 0 0.114951) (0.114738 0.000865778 0 0.0926493 0 0.114591) (0.114419 0.000911879 0 0.091962 0 0.114228) (0.114101 0.000959788 0 0.0912721 0 0.113863) (0.113783 0.00100959 0 0.0905794 0 0.113495) (0.113466 0.00106138 0 0.0898837 0 0.113124) (0.113149 0.00111523 0 0.089185 0 0.11275) (0.112833 0.00117123 0 0.088483 0 0.112374) (0.112519 0.00122945 0 0.0877777 0 0.111996) (0.112206 0.00128997 0 0.0870688 0 0.111615) (0.111895 0.00135284 0 0.0863561 0 0.111233) (0.111587 0.00141812 0 0.0856395 0 0.110848) (0.111281 0.00148585 0 0.0849186 0 0.110461) (0.110979 0.00155606 0 0.0841934 0 0.110072) (0.11068 0.00162879 0 0.0834635 0 0.109681) (0.110385 0.00170404 0 0.0827289 0 0.109289) (0.110095 0.00178181 0 0.0819892 0 0.108895) (0.10981 0.00186211 0 0.0812443 0 0.108499) (0.109531 0.00194491 0 0.080494 0 0.108103) (0.109257 0.0020302 0 0.0797382 0 0.107705) (0.10899 0.00211796 0 0.0789767 0 0.107306) (0.108729 0.00220814 0 0.0782095 0 0.106907) (0.108476 0.00230072 0 0.0774363 0 0.106506) (0.108231 0.00239565 0 0.0766573 0 0.106105) (0.107994 0.00249289 0 0.0758723 0 0.105703) (0.107766 0.00259241 0 0.0750814 0 0.105302) (0.107548 0.00269414 0 0.0742846 0 0.104899) (0.107339 0.00279806 0 0.073482 0 0.104497) (0.10714 0.00290411 0 0.0726738 0 0.104095) (0.106952 0.00301224 0 0.0718601 0 0.103693) (0.106775 0.00312242 0 0.071041 0 0.103292) (0.10661 0.00323458 0 0.070217 0 0.102891) (0.106457 0.00334869 0 0.0693884 0 0.102491) (0.106317 0.00346469 0 0.0685554 0 0.102092) (0.10619 0.00358253 0 0.0677186 0 0.101693) (0.106076 0.00370213 0 0.0668785 0 0.101297) (0.105976 0.00382343 0 0.0660356 0 0.100901) (0.10589 0.00394634 0 0.0651906 0 0.100508) (0.105819 0.00407078 0 0.0643441 0 0.100116) (0.105763 0.00419662 0 0.063497 0 0.0997262) (0.105722 0.00432373 0 0.0626501 0 0.099339) (0.105697 0.00445195 0 0.0618043 0 0.0989544) (0.105688 0.00458107 0 0.0609606 0 0.0985727) (0.105695 0.00471087 0 0.0601201 0 0.0981942) (0.10572 0.00484107 0 0.0592839 0 0.0978192) (0.105761 0.00497132 0 0.0584532 0 0.097448) (0.105819 0.00510124 0 0.0576292 0 0.0970809) (0.105895 0.00523038 0 0.0568134 0 0.0967184) (0.105989 0.00535822 0 0.056007 0 0.0963608) (0.106101 0.00548416 0 0.0552114 0 0.0960087) (0.106231 0.00560756 0 0.054428 0 0.0956626) (0.106381 0.00572772 0 0.0536583 0 0.0953231) (0.106551 0.0058439 0 0.0529035 0 0.0949908) (0.106741 0.00595536 0 0.0521651 0 0.0946665) (0.106952 0.00606137 0 0.0514443 0 0.094351) (0.107185 0.00616127 0 0.0507423 0 0.0940454) (0.107442 0.00625452 0 0.0500601 0 0.0937506) (0.107724 0.00634074 0 0.0493987 0 0.0934677) (0.108031 0.00641979 0 0.0487588 0 0.0931977) (0.108364 0.00649182 0 0.0481409 0 0.0929417) (0.108725 0.00655729 0 0.0475455 0 0.0927007) (0.109113 0.00661705 0 0.0469726 0 0.0924753) (0.109528 0.00667235 0 0.0464223 0 0.0922659) (0.109969 0.0067248 0 0.0458943 0 0.0920726) (0.110434 0.00677639 0 0.0453882 0 0.091895) (0.11092 0.00682944 0 0.0449038 0 0.091732) (0.111423 0.0068865 0 0.0444405 0 0.0915823) (0.111939 0.0069503 0 0.0439979 0 0.091444) (0.112462 0.0070237 0 0.0435757 0 0.091315) (0.112987 0.00710961 0 0.0431739 0 0.0911929) (0.113509 0.00721088 0 0.0427927 0 0.0910756) (0.114024 0.0073302 0 0.0424325 0 0.0909611) (0.114528 0.00747002 0 0.0420941 0 0.0908479) (0.115022 0.00763261 0 0.0417782 0 0.0907355) (0.115504 0.0078201 0 0.0414858 0 0.0906239) (0.11598 0.00803475 0 0.0412183 0 0.0905154) (0.116449 0.00827904 0 0.0409759 0 0.09041) (0.116937 0.00855704 0 0.0407631 0 0.0903179) (0.117396 0.00887161 0 0.0405731 0 0.090222) (0.11798 0.0092318 0 0.0404378 0 0.090184) (0.118314 0.00958273 0 0.040316 0 0.0900732) (0.122028 0.00060305 0 0.103795 0 0.121967) (0.121755 0.000639304 0 0.103109 0 0.121664) (0.121479 0.000676687 0 0.102421 0 0.121358) (0.121201 0.00071518 0 0.101732 0 0.121048) (0.120922 0.000754767 0 0.10104 0 0.120734) (0.120641 0.00079543 0 0.100346 0 0.120417) (0.120358 0.000837161 0 0.09965 0 0.120097) (0.120073 0.000879954 0 0.0989524 0 0.119772) (0.119786 0.00092381 0 0.0982531 0 0.119444) (0.119497 0.000968729 0 0.0975521 0 0.119113) (0.119207 0.00101472 0 0.0968494 0 0.118777) (0.118915 0.0010618 0 0.0961451 0 0.118438) (0.118621 0.00110998 0 0.0954392 0 0.118096) (0.118326 0.00115929 0 0.0947318 0 0.11775) (0.118029 0.00120977 0 0.0940229 0 0.1174) (0.11773 0.00126145 0 0.0933125 0 0.117046) (0.117431 0.00131438 0 0.0926006 0 0.11669) (0.11713 0.00136862 0 0.0918872 0 0.116329) (0.116828 0.00142423 0 0.0911724 0 0.115965) (0.116524 0.00148128 0 0.090456 0 0.115598) (0.116221 0.00153984 0 0.089738 0 0.115227) (0.115916 0.00159999 0 0.0890185 0 0.114853) (0.115612 0.00166182 0 0.0882972 0 0.114476) (0.115307 0.00172542 0 0.0875742 0 0.114096) (0.115002 0.00179086 0 0.0868492 0 0.113712) (0.114698 0.00185825 0 0.0861223 0 0.113326) (0.114395 0.00192767 0 0.0853933 0 0.112937) (0.114092 0.00199919 0 0.0846619 0 0.112545) (0.113792 0.00207291 0 0.0839282 0 0.11215) (0.113493 0.0021489 0 0.0831919 0 0.111753) (0.113197 0.00222723 0 0.0824528 0 0.111354) (0.112904 0.00230796 0 0.0817107 0 0.110952) (0.112615 0.00239114 0 0.0809656 0 0.110549) (0.112329 0.00247684 0 0.0802172 0 0.110143) (0.112047 0.00256509 0 0.0794654 0 0.109736) (0.111771 0.00265592 0 0.0787099 0 0.109328) (0.1115 0.00274936 0 0.0779508 0 0.108918) (0.111236 0.00284544 0 0.0771877 0 0.108507) (0.110978 0.00294418 0 0.0764208 0 0.108095) (0.110727 0.00304559 0 0.0756497 0 0.107682) (0.110485 0.00314968 0 0.0748746 0 0.107269) (0.110251 0.00325645 0 0.0740954 0 0.106855) (0.110026 0.00336591 0 0.073312 0 0.106441) (0.109812 0.00347806 0 0.0725246 0 0.106028) (0.109608 0.00359289 0 0.0717332 0 0.105614) (0.109415 0.00371042 0 0.0709379 0 0.105202) (0.109234 0.00383063 0 0.070139 0 0.10479) (0.109066 0.00395351 0 0.0693366 0 0.10438) (0.108911 0.00407907 0 0.0685309 0 0.103971) (0.108771 0.00420727 0 0.0677224 0 0.103564) (0.108645 0.00433811 0 0.0669114 0 0.103159) (0.108535 0.00447157 0 0.0660984 0 0.102756) (0.108442 0.00460759 0 0.0652838 0 0.102356) (0.108366 0.00474615 0 0.0644683 0 0.101959) (0.108307 0.00488717 0 0.0636524 0 0.101566) (0.108268 0.00503058 0 0.062837 0 0.101176) (0.108247 0.00517628 0 0.0620227 0 0.100791) (0.108247 0.00532414 0 0.0612106 0 0.10041) (0.108268 0.00547401 0 0.0604015 0 0.100035) (0.10831 0.00562569 0 0.0595966 0 0.0996649) (0.108375 0.00577897 0 0.0587969 0 0.0993009) (0.108463 0.00593355 0 0.0580038 0 0.0989433) (0.108574 0.00608913 0 0.0572185 0 0.0985927) (0.10871 0.00624533 0 0.0564424 0 0.0982496) (0.108871 0.00640173 0 0.0556771 0 0.0979144) (0.109057 0.00655784 0 0.0549241 0 0.0975878) (0.10927 0.00671314 0 0.0541851 0 0.0972703) (0.10951 0.00686704 0 0.0534617 0 0.0969626) (0.109777 0.00701894 0 0.0527557 0 0.0966655) (0.110074 0.0071682 0 0.0520688 0 0.0963798) (0.1104 0.00731421 0 0.0514027 0 0.0961065) (0.110758 0.00745638 0 0.0507591 0 0.0958467) (0.111149 0.00759419 0 0.0501395 0 0.0956016) (0.111574 0.00772726 0 0.0495453 0 0.0953725) (0.112035 0.00785536 0 0.0489779 0 0.0951611) (0.112536 0.00797848 0 0.0484381 0 0.094969) (0.113077 0.00809686 0 0.0479268 0 0.0947978) (0.113661 0.00821108 0 0.0474443 0 0.0946494) (0.114289 0.00832203 0 0.0469906 0 0.094525) (0.114962 0.00843098 0 0.0465654 0 0.0944261) (0.11568 0.00853954 0 0.0461679 0 0.0943532) (0.116442 0.00864973 0 0.0457971 0 0.0943065) (0.117245 0.00876385 0 0.0454517 0 0.0942854) (0.118085 0.00888455 0 0.0451301 0 0.0942883) (0.118955 0.00901472 0 0.0448309 0 0.0943131) (0.119849 0.00915745 0 0.0445528 0 0.0943568) (0.12076 0.00931602 0 0.0442946 0 0.0944162) (0.12168 0.00949385 0 0.0440557 0 0.0944879) (0.122604 0.00969456 0 0.0438362 0 0.0945688) (0.123524 0.00992185 0 0.0436368 0 0.0946565) (0.124441 0.0101795 0 0.043459 0 0.0947497) (0.125353 0.0104711 0 0.0433053 0 0.0948489) (0.126267 0.0108003 0 0.0431788 0 0.0949563) (0.127188 0.0111706 0 0.0430825 0 0.0950754) (0.128129 0.0115855 0 0.0430204 0 0.0952124) (0.129098 0.0120488 0 0.0429946 0 0.0953713) (0.130131 0.012566 0 0.0430127 0 0.0955681) (0.131181 0.0131439 0 0.0430676 0 0.0957864) (0.132441 0.013799 0 0.0432033 0 0.0961049) (0.133405 0.0144538 0 0.0433502 0 0.0963282) (0.123812 0.00147186 0 0.100773 0 0.122806) (0.123572 0.00153211 0 0.100027 0 0.122499) (0.123328 0.00159307 0 0.0992804 0 0.122186) (0.123082 0.00165478 0 0.0985328 0 0.12187) (0.122834 0.00171724 0 0.0977845 0 0.121548) (0.122582 0.00178043 0 0.0970358 0 0.121222) (0.122328 0.00184434 0 0.0962865 0 0.120892) (0.122071 0.00190898 0 0.0955369 0 0.120557) (0.121811 0.00197435 0 0.094787 0 0.120218) (0.121549 0.00204046 0 0.0940369 0 0.119874) (0.121284 0.00210732 0 0.0932867 0 0.119526) (0.121017 0.00217497 0 0.0925364 0 0.119173) (0.120747 0.00224342 0 0.091786 0 0.118816) (0.120475 0.00231271 0 0.0910358 0 0.118455) (0.1202 0.00238289 0 0.0902856 0 0.118089) (0.119924 0.002454 0 0.0895356 0 0.117719) (0.119646 0.00252611 0 0.0887857 0 0.117346) (0.119366 0.00259928 0 0.088036 0 0.116968) (0.119085 0.00267357 0 0.0872865 0 0.116586) (0.118802 0.00274908 0 0.0865372 0 0.116201) (0.118518 0.00282587 0 0.0857881 0 0.115812) (0.118233 0.00290405 0 0.085039 0 0.115419) (0.117948 0.00298371 0 0.0842901 0 0.115023) (0.117663 0.00306493 0 0.0835412 0 0.114623) (0.117377 0.00314783 0 0.0827923 0 0.11422) (0.117093 0.0032325 0 0.0820432 0 0.113815) (0.11681 0.00331904 0 0.0812939 0 0.113406) (0.116528 0.00340754 0 0.0805442 0 0.112995) (0.116248 0.0034981 0 0.0797941 0 0.112581) (0.11597 0.00359081 0 0.0790435 0 0.112165) (0.115696 0.00368576 0 0.0782921 0 0.111747) (0.115426 0.00378302 0 0.0775399 0 0.111327) (0.11516 0.00388267 0 0.0767867 0 0.110906) (0.114899 0.00398477 0 0.0760326 0 0.110483) (0.114644 0.00408938 0 0.0752772 0 0.11006) (0.114396 0.00419655 0 0.0745206 0 0.109635) (0.114154 0.00430633 0 0.0737627 0 0.10921) (0.113921 0.00441876 0 0.0730035 0 0.108785) (0.113697 0.00453385 0 0.0722428 0 0.10836) (0.113483 0.00465164 0 0.0714808 0 0.107936) (0.113279 0.00477213 0 0.0707174 0 0.107513) (0.113087 0.00489533 0 0.0699528 0 0.10709) (0.112908 0.00502125 0 0.069187 0 0.10667) (0.112741 0.00514986 0 0.0684202 0 0.106251) (0.11259 0.00528117 0 0.0676527 0 0.105835) (0.112453 0.00541514 0 0.0668846 0 0.105421) (0.112334 0.00555174 0 0.0661163 0 0.105011) (0.112231 0.00569094 0 0.0653481 0 0.104605) (0.112147 0.00583269 0 0.0645806 0 0.104203) (0.112083 0.00597693 0 0.0638141 0 0.103805) (0.112039 0.0061236 0 0.0630493 0 0.103413) (0.112017 0.00627262 0 0.0622868 0 0.103027) (0.112018 0.0064239 0 0.0615274 0 0.102646) (0.112043 0.00657735 0 0.0607718 0 0.102273) (0.112093 0.00673287 0 0.060021 0 0.101907) (0.112168 0.00689035 0 0.0592759 0 0.101548) (0.112271 0.00704968 0 0.0585377 0 0.101199) (0.112402 0.00721075 0 0.0578075 0 0.100858) (0.112562 0.00737345 0 0.0570867 0 0.100526) (0.112752 0.0075377 0 0.0563766 0 0.100205) (0.112973 0.00770343 0 0.0556788 0 0.0998948) (0.113227 0.00787057 0 0.0549949 0 0.0995958) (0.113514 0.00803913 0 0.0543266 0 0.0993087) (0.113836 0.00820915 0 0.0536758 0 0.0990345) (0.114194 0.00838073 0 0.0530445 0 0.0987738) (0.11459 0.00855406 0 0.0524348 0 0.0985277) (0.115025 0.00872942 0 0.0518486 0 0.0982973) (0.115502 0.00890722 0 0.0512883 0 0.0980837) (0.116024 0.00908798 0 0.0507561 0 0.0978887) (0.116593 0.00927238 0 0.0502541 0 0.0977139) (0.117214 0.00946127 0 0.0497844 0 0.0975617) (0.117891 0.00965568 0 0.0493493 0 0.0974344) (0.118628 0.00985679 0 0.0489504 0 0.0973352) (0.119432 0.010066 0 0.0485895 0 0.0972671) (0.120308 0.0102848 0 0.0482678 0 0.0972339) (0.121262 0.0105149 0 0.0479864 0 0.0972393) (0.1223 0.010758 0 0.0477456 0 0.097287) (0.123427 0.0110159 0 0.0475454 0 0.0973807) (0.124646 0.0112905 0 0.0473852 0 0.0975233) (0.125959 0.0115836 0 0.0472636 0 0.0977171) (0.127365 0.0118969 0 0.0471789 0 0.0979632) (0.128862 0.0122322 0 0.0471289 0 0.0982612) (0.130441 0.0125913 0 0.047111 0 0.0986096) (0.132095 0.0129761 0 0.0471227 0 0.0990052) (0.133813 0.0133886 0 0.0471618 0 0.0994441) (0.135584 0.0138314 0 0.0472266 0 0.0999214) (0.137397 0.0143073 0 0.0473163 0 0.100432) (0.139243 0.0148195 0 0.047431 0 0.100973) (0.141115 0.0153724 0 0.0475724 0 0.10154) (0.143012 0.0159709 0 0.0477438 0 0.102133) (0.144941 0.0166213 0 0.0479502 0 0.102756) (0.146917 0.0173303 0 0.0481977 0 0.103416) (0.148957 0.0181042 0 0.0484932 0 0.104123) (0.151082 0.018948 0 0.0488429 0 0.104888) (0.153315 0.0198658 0 0.0492532 0 0.105722) (0.15567 0.0208605 0 0.0497266 0 0.106633) (0.158197 0.0219354 0 0.050272 0 0.107645) (0.160828 0.0230998 0 0.0508756 0 0.108732) (0.163871 0.0243808 0 0.0516006 0 0.110017) (0.166585 0.0257075 0 0.0523531 0 0.1112) (0.127117 0.00331163 0 0.0961365 0 0.123772) (0.126932 0.00339958 0 0.0953229 0 0.12345) (0.126743 0.00348733 0 0.094511 0 0.123123) (0.12655 0.00357492 0 0.0937011 0 0.12279) (0.126354 0.0036624 0 0.0928934 0 0.122452) (0.126153 0.00374981 0 0.0920878 0 0.122108) (0.125948 0.0038372 0 0.0912846 0 0.121759) (0.125739 0.00392462 0 0.0904839 0 0.121405) (0.125527 0.0040121 0 0.0896857 0 0.121046) (0.125311 0.0040997 0 0.0888902 0 0.120682) (0.125092 0.00418748 0 0.0880975 0 0.120313) (0.124869 0.00427549 0 0.0873076 0 0.119939) (0.124643 0.0043638 0 0.0865205 0 0.11956) (0.124415 0.00445246 0 0.0857365 0 0.119177) (0.124183 0.00454156 0 0.0849554 0 0.118789) (0.123949 0.00463117 0 0.0841775 0 0.118397) (0.123712 0.00472136 0 0.0834027 0 0.118001) (0.123474 0.00481223 0 0.082631 0 0.117601) (0.123234 0.00490385 0 0.0818626 0 0.117197) (0.122992 0.00499633 0 0.0810973 0 0.116789) (0.12275 0.00508976 0 0.0803353 0 0.116378) (0.122507 0.00518424 0 0.0795766 0 0.115964) (0.122264 0.00527986 0 0.078821 0 0.115546) (0.122021 0.00537674 0 0.0780687 0 0.115126) (0.12178 0.00547497 0 0.0773195 0 0.114704) (0.12154 0.00557465 0 0.0765736 0 0.114279) (0.121302 0.0056759 0 0.0758307 0 0.113852) (0.121068 0.00577879 0 0.075091 0 0.113423) (0.120837 0.00588344 0 0.0743543 0 0.112994) (0.12061 0.00598993 0 0.0736207 0 0.112563) (0.120389 0.00609834 0 0.07289 0 0.112132) (0.120174 0.00620875 0 0.0721624 0 0.1117) (0.119967 0.00632124 0 0.0714379 0 0.111269) (0.119767 0.00643588 0 0.0707163 0 0.110839) (0.119576 0.00655273 0 0.0699978 0 0.110409) (0.119396 0.00667185 0 0.0692825 0 0.109982) (0.119227 0.00679329 0 0.0685704 0 0.109556) (0.119071 0.00691711 0 0.0678616 0 0.109133) (0.118928 0.00704336 0 0.0671563 0 0.108713) (0.1188 0.00717207 0 0.0664548 0 0.108297) (0.118689 0.00730332 0 0.0657572 0 0.107885) (0.118595 0.00743714 0 0.0650639 0 0.107478) (0.118519 0.00757362 0 0.0643751 0 0.107076) (0.118464 0.00771281 0 0.0636913 0 0.10668) (0.11843 0.00785481 0 0.063013 0 0.106292) (0.11842 0.00799972 0 0.0623406 0 0.10591) (0.118433 0.00814769 0 0.0616747 0 0.105537) (0.118473 0.00829887 0 0.061016 0 0.105172) (0.11854 0.00845344 0 0.0603652 0 0.104816) (0.118636 0.00861164 0 0.0597231 0 0.104471) (0.118762 0.00877375 0 0.0590906 0 0.104136) (0.118921 0.00894009 0 0.0584686 0 0.103813) (0.119112 0.00911109 0 0.0578583 0 0.103502) (0.11934 0.00928725 0 0.0572608 0 0.103203) (0.119604 0.00946916 0 0.0566774 0 0.102918) (0.119908 0.00965757 0 0.0561095 0 0.102648) (0.120253 0.00985334 0 0.0555588 0 0.102392) (0.120641 0.0100575 0 0.0550268 0 0.102153) (0.121076 0.0102713 0 0.0545156 0 0.101932) (0.121559 0.0104961 0 0.0540272 0 0.101728) (0.122095 0.0107336 0 0.0535637 0 0.101544) (0.122688 0.0109857 0 0.0531278 0 0.101382) (0.123342 0.0112546 0 0.0527219 0 0.101244) (0.124062 0.0115428 0 0.0523492 0 0.101131) (0.124855 0.0118531 0 0.0520126 0 0.101047) (0.125729 0.0121886 0 0.0517155 0 0.100994) (0.126691 0.0125526 0 0.0514615 0 0.100978) (0.127753 0.0129489 0 0.0512545 0 0.101003) (0.128924 0.0133813 0 0.0510983 0 0.101075) (0.13022 0.0138539 0 0.0509971 0 0.101199) (0.131654 0.0143706 0 0.0509551 0 0.101385) (0.133242 0.0149356 0 0.0509767 0 0.101639) (0.135001 0.0155526 0 0.0510658 0 0.101973) (0.13695 0.0162249 0 0.0512267 0 0.102395) (0.139104 0.0169552 0 0.0514627 0 0.102916) (0.141481 0.0177457 0 0.0517769 0 0.103547) (0.144094 0.0185973 0 0.0521716 0 0.104297) (0.146954 0.0195101 0 0.0526479 0 0.105175) (0.150066 0.0204829 0 0.0532058 0 0.106187) (0.15343 0.0215138 0 0.0538437 0 0.107339) (0.15704 0.0225998 0 0.0545586 0 0.108631) (0.160882 0.0237375 0 0.0553462 0 0.110061) (0.164938 0.0249238 0 0.0562008 0 0.111624) (0.169185 0.0261556 0 0.0571163 0 0.113313) (0.173598 0.0274313 0 0.0580864 0 0.11512) (0.178154 0.0287507 0 0.0591055 0 0.117034) (0.182833 0.0301151 0 0.0601689 0 0.119048) (0.187615 0.0315265 0 0.061273 0 0.121153) (0.19249 0.0329893 0 0.0624168 0 0.123344) (0.197462 0.0345111 0 0.0636036 0 0.125622) (0.202564 0.0361052 0 0.0648435 0 0.128006) (0.207838 0.0377834 0 0.0661484 0 0.130516) (0.213299 0.0395474 0 0.0675219 0 0.133162) (0.218937 0.0413911 0 0.0689604 0 0.135938) (0.224733 0.0433026 0 0.0704555 0 0.138834) (0.230632 0.0452655 0 0.0719886 0 0.141823) (0.236644 0.0472601 0 0.0735487 0 0.144897) (0.24257 0.0492774 0 0.0750893 0 0.147974) (0.248996 0.0513615 0 0.0766841 0 0.15125) (0.254931 0.0535459 0 0.0782787 0 0.154389) (0.135244 0.0071291 0 0.0889367 0 0.125414) (0.135201 0.00723684 0 0.0880695 0 0.125085) (0.135152 0.0073441 0 0.0872101 0 0.12475) (0.135098 0.00745094 0 0.0863585 0 0.12441) (0.135038 0.00755747 0 0.085515 0 0.124064) (0.134973 0.00766385 0 0.0846797 0 0.123713) (0.134902 0.00777026 0 0.0838527 0 0.123356) (0.134827 0.00787689 0 0.0830342 0 0.122995) (0.134747 0.0079839 0 0.0822242 0 0.122628) (0.134662 0.00809149 0 0.0814229 0 0.122257) (0.134574 0.00819984 0 0.0806303 0 0.121882) (0.134481 0.00830913 0 0.0798465 0 0.121503) (0.134386 0.00841957 0 0.0790718 0 0.121119) (0.134287 0.00853134 0 0.078306 0 0.120733) (0.134186 0.00864464 0 0.0775493 0 0.120343) (0.134083 0.00875968 0 0.0768018 0 0.119949) (0.133979 0.00887667 0 0.0760636 0 0.119554) (0.133874 0.00899582 0 0.0753347 0 0.119155) (0.133768 0.00911735 0 0.0746152 0 0.118755) (0.133663 0.0092415 0 0.0739052 0 0.118353) (0.133559 0.00936849 0 0.0732046 0 0.11795) (0.133457 0.00949859 0 0.0725137 0 0.117546) (0.133358 0.00963203 0 0.0718324 0 0.117142) (0.133263 0.00976909 0 0.0711609 0 0.116738) (0.133173 0.00991004 0 0.0704992 0 0.116334) (0.133088 0.0100552 0 0.0698474 0 0.115932) (0.133011 0.0102048 0 0.0692056 0 0.115531) (0.132942 0.0103592 0 0.068574 0 0.115133) (0.132883 0.0105187 0 0.0679525 0 0.114738) (0.132835 0.0106837 0 0.0673415 0 0.114346) (0.132799 0.0108544 0 0.066741 0 0.113959) (0.132778 0.0110314 0 0.0661513 0 0.113577) (0.132773 0.0112149 0 0.0655725 0 0.113201) (0.132786 0.0114054 0 0.0650049 0 0.112832) (0.132818 0.0116034 0 0.0644488 0 0.112471) (0.132872 0.0118093 0 0.0639045 0 0.112118) (0.13295 0.0120235 0 0.0633724 0 0.111774) (0.133053 0.0122468 0 0.0628529 0 0.111441) (0.133184 0.0124796 0 0.0623463 0 0.111119) (0.133346 0.0127227 0 0.0618533 0 0.11081) (0.13354 0.0129766 0 0.0613745 0 0.110514) (0.133769 0.0132423 0 0.0609103 0 0.110232) (0.134036 0.0135205 0 0.0604617 0 0.109967) (0.134344 0.0138123 0 0.0600293 0 0.109718) (0.134695 0.0141186 0 0.059614 0 0.109487) (0.135093 0.0144407 0 0.0592168 0 0.109276) (0.135542 0.0147799 0 0.0588388 0 0.109086) (0.136044 0.0151375 0 0.0584811 0 0.108918) (0.136603 0.0155153 0 0.0581452 0 0.108774) (0.137225 0.0159149 0 0.0578324 0 0.108656) (0.137912 0.0163382 0 0.0575443 0 0.108565) (0.13867 0.0167875 0 0.0572828 0 0.108503) (0.139505 0.0172652 0 0.0570498 0 0.108472) (0.140423 0.0177741 0 0.0568478 0 0.108476) (0.141432 0.018317 0 0.0566793 0 0.108517) (0.14254 0.0188975 0 0.0565472 0 0.108598) (0.143757 0.0195192 0 0.0564548 0 0.108724) (0.145094 0.0201861 0 0.0564059 0 0.1089) (0.146564 0.0209028 0 0.0564047 0 0.109131) (0.148182 0.0216743 0 0.056456 0 0.109423) (0.149965 0.0225058 0 0.0565652 0 0.109784) (0.151933 0.0234032 0 0.0567386 0 0.110223) (0.15411 0.0243728 0 0.0569829 0 0.11075) (0.156521 0.0254214 0 0.057306 0 0.111378) (0.159197 0.026556 0 0.0577165 0 0.112121) (0.162171 0.0277844 0 0.0582241 0 0.112994) (0.165482 0.0291144 0 0.0588394 0 0.114016) (0.169172 0.0305541 0 0.0595742 0 0.115208) (0.173288 0.0321118 0 0.0604412 0 0.116594) (0.177879 0.0337956 0 0.0614537 0 0.118199) (0.183001 0.0356134 0 0.0626259 0 0.120052) (0.188706 0.0375724 0 0.0639725 0 0.122182) (0.195051 0.0396789 0 0.0655079 0 0.124622) (0.202088 0.0419378 0 0.0672459 0 0.127402) (0.209864 0.0443519 0 0.0691991 0 0.130553) (0.218416 0.0469218 0 0.0713777 0 0.134104) (0.227768 0.0496448 0 0.0737887 0 0.138077) (0.237926 0.0525145 0 0.0764346 0 0.142488) (0.248873 0.05552 0 0.0793119 0 0.147344) (0.260565 0.058646 0 0.0824104 0 0.152639) (0.272929 0.0618719 0 0.0857117 0 0.158354) (0.285863 0.0651723 0 0.0891888 0 0.164455) (0.299238 0.0685176 0 0.0928063 0 0.170893) (0.312901 0.0718748 0 0.0965205 0 0.177605) (0.326685 0.0752089 0 0.100281 0 0.184516) (0.340415 0.0784841 0 0.104032 0 0.191546) (0.353899 0.0816595 0 0.107714 0 0.198599) (0.366894 0.0846827 0 0.11125 0 0.205551) (0.379197 0.087514 0 0.114575 0 0.212292) (0.390667 0.0901303 0 0.11764 0 0.218739) (0.40151 0.0925981 0 0.12047 0 0.224981) (0.411924 0.0949721 0 0.123095 0 0.231104) (0.421493 0.0971403 0 0.12543 0 0.236891) (0.429878 0.0990142 0 0.127403 0 0.242153) (0.436854 0.100532 0 0.128965 0 0.24675) (0.442232 0.101652 0 0.130074 0 0.250567) (0.446125 0.102373 0 0.130747 0 0.253609) (0.448092 0.102625 0 0.13088 0 0.255689) (0.450284 0.102777 0 0.130869 0 0.257605) (0.450149 0.102726 0 0.13013 0 0.258477) (0.17327 0.0333482 0 0.0792801 0 0.135992) (0.174082 0.033767 0 0.078618 0 0.135953) (0.174891 0.0341811 0 0.0779808 0 0.135913) (0.175696 0.0345911 0 0.0773683 0 0.135873) (0.176499 0.0349971 0 0.0767804 0 0.135834) (0.177299 0.0353995 0 0.0762169 0 0.135796) (0.178097 0.0357986 0 0.0756778 0 0.13576) (0.178894 0.0361946 0 0.0751629 0 0.135725) (0.17969 0.036588 0 0.0746721 0 0.135693) (0.180487 0.036979 0 0.0742053 0 0.135663) (0.181284 0.037368 0 0.0737622 0 0.135637) (0.182083 0.0377553 0 0.0733428 0 0.135614) (0.182885 0.0381415 0 0.0729469 0 0.135596) (0.183691 0.0385269 0 0.0725744 0 0.135582) (0.184501 0.038912 0 0.0722252 0 0.135574) (0.185317 0.0392972 0 0.0718991 0 0.135572) (0.186141 0.0396831 0 0.071596 0 0.135576) (0.186973 0.0400703 0 0.0713157 0 0.135588) (0.187816 0.0404593 0 0.0710583 0 0.135608) (0.18867 0.0408508 0 0.0708235 0 0.135637) (0.189538 0.0412454 0 0.0706114 0 0.135676) (0.190422 0.0416439 0 0.0704219 0 0.135725) (0.191324 0.042047 0 0.0702551 0 0.135787) (0.192246 0.0424554 0 0.0701108 0 0.135861) (0.193191 0.0428701 0 0.0699892 0 0.13595) (0.194162 0.0432919 0 0.0698905 0 0.136054) (0.19516 0.0437218 0 0.0698146 0 0.136174) (0.196191 0.0441608 0 0.0697619 0 0.136313) (0.197256 0.0446098 0 0.0697326 0 0.136471) (0.198359 0.0450701 0 0.069727 0 0.13665) (0.199505 0.0455426 0 0.0697454 0 0.136853) (0.200696 0.0460288 0 0.0697882 0 0.13708) (0.201939 0.0465298 0 0.069856 0 0.137333) (0.203236 0.047047 0 0.0699494 0 0.137615) (0.204593 0.0475818 0 0.070069 0 0.137928) (0.206016 0.0481358 0 0.0702155 0 0.138274) (0.207509 0.0487106 0 0.0703899 0 0.138656) (0.209079 0.049308 0 0.0705929 0 0.139075) (0.210731 0.0499297 0 0.0708258 0 0.139535) (0.212474 0.0505777 0 0.0710896 0 0.140039) (0.214313 0.0512543 0 0.0713857 0 0.140589) (0.216257 0.0519617 0 0.0717155 0 0.141189) (0.218315 0.0527023 0 0.0720807 0 0.141843) (0.220496 0.0534791 0 0.0724829 0 0.142554) (0.222809 0.0542947 0 0.0729243 0 0.143327) (0.225267 0.0551526 0 0.0734069 0 0.144166) (0.22788 0.0560561 0 0.0739333 0 0.145077) (0.230663 0.0570092 0 0.074506 0 0.146064) (0.23363 0.0580161 0 0.0751282 0 0.147134) (0.236798 0.0590815 0 0.0758031 0 0.148295) (0.240185 0.0602105 0 0.0765345 0 0.149552) (0.24381 0.0614087 0 0.0773264 0 0.150915) (0.247697 0.0626823 0 0.0781834 0 0.152394) (0.251869 0.0640381 0 0.0791107 0 0.153998) (0.256356 0.0654836 0 0.0801138 0 0.155739) (0.261187 0.0670271 0 0.0811989 0 0.15763) (0.266398 0.0686775 0 0.0823732 0 0.159686) (0.272026 0.070445 0 0.0836442 0 0.161923) (0.278116 0.0723405 0 0.0850206 0 0.164361) (0.284716 0.0743763 0 0.0865119 0 0.167019) (0.29188 0.0765655 0 0.0881287 0 0.169922) (0.299669 0.0789229 0 0.0898828 0 0.173095) (0.30815 0.0814646 0 0.091787 0 0.17657) (0.317397 0.084208 0 0.0938559 0 0.18038) (0.327496 0.0871722 0 0.0961051 0 0.184563) (0.338537 0.0903781 0 0.0985521 0 0.189161) (0.350622 0.0938477 0 0.101216 0 0.194222) (0.36386 0.0976047 0 0.104117 0 0.199799) (0.378371 0.101674 0 0.107277 0 0.20595) (0.39428 0.106081 0 0.110719 0 0.212739) (0.411717 0.110853 0 0.114469 0 0.220234) (0.430815 0.116014 0 0.118549 0 0.228507) (0.4517 0.121587 0 0.122985 0 0.237632) (0.474488 0.127593 0 0.127799 0 0.247681) (0.499275 0.134045 0 0.133007 0 0.258723) (0.526119 0.140949 0 0.138624 0 0.270813) (0.555029 0.148297 0 0.14465 0 0.283992) (0.585947 0.156066 0 0.151078 0 0.29827) (0.618724 0.164214 0 0.157879 0 0.313623) (0.653107 0.172672 0 0.165008 0 0.329977) (0.68872 0.181346 0 0.172394 0 0.347203) (0.725059 0.19011 0 0.179938 0 0.365105) (0.761488 0.198811 0 0.187517 0 0.383418) (0.797258 0.207269 0 0.19498 0 0.401809) (0.831533 0.215282 0 0.202155 0 0.41989) (0.863416 0.222635 0 0.208855 0 0.437222) (0.892008 0.229102 0 0.21489 0 0.453344) (0.91546 0.234207 0 0.219889 0 0.467326) (0.933024 0.237799 0 0.223716 0 0.478731) (0.944348 0.239829 0 0.2263 0 0.48729) (0.949032 0.240218 0 0.227542 0 0.492694) (0.947012 0.238966 0 0.227396 0 0.494791) (0.939175 0.236312 0 0.225986 0 0.49391) (0.926506 0.232508 0 0.223462 0 0.490453) (0.910031 0.227801 0 0.219997 0 0.484863) (0.890599 0.222391 0 0.215733 0 0.477529) (0.869273 0.216521 0 0.210905 0 0.468932) (0.845957 0.210059 0 0.205373 0 0.459106) (0.824133 0.20378 0 0.200004 0 0.449452) (0.801799 0.197275 0 0.19326 0 0.439579) (0.473782 0.115557 0 0.103571 0 0.270085) (0.478347 0.116232 0 0.104405 0 0.27269) (0.482768 0.116898 0 0.105237 0 0.275248) (0.487043 0.117554 0 0.106062 0 0.277755) (0.491169 0.118197 0 0.10688 0 0.280208) (0.495143 0.118824 0 0.107687 0 0.282603) (0.498965 0.119435 0 0.10848 0 0.284937) (0.502629 0.120026 0 0.109258 0 0.287206) (0.506136 0.120597 0 0.110018 0 0.289407) (0.509482 0.121145 0 0.110758 0 0.291538) (0.512664 0.121669 0 0.111476 0 0.293594) (0.515682 0.122166 0 0.11217 0 0.295573) (0.518533 0.122636 0 0.112838 0 0.297472) (0.521214 0.123077 0 0.113479 0 0.299288) (0.523725 0.123488 0 0.11409 0 0.301019) (0.526064 0.123867 0 0.114671 0 0.302661) (0.528228 0.124214 0 0.115221 0 0.304212) (0.530216 0.124526 0 0.115737 0 0.305669) (0.532027 0.124804 0 0.116219 0 0.307031) (0.53366 0.125046 0 0.116665 0 0.308295) (0.535112 0.125251 0 0.117074 0 0.309459) (0.536382 0.125418 0 0.117446 0 0.31052) (0.537469 0.125546 0 0.11778 0 0.311478) (0.538371 0.125635 0 0.118074 0 0.312329) (0.539087 0.125683 0 0.118327 0 0.313073) (0.539615 0.12569 0 0.11854 0 0.313707) (0.539954 0.125655 0 0.11871 0 0.314229) (0.540102 0.125577 0 0.118838 0 0.314639) (0.540056 0.125455 0 0.118922 0 0.314933) (0.539815 0.125288 0 0.118962 0 0.315111) (0.539377 0.125075 0 0.118956 0 0.31517) (0.538738 0.124816 0 0.118905 0 0.31511) (0.537897 0.124509 0 0.118808 0 0.314927) (0.53685 0.124154 0 0.118663 0 0.31462) (0.535594 0.123748 0 0.118469 0 0.314186) (0.534125 0.123292 0 0.118227 0 0.313625) (0.53244 0.122783 0 0.117934 0 0.312932) (0.530533 0.122222 0 0.117591 0 0.312107) (0.528401 0.121605 0 0.117195 0 0.311145) (0.526038 0.120933 0 0.116747 0 0.310044) (0.523439 0.120203 0 0.116244 0 0.308802) (0.520599 0.119415 0 0.115687 0 0.307415) (0.517512 0.118567 0 0.115073 0 0.30588) (0.51417 0.117657 0 0.114402 0 0.304194) (0.510569 0.116685 0 0.113672 0 0.302352) (0.506701 0.115648 0 0.112882 0 0.300351) (0.502559 0.114545 0 0.112031 0 0.298187) (0.498137 0.113374 0 0.111117 0 0.295857) (0.493428 0.112135 0 0.11014 0 0.293356) (0.488424 0.110826 0 0.109098 0 0.29068) (0.483119 0.109446 0 0.107989 0 0.287825) (0.477508 0.107994 0 0.106814 0 0.284788) (0.471583 0.106468 0 0.10557 0 0.281565) (0.465339 0.104869 0 0.104257 0 0.278153) (0.458774 0.103195 0 0.102874 0 0.274548) (0.451882 0.101447 0 0.101422 0 0.270749) (0.444662 0.0996243 0 0.0998992 0 0.266753) (0.437114 0.0977284 0 0.0983067 0 0.26256) (0.42924 0.0957602 0 0.0966453 0 0.25817) (0.421044 0.0937219 0 0.0949164 0 0.253585) (0.412535 0.0916162 0 0.093122 0 0.248808) (0.403722 0.0894468 0 0.0912653 0 0.243843) (0.394623 0.0872187 0 0.0893501 0 0.2387) (0.385257 0.0849379 0 0.0873817 0 0.233388) (0.375654 0.0826122 0 0.0853666 0 0.227922) (0.365846 0.0802507 0 0.0833132 0 0.22232) (0.355877 0.0778649 0 0.0812317 0 0.216604) (0.345801 0.075468 0 0.0791344 0 0.210803) (0.335681 0.073076 0 0.0770361 0 0.204953) (0.325594 0.0707072 0 0.0749546 0 0.199095) (0.315628 0.0683825 0 0.0729104 0 0.19328) (0.305889 0.0661259 0 0.0709275 0 0.187567) (0.296496 0.0639637 0 0.0690329 0 0.182024) (0.287581 0.0619249 0 0.0672573 0 0.176728) (0.279292 0.0600402 0 0.065634 0 0.171768) (0.271782 0.0583417 0 0.0641986 0 0.167236) (0.265214 0.0568615 0 0.0629881 0 0.163232) (0.259745 0.0556301 0 0.0620391 0 0.159858) (0.25552 0.0546753 0 0.0613858 0 0.157209) (0.252662 0.0540192 0 0.0610573 0 0.155372) (0.251256 0.053677 0 0.0610745 0 0.154415) (0.251337 0.0536543 0 0.0614473 0 0.154379) (0.252884 0.053946 0 0.0621716 0 0.15527) (0.255809 0.0545354 0 0.0632276 0 0.157054) (0.259961 0.0553947 0 0.0645794 0 0.159658) (0.265134 0.0564849 0 0.0661757 0 0.162966) (0.27112 0.0577673 0 0.0679657 0 0.166856) (0.279396 0.0595848 0 0.0703117 0 0.172076) (0.289099 0.0617144 0 0.0730067 0 0.178216) (0.299146 0.0639195 0 0.0757814 0 0.18469) (0.308654 0.0660225 0 0.0784073 0 0.190968) (0.316955 0.0678927 0 0.0807054 0 0.196616) (0.323665 0.0694537 0 0.0825648 0 0.201351) (0.328637 0.0706726 0 0.0839349 0 0.205031) (0.331918 0.0715518 0 0.0848193 0 0.207638) (0.333582 0.0720962 0 0.08523 0 0.209191) (0.334048 0.0724013 0 0.0852882 0 0.20991) (0.333004 0.0723194 0 0.0848706 0 0.209635) (0.333004 0.0726629 0 0.0847682 0 0.209767) (0.332588 0.0727412 0 0.0843456 0 0.209521) (0.00379602 0.000769532 0 0.0101719 0 0.00993956) (0.00907906 -0.000385467 0 0.0128867 0 0.0160268) (0.0127917 -0.00163244 0 0.0144645 0 0.0192142) (0.0162677 -0.00237928 0 0.0142797 0 0.0210396) (0.0189652 -0.00282183 0 0.0135476 0 0.0220523) (0.0210236 -0.00307005 0 0.0125891 0 0.0225362) (0.0225996 -0.00318792 0 0.0115709 0 0.0226694) (0.0237988 -0.00321777 0 0.0106067 0 0.0225723) (0.0246418 -0.00321609 0 0.00972163 0 0.0222796) (0.025211 -0.00321392 0 0.00891194 0 0.0218351) (0.0258685 -0.0031686 0 0.00821811 0 0.0214792) (0.026615 -0.00297287 0 0.00763217 0 0.0212496) (0.0272292 -0.0025871 0 0.00713962 0 0.0210424) (0.0277707 -0.00212143 0 0.00675556 0 0.0208806) (0.0283212 -0.00164385 0 0.00649191 0 0.0208077) (0.0289756 -0.00120618 0 0.00635894 0 0.0208796) (0.0298324 -0.00084892 0 0.00636485 0 0.0211579) (0.0309803 -0.000596153 0 0.0065154 0 0.0217023) (0.0324482 -0.000442848 0 0.00681014 0 0.0225457) (0.0342684 -0.000356691 0 0.00725886 0 0.0237457) (0.0365668 -0.000310993 0 0.00793755 0 0.0254837) (0.0399746 -0.000325391 0 0.0090696 0 0.0283878) (0.046966 -3.91963e-06 0 0.0111544 0 0.0343334) (0.0577709 0.000928329 0 0.0138425 0 0.042863) (0.0715453 0.00246806 0 0.0169851 0 0.0531396) (0.0869811 0.00450837 0 0.0204041 0 0.0641974) (0.102874 0.00690678 0 0.0239559 0 0.075289) (0.118454 0.00951686 0 0.0275554 0 0.0860084) (0.133367 0.0122023 0 0.0311605 0 0.0962107) (0.147528 0.014855 0 0.034747 0 0.105894) (0.160986 0.0173995 0 0.0382965 0 0.115118) (0.173838 0.0197868 0 0.0417928 0 0.123959) (0.186175 0.021987 0 0.0452196 0 0.132479) (0.198018 0.0239977 0 0.0485518 0 0.140691) (0.209362 0.0258321 0 0.0517685 0 0.14859) (0.2202 0.0275111 0 0.0548573 0 0.156173) (0.23054 0.0290544 0 0.0578175 0 0.163452) (0.240427 0.0304685 0 0.0606603 0 0.170462) (0.249871 0.0317613 0 0.0633949 0 0.17722) (0.25887 0.0329354 0 0.0660289 0 0.183731) (0.267408 0.0339834 0 0.0685689 0 0.190001) (0.275452 0.0348832 0 0.0710197 0 0.196027) (0.282953 0.0355868 0 0.0733843 0 0.201804) (0.28983 0.0359836 0 0.0756664 0 0.207324) (0.295972 0.0357944 0 0.0778743 0 0.212579) (0.301636 0.0350874 0 0.08007 0 0.217681) (0.307147 0.0343344 0 0.0823121 0 0.222719) (0.31254 0.0335176 0 0.0846183 0 0.227722) (0.317825 0.0326037 0 0.0869937 0 0.232701) (0.322968 0.0315695 0 0.0894314 0 0.237639) (0.32794 0.0303978 0 0.0919202 0 0.242515) (0.33272 0.0290749 0 0.0944517 0 0.247317) (0.337298 0.027591 0 0.09702 0 0.252032) (0.341668 0.0259388 0 0.0996211 0 0.256654) (0.345829 0.0241123 0 0.102252 0 0.261175) (0.349782 0.0221059 0 0.104908 0 0.265592) (0.353532 0.019915 0 0.107589 0 0.2699) (0.357088 0.017535 0 0.11029 0 0.274095) (0.360458 0.0149622 0 0.113008 0 0.278176) (0.363656 0.0121929 0 0.115739 0 0.28214) (0.366695 0.009224 0 0.118479 0 0.285987) (0.369592 0.00605275 0 0.121221 0 0.289716) (0.372367 0.00267841 0 0.123957 0 0.293323) (0.37504 -0.00089724 0 0.126675 0 0.296807) (0.377632 -0.00467105 0 0.129361 0 0.300168) (0.380171 -0.0086404 0 0.132001 0 0.303405) (0.382688 -0.0128077 0 0.134578 0 0.306525) (0.385234 -0.0171965 0 0.137077 0 0.309542) (0.387924 -0.021902 0 0.139472 0 0.312504) (0.391079 -0.027239 0 0.1417 0 0.31554) (0.395904 -0.0342348 0 0.143552 0 0.319122) (0.403377 -0.0426447 0 0.145039 0 0.323645) (0.410301 -0.0490422 0 0.146771 0 0.327851) (0.416606 -0.054213 0 0.148475 0 0.331659) (0.422567 -0.0586905 0 0.150084 0 0.335209) (0.428334 -0.0627596 0 0.15159 0 0.338582) (0.433858 -0.0666321 0 0.152976 0 0.341738) (0.438374 -0.0703681 0 0.154258 0 0.344241) (0.439174 -0.0737822 0 0.156192 0 0.344823) (0.431812 -0.0787262 0 0.162887 0 0.34219) (0.434697 -0.0832489 0 0.163486 0 0.342867) (0.440506 -0.0865324 0 0.161952 0 0.344754) (0.445688 -0.0871884 0 0.15919 0 0.346129) (0.448957 -0.0887395 0 0.158046 0 0.346813) (0.451216 -0.0902274 0 0.157164 0 0.346962) (0.452612 -0.0915595 0 0.156243 0 0.346583) (0.453267 -0.0926912 0 0.15517 0 0.345714) (0.453266 -0.0936062 0 0.153905 0 0.344399) (0.452677 -0.0943088 0 0.152446 0 0.342678) (0.451566 -0.0948108 0 0.150805 0 0.340592) (0.449987 -0.0951298 0 0.149003 0 0.338185) (0.448002 -0.0952819 0 0.147064 0 0.335497) (0.445658 -0.0952956 0 0.145019 0 0.332571) (0.443043 -0.0951808 0 0.142901 0 0.329466) (0.440193 -0.0950141 0 0.140764 0 0.32623) (0.43738 -0.0947454 0 0.138668 0 0.323027) (0.434508 -0.0947281 0 0.136747 0 0.319898) (0.433121 -0.0945009 0 0.135281 0 0.317699) (0.431474 -0.095664 0 0.134214 0 0.315806) (0.441863 -0.098206 0 0.137686 0 0.32162) (0.00779468 0.00272338 0 0.0172243 0 0.0178507) (0.0173951 0.000194929 0 0.0221092 0 0.0301753) (0.0282321 -8.39859e-05 0 0.0240761 0 0.0374277) (0.0377949 0.000137933 0 0.0232015 0 0.0412244) (0.0448509 0.000374614 0 0.0223286 0 0.043906) (0.0507879 0.000585878 0 0.0212005 0 0.0459467) (0.0559225 0.000844622 0 0.0199939 0 0.0476139) (0.060458 0.00111634 0 0.0188709 0 0.0490404) (0.0645224 0.0012866 0 0.0178651 0 0.0502858) (0.0683467 0.00133746 0 0.0169735 0 0.0514478) (0.0722484 0.00131522 0 0.0162022 0 0.0526664) (0.0766314 0.00130849 0 0.0155696 0 0.0541418) (0.0818142 0.00136594 0 0.0151189 0 0.0560538) (0.0880795 0.00146445 0 0.0149006 0 0.0585679) (0.0957409 0.00151523 0 0.0149628 0 0.0618649) (0.105154 0.00137917 0 0.015348 0 0.0661462) (0.116702 0.000890239 0 0.0160965 0 0.0716263) (0.130768 -0.000136622 0 0.0172583 0 0.0785248) (0.146986 -0.00177517 0 0.0188508 0 0.0866998) (0.164786 -0.0038411 0 0.0208967 0 0.0959543) (0.182928 -0.00575078 0 0.0233461 0 0.105832) (0.198812 -0.00658882 0 0.0259942 0 0.115338) (0.208907 -0.00546061 0 0.0286532 0 0.123083) (0.212684 -0.0024111 0 0.0314902 0 0.128913) (0.2138 0.00114006 0 0.0348078 0 0.134459) (0.215934 0.00356043 0 0.0388268 0 0.141185) (0.221298 0.00396414 0 0.0435341 0 0.149801) (0.230762 0.00214111 0 0.048798 0 0.16045) (0.244589 -0.00174807 0 0.0544975 0 0.173087) (0.262735 -0.0073769 0 0.0605357 0 0.187605) (0.28493 -0.0143526 0 0.0668256 0 0.203852) (0.310724 -0.0222733 0 0.0732828 0 0.221626) (0.339414 -0.0307421 0 0.0798045 0 0.240605) (0.370025 -0.0393976 0 0.0862974 0 0.260328) (0.40166 -0.0479552 0 0.092696 0 0.280391) (0.433625 -0.0562172 0 0.0989636 0 0.30049) (0.465471 -0.0640773 0 0.105088 0 0.320437) (0.496959 -0.0715158 0 0.111066 0 0.340138) (0.527914 -0.0785642 0 0.116913 0 0.359517) (0.558201 -0.0852882 0 0.122663 0 0.378515) (0.587692 -0.091771 0 0.128365 0 0.39707) (0.61623 -0.0980992 0 0.134081 0 0.415108) (0.643611 -0.104348 0 0.139882 0 0.432526) (0.669596 -0.110562 0 0.145832 0 0.449204) (0.69388 -0.116716 0 0.151973 0 0.464981) (0.716372 -0.12278 0 0.158319 0 0.479821) (0.737622 -0.128862 0 0.164895 0 0.494019) (0.758129 -0.13508 0 0.171709 0 0.50783) (0.778135 -0.14152 0 0.178786 0 0.521381) (0.797716 -0.148192 0 0.186101 0 0.534704) (0.816854 -0.155052 0 0.193597 0 0.547775) (0.835552 -0.162057 0 0.201235 0 0.560583) (0.853798 -0.169174 0 0.208984 0 0.573114) (0.871578 -0.176373 0 0.21682 0 0.585353) (0.888869 -0.183631 0 0.224719 0 0.597283) (0.905648 -0.190926 0 0.232661 0 0.608884) (0.921888 -0.19824 0 0.240626 0 0.620138) (0.937564 -0.205554 0 0.24859 0 0.631024) (0.952649 -0.212849 0 0.256532 0 0.641524) (0.967117 -0.220106 0 0.264426 0 0.651617) (0.980942 -0.227306 0 0.272248 0 0.661283) (0.9941 -0.234432 0 0.279969 0 0.670502) (1.00657 -0.241465 0 0.287557 0 0.679258) (1.01834 -0.24838 0 0.29497 0 0.687532) (1.02941 -0.255151 0 0.302164 0 0.695312) (1.03976 -0.261748 0 0.30909 0 0.70259) (1.04942 -0.268145 0 0.315701 0 0.709366) (1.05842 -0.274322 0 0.321944 0 0.715645) (1.0668 -0.280289 0 0.327782 0 0.721446) (1.07464 -0.286103 0 0.333206 0 0.726789) (1.08183 -0.291757 0 0.338244 0 0.731629) (1.0879 -0.296937 0 0.342917 0 0.735755) (1.09251 -0.301268 0 0.347115 0 0.739002) (1.09588 -0.304771 0 0.35063 0 0.74145) (1.09816 -0.307481 0 0.353351 0 0.743159) (1.09933 -0.309483 0 0.355276 0 0.744106) (1.099 -0.311027 0 0.356611 0 0.74409) (1.09613 -0.312583 0 0.357916 0 0.742618) (1.08981 -0.314296 0 0.359608 0 0.739303) (1.08175 -0.315305 0 0.360481 0 0.734918) (1.07648 -0.315107 0 0.359023 0 0.731515) (1.07285 -0.314254 0 0.357136 0 0.72871) (1.06906 -0.313266 0 0.355555 0 0.725684) (1.0637 -0.312118 0 0.354268 0 0.721807) (1.05669 -0.310462 0 0.352667 0 0.71701) (1.04832 -0.308188 0 0.350465 0 0.711406) (1.03881 -0.305288 0 0.347568 0 0.705098) (1.02831 -0.301808 0 0.343982 0 0.698169) (1.01696 -0.297809 0 0.33976 0 0.690693) (1.00488 -0.293355 0 0.334967 0 0.682734) (0.992139 -0.288503 0 0.329679 0 0.674344) (0.978815 -0.2833 0 0.323968 0 0.665573) (0.96493 -0.277785 0 0.317917 0 0.65645) (0.950562 -0.271973 0 0.31159 0 0.647029) (0.935544 -0.265843 0 0.305093 0 0.637262) (0.920215 -0.259296 0 0.29844 0 0.627328) (0.903554 -0.252032 0 0.291801 0 0.616844) (0.888146 -0.243746 0 0.285102 0 0.607027) (0.868704 -0.232423 0 0.277938 0 0.595738) (0.861757 -0.224676 0 0.274764 0 0.590841) (0.0139495 0.00335067 0 0.0206173 0 0.0248838) (0.0305796 -0.00118024 0 0.0282017 0 0.0424304) (0.0453118 -0.00133508 0 0.0310923 0 0.0510879) (0.0565574 -0.00154787 0 0.0317369 0 0.0563109) (0.0663408 -0.00180995 0 0.0311562 0 0.0600637) (0.0756804 -0.00203884 0 0.0294856 0 0.0629463) (0.083498 -0.00209563 0 0.0282272 0 0.0655811) (0.090545 -0.00204502 0 0.0272539 0 0.0681166) (0.0971195 -0.00213519 0 0.0265535 0 0.0706064) (0.103534 -0.00245088 0 0.0261415 0 0.0731544) (0.109927 -0.00290024 0 0.025947 0 0.0757755) (0.116692 -0.00336372 0 0.0259407 0 0.0786353) (0.124325 -0.0038218 0 0.026133 0 0.0819685) (0.133368 -0.00439338 0 0.0265667 0 0.0860395) (0.144351 -0.00527839 0 0.0273132 0 0.0911163) (0.157713 -0.00669392 0 0.028463 0 0.0974381) (0.173614 -0.00878016 0 0.0301027 0 0.105135) (0.19164 -0.0114443 0 0.0322603 0 0.114101) (0.210472 -0.0142088 0 0.0348329 0 0.123866) (0.227965 -0.0162423 0 0.0375674 0 0.133632) (0.241851 -0.0167025 0 0.0401998 0 0.142578) (0.250728 -0.0152601 0 0.0426945 0 0.150247) (0.254961 -0.0123816 0 0.0453734 0 0.156877) (0.257134 -0.00921352 0 0.0487808 0 0.163535) (0.261043 -0.00716571 0 0.0533344 0 0.17171) (0.270043 -0.00737224 0 0.0591058 0 0.182638) (0.286337 -0.0104107 0 0.0658659 0 0.197051) (0.310875 -0.0163239 0 0.0732925 0 0.215184) (0.3434 -0.0247789 0 0.0811437 0 0.236815) (0.382511 -0.035208 0 0.0893159 0 0.261271) (0.426086 -0.0469477 0 0.0978156 0 0.287619) (0.471703 -0.0593252 0 0.10665 0 0.314803) (0.517026 -0.0717493 0 0.115787 0 0.34178) (0.560383 -0.083824 0 0.125187 0 0.367795) (0.600956 -0.0953625 0 0.13482 0 0.392478) (0.638645 -0.106337 0 0.144652 0 0.415777) (0.67378 -0.116811 0 0.154644 0 0.437835) (0.706854 -0.126884 0 0.16475 0 0.458865) (0.738364 -0.136662 0 0.174929 0 0.479089) (0.768737 -0.146244 0 0.185152 0 0.498696) (0.798294 -0.15572 0 0.195401 0 0.517833) (0.827269 -0.16516 0 0.20567 0 0.536603) (0.855818 -0.174621 0 0.215965 0 0.55508) (0.884073 -0.184158 0 0.226308 0 0.573325) (0.912189 -0.193851 0 0.236746 0 0.59141) (0.940331 -0.203803 0 0.247343 0 0.609421) (0.968617 -0.214065 0 0.258126 0 0.627418) (0.997126 -0.224632 0 0.26908 0 0.645436) (1.02561 -0.23537 0 0.280088 0 0.663343) (1.05387 -0.246209 0 0.291109 0 0.681044) (1.0818 -0.257126 0 0.302159 0 0.698486) (1.10928 -0.268102 0 0.313244 0 0.715622) (1.13622 -0.279113 0 0.32436 0 0.732408) (1.16256 -0.290135 0 0.335493 0 0.748805) (1.18823 -0.301142 0 0.346626 0 0.764778) (1.21317 -0.312109 0 0.357735 0 0.780294) (1.23733 -0.323008 0 0.368796 0 0.795322) (1.26066 -0.333815 0 0.37978 0 0.80983) (1.28312 -0.3445 0 0.390657 0 0.823789) (1.30464 -0.355037 0 0.401394 0 0.837168) (1.3252 -0.365396 0 0.411957 0 0.849936) (1.34473 -0.375554 0 0.422314 0 0.862063) (1.36317 -0.385477 0 0.432421 0 0.873509) (1.38048 -0.39513 0 0.442229 0 0.884242) (1.39661 -0.404471 0 0.451685 0 0.894234) (1.41154 -0.413461 0 0.460736 0 0.903466) (1.42526 -0.422055 0 0.469324 0 0.911928) (1.43778 -0.4302 0 0.477381 0 0.919614) (1.44911 -0.43784 0 0.484839 0 0.926525) (1.45923 -0.444905 0 0.491633 0 0.932631) (1.468 -0.451344 0 0.497762 0 0.93787) (1.4752 -0.457125 0 0.503288 0 0.942135) (1.4806 -0.462144 0 0.508162 0 0.945319) (1.4842 -0.466282 0 0.512201 0 0.947421) (1.48612 -0.469518 0 0.5153 0 0.948477) (1.4864 -0.471972 0 0.517466 0 0.948486) (1.48487 -0.473929 0 0.518906 0 0.947381) (1.48108 -0.475622 0 0.519915 0 0.944966) (1.47428 -0.476691 0 0.520499 0 0.94097) (1.46497 -0.47621 0 0.519987 0 0.935637) (1.45519 -0.473916 0 0.517662 0 0.929859) (1.4458 -0.470815 0 0.514282 0 0.924015) (1.436 -0.467455 0 0.51042 0 0.917771) (1.42493 -0.463745 0 0.506139 0 0.910766) (1.41232 -0.459422 0 0.501264 0 0.902888) (1.39824 -0.45439 0 0.495694 0 0.894175) (1.38283 -0.448642 0 0.489402 0 0.8847) (1.36623 -0.442221 0 0.482408 0 0.874538) (1.34857 -0.435181 0 0.474762 0 0.863761) (1.32996 -0.427582 0 0.466528 0 0.852433) (1.31051 -0.419483 0 0.457781 0 0.840611) (1.29027 -0.410929 0 0.448592 0 0.828342) (1.2693 -0.401957 0 0.439037 0 0.815659) (1.24762 -0.392547 0 0.429161 0 0.802592) (1.22516 -0.382667 0 0.419035 0 0.789121) (1.20204 -0.372063 0 0.408566 0 0.77532) (1.17781 -0.360492 0 0.397793 0 0.761035) (1.1543 -0.347322 0 0.386298 0 0.747088) (1.1299 -0.332133 0 0.374032 0 0.733018) (1.11888 -0.321698 0 0.364871 0 0.725565) (0.0218225 0.00281384 0 0.0242331 0 0.0323463) (0.0454951 -0.00299681 0 0.0337215 0 0.0528717) (0.0639625 -0.00392178 0 0.0370671 0 0.0623877) (0.0776711 -0.00452403 0 0.0385835 0 0.0686066) (0.0889363 -0.00511057 0 0.0391356 0 0.0734851) (0.0991701 -0.00578779 0 0.0389223 0 0.0776609) (0.109047 -0.00646501 0 0.0379042 0 0.0813937) (0.11784 -0.00706316 0 0.0374139 0 0.0849998) (0.126128 -0.00769284 0 0.0372069 0 0.0885566) (0.134016 -0.00847228 0 0.0372857 0 0.0920623) (0.141809 -0.00948227 0 0.0376891 0 0.0956466) (0.149973 -0.0107502 0 0.0384151 0 0.0995135) (0.159064 -0.0123312 0 0.0394543 0 0.103911) (0.169596 -0.0143222 0 0.0408181 0 0.109077) (0.181906 -0.0168126 0 0.0425398 0 0.115187) (0.195994 -0.0198001 0 0.0446509 0 0.122291) (0.211359 -0.0230855 0 0.0471342 0 0.130245) (0.226913 -0.0262089 0 0.04988 0 0.138683) (0.241163 -0.0285151 0 0.0526973 0 0.147095) (0.252714 -0.0293974 0 0.0554262 0 0.155024) (0.260941 -0.0286345 0 0.058109 0 0.162321) (0.266486 -0.0266275 0 0.0610745 0 0.169321) (0.271336 -0.0243409 0 0.0648155 0 0.176841) (0.278451 -0.0229977 0 0.0697287 0 0.186032) (0.291035 -0.0237548 0 0.0759299 0 0.19811) (0.311752 -0.0274401 0 0.083256 0 0.214057) (0.34199 -0.0343715 0 0.0914182 0 0.234301) (0.381317 -0.0442906 0 0.100191 0 0.258515) (0.427821 -0.0565327 0 0.10953 0 0.285826) (0.478797 -0.0702713 0 0.119498 0 0.315082) (0.531446 -0.08476 0 0.130149 0 0.345092) (0.583489 -0.099494 0 0.141484 0 0.374861) (0.633621 -0.114259 0 0.153489 0 0.4038) (0.681454 -0.129026 0 0.166135 0 0.431712) (0.727166 -0.143819 0 0.179358 0 0.458654) (0.771134 -0.158627 0 0.193059 0 0.484774) (0.813705 -0.173396 0 0.207115 0 0.510217) (0.855116 -0.188052 0 0.221408 0 0.535086) (0.895512 -0.202538 0 0.235841 0 0.559445) (0.935003 -0.216831 0 0.250351 0 0.583345) (0.97371 -0.230948 0 0.264901 0 0.606837) (1.01179 -0.24493 0 0.279477 0 0.629986) (1.04942 -0.258826 0 0.294069 0 0.652866) (1.08681 -0.272683 0 0.308667 0 0.67556) (1.12414 -0.286543 0 0.323262 0 0.698137) (1.1615 -0.300443 0 0.337854 0 0.720621) (1.19873 -0.314375 0 0.352431 0 0.742946) (1.23541 -0.328208 0 0.366878 0 0.7649) (1.27147 -0.341932 0 0.381195 0 0.786446) (1.30688 -0.355557 0 0.395395 0 0.807579) (1.34163 -0.369102 0 0.409502 0 0.828283) (1.37567 -0.382579 0 0.42353 0 0.848533) (1.40894 -0.395983 0 0.437474 0 0.868294) (1.44136 -0.409296 0 0.451319 0 0.887529) (1.47288 -0.422492 0 0.465045 0 0.906201) (1.50342 -0.435544 0 0.478625 0 0.924271) (1.53291 -0.448422 0 0.492031 0 0.941701) (1.56129 -0.461094 0 0.505229 0 0.958451) (1.58848 -0.473526 0 0.518183 0 0.974483) (1.61442 -0.485683 0 0.530855 0 0.989758) (1.63904 -0.497531 0 0.543206 0 1.00424) (1.66227 -0.509037 0 0.555198 0 1.01789) (1.68399 -0.520142 0 0.566763 0 1.03062) (1.70411 -0.530794 0 0.577846 0 1.04241) (1.72257 -0.540947 0 0.588392 0 1.0532) (1.73931 -0.550552 0 0.598348 0 1.06297) (1.75431 -0.559551 0 0.60765 0 1.0717) (1.76754 -0.567881 0 0.616232 0 1.07938) (1.779 -0.575489 0 0.624033 0 1.08599) (1.78861 -0.582264 0 0.630933 0 1.09147) (1.79634 -0.588157 0 0.636875 0 1.0958) (1.8021 -0.593167 0 0.641866 0 1.09894) (1.80578 -0.59725 0 0.645897 0 1.10085) (1.80733 -0.600351 0 0.648907 0 1.10151) (1.80687 -0.602494 0 0.650859 0 1.10097) (1.80448 -0.603807 0 0.651819 0 1.09926) (1.80007 -0.604481 0 0.651957 0 1.09636) (1.79326 -0.604588 0 0.651448 0 1.09214) (1.78356 -0.603854 0 0.650239 0 1.08643) (1.77107 -0.601606 0 0.647762 0 1.0793) (1.75699 -0.597657 0 0.643517 0 1.07121) (1.74233 -0.592632 0 0.637864 0 1.06259) (1.72694 -0.586956 0 0.631274 0 1.05341) (1.71031 -0.580692 0 0.623978 0 1.04349) (1.69219 -0.573757 0 0.615985 0 1.03274) (1.67259 -0.566107 0 0.60728 0 1.02119) (1.65157 -0.557739 0 0.597866 0 1.00889) (1.62926 -0.548682 0 0.587774 0 0.995882) (1.60578 -0.538983 0 0.577057 0 0.982249) (1.58124 -0.528697 0 0.56578 0 0.968049) (1.55574 -0.517882 0 0.554019 0 0.95334) (1.52935 -0.506579 0 0.541842 0 0.938167) (1.50214 -0.49482 0 0.529314 0 0.922569) (1.47413 -0.482571 0 0.516459 0 0.906566) (1.44532 -0.469783 0 0.503302 0 0.890164) (1.41579 -0.456165 0 0.489693 0 0.873395) (1.38558 -0.441577 0 0.475584 0 0.856306) (1.35617 -0.425441 0 0.460527 0 0.839541) (1.32853 -0.408557 0 0.44494 0 0.823771) (1.31371 -0.396618 0 0.432763 0 0.814344) (0.0295793 0.00126444 0 0.027747 0 0.0388359) (0.0603995 -0.00496941 0 0.0385866 0 0.061624) (0.0825115 -0.00648814 0 0.0429318 0 0.0721647) (0.0982157 -0.00764987 0 0.045678 0 0.0793648) (0.110509 -0.00880961 0 0.0476726 0 0.0852487) (0.121244 -0.010122 0 0.0491903 0 0.0904913) (0.131004 -0.0115724 0 0.0502804 0 0.0953424) (0.140427 -0.013096 0 0.0508809 0 0.0999141) (0.150151 -0.0147205 0 0.050779 0 0.104305) (0.159288 -0.0165516 0 0.0513617 0 0.10869) (0.168321 -0.0187186 0 0.0525169 0 0.113225) (0.177637 -0.0213107 0 0.0542034 0 0.11806) (0.187601 -0.0243844 0 0.0563806 0 0.123351) (0.198454 -0.0279579 0 0.0590155 0 0.12921) (0.210207 -0.0319628 0 0.0620648 0 0.135667) (0.222561 -0.036186 0 0.0654497 0 0.14263) (0.234892 -0.0402404 0 0.0690351 0 0.149892) (0.246381 -0.0436121 0 0.0726431 0 0.157181) (0.256293 -0.0458089 0 0.0761263 0 0.164276) (0.264355 -0.0465816 0 0.0794795 0 0.171151) (0.27109 -0.046114 0 0.0829146 0 0.178092) (0.27796 -0.0450731 0 0.0868148 0 0.185735) (0.287223 -0.0444741 0 0.091578 0 0.195003) (0.301583 -0.0454395 0 0.0974627 0 0.206971) (0.323621 -0.0489614 0 0.104542 0 0.222636) (0.354911 -0.0556173 0 0.112748 0 0.242533) (0.395331 -0.0653746 0 0.121986 0 0.266491) (0.443196 -0.0776758 0 0.132244 0 0.293737) (0.495995 -0.0917477 0 0.143566 0 0.323212) (0.55115 -0.106905 0 0.155976 0 0.353828) (0.606733 -0.12275 0 0.16946 0 0.384751) (0.661728 -0.139157 0 0.183981 0 0.415519) (0.71584 -0.156114 0 0.199473 0 0.445971) (0.769111 -0.173575 0 0.215815 0 0.476096) (0.821618 -0.191404 0 0.232838 0 0.505906) (0.873328 -0.209397 0 0.250353 0 0.535378) (0.924116 -0.227358 0 0.268181 0 0.564452) (0.973838 -0.245141 0 0.286186 0 0.593064) (1.02241 -0.262679 0 0.304282 0 0.621171) (1.06984 -0.279977 0 0.322425 0 0.648769) (1.11626 -0.297079 0 0.340601 0 0.675897) (1.16184 -0.314035 0 0.358795 0 0.702616) (1.2068 -0.330882 0 0.376983 0 0.728993) (1.25132 -0.34765 0 0.39514 0 0.755088) (1.29554 -0.364346 0 0.413219 0 0.780938) (1.33936 -0.380888 0 0.431086 0 0.806469) (1.38257 -0.397181 0 0.448613 0 0.831563) (1.42512 -0.413249 0 0.465834 0 0.8562) (1.46697 -0.429134 0 0.482798 0 0.880364) (1.50808 -0.444859 0 0.499539 0 0.90404) (1.54842 -0.460434 0 0.516075 0 0.927204) (1.58785 -0.475843 0 0.532392 0 0.949793) (1.62627 -0.491065 0 0.548474 0 0.971753) (1.6636 -0.506077 0 0.564302 0 0.993043) (1.69976 -0.520847 0 0.579852 0 1.01362) (1.73466 -0.535345 0 0.595093 0 1.03343) (1.7682 -0.549537 0 0.609993 0 1.05244) (1.80031 -0.563386 0 0.624514 0 1.0706) (1.83089 -0.576854 0 0.638616 0 1.08786) (1.85986 -0.589903 0 0.652259 0 1.10417) (1.88717 -0.602505 0 0.665408 0 1.11951) (1.91271 -0.614619 0 0.67802 0 1.13383) (1.93622 -0.626114 0 0.689957 0 1.14696) (1.95766 -0.636969 0 0.701191 0 1.1589) (1.97698 -0.647139 0 0.711676 0 1.16962) (1.99412 -0.65657 0 0.721349 0 1.17909) (2.00904 -0.665197 0 0.730142 0 1.18727) (2.02168 -0.672949 0 0.73798 0 1.19416) (2.03204 -0.679751 0 0.744781 0 1.19971) (2.04008 -0.68554 0 0.750472 0 1.20392) (2.04582 -0.690297 0 0.755023 0 1.20679) (2.04925 -0.694035 0 0.758441 0 1.2083) (2.05034 -0.696747 0 0.76072 0 1.20847) (2.04907 -0.698408 0 0.761828 0 1.20728) (2.04555 -0.699047 0 0.761764 0 1.20479) (2.03984 -0.698764 0 0.760599 0 1.20103) (2.03188 -0.69767 0 0.758457 0 1.19602) (2.02143 -0.695778 0 0.755432 0 1.18968) (2.00815 -0.69286 0 0.751433 0 1.18191) (1.99204 -0.68851 0 0.746127 0 1.17272) (1.97384 -0.682632 0 0.739245 0 1.16239) (1.95435 -0.675618 0 0.731021 0 1.15125) (1.93373 -0.667793 0 0.721779 0 1.13941) (1.91181 -0.659268 0 0.711713 0 1.12683) (1.88847 -0.650037 0 0.700889 0 1.1135) (1.86371 -0.640098 0 0.689349 0 1.09943) (1.83759 -0.629469 0 0.677138 0 1.08467) (1.81021 -0.618188 0 0.664311 0 1.06927) (1.78169 -0.606306 0 0.650933 0 1.0533) (1.75214 -0.593881 0 0.637077 0 1.03682) (1.72166 -0.580968 0 0.622815 0 1.01989) (1.69034 -0.567606 0 0.608209 0 1.00254) (1.65825 -0.553822 0 0.593314 0 0.984829) (1.62542 -0.539573 0 0.578134 0 0.966756) (1.59191 -0.524812 0 0.562666 0 0.948355) (1.55782 -0.509274 0 0.546734 0 0.929646) (1.52358 -0.492935 0 0.530294 0 0.910827) (1.49044 -0.475381 0 0.512954 0 0.892438) (1.46107 -0.45816 0 0.49564 0 0.875852) (1.44368 -0.445702 0 0.481818 0 0.865222) (0.0351161 -0.00154025 0 0.0318871 0 0.0445159) (0.0733731 -0.00727623 0 0.0438094 0 0.0693608) (0.0990494 -0.00962081 0 0.049298 0 0.08091) (0.116723 -0.0115537 0 0.0532958 0 0.089017) (0.130066 -0.0135076 0 0.0567022 0 0.0958119) (0.141401 -0.0156427 0 0.0597506 0 0.101954) (0.151458 -0.0180016 0 0.0624659 0 0.1077) (0.1611 -0.0206066 0 0.0648209 0 0.113226) (0.17091 -0.0235084 0 0.0667471 0 0.118648) (0.181426 -0.0267529 0 0.0681564 0 0.124074) (0.191553 -0.0304072 0 0.070505 0 0.12957) (0.201693 -0.0345734 0 0.0736409 0 0.135277) (0.212035 -0.0392855 0 0.077495 0 0.141283) (0.22266 -0.0444793 0 0.0819699 0 0.147626) (0.233461 -0.0499723 0 0.0869311 0 0.154271) (0.244152 -0.0554445 0 0.0921891 0 0.16111) (0.254328 -0.0604674 0 0.0975097 0 0.167996) (0.263622 -0.0645923 0 0.102658 0 0.174809) (0.271928 -0.067494 0 0.107481 0 0.18155) (0.279633 -0.0691276 0 0.111986 0 0.188432) (0.287774 -0.0698359 0 0.116381 0 0.195931) (0.298047 -0.0703484 0 0.121022 0 0.204785) (0.312626 -0.071659 0 0.126312 0 0.215903) (0.333771 -0.0748137 0 0.132602 0 0.230206) (0.363198 -0.080643 0 0.14015 0 0.248359) (0.401381 -0.0894921 0 0.149119 0 0.270493) (0.447329 -0.101129 0 0.159585 0 0.296144) (0.499063 -0.114925 0 0.171543 0 0.324462) (0.554418 -0.130189 0 0.184911 0 0.354528) (0.611692 -0.146453 0 0.199592 0 0.385608) (0.669895 -0.163536 0 0.21552 0 0.417253) (0.728591 -0.181414 0 0.232647 0 0.449252) (0.787575 -0.200063 0 0.250893 0 0.481493) (0.846602 -0.219358 0 0.270114 0 0.513856) (0.90537 -0.239104 0 0.290122 0 0.546201) (0.963552 -0.259087 0 0.310725 0 0.578378) (1.02087 -0.279132 0 0.331746 0 0.610257) (1.07717 -0.299131 0 0.353044 0 0.641748) (1.1324 -0.319032 0 0.374515 0 0.67281) (1.18664 -0.338828 0 0.396087 0 0.703444) (1.24005 -0.358535 0 0.417703 0 0.733688) (1.29279 -0.378155 0 0.439303 0 0.763578) (1.34495 -0.397663 0 0.460813 0 0.79312) (1.39651 -0.417001 0 0.482136 0 0.822271) (1.44713 -0.435989 0 0.503033 0 0.85086) (1.49666 -0.454562 0 0.523422 0 0.878807) (1.54512 -0.472734 0 0.543321 0 0.906104) (1.59253 -0.490538 0 0.56276 0 0.932757) (1.6389 -0.508011 0 0.581774 0 0.958768) (1.68423 -0.525184 0 0.600399 0 0.984135) (1.72854 -0.542093 0 0.618671 0 1.00886) (1.77151 -0.558648 0 0.636496 0 1.03278) (1.81314 -0.574863 0 0.653892 0 1.05589) (1.85336 -0.590722 0 0.670847 0 1.07816) (1.89209 -0.606197 0 0.687336 0 1.09954) (1.92923 -0.621255 0 0.703326 0 1.11998) (1.96468 -0.635858 0 0.718781 0 1.13945) (1.99834 -0.649965 0 0.733658 0 1.15787) (2.0301 -0.663534 0 0.747913 0 1.1752) (2.05986 -0.67652 0 0.761498 0 1.19139) (2.08751 -0.688874 0 0.77436 0 1.20638) (2.11294 -0.700538 0 0.786437 0 1.22011) (2.13601 -0.711449 0 0.797662 0 1.23249) (2.15663 -0.721562 0 0.807985 0 1.24351) (2.17473 -0.730822 0 0.817347 0 1.2531) (2.19024 -0.73917 0 0.825684 0 1.26125) (2.2031 -0.746542 0 0.832927 0 1.26792) (2.21329 -0.752871 0 0.839006 0 1.27309) (2.22077 -0.7581 0 0.843854 0 1.27675) (2.22559 -0.762189 0 0.847419 0 1.27889) (2.22776 -0.765129 0 0.849681 0 1.27955) (2.22733 -0.76693 0 0.85064 0 1.27873) (2.22432 -0.767599 0 0.850308 0 1.27646) (2.21877 -0.767142 0 0.84869 0 1.27278) (2.21078 -0.765606 0 0.845823 0 1.26774) (2.20043 -0.763074 0 0.841786 0 1.26139) (2.18772 -0.759629 0 0.836686 0 1.25377) (2.17253 -0.755278 0 0.830596 0 1.24487) (2.15466 -0.749892 0 0.823469 0 1.23463) (2.13414 -0.743245 0 0.815116 0 1.22309) (2.11147 -0.735281 0 0.805387 0 1.21043) (2.08722 -0.726228 0 0.794427 0 1.1969) (2.06167 -0.716318 0 0.782473 0 1.18264) (2.03482 -0.705678 0 0.769707 0 1.1677) (2.00668 -0.694363 0 0.75624 0 1.1521) (1.97729 -0.682413 0 0.742152 0 1.13589) (1.94673 -0.66987 0 0.727512 0 1.11911) (1.9151 -0.656782 0 0.712389 0 1.10184) (1.88252 -0.643203 0 0.696854 0 1.08412) (1.84909 -0.629186 0 0.680976 0 1.06602) (1.81491 -0.614783 0 0.664821 0 1.04758) (1.78006 -0.600025 0 0.648441 0 1.02885) (1.74462 -0.584931 0 0.631878 0 1.00985) (1.70861 -0.569461 0 0.615119 0 0.990598) (1.67216 -0.553576 0 0.59815 0 0.971129) (1.63536 -0.537058 0 0.580795 0 0.951467) (1.59893 -0.519982 0 0.563051 0 0.931898) (1.56389 -0.5021 0 0.544613 0 0.912889) (1.53392 -0.485338 0 0.526783 0 0.896184) (1.515 -0.473025 0 0.512385 0 0.885016) (0.0395535 -0.00387061 0 0.0366297 0 0.049736) (0.0841998 -0.00960088 0 0.0492442 0 0.0760356) (0.11256 -0.0129365 0 0.0558663 0 0.0884065) (0.131761 -0.0159781 0 0.0612119 0 0.0973803) (0.146183 -0.0190576 0 0.0661924 0 0.105142) (0.15853 -0.0224022 0 0.0710558 0 0.112367) (0.169596 -0.0260884 0 0.0758288 0 0.119296) (0.180221 -0.0301688 0 0.0804868 0 0.126076) (0.190913 -0.0346914 0 0.0849676 0 0.132786) (0.202128 -0.0396912 0 0.0892113 0 0.139493) (0.214236 -0.0451696 0 0.0930681 0 0.146229) (0.225849 -0.051135 0 0.0981109 0 0.153019) (0.237228 -0.0575992 0 0.104092 0 0.159949) (0.248386 -0.0644543 0 0.11085 0 0.167029) (0.259252 -0.0714616 0 0.118145 0 0.174217) (0.269661 -0.078264 0 0.125671 0 0.181426) (0.279437 -0.0844439 0 0.133086 0 0.188567) (0.288545 -0.089626 0 0.140081 0 0.195624) (0.297263 -0.0935958 0 0.14645 0 0.202728) (0.306342 -0.0964182 0 0.152169 0 0.210217) (0.317064 -0.0985091 0 0.157431 0 0.218664) (0.331195 -0.100627 0 0.162643 0 0.22884) (0.350724 -0.103752 0 0.168349 0 0.241603) (0.377404 -0.108856 0 0.175125 0 0.257696) (0.412197 -0.116631 0 0.183469 0 0.277522) (0.454828 -0.127253 0 0.19369 0 0.300957) (0.503891 -0.140352 0 0.205826 0 0.327396) (0.557633 -0.155304 0 0.219728 0 0.356092) (0.614574 -0.171546 0 0.235181 0 0.386394) (0.673752 -0.188775 0 0.252037 0 0.417864) (0.734642 -0.206925 0 0.270239 0 0.450253) (0.79691 -0.226023 0 0.289769 0 0.483406) (0.860184 -0.24604 0 0.31056 0 0.517163) (0.923829 -0.266791 0 0.332402 0 0.551229) (0.987469 -0.288101 0 0.355118 0 0.585441) (1.05075 -0.309769 0 0.378492 0 0.619631) (1.11341 -0.331618 0 0.402316 0 0.65366) (1.1753 -0.353512 0 0.426409 0 0.687426) (1.2364 -0.375365 0 0.450622 0 0.720874) (1.29673 -0.397136 0 0.474856 0 0.753975) (1.35631 -0.418797 0 0.499028 0 0.786698) (1.41509 -0.440291 0 0.523052 0 0.818989) (1.47274 -0.461416 0 0.546658 0 0.85066) (1.52893 -0.482016 0 0.569633 0 0.88155) (1.58364 -0.502094 0 0.591983 0 0.911626) (1.63685 -0.521667 0 0.613723 0 0.940877) (1.68862 -0.540766 0 0.63488 0 0.969304) (1.73896 -0.559418 0 0.655472 0 0.996916) (1.78792 -0.577646 0 0.67551 0 1.02371) (1.83547 -0.595454 0 0.694995 0 1.04968) (1.88158 -0.612828 0 0.713909 0 1.07478) (1.9261 -0.629741 0 0.732225 0 1.09895) (1.96898 -0.646177 0 0.74993 0 1.12216) (2.01011 -0.662105 0 0.766999 0 1.14435) (2.04939 -0.677491 0 0.7834 0 1.16547) (2.08671 -0.692299 0 0.799096 0 1.18547) (2.12197 -0.706489 0 0.814049 0 1.2043) (2.15504 -0.720019 0 0.828213 0 1.2219) (2.18583 -0.732842 0 0.841542 0 1.23822) (2.21421 -0.744911 0 0.853985 0 1.25319) (2.24008 -0.756173 0 0.865485 0 1.26677) (2.26333 -0.766576 0 0.875986 0 1.27889) (2.28385 -0.776068 0 0.885433 0 1.28951) (2.30156 -0.7846 0 0.893775 0 1.29858) (2.31639 -0.792118 0 0.900955 0 1.30606) (2.32827 -0.798569 0 0.906916 0 1.31194) (2.33716 -0.803897 0 0.9116 0 1.31618) (2.34304 -0.808054 0 0.914955 0 1.31878) (2.34592 -0.811 0 0.916935 0 1.31975) (2.34586 -0.812713 0 0.917511 0 1.3191) (2.34292 -0.813198 0 0.916682 0 1.31687) (2.33718 -0.812477 0 0.914466 0 1.31311) (2.32873 -0.810578 0 0.910895 0 1.30786) (2.31765 -0.807536 0 0.906006 0 1.30119) (2.30408 -0.803408 0 0.899857 0 1.29317) (2.28815 -0.798275 0 0.892538 0 1.28389) (2.2699 -0.792213 0 0.884154 0 1.2734) (2.24932 -0.785249 0 0.874781 0 1.26174) (2.22636 -0.777322 0 0.864421 0 1.24891) (2.20108 -0.76832 0 0.852991 0 1.23497) (2.17382 -0.758222 0 0.840433 0 1.22005) (2.14503 -0.747179 0 0.826862 0 1.20434) (2.11501 -0.735371 0 0.81246 0 1.188) (2.08387 -0.722926 0 0.797389 0 1.17111) (2.0517 -0.709922 0 0.781767 0 1.15373) (2.01859 -0.696421 0 0.765689 0 1.13592) (1.98462 -0.682476 0 0.749236 0 1.11774) (1.94991 -0.66814 0 0.732479 0 1.09925) (1.91455 -0.653464 0 0.715489 0 1.08049) (1.87864 -0.638497 0 0.698327 0 1.06152) (1.84226 -0.623278 0 0.681048 0 1.04238) (1.80549 -0.607834 0 0.663691 0 1.02308) (1.76837 -0.592173 0 0.64628 0 1.00366) (1.73095 -0.576257 0 0.628792 0 0.984116) (1.69335 -0.560056 0 0.611205 0 0.96449) (1.65569 -0.543404 0 0.59336 0 0.944803) (1.6188 -0.526442 0 0.575297 0 0.925384) (1.58355 -0.509062 0 0.556801 0 0.906637) (1.55408 -0.493327 0 0.539397 0 0.890462) (1.53469 -0.481664 0 0.525265 0 0.879374) (0.0436991 -0.00620038 0 0.0402474 0 0.0535173) (0.0923456 -0.0122889 0 0.0543333 0 0.0812028) (0.122712 -0.0170457 0 0.062601 0 0.0947363) (0.143522 -0.0215664 0 0.0697989 0 0.104955) (0.159625 -0.0261897 0 0.0768947 0 0.114089) (0.173842 -0.0311984 0 0.0841639 0 0.122824) (0.186987 -0.0366809 0 0.0916423 0 0.131393) (0.199855 -0.042699 0 0.0993139 0 0.139922) (0.212846 -0.0492751 0 0.107103 0 0.148459) (0.226314 -0.0564085 0 0.114914 0 0.157021) (0.240465 -0.0640596 0 0.122606 0 0.165587) (0.255576 -0.0721424 0 0.129875 0 0.174096) (0.269761 -0.0805703 0 0.138425 0 0.18259) (0.283243 -0.0892302 0 0.147824 0 0.191071) (0.295964 -0.0978735 0 0.157748 0 0.199486) (0.307866 -0.106133 0 0.167747 0 0.207746) (0.31892 -0.113611 0 0.177389 0 0.215791) (0.329328 -0.119997 0 0.186305 0 0.223667) (0.339669 -0.12517 0 0.194265 0 0.231602) (0.350973 -0.129282 0 0.201232 0 0.24003) (0.364707 -0.132803 0 0.207428 0 0.24959) (0.382703 -0.136531 0 0.213383 0 0.261096) (0.406741 -0.141434 0 0.219835 0 0.275345) (0.438065 -0.148393 0 0.227567 0 0.29291) (0.477135 -0.15799 0 0.237257 0 0.314052) (0.523095 -0.170227 0 0.249187 0 0.338433) (0.574193 -0.18458 0 0.263181 0 0.365286) (0.629257 -0.200527 0 0.278994 0 0.394116) (0.687407 -0.217647 0 0.29634 0 0.424512) (0.748137 -0.235746 0 0.315055 0 0.456211) (0.81112 -0.254802 0 0.335087 0 0.489047) (0.875987 -0.274831 0 0.356419 0 0.522859) (0.942226 -0.295783 0 0.378975 0 0.557436) (1.00925 -0.317522 0 0.402607 0 0.592532) (1.07657 -0.339865 0 0.427121 0 0.627925) (1.14376 -0.362605 0 0.45229 0 0.663413) (1.21055 -0.385554 0 0.477885 0 0.698835) (1.27676 -0.408568 0 0.503704 0 0.734066) (1.34229 -0.431547 0 0.529586 0 0.769014) (1.40705 -0.454418 0 0.555401 0 0.803594) (1.47075 -0.477038 0 0.580941 0 0.837635) (1.53287 -0.499173 0 0.60589 0 0.87088) (1.59326 -0.520773 0 0.63018 0 0.903244) (1.65186 -0.541834 0 0.653798 0 0.93468) (1.70867 -0.562355 0 0.676741 0 0.965167) (1.76367 -0.58233 0 0.698991 0 0.994686) (1.81689 -0.601751 0 0.720532 0 1.02323) (1.86833 -0.620607 0 0.741343 0 1.05079) (1.91799 -0.638887 0 0.76141 0 1.07734) (1.96582 -0.656575 0 0.780713 0 1.10286) (2.01178 -0.673655 0 0.799235 0 1.12732) (2.05578 -0.690111 0 0.816964 0 1.15066) (2.09774 -0.705923 0 0.833881 0 1.17285) (2.13755 -0.721064 0 0.849963 0 1.19385) (2.17512 -0.7355 0 0.865175 0 1.21359) (2.21034 -0.749196 0 0.879484 0 1.23202) (2.24309 -0.762111 0 0.892847 0 1.2491) (2.27328 -0.774202 0 0.905221 0 1.26477) (2.3008 -0.785424 0 0.916558 0 1.27898) (2.32553 -0.795727 0 0.926808 0 1.29167) (2.34738 -0.805062 0 0.935918 0 1.30279) (2.36626 -0.813382 0 0.943839 0 1.3123) (2.38209 -0.820641 0 0.950525 0 1.32017) (2.39479 -0.826797 0 0.955932 0 1.32635) (2.40432 -0.831807 0 0.960017 0 1.33082) (2.41063 -0.835633 0 0.96274 0 1.33358) (2.41372 -0.838239 0 0.964066 0 1.33462) (2.41361 -0.839597 0 0.963966 0 1.33394) (2.41035 -0.839691 0 0.962422 0 1.33158) (2.404 -0.838522 0 0.959431 0 1.32758) (2.3947 -0.83611 0 0.955014 0 1.32199) (2.38257 -0.832494 0 0.94921 0 1.31489) (2.36773 -0.827721 0 0.942073 0 1.30635) (2.35034 -0.821846 0 0.933667 0 1.29646) (2.33058 -0.814942 0 0.924076 0 1.28532) (2.3086 -0.807097 0 0.913404 0 1.27303) (2.28454 -0.798395 0 0.901765 0 1.25969) (2.25846 -0.788886 0 0.889255 0 1.24535) (2.23041 -0.778568 0 0.875917 0 1.23008) (2.20051 -0.767403 0 0.861743 0 1.21395) (2.16903 -0.755399 0 0.84673 0 1.19708) (2.13633 -0.742668 0 0.830977 0 1.17962) (2.10269 -0.729351 0 0.814631 0 1.16171) (2.06828 -0.715566 0 0.797833 0 1.14346) (2.03322 -0.701397 0 0.780701 0 1.12494) (1.99762 -0.686914 0 0.76333 0 1.10621) (1.96158 -0.672172 0 0.745798 0 1.08734) (1.9252 -0.657222 0 0.728172 0 1.06836) (1.88856 -0.642106 0 0.710511 0 1.04933) (1.85172 -0.626862 0 0.692862 0 1.03028) (1.81476 -0.611517 0 0.675263 0 1.01122) (1.7777 -0.596084 0 0.657734 0 0.992176) (1.74059 -0.580562 0 0.640285 0 0.973151) (1.70345 -0.564912 0 0.622881 0 0.954136) (1.6664 -0.549108 0 0.605493 0 0.935167) (1.62954 -0.533033 0 0.587985 0 0.916261) (1.59376 -0.516861 0 0.57043 0 0.897756) (1.55976 -0.500595 0 0.552697 0 0.879999) (1.53177 -0.486272 0 0.536389 0 0.864897) (1.5129 -0.475622 0 0.523146 0 0.854408) (0.0459532 -0.00885384 0 0.0438662 0 0.0563056) (0.0971908 -0.0154143 0 0.0599395 0 0.085633) (0.129648 -0.0219971 0 0.0703365 0 0.100707) (0.152777 -0.0285292 0 0.0800071 0 0.11264) (0.171667 -0.0353119 0 0.0899536 0 0.123697) (0.189226 -0.0426691 0 0.100467 0 0.134582) (0.206264 -0.050671 0 0.11158 0 0.145525) (0.223507 -0.0593574 0 0.123271 0 0.156648) (0.241198 -0.068693 0 0.135426 0 0.167957) (0.259501 -0.0786151 0 0.147895 0 0.17942) (0.278418 -0.0890212 0 0.160449 0 0.190945) (0.297944 -0.0997713 0 0.172765 0 0.202409) (0.318292 -0.110666 0 0.184167 0 0.213637) (0.33692 -0.121531 0 0.196654 0 0.224633) (0.354142 -0.132167 0 0.209537 0 0.235335) (0.369847 -0.142174 0 0.222256 0 0.245597) (0.384102 -0.151169 0 0.234266 0 0.255339) (0.397323 -0.158955 0 0.245245 0 0.264674) (0.410415 -0.165524 0 0.255002 0 0.27394) (0.424707 -0.171101 0 0.263506 0 0.283665) (0.441835 -0.176191 0 0.270995 0 0.294538) (0.463817 -0.181652 0 0.278163 0 0.307486) (0.492098 -0.188386 0 0.285868 0 0.323167) (0.527203 -0.197092 0 0.294959 0 0.341869) (0.569124 -0.208174 0 0.306115 0 0.363707) (0.616886 -0.221538 0 0.319546 0 0.388333) (0.669197 -0.236762 0 0.335062 0 0.415214) (0.725087 -0.253389 0 0.352325 0 0.443915) (0.783958 -0.271092 0 0.371024 0 0.474129) (0.845525 -0.289734 0 0.390995 0 0.505678) (0.909568 -0.309304 0 0.412191 0 0.538438) (0.975741 -0.329805 0 0.434584 0 0.572257) (1.04353 -0.351184 0 0.458098 0 0.606928) (1.11237 -0.373322 0 0.482602 0 0.642215) (1.18171 -0.396044 0 0.507899 0 0.677874) (1.25111 -0.41916 0 0.533774 0 0.713685) (1.32021 -0.442487 0 0.560003 0 0.749457) (1.38876 -0.465871 0 0.586374 0 0.785024) (1.45641 -0.489137 0 0.612644 0 0.820191) (1.5226 -0.512011 0 0.638428 0 0.854664) (1.58702 -0.534362 0 0.663547 0 0.888278) (1.64955 -0.556153 0 0.687955 0 0.920956) (1.71011 -0.577363 0 0.711627 0 0.952645) (1.76864 -0.597976 0 0.734546 0 0.9833) (1.82508 -0.617968 0 0.756685 0 1.01288) (1.8794 -0.637314 0 0.778015 0 1.04137) (1.93159 -0.655994 0 0.798509 0 1.06872) (1.98161 -0.673987 0 0.818141 0 1.09493) (2.02946 -0.691277 0 0.836888 0 1.11997) (2.07508 -0.707846 0 0.854725 0 1.14381) (2.11844 -0.723675 0 0.871631 0 1.16641) (2.15947 -0.738746 0 0.887586 0 1.18774) (2.19807 -0.753035 0 0.902566 0 1.20775) (2.23417 -0.766511 0 0.916541 0 1.22641) (2.26766 -0.779139 0 0.929475 0 1.24365) (2.29845 -0.790878 0 0.941332 0 1.25944) (2.32642 -0.801689 0 0.952069 0 1.27371) (2.35147 -0.811528 0 0.961644 0 1.28643) (2.37353 -0.820351 0 0.970012 0 1.29754) (2.39248 -0.828112 0 0.977129 0 1.30699) (2.40825 -0.83477 0 0.982952 0 1.31477) (2.42079 -0.840288 0 0.987443 0 1.32082) (2.43004 -0.844634 0 0.990572 0 1.32513) (2.43597 -0.847781 0 0.992313 0 1.3277) (2.43856 -0.849707 0 0.992644 0 1.3285) (2.43783 -0.850393 0 0.991551 0 1.32756) (2.43379 -0.84983 0 0.989023 0 1.32489) (2.42653 -0.848013 0 0.985062 0 1.32053) (2.41613 -0.844951 0 0.979677 0 1.31452) (2.40271 -0.840666 0 0.972893 0 1.30694) (2.38643 -0.835198 0 0.964754 0 1.29785) (2.36746 -0.8286 0 0.955322 0 1.28736) (2.34599 -0.82094 0 0.944674 0 1.27556) (2.32221 -0.81229 0 0.932897 0 1.26257) (2.29634 -0.80274 0 0.920097 0 1.2485) (2.26859 -0.792387 0 0.90639 0 1.23349) (2.23915 -0.781327 0 0.891904 0 1.21764) (2.20815 -0.769633 0 0.876749 0 1.20105) (2.17572 -0.757341 0 0.861002 0 1.18381) (2.14201 -0.74446 0 0.844699 0 1.166) (2.10725 -0.731022 0 0.827876 0 1.14773) (2.07175 -0.717114 0 0.810622 0 1.12914) (2.03575 -0.702853 0 0.793058 0 1.11036) (1.99944 -0.688338 0 0.775305 0 1.09148) (1.96294 -0.67365 0 0.757462 0 1.07257) (1.92636 -0.658848 0 0.739612 0 1.05369) (1.88979 -0.643984 0 0.72182 0 1.03489) (1.8533 -0.629094 0 0.704139 0 1.01621) (1.81695 -0.614208 0 0.686608 0 0.997666) (1.78077 -0.599349 0 0.669258 0 0.979281) (1.74478 -0.584527 0 0.652106 0 0.961058) (1.709 -0.569741 0 0.635153 0 0.94299) (1.67343 -0.55498 0 0.618392 0 0.925071) (1.63806 -0.540199 0 0.601778 0 0.907278) (1.60302 -0.52538 0 0.585278 0 0.889635) (1.56836 -0.510435 0 0.568777 0 0.872152) (1.53496 -0.495558 0 0.55237 0 0.855154) (1.50339 -0.480826 0 0.535995 0 0.83894) (1.47772 -0.468155 0 0.52123 0 0.825323) (1.46017 -0.458753 0 0.509295 0 0.815828) (0.0462852 -0.0114109 0 0.0472291 0 0.058103) (0.0995855 -0.0194202 0 0.0660848 0 0.0896414) (0.134971 -0.02877 0 0.0799646 0 0.107175) (0.161704 -0.0379891 0 0.0933223 0 0.121692) (0.185231 -0.0477406 0 0.107407 0 0.135612) (0.208447 -0.0583815 0 0.122577 0 0.149714) (0.232154 -0.0699145 0 0.138844 0 0.164258) (0.256991 -0.082323 0 0.156151 0 0.179375) (0.282967 -0.0954841 0 0.174287 0 0.195008) (0.309991 -0.109253 0 0.193017 0 0.211049) (0.337756 -0.123448 0 0.212022 0 0.227308) (0.36593 -0.137851 0 0.230882 0 0.243552) (0.3942 -0.15219 0 0.248947 0 0.259484) (0.422847 -0.1661 0 0.264824 0 0.274758) (0.448572 -0.179402 0 0.281154 0 0.28938) (0.471702 -0.191691 0 0.29666 0 0.303054) (0.492066 -0.202666 0 0.311113 0 0.315648) (0.510332 -0.212252 0 0.32433 0 0.327366) (0.527849 -0.220588 0 0.33619 0 0.338702) (0.546213 -0.227915 0 0.346576 0 0.350229) (0.567027 -0.23469 0 0.355652 0 0.36255) (0.592262 -0.241777 0 0.364227 0 0.37659) (0.623234 -0.249999 0 0.373231 0 0.393001) (0.660446 -0.259969 0 0.38354 0 0.41211) (0.703644 -0.271962 0 0.395739 0 0.433934) (0.751925 -0.285865 0 0.409981 0 0.45817) (0.804219 -0.301335 0 0.426075 0 0.484393) (0.8597 -0.318006 0 0.443689 0 0.512237) (0.917892 -0.335624 0 0.462547 0 0.541451) (0.978594 -0.354087 0 0.482511 0 0.571899) (1.04165 -0.373382 0 0.503534 0 0.603484) (1.10677 -0.393486 0 0.525562 0 0.636069) (1.1735 -0.41434 0 0.548507 0 0.669467) (1.24138 -0.435866 0 0.572276 0 0.703487) (1.30984 -0.4579 0 0.596687 0 0.737872) (1.37842 -0.48028 0 0.621563 0 0.772399) (1.44656 -0.502765 0 0.646614 0 0.806787) (1.51353 -0.525024 0 0.671409 0 0.840676) (1.57886 -0.546846 0 0.695669 0 0.87383) (1.64242 -0.568184 0 0.719332 0 0.906163) (1.70407 -0.588991 0 0.74234 0 0.937589) (1.76369 -0.609236 0 0.76465 0 0.96804) (1.82119 -0.628888 0 0.786223 0 0.997457) (1.87648 -0.647914 0 0.80702 0 1.02579) (1.9295 -0.666281 0 0.826995 0 1.05298) (1.98018 -0.683951 0 0.846103 0 1.079) (2.02847 -0.700891 0 0.864304 0 1.1038) (2.07434 -0.71707 0 0.881555 0 1.12735) (2.11773 -0.732459 0 0.897821 0 1.14962) (2.15861 -0.747027 0 0.913068 0 1.17058) (2.19691 -0.76075 0 0.927267 0 1.19018) (2.23257 -0.7736 0 0.94039 0 1.20839) (2.2655 -0.785549 0 0.952409 0 1.22516) (2.29561 -0.796561 0 0.963291 0 1.24046) (2.32282 -0.806601 0 0.973001 0 1.25423) (2.34704 -0.81563 0 0.981501 0 1.26643) (2.36818 -0.823609 0 0.988755 0 1.27702) (2.38615 -0.830501 0 0.994726 0 1.28595) (2.40089 -0.83627 0 0.99938 0 1.2932) (2.41235 -0.840885 0 1.00269 0 1.29873) (2.42047 -0.844318 0 1.00462 0 1.30253) (2.42523 -0.84655 0 1.00516 0 1.30458) (2.42664 -0.847569 0 1.00429 0 1.30489) (2.42469 -0.84737 0 1.00202 0 1.30346) (2.41944 -0.845951 0 0.998349 0 1.30031) (2.41092 -0.843318 0 0.993283 0 1.29548) (2.39923 -0.839483 0 0.986841 0 1.28901) (2.38447 -0.834464 0 0.979049 0 1.28095) (2.36677 -0.828292 0 0.969942 0 1.27138) (2.34631 -0.821006 0 0.959571 0 1.26038) (2.32327 -0.812665 0 0.948 0 1.24806) (2.29786 -0.803337 0 0.935311 0 1.23451) (2.2703 -0.793104 0 0.921602 0 1.21987) (2.24085 -0.782057 0 0.906978 0 1.20426) (2.20975 -0.770298 0 0.89156 0 1.18782) (2.17724 -0.757933 0 0.875479 0 1.17069) (2.14355 -0.74507 0 0.858868 0 1.15299) (2.10887 -0.731795 0 0.841848 0 1.13484) (2.07337 -0.718168 0 0.824512 0 1.11635) (2.03721 -0.704226 0 0.806923 0 1.0976) (2.0006 -0.690009 0 0.789131 0 1.07871) (1.96379 -0.675592 0 0.771215 0 1.05977) (1.927 -0.661062 0 0.753271 0 1.0409) (1.89037 -0.6465 0 0.735392 0 1.02217) (1.85402 -0.631969 0 0.717656 0 1.00365) (1.81804 -0.617515 0 0.700126 0 0.985378) (1.78249 -0.603174 0 0.682846 0 0.967393) (1.7474 -0.588967 0 0.66585 0 0.949709) (1.7128 -0.574909 0 0.649158 0 0.932334) (1.67867 -0.561002 0 0.632777 0 0.915264) (1.64502 -0.547243 0 0.616707 0 0.898485) (1.61181 -0.533615 0 0.60093 0 0.881975) (1.57903 -0.520095 0 0.585423 0 0.865708) (1.54662 -0.506637 0 0.570135 0 0.84965) (1.51468 -0.493222 0 0.555028 0 0.833815) (1.48327 -0.479789 0 0.540007 0 0.818203) (1.45318 -0.466532 0 0.525178 0 0.803112) (1.42487 -0.453578 0 0.510533 0 0.788801) (1.40211 -0.44267 0 0.497557 0 0.77693) (1.38646 -0.434627 0 0.487154 0 0.768682) (0.0448039 -0.0133128 0 0.0513986 0 0.0595749) (0.100516 -0.0251729 0 0.0751744 0 0.0946765) (0.141527 -0.0382405 0 0.0938481 0 0.115937) (0.175116 -0.0515405 0 0.112657 0 0.134491) (0.206641 -0.0657013 0 0.132935 0 0.15288) (0.239341 -0.0810935 0 0.154928 0 0.171991) (0.274024 -0.0976666 0 0.178554 0 0.19214) (0.311144 -0.115335 0 0.203677 0 0.21344) (0.35028 -0.133831 0 0.229864 0 0.235655) (0.39107 -0.152925 0 0.256756 0 0.258562) (0.432933 -0.172364 0 0.28394 0 0.281859) (0.475237 -0.191861 0 0.310934 0 0.305195) (0.517228 -0.211025 0 0.337013 0 0.328126) (0.558022 -0.22942 0 0.361105 0 0.350135) (0.598578 -0.246596 0 0.380581 0 0.370898) (0.633442 -0.261819 0 0.398782 0 0.389592) (0.663557 -0.275172 0 0.415405 0 0.406341) (0.689707 -0.286889 0 0.430697 0 0.421455) (0.713457 -0.297148 0 0.444442 0 0.435429) (0.73653 -0.3062 0 0.456526 0 0.448856) (0.760808 -0.314529 0 0.467173 0 0.462475) (0.788148 -0.322848 0 0.47701 0 0.477107) (0.819885 -0.331877 0 0.486863 0 0.493406) (0.856618 -0.342162 0 0.497529 0 0.511747) (0.898211 -0.353948 0 0.509542 0 0.532193) (0.943999 -0.367181 0 0.52307 0 0.554555) (0.993154 -0.381627 0 0.537989 0 0.57853) (1.045 -0.397023 0 0.554057 0 0.603835) (1.09914 -0.41319 0 0.571078 0 0.630275) (1.15542 -0.430066 0 0.588981 0 0.657762) (1.21376 -0.447642 0 0.607754 0 0.686234) (1.27386 -0.46587 0 0.627327 0 0.715558) (1.33538 -0.484699 0 0.647618 0 0.745583) (1.39808 -0.504128 0 0.668633 0 0.776213) (1.46102 -0.523854 0 0.690001 0 0.807023) (1.5234 -0.543592 0 0.711384 0 0.837649) (1.58471 -0.563143 0 0.732546 0 0.867849) (1.64473 -0.582424 0 0.753395 0 0.897511) (1.70324 -0.601346 0 0.773814 0 0.926515) (1.76007 -0.619853 0 0.793724 0 0.954766) (1.81508 -0.637892 0 0.813056 0 0.98218) (1.86813 -0.655412 0 0.831749 0 1.00868) (1.91908 -0.672366 0 0.849745 0 1.03418) (1.96783 -0.688707 0 0.866989 0 1.05863) (2.01428 -0.704388 0 0.883424 0 1.08197) (2.05832 -0.719363 0 0.898996 0 1.10413) (2.09989 -0.733585 0 0.913652 0 1.12507) (2.1389 -0.747014 0 0.927344 0 1.14474) (2.17529 -0.759609 0 0.940024 0 1.1631) (2.20899 -0.771332 0 0.95165 0 1.18009) (2.23993 -0.782147 0 0.962182 0 1.19569) (2.26805 -0.79202 0 0.971583 0 1.20984) (2.29326 -0.800916 0 0.979819 0 1.22252) (2.31548 -0.8088 0 0.986855 0 1.23366) (2.33464 -0.815637 0 0.992657 0 1.24324) (2.35067 -0.821395 0 0.997194 0 1.25121) (2.36351 -0.826044 0 1.00044 0 1.25756) (2.37311 -0.829561 0 1.00236 0 1.26224) (2.37943 -0.831924 0 1.00295 0 1.26525) (2.38247 -0.83312 0 1.00219 0 1.26657) (2.38221 -0.833141 0 1.00007 0 1.2662) (2.37868 -0.831987 0 0.996603 0 1.26416) (2.37192 -0.829662 0 0.991785 0 1.26046) (2.36198 -0.82618 0 0.985637 0 1.25513) (2.34893 -0.821556 0 0.978182 0 1.24821) (2.33289 -0.815815 0 0.969451 0 1.23975) (2.31395 -0.808983 0 0.959481 0 1.22982) (2.29228 -0.801099 0 0.94832 0 1.2185) (2.26805 -0.792209 0 0.936024 0 1.20586) (2.24144 -0.782372 0 0.922664 0 1.19202) (2.21268 -0.771659 0 0.908324 0 1.17708) (2.18202 -0.760154 0 0.893103 0 1.16117) (2.14972 -0.747952 0 0.877113 0 1.14443) (2.11603 -0.735156 0 0.860472 0 1.12699) (2.08122 -0.721875 0 0.84331 0 1.109) (2.04557 -0.708222 0 0.825759 0 1.09061) (2.00931 -0.694304 0 0.807954 0 1.07194) (1.97266 -0.680214 0 0.790014 0 1.05311) (1.93579 -0.666021 0 0.772034 0 1.03424) (1.89887 -0.651769 0 0.754083 0 1.01541) (1.86209 -0.637502 0 0.736215 0 0.996704) (1.82562 -0.623275 0 0.718493 0 0.978219) (1.78964 -0.609153 0 0.700986 0 0.960033) (1.75427 -0.595192 0 0.68376 0 0.942205) (1.71959 -0.581434 0 0.666869 0 0.924778) (1.68565 -0.56791 0 0.65035 0 0.90778) (1.65247 -0.554635 0 0.634228 0 0.891224) (1.62005 -0.541614 0 0.618514 0 0.875109) (1.58838 -0.528845 0 0.603208 0 0.859423) (1.55742 -0.516314 0 0.588299 0 0.844145) (1.52713 -0.504004 0 0.573769 0 0.829246) (1.49743 -0.491884 0 0.559587 0 0.814685) (1.46829 -0.479924 0 0.545716 0 0.800428) (1.43963 -0.468075 0 0.5321 0 0.786426) (1.41153 -0.456315 0 0.518701 0 0.772684) (1.38401 -0.444606 0 0.505439 0 0.759195) (1.35778 -0.433131 0 0.492424 0 0.746225) (1.33322 -0.422049 0 0.47969 0 0.733996) (1.3137 -0.412902 0 0.468586 0 0.723987) (1.30031 -0.40623 0 0.459788 0 0.71711) (0.0413086 -0.015246 0 0.0541722 0 0.0593773) (0.103749 -0.03385 0 0.0876651 0 0.101993) (0.157792 -0.0545142 0 0.116634 0 0.130976) (0.204256 -0.0742657 0 0.145387 0 0.156872) (0.250484 -0.095217 0 0.176013 0 0.183029) (0.299825 -0.117879 0 0.20891 0 0.210645) (0.352671 -0.141898 0 0.243758 0 0.23998) (0.409016 -0.167036 0 0.280103 0 0.270904) (0.467378 -0.192663 0 0.316927 0 0.30263) (0.527389 -0.218608 0 0.353901 0 0.334909) (0.588165 -0.244574 0 0.390576 0 0.367317) (0.648999 -0.270265 0 0.426494 0 0.39946) (0.708792 -0.295148 0 0.460816 0 0.430742) (0.766574 -0.318671 0 0.492446 0 0.46057) (0.820911 -0.340104 0 0.519664 0 0.488191) (0.873152 -0.358401 0 0.537012 0 0.512953) (0.914988 -0.374131 0 0.554722 0 0.534288) (0.950315 -0.38768 0 0.570926 0 0.552946) (0.980907 -0.39933 0 0.585207 0 0.569414) (1.00843 -0.409389 0 0.597556 0 0.584278) (1.03473 -0.41829 0 0.608184 0 0.598263) (1.06165 -0.426612 0 0.617542 0 0.612145) (1.09068 -0.434971 0 0.62629 0 0.626608) (1.12269 -0.443875 0 0.635123 0 0.642124) (1.1579 -0.453606 0 0.644555 0 0.658899) (1.19603 -0.464218 0 0.654824 0 0.67692) (1.23662 -0.475626 0 0.665929 0 0.696052) (1.27927 -0.487706 0 0.677772 0 0.71615) (1.32375 -0.500382 0 0.690284 0 0.737124) (1.3701 -0.513672 0 0.703511 0 0.758984) (1.41825 -0.527572 0 0.717476 0 0.781699) (1.46767 -0.541941 0 0.732004 0 0.805044) (1.51799 -0.556689 0 0.746975 0 0.82885) (1.56848 -0.57159 0 0.762094 0 0.852791) (1.61898 -0.586652 0 0.777393 0 0.876818) (1.66919 -0.601792 0 0.792794 0 0.900793) (1.71877 -0.616907 0 0.808184 0 0.924571) (1.76749 -0.631911 0 0.82346 0 0.948026) (1.8151 -0.646715 0 0.838512 0 0.97104) (1.8614 -0.661246 0 0.853247 0 0.993506) (1.90621 -0.675434 0 0.867578 0 1.01532) (1.94935 -0.689213 0 0.881426 0 1.03639) (1.99064 -0.702519 0 0.894716 0 1.05663) (2.02994 -0.715289 0 0.907371 0 1.07594) (2.0671 -0.727461 0 0.919319 0 1.09426) (2.10198 -0.738972 0 0.930488 0 1.11151) (2.13448 -0.749763 0 0.940809 0 1.12762) (2.16448 -0.759778 0 0.950218 0 1.14252) (2.19189 -0.768964 0 0.958655 0 1.15617) (2.21661 -0.777273 0 0.966066 0 1.1685) (2.23858 -0.784663 0 0.972404 0 1.17948) (2.25772 -0.791097 0 0.977628 0 1.18905) (2.27396 -0.796543 0 0.981705 0 1.19717) (2.28723 -0.80097 0 0.984603 0 1.20382) (2.29749 -0.804355 0 0.986296 0 1.20896) (2.30469 -0.806678 0 0.986764 0 1.21256) (2.30881 -0.807924 0 0.985991 0 1.21461) (2.30983 -0.808081 0 0.983965 0 1.21509) (2.30774 -0.807143 0 0.98068 0 1.214) (2.30257 -0.805111 0 0.976138 0 1.21135) (2.29433 -0.801988 0 0.970344 0 1.20715) (2.28309 -0.797784 0 0.963312 0 1.20142) (2.26891 -0.792516 0 0.955063 0 1.19419) (2.25187 -0.786206 0 0.945628 0 1.18552) (2.23209 -0.778882 0 0.935043 0 1.17545) (2.20969 -0.770582 0 0.923355 0 1.16405) (2.18482 -0.761348 0 0.910619 0 1.1514) (2.15766 -0.751233 0 0.8969 0 1.13759) (2.12841 -0.7403 0 0.882274 0 1.12271) (2.0973 -0.728623 0 0.866826 0 1.10689) (2.06456 -0.716285 0 0.850656 0 1.09025) (2.03046 -0.703381 0 0.833872 0 1.07292) (1.99527 -0.690011 0 0.816592 0 1.05504) (1.95926 -0.676284 0 0.798938 0 1.03674) (1.9227 -0.662307 0 0.781038 0 1.01818) (1.88585 -0.64819 0 0.763018 0 0.999483) (1.84895 -0.634035 0 0.745002 0 0.980783) (1.8122 -0.619927 0 0.727098 0 0.962194) (1.77577 -0.605934 0 0.709394 0 0.943811) (1.73982 -0.592098 0 0.691952 0 0.925713) (1.70448 -0.578455 0 0.674818 0 0.907973) (1.66989 -0.565043 0 0.658037 0 0.890655) (1.63617 -0.551903 0 0.641654 0 0.873816) (1.6034 -0.53907 0 0.625709 0 0.857493) (1.57161 -0.526566 0 0.610231 0 0.841711) (1.54083 -0.514402 0 0.595235 0 0.826477) (1.51104 -0.502577 0 0.580726 0 0.811786) (1.4822 -0.491081 0 0.566697 0 0.797623) (1.45428 -0.479897 0 0.553131 0 0.78396) (1.4272 -0.468999 0 0.540002 0 0.77076) (1.40089 -0.458357 0 0.52728 0 0.757983) (1.37526 -0.447932 0 0.514922 0 0.745577) (1.35024 -0.437687 0 0.502884 0 0.733496) (1.32575 -0.427573 0 0.491108 0 0.721688) (1.30182 -0.417569 0 0.479555 0 0.710146) (1.27847 -0.407648 0 0.468162 0 0.698857) (1.25632 -0.39798 0 0.457033 0 0.688058) (1.23568 -0.388743 0 0.446237 0 0.677937) (1.2195 -0.381276 0 0.436967 0 0.669785) (1.20851 -0.375911 0 0.429732 0 0.664292) (0.0399756 -0.0155899 0 0.061044 0 0.0623235) (0.126412 -0.0556466 0 0.121794 0 0.123612) (0.210518 -0.0892156 0 0.166644 0 0.166272) (0.285691 -0.120683 0 0.211874 0 0.20609) (0.360302 -0.153132 0 0.259093 0 0.246346) (0.438399 -0.186721 0 0.307344 0 0.287938) (0.518958 -0.220662 0 0.355725 0 0.330473) (0.601164 -0.254709 0 0.403903 0 0.373513) (0.683377 -0.288262 0 0.451069 0 0.416255) (0.764843 -0.321039 0 0.496799 0 0.458255) (0.844694 -0.35276 0 0.540696 0 0.49909) (0.922454 -0.383242 0 0.582579 0 0.538528) (0.997101 -0.412098 0 0.621897 0 0.576059) (1.06781 -0.438785 0 0.657612 0 0.611144) (1.13389 -0.462501 0 0.687446 0 0.643167) (1.19792 -0.482334 0 0.705145 0 0.672137) (1.24838 -0.498487 0 0.72149 0 0.696158) (1.28903 -0.511635 0 0.735474 0 0.716137) (1.32188 -0.522324 0 0.747257 0 0.73269) (1.34889 -0.530967 0 0.75685 0 0.746484) (1.37201 -0.537993 0 0.764414 0 0.758264) (1.3931 -0.543889 0 0.770274 0 0.768777) (1.41378 -0.549192 0 0.774967 0 0.778737) (1.43522 -0.554376 0 0.779091 0 0.788717) (1.45801 -0.559765 0 0.783141 0 0.799077) (1.48228 -0.565525 0 0.787425 0 0.809984) (1.508 -0.571717 0 0.792087 0 0.821493) (1.53513 -0.578357 0 0.797178 0 0.833619) (1.56364 -0.585453 0 0.80273 0 0.846373) (1.59336 -0.592952 0 0.808709 0 0.859692) (1.62408 -0.600801 0 0.815073 0 0.873503) (1.65592 -0.609081 0 0.82194 0 0.887884) (1.6888 -0.617795 0 0.829316 0 0.902807) (1.72248 -0.626888 0 0.837128 0 0.918168) (1.75675 -0.636328 0 0.845345 0 0.933888) (1.79135 -0.646047 0 0.853902 0 0.949853) (1.82599 -0.655957 0 0.862707 0 0.965935) (1.86039 -0.665962 0 0.871655 0 0.982006) (1.89428 -0.675965 0 0.880631 0 0.997939) (1.92744 -0.685877 0 0.889527 0 1.01361) (1.95961 -0.695608 0 0.898239 0 1.0289) (1.99059 -0.705074 0 0.906667 0 1.0437) (2.02015 -0.714193 0 0.914717 0 1.0579) (2.04809 -0.722884 0 0.922297 0 1.0714) (2.07425 -0.731073 0 0.929319 0 1.08409) (2.09844 -0.738685 0 0.9357 0 1.0959) (2.12053 -0.745656 0 0.941364 0 1.10674) (2.14038 -0.751923 0 0.946238 0 1.11653) (2.15788 -0.757433 0 0.950259 0 1.12522) (2.17294 -0.762138 0 0.953371 0 1.13274) (2.18547 -0.766 0 0.955527 0 1.13904) (2.1954 -0.768985 0 0.956686 0 1.14408) (2.20268 -0.771067 0 0.956816 0 1.14782) (2.20726 -0.772223 0 0.955888 0 1.15023) (2.20909 -0.772434 0 0.95388 0 1.15129) (2.20814 -0.771686 0 0.950775 0 1.15096) (2.2044 -0.769967 0 0.946558 0 1.14925) (2.19787 -0.76727 0 0.941224 0 1.14613) (2.18856 -0.763592 0 0.93477 0 1.14162) (2.17649 -0.758935 0 0.927201 0 1.13572) (2.16171 -0.753308 0 0.918529 0 1.12846) (2.14429 -0.746725 0 0.908775 0 1.11987) (2.12432 -0.739211 0 0.897971 0 1.10998) (2.1019 -0.730798 0 0.886157 0 1.09886) (2.07717 -0.721527 0 0.873385 0 1.08658) (2.05029 -0.711447 0 0.859715 0 1.0732) (2.02142 -0.700617 0 0.845217 0 1.05881) (1.99078 -0.689102 0 0.829969 0 1.04353) (1.95858 -0.676977 0 0.814059 0 1.02745) (1.92505 -0.664326 0 0.797583 0 1.0107) (1.89044 -0.651237 0 0.780645 0 0.993401) (1.85503 -0.637806 0 0.763353 0 0.975681) (1.81905 -0.624135 0 0.745822 0 0.957674) (1.78278 -0.610323 0 0.728168 0 0.939515) (1.74648 -0.596472 0 0.710507 0 0.921333) (1.71036 -0.58268 0 0.692953 0 0.903254) (1.67466 -0.569036 0 0.67561 0 0.885392) (1.63955 -0.555614 0 0.658573 0 0.867845) (1.60518 -0.542471 0 0.641914 0 0.850696) (1.57167 -0.529643 0 0.625682 0 0.83401) (1.53912 -0.517153 0 0.609912 0 0.81784) (1.50762 -0.505026 0 0.594629 0 0.802229) (1.47724 -0.493281 0 0.579859 0 0.787212) (1.44802 -0.481933 0 0.56562 0 0.772808) (1.41997 -0.470989 0 0.551919 0 0.759022) (1.39307 -0.460442 0 0.538755 0 0.745847) (1.36729 -0.450279 0 0.526115 0 0.733264) (1.34255 -0.440479 0 0.51398 0 0.721245) (1.3188 -0.431013 0 0.502321 0 0.70975) (1.29593 -0.421847 0 0.491102 0 0.698734) (1.27386 -0.412942 0 0.480283 0 0.688147) (1.25249 -0.404256 0 0.469817 0 0.677933) (1.23172 -0.395746 0 0.459655 0 0.668038) (1.21147 -0.387366 0 0.44974 0 0.658408) (1.19176 -0.379094 0 0.440033 0 0.649029) (1.17258 -0.370914 0 0.430485 0 0.639885) (1.15446 -0.362981 0 0.421195 0 0.631182) (1.13766 -0.355478 0 0.412253 0 0.62308) (1.12473 -0.349551 0 0.404696 0 0.616689) (1.1161 -0.345382 0 0.39891 0 0.612514) (0.0452591 -0.0154434 0 0.0768684 0 0.0769238) (0.204646 -0.0965241 0 0.196594 0 0.180891) (0.363448 -0.163814 0 0.282876 0 0.256836) (0.495926 -0.215393 0 0.35504 0 0.321913) (0.617016 -0.264008 0 0.424276 0 0.383398) (0.734444 -0.311248 0 0.490818 0 0.442956) (0.846454 -0.355258 0 0.552031 0 0.499324) (0.951933 -0.395809 0 0.607667 0 0.551982) (1.05055 -0.433049 0 0.658047 0 0.600792) (1.14266 -0.467304 0 0.703715 0 0.645919) (1.22903 -0.498922 0 0.745255 0 0.687713) (1.31115 -0.528508 0 0.783459 0 0.726859) (1.38704 -0.555532 0 0.817859 0 0.762637) (1.45587 -0.579669 0 0.848055 0 0.794735) (1.51788 -0.60063 0 0.873201 0 0.823128) (1.57331 -0.617826 0 0.891312 0 0.847754) (1.62507 -0.630123 0 0.8953 0 0.869162) (1.66184 -0.639007 0 0.900095 0 0.885438) (1.68763 -0.645205 0 0.903889 0 0.897432) (1.70523 -0.649177 0 0.906027 0 0.905926) (1.7168 -0.651308 0 0.906356 0 0.911645) (1.7243 -0.652028 0 0.905051 0 0.915341) (1.72946 -0.651781 0 0.902458 0 0.917717) (1.73362 -0.651004 0 0.89903 0 0.919391) (1.73774 -0.65007 0 0.895235 0 0.920849) (1.74242 -0.649258 0 0.891456 0 0.922436) (1.74803 -0.648754 0 0.887955 0 0.924384) (1.75487 -0.648672 0 0.884883 0 0.926852) (1.76312 -0.649082 0 0.882334 0 0.929948) (1.77286 -0.65002 0 0.880363 0 0.933726) (1.7841 -0.651507 0 0.879021 0 0.938216) (1.79687 -0.65358 0 0.878369 0 0.943454) (1.81112 -0.656241 0 0.878416 0 0.949435) (1.82675 -0.659463 0 0.879133 0 0.956114) (1.84359 -0.663207 0 0.880475 0 0.963424) (1.86142 -0.66741 0 0.882384 0 0.971275) (1.87997 -0.67199 0 0.884778 0 0.979554) (1.89895 -0.676853 0 0.887555 0 0.988137) (1.91812 -0.681903 0 0.890606 0 0.9969) (1.9372 -0.687044 0 0.893817 0 1.00572) (1.95595 -0.692183 0 0.897079 0 1.01446) (1.97412 -0.69723 0 0.900288 0 1.02301) (1.99146 -0.702099 0 0.903341 0 1.03126) (2.00777 -0.706708 0 0.906142 0 1.03908) (2.02283 -0.710979 0 0.908599 0 1.04637) (2.03647 -0.714841 0 0.910622 0 1.05304) (2.04851 -0.718225 0 0.912132 0 1.059) (2.0588 -0.721071 0 0.913052 0 1.06415) (2.06722 -0.723321 0 0.913313 0 1.06844) (2.07364 -0.724927 0 0.912854 0 1.07178) (2.07797 -0.725844 0 0.91162 0 1.07413) (2.08011 -0.726034 0 0.909563 0 1.07543) (2.07999 -0.725462 0 0.906642 0 1.07563) (2.07755 -0.724099 0 0.902822 0 1.07469) (2.07273 -0.721918 0 0.898075 0 1.07259) (2.0655 -0.7189 0 0.892377 0 1.0693) (2.05583 -0.715028 0 0.885713 0 1.0648) (2.04373 -0.710292 0 0.878075 0 1.05909) (2.0292 -0.704691 0 0.869464 0 1.05217) (2.01228 -0.698232 0 0.859889 0 1.04406) (1.99304 -0.690928 0 0.849371 0 1.03478) (1.97156 -0.682804 0 0.837941 0 1.02438) (1.94795 -0.673896 0 0.82564 0 1.01291) (1.92234 -0.664248 0 0.812522 0 1.00043) (1.89489 -0.653911 0 0.798649 0 0.987014) (1.86577 -0.642947 0 0.784091 0 0.972751) (1.83517 -0.631423 0 0.768927 0 0.957734) (1.8033 -0.619412 0 0.753241 0 0.942065) (1.77037 -0.606993 0 0.737125 0 0.925854) (1.73662 -0.594248 0 0.720672 0 0.909214) (1.70229 -0.581265 0 0.703984 0 0.892265) (1.66762 -0.568134 0 0.687161 0 0.875127) (1.63284 -0.554946 0 0.670308 0 0.857922) (1.59819 -0.541792 0 0.653527 0 0.840768) (1.5639 -0.528759 0 0.636919 0 0.823779) (1.53016 -0.515931 0 0.62058 0 0.807064) (1.49717 -0.503382 0 0.604596 0 0.790719) (1.46506 -0.491173 0 0.589043 0 0.774825) (1.43396 -0.479348 0 0.573976 0 0.75945) (1.40395 -0.467933 0 0.559433 0 0.744643) (1.37511 -0.456942 0 0.545433 0 0.730439) (1.34749 -0.446384 0 0.531989 0 0.716867) (1.32112 -0.436265 0 0.519109 0 0.703941) (1.29601 -0.426585 0 0.506795 0 0.691665) (1.27213 -0.417336 0 0.495039 0 0.680033) (1.24944 -0.408503 0 0.483828 0 0.669025) (1.2279 -0.400062 0 0.473138 0 0.658614) (1.20742 -0.391984 0 0.462941 0 0.648761) (1.1879 -0.384234 0 0.4532 0 0.639423) (1.16927 -0.376772 0 0.443875 0 0.630549) (1.1514 -0.369558 0 0.434922 0 0.622085) (1.13419 -0.362546 0 0.42629 0 0.613971) (1.11755 -0.355692 0 0.417931 0 0.606153) (1.10137 -0.348952 0 0.40979 0 0.598575) (1.08567 -0.342305 0 0.401831 0 0.59122) (1.07043 -0.335746 0 0.394017 0 0.584071) (1.05611 -0.329408 0 0.386437 0 0.577304) (1.04291 -0.323477 0 0.379196 0 0.571057) (1.03299 -0.318923 0 0.373183 0 0.566272) (1.02659 -0.315814 0 0.36869 0 0.563298) (0.181461 -0.060006 0 0.158275 0 0.179146) (0.885782 -0.374037 0 0.461205 0 0.461157) (1.05225 -0.439337 0 0.555714 0 0.546326) (1.22659 -0.498824 0 0.642138 0 0.627178) (1.3669 -0.547822 0 0.713204 0 0.69449) (1.48338 -0.589272 0 0.775135 0 0.752269) (1.57987 -0.62334 0 0.827965 0 0.801455) (1.65821 -0.65058 0 0.87159 0 0.842366) (1.7216 -0.672219 0 0.907087 0 0.876015) (1.77349 -0.689561 0 0.9359 0 0.903709) (1.81633 -0.703609 0 0.959258 0 0.926519) (1.85106 -0.71477 0 0.977815 0 0.944932) (1.88033 -0.723922 0 0.99282 0 0.960182) (1.90529 -0.731428 0 1.00489 0 0.972912) (1.92643 -0.737248 0 1.01399 0 0.983436) (1.94436 -0.7408 0 1.01843 0 0.991954) (1.96425 -0.740982 0 1.01002 0 1.00047) (1.97451 -0.739158 0 1.00302 0 1.00548) (1.97701 -0.735706 0 0.995866 0 1.0074) (1.97322 -0.730952 0 0.988165 0 1.00664) (1.96462 -0.725152 0 0.979722 0 1.00371) (1.95262 -0.71855 0 0.97051 0 0.999144) (1.93859 -0.711424 0 0.960655 0 0.993472) (1.9237 -0.704079 0 0.950417 0 0.987195) (1.90882 -0.696803 0 0.940115 0 0.980738) (1.89457 -0.689823 0 0.930038 0 0.974429) (1.88144 -0.683298 0 0.920392 0 0.968518) (1.8698 -0.677337 0 0.911309 0 0.963192) (1.85993 -0.672023 0 0.902881 0 0.95859) (1.852 -0.667408 0 0.89518 0 0.954804) (1.84607 -0.663521 0 0.888264 0 0.951889) (1.84214 -0.660374 0 0.882169 0 0.949873) (1.84019 -0.65796 0 0.876899 0 0.948761) (1.84014 -0.656256 0 0.872432 0 0.948529) (1.84188 -0.655229 0 0.868735 0 0.949133) (1.84522 -0.654828 0 0.865757 0 0.950502) (1.84993 -0.654982 0 0.863429 0 0.952543) (1.85576 -0.655608 0 0.861664 0 0.955153) (1.86246 -0.65662 0 0.860365 0 0.958216) (1.86977 -0.657927 0 0.859428 0 0.961615) (1.87744 -0.65944 0 0.858749 0 0.965229) (1.88519 -0.66107 0 0.858226 0 0.968935) (1.89279 -0.662727 0 0.857756 0 0.972614) (1.89998 -0.664327 0 0.85724 0 0.976148) (1.90655 -0.665786 0 0.856579 0 0.979423) (1.91226 -0.667022 0 0.855681 0 0.982331) (1.91692 -0.667958 0 0.854455 0 0.984771) (1.92033 -0.668522 0 0.852816 0 0.986647) (1.92234 -0.668643 0 0.850686 0 0.98787) (1.92279 -0.668258 0 0.84799 0 0.98836) (1.92153 -0.667311 0 0.844664 0 0.988047) (1.91847 -0.66575 0 0.840652 0 0.986865) (1.91348 -0.663531 0 0.835903 0 0.984763) (1.9065 -0.660618 0 0.830378 0 0.981694) (1.89747 -0.656982 0 0.824046 0 0.977626) (1.88634 -0.652601 0 0.816886 0 0.972533) (1.8731 -0.647464 0 0.808885 0 0.966405) (1.85776 -0.641567 0 0.800043 0 0.95924) (1.84035 -0.634918 0 0.790369 0 0.951049) (1.82093 -0.627532 0 0.779882 0 0.941856) (1.79957 -0.619436 0 0.768613 0 0.931695) (1.77637 -0.610664 0 0.756602 0 0.920615) (1.75147 -0.601261 0 0.7439 0 0.908674) (1.72501 -0.591278 0 0.730565 0 0.895939) (1.69714 -0.580772 0 0.716664 0 0.882488) (1.66805 -0.569808 0 0.702271 0 0.868407) (1.63792 -0.558454 0 0.687464 0 0.853787) (1.60695 -0.546781 0 0.672325 0 0.838727) (1.57535 -0.534865 0 0.656941 0 0.823328) (1.54333 -0.522783 0 0.6414 0 0.807697) (1.5111 -0.510616 0 0.625792 0 0.791938) (1.47889 -0.498442 0 0.610208 0 0.776162) (1.44689 -0.486343 0 0.594739 0 0.760471) (1.41531 -0.474395 0 0.579471 0 0.74497) (1.38434 -0.462674 0 0.56449 0 0.729756) (1.35415 -0.451247 0 0.549872 0 0.714917) (1.32489 -0.440173 0 0.535687 0 0.700533) (1.29668 -0.429502 0 0.521994 0 0.686671) (1.2696 -0.419264 0 0.508832 0 0.673381) (1.24372 -0.409477 0 0.496228 0 0.6607) (1.21908 -0.400147 0 0.484191 0 0.64865) (1.19571 -0.391272 0 0.472723 0 0.637245) (1.1736 -0.382849 0 0.461821 0 0.62649) (1.15275 -0.374868 0 0.451475 0 0.616377) (1.13312 -0.367312 0 0.441669 0 0.606891) (1.11466 -0.36016 0 0.432382 0 0.598006) (1.09729 -0.353382 0 0.423585 0 0.58969) (1.08092 -0.346946 0 0.415244 0 0.581901) (1.06548 -0.340814 0 0.407321 0 0.574592) (1.05084 -0.334945 0 0.399773 0 0.567713) (1.03691 -0.329296 0 0.392555 0 0.561208) (1.02358 -0.323822 0 0.385618 0 0.555018) (1.01075 -0.318481 0 0.378915 0 0.54909) (0.998316 -0.313232 0 0.372394 0 0.54337) (0.986286 -0.308056 0 0.366024 0 0.537839) (0.974629 -0.302951 0 0.359777 0 0.532478) (0.96375 -0.298037 0 0.353731 0 0.527441) (0.9538 -0.293493 0 0.348003 0 0.522843) (0.946606 -0.290132 0 0.343342 0 0.519476) (0.942196 -0.287939 0 0.339972 0 0.51756) ) ; boundaryField { outlet { type zeroGradient; } inlet { type fixedValue; value uniform (0.133333 0 0 0.133333 0 0.133333); } lowerWall { type kqRWallFunction; value nonuniform List<symmTensor> 148 ( (0.205732 -0 -0 0.119059 0 0.158783) (0.282327 -0.00695854 -0 0.109535 0 0.187468) (0.351932 -0.0179115 -0 0.106212 0 0.215544) (0.414145 -0.0272606 -0 0.107184 0 0.242572) (0.468925 -0.0351166 -0 0.110858 0 0.268123) (0.516415 -0.0416098 -0 0.116011 0 0.291794) (0.556894 -0.0468712 -0 0.121756 0 0.313246) (0.590786 -0.051041 -0 0.127486 0 0.332258) (0.618629 -0.0542632 -0 0.132821 0 0.348735) (0.641034 -0.056676 -0 0.137552 0 0.362695) (0.658635 -0.0584064 -0 0.141583 0 0.374247) (0.672059 -0.0595687 -0 0.144898 0 0.383564) (0.681903 -0.0602637 -0 0.147528 0 0.390858) (0.688719 -0.0605791 -0 0.149532 0 0.396359) (0.693005 -0.0605896 -0 0.15098 0 0.4003) (0.695201 -0.0603585 -0 0.151946 0 0.402904) (0.695691 -0.0599384 -0 0.152504 0 0.40438) (0.694804 -0.0593735 -0 0.152719 0 0.404916) (0.692823 -0.0586998 -0 0.152653 0 0.404681) (0.689983 -0.0579471 -0 0.152359 0 0.40382) (0.686485 -0.0571395 -0 0.151883 0 0.402461) (0.682494 -0.0562966 -0 0.151264 0 0.40071) (0.678145 -0.0554341 -0 0.150536 0 0.39866) (0.673552 -0.0545645 -0 0.149727 0 0.396388) (0.668807 -0.0536979 -0 0.14886 0 0.393956) (0.663984 -0.0528421 -0 0.147955 0 0.391418) (0.659144 -0.0520033 -0 0.147027 0 0.388817) (0.654334 -0.051186 -0 0.14609 0 0.386189) (0.649592 -0.0503936 -0 0.145154 0 0.383563) (0.644952 -0.0496303 -0 0.144227 0 0.380963) (0.640427 -0.0488913 -0 0.143317 0 0.378403) (0.636119 -0.0482128 -0 0.142462 0 0.375936) (0.633189 -0.0476804 -0 0.142585 0 0.37401) (0.00379602 0 0 0.0101719 -0 0.00993956) (0.00779468 0 -0 0.0172243 -0 0.0178507) (0.0139495 0 -0 0.0206173 -0 0.0248838) (0.0218225 0 -0 0.0242331 -0 0.0323463) (0.0295793 0 -0 0.027747 -0 0.0388359) (0.0351161 0 -0 0.0318871 -0 0.0445159) (0.0395535 -0 -0 0.0366297 -0 0.049736) (0.0436991 -2.2321e-05 -0 0.0402474 -0 0.0535173) (0.0459532 -9.15519e-05 -0 0.0438662 -0 0.0563056) (0.0462852 -0.000165605 -0 0.0472291 -0 0.058103) (0.0448039 -0.000247531 -0 0.0513986 -0 0.0595749) (0.0413086 -0.000246755 -0 0.0541722 -0 0.0593773) (0.0399756 -0.000381586 -0 0.061044 -0 0.0623235) (0.0452591 -0.000408412 0 0.0768684 -0 0.0769238) (0.181461 -0.000570885 0 0.158275 -0 0.179146) (0.00379602 -0 -0 0.0101719 -0 0.00993956) (0.00907906 -4.11105e-05 -0 0.0128867 -0 0.0160268) (0.0127917 -0.000147177 -0 0.0144645 -0 0.0192142) (0.0162677 -0.000247477 -0 0.0142797 -0 0.0210396) (0.0189652 -0.000330762 -0 0.0135476 -0 0.0220523) (0.0210236 -0.000396216 -0 0.0125891 -0 0.0225362) (0.0225996 -0.000442872 -0 0.0115709 -0 0.0226694) (0.0237988 -0.000471909 -0 0.0106067 -0 0.0225723) (0.0246418 -0.000484319 -0 0.00972163 -0 0.0222796) (0.025211 -0.000482733 -0 0.00891194 -0 0.0218351) (0.0258685 -0.00047503 -0 0.00821811 -0 0.0214792) (0.026615 -0.000461714 -0 0.00763217 -0 0.0212496) (0.0272292 -0.000439254 -0 0.00713962 0 0.0210424) (0.0277707 -0.000410724 -0 0.00675556 0 0.0208806) (0.0283212 -0.000379733 -0 0.00649191 0 0.0208077) (0.0289756 -0.000349618 -0 0.00635894 0 0.0208796) (0.0298324 -0.0003222 -0 0.00636485 0 0.0211579) (0.0309803 -0.000296958 -0 0.0065154 0 0.0217023) (0.0324482 -0.000270294 -0 0.00681014 0 0.0225457) (0.0342684 -0.000234545 -0 0.00725886 0 0.0237457) (0.0365668 -0.000181992 -0 0.00793755 0 0.0254837) (0.0399746 -9.16403e-05 -0 0.0090696 -0 0.0283878) (0.046966 7.95705e-05 -0 0.0111544 -0 0.0343334) (0.0577709 0.000423988 -0 0.0138425 0 0.042863) (0.0715453 0.00107353 -0 0.0169851 0 0.0531396) (0.0869811 0.00207058 -0 0.0204041 0 0.0641974) (0.102874 0.00339411 -0 0.0239559 0 0.075289) (0.118454 0.00496601 -0 0.0275554 0 0.0860084) (0.133367 0.00668634 -0 0.0311605 0 0.0962107) (0.147528 0.00845888 -0 0.034747 0 0.105894) (0.160986 0.0102066 -0 0.0382965 0 0.115118) (0.173838 0.0118766 -0 0.0417928 0 0.123959) (0.186175 0.0134377 -0 0.0452196 0 0.132479) (0.198018 0.0148737 -0 0.0485518 0 0.140691) (0.209362 0.0161796 -0 0.0517685 0 0.14859) (0.2202 0.0173583 -0 0.0548573 0 0.156173) (0.23054 0.0184175 -0 0.0578175 0 0.163452) (0.240427 0.0193677 -0 0.0606603 0 0.170462) (0.249871 0.0202176 -0 0.0633949 0 0.17722) (0.25887 0.0209736 -0 0.0660289 -0 0.183731) (0.267408 0.0216407 -0 0.0685689 -0 0.190001) (0.275452 0.0222224 -0 0.0710197 -0 0.196027) (0.282953 0.0227211 -0 0.0733843 -0 0.201804) (0.28983 0.0231378 -0 0.0756664 -0 0.207324) (0.295972 0.0234724 -0 0.0778743 -0 0.212579) (0.301636 0.0237466 -0 0.08007 -0 0.217681) (0.307147 0.0239868 -0 0.0823121 -0 0.222719) (0.31254 0.0241912 -0 0.0846183 -0 0.227722) (0.317825 0.024362 -0 0.0869937 -0 0.232701) (0.322968 0.0244967 -0 0.0894314 -0 0.237639) (0.32794 0.0245928 -0 0.0919202 -0 0.242515) (0.33272 0.0246476 -0 0.0944517 -0 0.247317) (0.337298 0.0246586 -0 0.09702 -0 0.252032) (0.341668 0.0246231 -0 0.0996211 -0 0.256654) (0.345829 0.0245387 -0 0.102252 -0 0.261175) (0.349782 0.024403 -0 0.104908 -0 0.265592) (0.353532 0.0242135 -0 0.107589 -0 0.2699) (0.357088 0.0239681 -0 0.11029 -0 0.274095) (0.360458 0.0236644 -0 0.113008 -0 0.278176) (0.363656 0.0233004 -0 0.115739 -0 0.28214) (0.366695 0.0228742 -0 0.118479 -0 0.285987) (0.369592 0.0223836 -0 0.121221 -0 0.289716) (0.372367 0.021827 -0 0.123957 -0 0.293323) (0.37504 0.0212027 -0 0.126675 -0 0.296807) (0.377632 0.0205098 -0 0.129361 -0 0.300168) (0.380171 0.0197476 -0 0.132001 -0 0.303405) (0.382688 0.018916 -0 0.134578 -0 0.306525) (0.385234 0.0180155 -0 0.137077 -0 0.309542) (0.387924 0.0170473 -0 0.139472 -0 0.312504) (0.391079 0.0160138 -0 0.1417 -0 0.31554) (0.395904 0.0149183 -0 0.143552 -0 0.319122) (0.403377 0.0137571 -0 0.145039 -0 0.323645) (0.410301 0.0125123 -0 0.146771 -0 0.327851) (0.416606 0.0111892 -0 0.148475 -0 0.331659) (0.422567 0.00978357 -0 0.150084 -0 0.335209) (0.428334 0.00828758 -0 0.15159 -0 0.338582) (0.433858 0.00668408 -0 0.152976 -0 0.341738) (0.438374 0.00493733 -0 0.154258 -0 0.344241) (0.439174 0.00304772 -0 0.156192 -0 0.344823) (0.431812 0.001342 -0 0.162887 -0 0.34219) (0.434697 -0.000129521 -0 0.163486 -0 0.342867) (0.440506 -0.00181022 -0 0.161952 -0 0.344754) (0.445688 -0.00352765 -0 0.15919 -0 0.346129) (0.448957 -0.00533984 -0 0.158046 -0 0.346813) (0.451216 -0.00718539 -0 0.157164 -0 0.346962) (0.452612 -0.00903878 -0 0.156243 -0 0.346583) (0.453267 -0.0108835 -0 0.15517 -0 0.345714) (0.453266 -0.0127061 -0 0.153905 -0 0.344399) (0.452677 -0.0144961 -0 0.152446 -0 0.342678) (0.451566 -0.0162454 -0 0.150805 -0 0.340592) (0.449987 -0.0179472 -0 0.149003 -0 0.338185) (0.448002 -0.0195983 -0 0.147064 -0 0.335497) (0.445658 -0.0211933 -0 0.145019 -0 0.332571) (0.443043 -0.0227414 -0 0.142901 -0 0.329466) (0.440193 -0.0242253 -0 0.140764 -0 0.32623) (0.43738 -0.0257231 -0 0.138668 -0 0.323027) (0.434508 -0.027092 -0 0.136747 -0 0.319898) (0.433121 -0.0289021 -0 0.135281 -0 0.317699) (0.431474 -0.0299087 -0 0.134214 -0 0.315806) (0.441863 -0.0343138 -0 0.137686 -0 0.32162) ) ; } upperWall { type kqRWallFunction; value nonuniform List<symmTensor> 133 ( (0.153287 0.0723518 -0 0.126079 -0 0.139664) (0.1751 0.0749822 -0 0.118906 -0 0.146688) (0.195336 0.0773954 -0 0.112966 -0 0.153314) (0.214186 0.079603 -0 0.108075 -0 0.159598) (0.231802 0.0816541 -0 0.104077 -0 0.165587) (0.24831 0.0835769 -0 0.10084 -0 0.171316) (0.26381 0.0853808 -0 0.0982535 -0 0.176811) (0.278387 0.0870724 -0 0.0962213 -0 0.182095) (0.292113 0.0886603 -0 0.0946618 -0 0.187182) (0.305051 0.0901522 -0 0.093504 -0 0.192086) (0.317259 0.0915545 -0 0.0926868 -0 0.196819) (0.328786 0.0928723 -0 0.0921573 -0 0.201388) (0.339679 0.0941104 -0 0.0918701 -0 0.205801) (0.349978 0.0952736 -0 0.0917857 -0 0.210063) (0.359719 0.0963659 -0 0.0918704 -0 0.21418) (0.368939 0.0973913 -0 0.0920951 -0 0.218157) (0.377667 0.0983537 -0 0.0924347 -0 0.221997) (0.385933 0.0992563 -0 0.092868 -0 0.225703) (0.393764 0.100103 -0 0.0933764 -0 0.22928) (0.401184 0.100896 -0 0.0939444 -0 0.23273) (0.408218 0.101639 -0 0.0945586 -0 0.236056) (0.414885 0.102334 -0 0.0952076 -0 0.239262) (0.421207 0.102985 -0 0.0958819 -0 0.24235) (0.427202 0.103593 -0 0.0965732 -0 0.245324) (0.432889 0.104162 -0 0.0972747 -0 0.248186) (0.438283 0.104693 -0 0.0979808 -0 0.25094) (0.443401 0.105188 -0 0.0986865 -0 0.253588) (0.448257 0.10565 -0 0.0993879 -0 0.256133) (0.452866 0.106081 -0 0.100082 -0 0.25858) (0.45724 0.106482 -0 0.100765 -0 0.26093) (0.461391 0.106854 -0 0.101436 -0 0.263186) (0.465334 0.107201 -0 0.102094 -0 0.265354) (0.469105 0.107526 -0 0.102741 -0 0.26745) (0.473782 0.107949 -0 0.103571 -0 0.270085) (0.478347 0.108322 -0 0.104405 -0 0.27269) (0.482768 0.10867 -0 0.105237 -0 0.275248) (0.487043 0.108993 -0 0.106062 -0 0.277755) (0.491169 0.109289 -0 0.10688 -0 0.280208) (0.495143 0.109559 -0 0.107687 -0 0.282603) (0.498965 0.109802 -0 0.10848 -0 0.284937) (0.502629 0.110019 -0 0.109258 -0 0.287206) (0.506136 0.110207 -0 0.110018 -0 0.289407) (0.509482 0.110367 -0 0.110758 -0 0.291538) (0.512664 0.1105 -0 0.111476 -0 0.293594) (0.515682 0.110603 -0 0.11217 -0 0.295573) (0.518533 0.110677 -0 0.112838 -0 0.297472) (0.521214 0.110722 -0 0.113479 -0 0.299288) (0.523725 0.110738 -0 0.11409 -0 0.301019) (0.526064 0.110722 -0 0.114671 -0 0.302661) (0.528228 0.110677 -0 0.115221 -0 0.304212) (0.530216 0.1106 -0 0.115737 -0 0.305669) (0.532027 0.110492 -0 0.116219 -0 0.307031) (0.53366 0.110352 -0 0.116665 -0 0.308295) (0.535112 0.11018 -0 0.117074 -0 0.309459) (0.536382 0.109975 -0 0.117446 -0 0.31052) (0.537469 0.109737 -0 0.11778 -0 0.311478) (0.538371 0.109465 -0 0.118074 -0 0.312329) (0.539087 0.109157 -0 0.118327 -0 0.313073) (0.539615 0.108815 -0 0.11854 -0 0.313707) (0.539954 0.108437 -0 0.11871 -0 0.314229) (0.540102 0.108021 -0 0.118838 -0 0.314639) (0.540056 0.107568 -0 0.118922 -0 0.314933) (0.539815 0.107076 -0 0.118962 -0 0.315111) (0.539377 0.106545 -0 0.118956 -0 0.31517) (0.538738 0.105973 -0 0.118905 -0 0.31511) (0.537897 0.105358 -0 0.118808 -0 0.314927) (0.53685 0.104701 -0 0.118663 -0 0.31462) (0.535594 0.103999 -0 0.118469 -0 0.314186) (0.534125 0.103251 -0 0.118227 -0 0.313625) (0.53244 0.102456 -0 0.117934 -0 0.312932) (0.530533 0.101613 -0 0.117591 -0 0.312107) (0.528401 0.100719 -0 0.117195 -0 0.311145) (0.526038 0.0997744 -0 0.116747 -0 0.310044) (0.523439 0.0987764 -0 0.116244 -0 0.308802) (0.520599 0.0977238 -0 0.115687 -0 0.307415) (0.517512 0.096615 -0 0.115073 -0 0.30588) (0.51417 0.0954486 -0 0.114402 -0 0.304194) (0.510569 0.0942231 -0 0.113672 -0 0.302352) (0.506701 0.0929369 -0 0.112882 -0 0.300351) (0.502559 0.0915888 -0 0.112031 -0 0.298187) (0.498137 0.0901775 -0 0.111117 -0 0.295857) (0.493428 0.0887017 -0 0.11014 -0 0.293356) (0.488424 0.0871604 -0 0.109098 -0 0.29068) (0.483119 0.0855527 -0 0.107989 -0 0.287825) (0.477508 0.0838779 -0 0.106814 -0 0.284788) (0.471583 0.0821357 -0 0.10557 -0 0.281565) (0.465339 0.0803258 -0 0.104257 -0 0.278153) (0.458774 0.0784485 -0 0.102874 -0 0.274548) (0.451882 0.0765042 -0 0.101422 -0 0.270749) (0.444662 0.074494 -0 0.0998992 -0 0.266753) (0.437114 0.0724196 -0 0.0983067 -0 0.26256) (0.42924 0.0702829 -0 0.0966453 -0 0.25817) (0.421044 0.0680869 -0 0.0949164 -0 0.253585) (0.412535 0.0658352 -0 0.093122 -0 0.248808) (0.403722 0.0635323 -0 0.0912653 -0 0.243843) (0.394623 0.0611837 -0 0.0893501 -0 0.2387) (0.385257 0.0587961 -0 0.0873817 -0 0.233388) (0.375654 0.0563774 -0 0.0853666 -0 0.227922) (0.365846 0.0539367 -0 0.0833132 -0 0.22232) (0.355877 0.0514847 -0 0.0812317 -0 0.216604) (0.345801 0.0490337 -0 0.0791344 -0 0.210803) (0.335681 0.0465973 -0 0.0770361 -0 0.204953) (0.325594 0.044191 -0 0.0749546 -0 0.199095) (0.315628 0.0418316 -0 0.0729104 -0 0.19328) (0.305889 0.0395372 -0 0.0709275 -0 0.187567) (0.296496 0.0373273 -0 0.0690329 -0 0.182024) (0.287581 0.0352218 -0 0.0672573 -0 0.176728) (0.279292 0.0332411 -0 0.065634 -0 0.171768) (0.271782 0.0314051 -0 0.0641986 -0 0.167236) (0.265214 0.029733 -0 0.0629881 -0 0.163232) (0.259745 0.0282418 -0 0.0620391 -0 0.159858) (0.25552 0.0269459 -0 0.0613858 -0 0.157209) (0.252662 0.0258567 -0 0.0610573 -0 0.155372) (0.251256 0.0249813 -0 0.0610745 -0 0.154415) (0.251337 0.0243224 -0 0.0614473 -0 0.154379) (0.252884 0.0238784 -0 0.0621716 -0 0.15527) (0.255809 0.0236434 -0 0.0632276 -0 0.157054) (0.259961 0.0236073 -0 0.0645794 -0 0.159658) (0.265134 0.0237578 -0 0.0661757 -0 0.162966) (0.27112 0.0240772 -0 0.0679657 -0 0.166856) (0.279396 0.0246576 -0 0.0703117 -0 0.172076) (0.289099 0.0254444 -0 0.0730067 -0 0.178216) (0.299146 0.0263655 -0 0.0757814 -0 0.18469) (0.308654 0.0273578 -0 0.0784073 -0 0.190968) (0.316955 0.0283659 -0 0.0807054 -0 0.196616) (0.323665 0.0293471 -0 0.0825648 -0 0.201351) (0.328637 0.0302668 -0 0.0839349 -0 0.205031) (0.331918 0.0311083 -0 0.0848193 -0 0.207638) (0.333582 0.0318424 -0 0.08523 -0 0.209191) (0.334048 0.0324999 -0 0.0852882 -0 0.20991) (0.333004 0.0330175 -0 0.0848706 -0 0.209635) (0.333004 0.0335262 -0 0.0847682 -0 0.209767) (0.332588 0.034518 -0 0.0843456 -0 0.209521) ) ; } frontAndBack { type empty; } } // ************************************************************************* //
[ "brent.shambaugh@gmail.com" ]
brent.shambaugh@gmail.com
06dd5bbcdbd171c1eaa79dc33495a46c310a5cc0
49e05bde450a459582e5be2734a90acfe2051a68
/Animation_Kinematics/src/main.cpp
06df4fc584a1832ab550a6668df7875cf9ff680a
[]
no_license
rt2520/Graphics
47659076f32acaeb0a0a3d33dd33d599f36c8c78
804a7504b9b345ab74f589953098d8fcc21ec4b3
refs/heads/master
2020-05-17T23:15:29.350037
2014-10-06T14:30:11
2014-10-06T14:30:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
28,228
cpp
/* Simple opengl demo program. */ //#elif defined(__linux) #if defined(__APPLE__) || defined(MACOSX) # include <GLUT/glut.h> #else # include <GL/glut.h> #endif #include <iostream> #include <sstream> #include <stdlib.h> #include <stdio.h> #include "GLScreenCapturer.h" #include "trackball.h" #include "Texture.h" #include "Tree.h" using namespace std; #define BUFFER_LENGTH 64 #define drawOneLine(x1,y1,x2,y2) glBegin(GL_LINES); \ glVertex2f ((x1),(y1)); glVertex2f ((x2),(y2)); glEnd(); #define degree(x) (x * 180 / 3.1416) #define radian(x) (x * 3.1416 / 180) const float pinDia = 0.8; //GLfloat camRotX, camRotY, camPosX, camPosY, camPosZ; enum mode {FORWARD, INVERSE}; int currMode = FORWARD; enum selectedModel {MODEL1 , MODEL2}; int currentModel = MODEL1; enum selectedJoint1 {JOINT1, JOINT2, JOINT3, JOINT4}; int currentJoint1 = JOINT1; enum selectedJoint2 {JOINT11 = 4, JOINT12, JOINT13, JOINT21, JOINT22, JOINT23, JOINT24, JOINT31, JOINT32, JOINT33, JOINT41, JOINT42, JOINT43, JOINT44, JOINT45}; int currentJoint2 = JOINT12; bool animating = false; enum ikChain {CHAIN1, CHAIN2, CHAIN3, CHAIN4, CHAIN5}; int currIKChain = CHAIN1; float near = 0.5f; float far = 100.0f; float camZ = 15.0; Vector3f targetPos(6.0 * cos(0.5), 6.0* sin(0.5), 0.0); Vector3f currentPos[5]; float smallIncrementIK = 0.0; Joint joint1(0.0, 0.0, 1.0, 2.75, 0.0, 0.0, 0.0, JOINT1); Joint joint2(0.0, 0.0, 1.0, 2.75, 0.0, 0.0, 10.0, JOINT2); Joint joint3(0.0, 0.0, 1.0, 2.75, 0.0, 0.0, 0.0, JOINT3); Joint joint4(0.0, 0.0, 1.0, 2.75, 0.0, 0.0, 0.0, JOINT4); Node model1; Joint joint11(0.0, 0.0, 1.0, 2.75, 0.0, 0.0, 0.0, JOINT11); Joint joint12(0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 10.0, JOINT12); Joint joint13(0.0, 0.0, 1.0, 2.75, 0.0, 0.0, 0.0, JOINT13); Node model2; Joint joint21(0.0, 0.0, 1.0, 2.5, 0.0, 0.0, 60.0, JOINT21); Joint joint22(0.0, 0.0, 1.0, 2.75, 0.0, 0.0, 10.0, JOINT22); Joint joint23(0.0, 0.0, 1.0, 1.5, 0.0, 0.0, 0.0, JOINT23); Joint joint24(0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, JOINT24); Node model3; Joint joint31(0.0, 0.0, 1.0, 2.75, 0.0, 0.0, -60.0, JOINT31); Joint joint32(0.0, 0.0, 1.0, 2.75, 0.0, 0.0, 10.0, JOINT32); Joint joint33(0.0, 0.0, 1.0, 2.75, 0.0, 0.0, 0.0, JOINT33); Node model4; Joint joint41(0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 180.0, JOINT41); Joint joint42(0.0, 0.0, 1.0, 2.5, 0.0, 0.0, 10.0, JOINT42); Joint joint43(0.0, 0.0, 1.0, 1.5, 0.0, 0.0, 0.0, JOINT43); Joint joint44(0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, JOINT44); Joint joint45(0.0, 0.0, 1.0, 2.5, 0.0, 0.0, 0.0, JOINT45); Node model5; const int FPS = 60; GLint viewport[4]; GLdouble modelview[16]; GLdouble projection[16]; GLuint pickedObj = -1; char titleString[150]; int winWidth = 960; int winHeight = 540; // Lights & Materials //GLfloat ambient[] = {0.2, 0.2, 0.2, 1.0}; GLfloat ambient[] = {1.0, 1.0, 1.0, 1.0}; GLfloat position[] = {0.0, 0.0, -10.0, 1.0}; GLfloat mat_diffuse[] = {1.0, 1.0, 1.0, 1.0}; GLfloat mat_specular[] = {1.0, 1.0, 1.0, 1.0}; GLfloat mat_shininess[] = {50.0}; static GLScreenCapturer screenshot("screenshot-%d.ppm"); GLfloat norm(Vector3f v) { return (GLfloat)sqrt (v(0) * v(0) + v(1) * v(1) + v(2) * v(2)); } MatrixXf getPseudoInverse(MatrixXf J) { MatrixXf JTr = J.transpose(); MatrixXf JJTr = (J * JTr); MatrixXf JJTrPlusLambdaIInv = (JJTr + 0.000001 * MatrixXf::Identity(JJTr.rows(), JJTr.cols())).inverse(); return JTr * JJTrPlusLambdaIInv; } void incrementAnglesRecursively(Node model, MatrixXf dTheta, int level) { model.joint->rotation += degree(dTheta(level)); for (int i = 0; i < model.children.size(); i++) incrementAnglesRecursively(model.children[i], dTheta, level + i + 1); } MatrixXf getJacobian(Node model, MatrixXf &J, int col, float prevAngle) { float length = norm(model.joint->endPoint); float angle = model.joint->rotation + prevAngle; Vector3f tmp(-length * sin(radian(angle)),length * cos(radian(angle)), model.joint->endPoint(2)); if (model.children.size() > 0) { Vector3f val = tmp + getJacobian(model.children[0], J, col + 1, angle); J(0 , col) = val(0); J(1 , col) = val(1); J(2 , col) = val(2); return (val); } else { J(0 , col) = tmp(0); J(1 , col) = tmp(1); J(2 , col) = tmp(2); return tmp; } } Vector3f getEffectorPos(Node model, float prevAngle) { float length = norm(model.joint->endPoint); float angle = model.joint->rotation + prevAngle; Vector3f tmp(length * cos(radian(angle)),length * sin(radian(angle)), model.joint->endPoint(2)); if (model.children.size() > 0) { Vector3f val = tmp + getEffectorPos(model.children[0], angle); return (val); } else { return tmp; } } int getDepth(Node model) { if (model.children.size() == 0) return 1; return 1 + getDepth(model.children[0]); } bool updateMovementAngles(Node model, int effector) { //Vector3f currentEffectorPos = currentPos[effector]; int joints = getDepth(model); MatrixXf jacobian = MatrixXf::Zero(3, joints); Vector3f currentEffectorPos = getEffectorPos(model, 0.0); getJacobian(model, jacobian, 0, 0.0); Vector3f dPos = (targetPos - currentEffectorPos); //while (norm(dPos) > 0.1) dPos *= 0.1; MatrixXf dTheta = getPseudoInverse(jacobian) * dPos; incrementAnglesRecursively(model, dTheta, 0); if (norm(targetPos - getEffectorPos(model, 0.0)) < 0.001) return true; if (norm(targetPos - getEffectorPos(model, 0.0)) > norm(targetPos - currentEffectorPos)) { incrementAnglesRecursively(model, -1 * dTheta, 0); return true; } else return false; } void initModels() { vector<Node> v; Node node(&joint4, std::vector<Node>());//, NULL, v.push_back(node); node = Node(&joint3, v);// NULL, v.clear(); v.push_back(node); node = Node(&joint2, v);// NULL, v.clear(); v.push_back(node); model1 = Node(&joint1, v);//, NULL //CHAIN 2 v.clear(); node = Node(&joint13, v);// NULL, v.push_back(node); node = Node(&joint12, v);// NULL, v.clear(); v.push_back(node); model2 = Node(&joint11, v);//, NULL*/ //CHAIN 3 v.clear(); node = Node(&joint24, v);// NULL, v.push_back(node); node = Node(&joint23, v);// NULL, v.clear(); v.push_back(node); node = Node(&joint22, v);// NULL, v.clear(); v.push_back(node); model3 = Node(&joint21, v);//, NULL*/ //CHAIN 4 v.clear(); node = Node(&joint33, v);// NULL, v.push_back(node); node = Node(&joint32, v);// NULL, v.clear(); v.push_back(node); model4 = Node(&joint31, v);//, NULL*/ //CHAIN 5 v.clear(); node = Node(&joint45, v);// NULL, v.push_back(node); node = Node(&joint44, v);// NULL, v.clear(); v.push_back(node); node = Node(&joint43, v);// NULL, v.clear(); v.push_back(node); node = Node(&joint42, v);// NULL, v.clear(); v.push_back(node); model5 = Node(&joint41, v);//, NULL*/ } void initLights(void) { glEnable(GL_LIGHTING); glEnable(GL_LIGHT0); //glEnable(GL_BLEND); glDisable(GL_BLEND); glLightfv(GL_LIGHT0, GL_AMBIENT, ambient); glLightfv(GL_LIGHT0, GL_DIFFUSE, mat_diffuse); glLightfv(GL_LIGHT0, GL_SPECULAR, mat_specular); glLightfv(GL_LIGHT0, GL_POSITION, position); glMaterialfv(GL_FRONT, GL_DIFFUSE, mat_diffuse); glMaterialfv(GL_FRONT, GL_SPECULAR, mat_specular); glMaterialfv(GL_FRONT, GL_SHININESS, mat_shininess); } void reshape( int w, int h ) { winWidth = w; winHeight = h; tbReshape(w, h); glViewport(0, 0, w, h); glMatrixMode(GL_PROJECTION); glLoadIdentity(); // Set the clipping volume gluPerspective(60.0f, (GLfloat)w / (GLfloat)h, near, far); //glOrtho(0.0, (GLdouble) winWidth, 0.0, (GLdouble) winHeight, 1.0f, 100.0f); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); } void timer(int v) { if (currentModel == MODEL1) { if (!updateMovementAngles(model1, 0)) { glutTimerFunc(1000/FPS, timer, v); } } else if (currIKChain == CHAIN2) { if (!updateMovementAngles(model2, 0)) { glutTimerFunc(1000/FPS, timer, v); } } else if (currIKChain == CHAIN3) { if (!updateMovementAngles(model3, 0)) { glutTimerFunc(1000/FPS, timer, v); } } else if (currIKChain == CHAIN4) { if (!updateMovementAngles(model4, 0)) { glutTimerFunc(1000/FPS, timer, v); } } else if (currIKChain == CHAIN5) { if (!updateMovementAngles(model5, 0)) { glutTimerFunc(1000/FPS, timer, v); } } glutPostRedisplay(); } int animatePosGen = 0; int getClosestChain() { float min = norm(getEffectorPos(model2, 0.0) - targetPos); int chain = CHAIN2; float tmp = norm(getEffectorPos(model3, 0.0) - targetPos); if (tmp < min) { min = tmp; chain = CHAIN3; } tmp = norm(getEffectorPos(model4, 0.0) - targetPos); if (tmp < min) { min = tmp; chain = CHAIN4; } tmp = norm(getEffectorPos(model5, 0.0) - targetPos); if (tmp < min) { min = tmp; chain = CHAIN5; } return chain; } void animatedTimer(int v) { if (animating && currMode == INVERSE) { if (currentModel == MODEL1) { if (!updateMovementAngles(model1, 0)) { glutTimerFunc(1000/FPS, animatedTimer, v); } else if (animatePosGen++ <= 10) { srand (time(NULL)); targetPos(0) = ((rand() % 2 == 0) ? -1 : 1) * (rand() % 8); targetPos(1) = ((rand() % 2 == 0) ? -1 : 1) * (rand() % 8); glutTimerFunc(1000/FPS, animatedTimer, v); } else animating = false; } else { bool rerun = false; if (currIKChain == CHAIN2) rerun = !updateMovementAngles(model2, 0); if (currIKChain == CHAIN3) rerun = !updateMovementAngles(model3, 0); if (currIKChain == CHAIN4) rerun = !updateMovementAngles(model4, 0); if (currIKChain == CHAIN5) rerun = !updateMovementAngles(model5, 0); if (rerun) { glutTimerFunc(1000/FPS, animatedTimer, v); } else if (animatePosGen++ <= 10) { srand (time(NULL)); targetPos(0) = ((rand() % 2 == 0) ? -1 : 1) * (rand() % 8); targetPos(1) = ((rand() % 2 == 0) ? -1 : 1) * (rand() % 8); currIKChain = getClosestChain(); glutTimerFunc(1000/FPS, animatedTimer, v); } else animating = false; } } glutPostRedisplay(); } void setupRC() { tbInit(GLUT_RIGHT_BUTTON); tbAnimate(GL_TRUE); // Place Camera // camRotX = 350.0f; // camRotY = 680.0f; // camPosX = 0.0f; // camPosY = 0.0f; // camPosZ = -10.5f; //glEnable( GL_DEPTH_TEST ); //glShadeModel(GL_SMOOTH); //glClearColor(0.0, 0.0, 0.0, 0.0); //glShadeModel (GL_FLAT); initLights(); //initDisplayLists(); } void setCamera( void ) { /*glTranslatef(0, 0, camPosZ); glRotatef(camRotX, 1, 0, 0); glRotatef(camRotY, 0, 1, 0);*/ glTranslatef(0.0, 0.0, -1 * camZ); //glScalef(0.1, 0.1, 0.1); //gluLookAt(0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0); } GLfloat selColor[] = {0, 1, 0, 1}; void drawNodeRecursively(Node node, bool pickable, GLfloat jointColor[], GLfloat linkColor[]) { glPushMatrix(); { Joint* currJoint = node.joint; glPushMatrix(); { if (currentJoint1 == currJoint->selName || currentJoint2 == currJoint->selName) glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, selColor); else glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, jointColor); if (currentModel == MODEL2 && (currentJoint2 == JOINT11 || currentJoint2 == JOINT21 || currentJoint2 == JOINT31 || currentJoint2 == JOINT41)) { if (currJoint->selName == JOINT11 || currJoint->selName == JOINT21 || currJoint->selName == JOINT31 || currJoint->selName == JOINT41) glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, selColor); } //glLoadName(currJoint->selName); // if (pickable) // glColor3ub(currJoint->selName + 1,0,0); glutSolidSphere(0.4, 20, 20); } glPopMatrix(); //glTranslatef(0.25, 0.0, 0.0); glRotatef(currJoint->rotation, currJoint->axis(0), currJoint->axis(1), currJoint->axis(2)); glPushMatrix(); { glRotatef(90.0, 0.0, 1.0, 0.0); glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, linkColor); GLUquadric* cylQuad = gluNewQuadric(); // glLoadName(currJoint->selName); // if (pickable) // glColor3ub(currJoint->selName + 1,0,0); if (cylQuad != 0) gluCylinder(cylQuad, 0.25, 0.25, norm(currJoint->endPoint), 10, 50); } glPopMatrix(); glTranslatef(currJoint->endPoint(0), currJoint->endPoint(1), currJoint->endPoint(2));//joint1.axleLength + joint2.radius, 0.0, 0.0); for (int i = 0; i < node.children.size(); i++) drawNodeRecursively(node.children[i], pickable, jointColor, linkColor); } glPopMatrix(); } void drawModel1 (bool pickable) { GLfloat c1[] = {0, 0, 0, 1}; GLfloat c2[] = {0, 0, 0, 1}; if (currentModel == MODEL1) { c1[0] = 1; c1[1] = 0; c1[2] = 0; c2[0] = 1; c2[1] = 0; c2[2] = 1; drawNodeRecursively(model1, pickable, c1, c2); } if (currentModel == MODEL2) { c1[0] = 1; c1[1] = 0; c1[2] = 0; c2[0] = 1; c2[1] = 0; c2[2] = 1; drawNodeRecursively(model2, pickable, c1, c2); c1[0] = 0; c1[1] = 0; c1[2] = 1; c2[0] = 0.6; c2[1] = 0.4; c2[2] = 0.2; drawNodeRecursively(model3, pickable, c1, c2); c1[0] = 1; c1[1] = 1; c1[2] = 0; c2[0] = 0.2; c2[1] = 0.4; c2[2] = 0.6; drawNodeRecursively(model4, pickable, c1, c2); c1[0] = 0; c1[1] = 1; c1[2] = 1; c2[0] = 0.7; c2[1] = 0.8; c2[2] = 0.4; drawNodeRecursively(model5, pickable, c1, c2); } // Retrieve current matrice before they popped. glGetDoublev( GL_MODELVIEW_MATRIX, modelview ); // Retrieve The Modelview Matrix glGetDoublev( GL_PROJECTION_MATRIX, projection ); // Retrieve The Projection Matrix glGetIntegerv( GL_VIEWPORT, viewport ); // Retrieves The Viewport Values (X, Y, Width, Height) } void display(void) { glLoadIdentity (); /* clear the matrix */ setCamera(); tbMatrix(); GLfloat currentColor[] = {1,1,0,1}; glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, currentColor); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); drawModel1(false); if (currMode == INVERSE) { glPushMatrix(); GLfloat pointColor[] = {1,1,1,1}; glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, pointColor); glTranslatef(targetPos(0), targetPos(1), targetPos(2)); glutSolidSphere(0.1, 20, 20); glPopMatrix(); } glFlush (); glutSwapBuffers(); } void specialKeys( int key, int x, int y ) { switch(key) { case GLUT_KEY_UP: if (currMode == FORWARD) { if (currentModel == MODEL1) { if (currentJoint1 == JOINT1) //&& joint1.rotation < 80) joint1.rotation += 1; else if (currentJoint1 == JOINT2) //&& joint2.rotation < 80) joint2.rotation += 1; else if (currentJoint1 == JOINT3) //&& joint3.rotation < 80) joint3.rotation += 1; else if (currentJoint1 == JOINT4) //&& joint4.rotation < 80) joint4.rotation += 1; } else if (currentModel == MODEL2) { if (currentJoint2 == JOINT11) //&& joint11.rotation < 80) joint11.rotation += 1; else if (currentJoint2 == JOINT12) //&& joint12.rotation < 80) { joint12.rotation += 1; } else if (currentJoint2 == JOINT13) //&& joint13.rotation < 80) joint13.rotation += 1; else if (currentJoint2 == JOINT21) //&& joint21.rotation < 80) joint21.rotation += 1; else if (currentJoint2 == JOINT22) //&& joint22.rotation < 80) joint22.rotation += 1; else if (currentJoint2 == JOINT23) //&& joint23.rotation < 80) joint23.rotation += 1; else if (currentJoint2 == JOINT24) //&& joint24.rotation < 80) joint24.rotation += 1; else if (currentJoint2 == JOINT31) //&& joint31.rotation < 80) joint31.rotation += 1; else if (currentJoint2 == JOINT32) //&& joint32.rotation < 80) joint32.rotation += 1; else if (currentJoint2 == JOINT33) //&& joint33.rotation < 80) joint33.rotation += 1; else if (currentJoint2 == JOINT41) //&& joint41.rotation < 80) joint41.rotation += 1; else if (currentJoint2 == JOINT42) //&& joint42.rotation < 80) joint42.rotation += 1; else if (currentJoint2 == JOINT43) //&& joint43.rotation < 80) joint43.rotation += 1; else if (currentJoint2 == JOINT44) //&& joint44.rotation < 80) joint44.rotation += 1; else if (currentJoint2 == JOINT45) //&& joint45.rotation < 80) joint45.rotation += 1; } glutPostRedisplay(); } break; case GLUT_KEY_DOWN: if (currMode == FORWARD) { if (currentModel == MODEL1) { if (currentJoint1 == JOINT1) //&& joint1.rotation > -80) joint1.rotation -= 1; else if (currentJoint1 == JOINT2) //&& joint2.rotation > -80) joint2.rotation -= 1; else if (currentJoint1 == JOINT3) //&& joint3.rotation > -80) joint3.rotation -= 1; else if (currentJoint1 == JOINT4) //&& joint4.rotation > -80) joint4.rotation -= 1; } else if (currentModel == MODEL2) { if (currentJoint2 == JOINT11) //&& joint11.rotation > -80) joint11.rotation -= 1; else if (currentJoint2 == JOINT12) //&& joint12.rotation > -80) joint12.rotation -= 1; else if (currentJoint2 == JOINT13) //&& joint13.rotation > -80) joint13.rotation -= 1; else if (currentJoint2 == JOINT21) //&& joint21.rotation > -80) joint21.rotation -= 1; else if (currentJoint2 == JOINT22) //&& joint22.rotation > -80) joint22.rotation -= 1; else if (currentJoint2 == JOINT23) //&& joint23.rotation > -80) joint23.rotation -= 1; else if (currentJoint2 == JOINT24) //&& joint24.rotation > -80) joint24.rotation -= 1; else if (currentJoint2 == JOINT31) //&& joint31.rotation > -80) joint31.rotation -= 1; else if (currentJoint2 == JOINT32) //&& joint32.rotation > -80) joint32.rotation -= 1; else if (currentJoint2 == JOINT33) //&& joint33.rotation > -80) joint33.rotation -= 1; else if (currentJoint2 == JOINT41) //&& joint41.rotation > -80) joint41.rotation -= 1; else if (currentJoint2 == JOINT42) //&& joint42.rotation > -80) joint42.rotation -= 1; else if (currentJoint2 == JOINT43) //&& joint43.rotation > -80) joint43.rotation -= 1; else if (currentJoint2 == JOINT44) //&& joint44.rotation > -80) joint44.rotation -= 1; else if (currentJoint2 == JOINT45) //&& joint45.rotation > -80) joint45.rotation -= 1; } glutPostRedisplay(); } break; //case GLUT_KEY_LEFT: //case GLUT_KEY_RIGHT: } } void keyboard( unsigned char key, int x, int y ) { switch(key) { case 27: // Escape key exit(0); break; case 'r': printf("save current screen\n"); screenshot.capture(); break; case ' ': //Space bar if (currMode == FORWARD) { currMode = INVERSE; glutPostRedisplay(); //Update Current positions currentPos[5] // glutTimerFunc(1000/FPS, timer, v); } else currMode = FORWARD; break; case '1': currentModel = MODEL1; currentJoint1 = JOINT1; glutPostRedisplay(); break; case '2': currentModel = MODEL2; currentJoint2 = JOINT12; glutPostRedisplay(); break; case 'a': if (currMode == INVERSE) { if (animating) animating = false; else { animating = true; srand (time(NULL)); targetPos(0) = ((rand() % 2 == 0) ? -1 : 1) * (rand() % 8); targetPos(1) = ((rand() % 2 == 0) ? -1 : 1) * (rand() % 8); if (currentModel == MODEL2) currIKChain = getClosestChain(); else currIKChain = CHAIN1; glutTimerFunc(1000/FPS, animatedTimer, 0); } animatePosGen = 0; } break; } } // Got this from Nehe Gamedev Tutorials Vector3f GetOGLPos(int x, int y) { GLint viewport[4]; GLdouble modelview[16]; GLdouble projection[16]; GLfloat winX, winY, winZ; GLdouble posX, posY, posZ; glGetDoublev( GL_MODELVIEW_MATRIX, modelview ); glGetDoublev( GL_PROJECTION_MATRIX, projection ); glGetIntegerv( GL_VIEWPORT, viewport ); winX = (float)x; winY = (float)viewport[3] - (float)y; glReadPixels( x, int(winY), 1.0, 1, GL_DEPTH_COMPONENT, GL_FLOAT, &winZ ); gluUnProject( winX, winY, winZ, modelview, projection, viewport, &posX, &posY, &posZ); return Vector3f(posX, posY, posZ); } int selectedJoint(Node model, float prevAngle, Vector3f prevPos, Vector3f click) { float length = norm(model.joint->endPoint); float angle = model.joint->rotation + prevAngle; Vector3f tmp(length * cos(radian(angle)),length * sin(radian(angle)), model.joint->endPoint(2)); tmp += prevPos; // if (model.children.size() > 0 && norm (click - tmp) < 0.1) // return model.children[0].joint->selName; if (norm (click - tmp) < 1.0) return model.joint->selName; else if (model.children.size() > 0) { return selectedJoint(model.children[0], angle, tmp, click); } else { return -1; } } void resolveSelection (float x, float y) { Vector3f click(x, y, 0.0); int selection = -1; if (currentModel == MODEL1) { //if (norm (click) < 0.1) //{ // currentJoint1 = JOINT1; //} //else //{ selection = selectedJoint(model1, 0.0, Vector3f(0.0,0.0,0.0), click); if (selection != -1) currentJoint1 = selection; //} return; } else if (currentModel == MODEL2) { selection = selectedJoint(model2, 0.0, Vector3f(0.0,0.0,0.0), click); if (selection != -1) { currentJoint2 = selection; return; } selection = selectedJoint(model3, 0.0, Vector3f(0.0,0.0,0.0), click); if (selection != -1) { currentJoint2 = selection; return; } selection = selectedJoint(model4, 0.0, Vector3f(0.0,0.0,0.0), click); if (selection != -1) { currentJoint2 = selection; return; } selection = selectedJoint(model5, 0.0, Vector3f(0.0,0.0,0.0), click); if (selection != -1) { currentJoint2 = selection; return; } } } void mouse( int button, int state, int x, int y) { tbMouse(button, state, x, y); if(button == GLUT_LEFT_BUTTON && state == GLUT_DOWN) { //processSelection(x, y); Vector3f openGLCoord = GetOGLPos(x,y); if (currMode == INVERSE && !animating) { targetPos(0) = (camZ / far) * openGLCoord(0); targetPos(1) = (camZ / far) * openGLCoord(1); if (currentModel == MODEL2) currIKChain = getClosestChain(); else currIKChain = CHAIN1; glutTimerFunc(1000/FPS, timer, 0); } else if (currMode == FORWARD) { resolveSelection((camZ / far) * openGLCoord(0), (camZ / far) * openGLCoord(1)); } } if(button == GLUT_LEFT_BUTTON && state == GLUT_UP) { pickedObj = -1; glutPostRedisplay(); } } void motion(int x, int y) { tbMotion(x, y); GLfloat winX, winY, winZ; GLdouble posX, posY, posZ; winX = (float)x; winY = (float)viewport[3] - (float)y; glReadPixels( x, (int)winY, 1, 1, GL_DEPTH_COMPONENT, GL_FLOAT, &winZ ); gluUnProject( winX, winY, winZ, modelview, projection, viewport, &posX, &posY, &posZ); glutPostRedisplay(); } int main (int argc, char *argv[]) { glutInit( &argc, argv ); glutInitDisplayMode( GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH); glutInitWindowSize( winWidth, winHeight ); glutCreateWindow( "KINEMATICS" ); initModels(); setupRC(); glutDisplayFunc( display ); glutReshapeFunc( reshape ); glutKeyboardFunc( keyboard ); glutSpecialFunc( specialKeys ); glutMouseFunc( mouse ); glutMotionFunc( motion ); glutMainLoop(); }
[ "rt2520@columbia.edu" ]
rt2520@columbia.edu
10556db8f4104c03cbeb3f86ffa47a4edb976527
f60fbce76f3464fcba29fbd8cf1181b273de1825
/tests/test_ability_remap.cc
7edd69088e71aafaef4fc578106868cf615b2203
[ "MIT" ]
permissive
EvenSharper/s2client-api
0f81230649898e12462d109c13c91bc0b49a9d88
d5419714346500d5659bcaffc6e78f26a8e1241a
refs/heads/master
2021-01-16T00:28:44.507665
2017-08-10T17:59:52
2017-08-10T17:59:52
99,964,204
1
0
null
2017-08-10T20:57:57
2017-08-10T20:57:57
null
UTF-8
C++
false
false
6,458
cc
#include "test_framework.h" #include "test_movement_combat.h" #include "sc2api/sc2_api.h" #include "sc2utils/sc2_manage_process.h" #include <iostream> #include <string> #include <random> #include "feature_layers_shared.h" namespace sc2 { // // TestRemapStart // class TestRemap : public TestSequence { public: Point2DI command_center_pt_; TestRemap() : command_center_pt_(24, 24), TestSequence() { } Unit GetCommandCenter() { const ObservationInterface* obs = agent_->Observation(); Units found_command_centers = obs->GetUnits(Unit::Alliance::Self, IsUnit(UNIT_TYPEID::TERRAN_COMMANDCENTER)); if (found_command_centers.size() != 1) { ReportError("Could not find the command center"); assert(0); return Unit(); } return found_command_centers[0]; } }; class TestRemapStart : public TestRemap { public: void OnTestStart() override { const ObservationInterface* obs = agent_->Observation(); const GameInfo& game_info = agent_->Observation()->GetGameInfo(); Point2D min = game_info.playable_min; Point2D max = game_info.playable_max; Point2D spawn_pt = min + (max - min) / 2.0f; agent_->Debug()->DebugCreateUnit(UNIT_TYPEID::TERRAN_SCV, spawn_pt, agent_->Observation()->GetPlayerID(), 1); agent_->Debug()->DebugMoveCamera(spawn_pt); agent_->Debug()->DebugGiveAllResources(); agent_->Debug()->DebugIgnoreMineral(); agent_->Debug()->SendDebug(); } }; class TestRemapSelectSCV : public TestRemap { public: void OnTestStart() override { ActionFeatureLayerInterface* action = agent_->ActionsFeatureLayer(); Point2DI p0(0, 0); Point2DI p1(63, 63); action->Select(p0, p1); } }; class TestRemapBuildCommandCenter : public TestRemap { public: void OnTestStart() override { ActionFeatureLayerInterface* action = agent_->ActionsFeatureLayer(); action->UnitCommand(ABILITY_ID::BUILD_COMMANDCENTER, command_center_pt_); wait_game_loops_ = 50; } }; class TestRemapBuildCommandCenterHalt : public TestRemap { public: void OnTestStart() override { ActionFeatureLayerInterface* action = agent_->ActionsFeatureLayer(); action->UnitCommand(ABILITY_ID::HALT); wait_game_loops_ = 10; } }; class TestRemapBuildCommandCenterDetectHalt : public TestRemap { public: float current_progress; void OnTestStart() override { Unit command_center = GetCommandCenter(); current_progress = command_center.build_progress; if (current_progress == 0.0f) { ReportError("Command center did not start building"); assert(0); return; } if (current_progress == 1.0f) { ReportError("Command center finished building"); assert(0); return; } wait_game_loops_ = 50; } void OnTestFinish() override { Unit command_center = GetCommandCenter(); if (current_progress != command_center.build_progress) { ReportError("Command center building continued"); assert(0); return; } } }; class TestRemapBuildCommandCenterContinue : public TestRemap { public: float current_progress; void OnTestStart() override { Unit command_center = GetCommandCenter(); current_progress = command_center.build_progress; ActionFeatureLayerInterface* action = agent_->ActionsFeatureLayer(); action->UnitCommand(ABILITY_ID::SMART, command_center_pt_); wait_game_loops_ = 50; } void OnTestFinish() override { Unit command_center = GetCommandCenter(); if (current_progress == command_center.build_progress) { ReportError("Command center building would not continue"); assert(0); return; } // Select the barracks. ActionFeatureLayerInterface* action = agent_->ActionsFeatureLayer(); action->Select(command_center_pt_, PointSelectionType::PtSelect); } }; class TestRemapBuildCommandCenterCancel : public TestRemap { public: void OnTestStart() override { ActionFeatureLayerInterface* action = agent_->ActionsFeatureLayer(); action->UnitCommand(ABILITY_ID::CANCEL); wait_game_loops_ = 10; } void OnTestFinish() override { const ObservationInterface* obs = agent_->Observation(); Units found_command_centers = obs->GetUnits(Unit::Alliance::Self, IsUnit(UNIT_TYPEID::TERRAN_COMMANDCENTER)); if (found_command_centers.size() != 0) { ReportError("Command center was not destroyed!"); assert(0); } } }; class TestRemapFinishTest : public TestRemap { public: void OnTestStart() override { wait_game_loops_ = 5; } }; // // RemapAbilitiesTestBot // class RemapAbilitiesTestBot : public UnitTestBot { public: RemapAbilitiesTestBot(); private: void OnTestsBegin () final; void OnTestsEnd () final; }; RemapAbilitiesTestBot::RemapAbilitiesTestBot() : UnitTestBot() { // Sequences. Add(TestRemapStart()); Add(TestRemapSelectSCV()); Add(TestRemapBuildCommandCenter()); Add(TestRemapBuildCommandCenterHalt()); Add(TestRemapBuildCommandCenterDetectHalt()); Add(TestRemapBuildCommandCenterContinue()); Add(WaitT<5>()); Add(TestRemapBuildCommandCenterHalt()); Add(TestRemapBuildCommandCenterDetectHalt()); Add(TestRemapBuildCommandCenterCancel()); Add(TestRemapFinishTest()); } void RemapAbilitiesTestBot::OnTestsBegin() { Debug()->DebugShowMap(); }; void RemapAbilitiesTestBot::OnTestsEnd () { } // // TestFeatureLayers // bool TestAbilityRemap(int argc, char** argv) { Coordinator coordinator; if (!coordinator.LoadSettings(argc, argv)) { return false; } coordinator.SetFeatureLayers(sc2::FeatureLayerSettings()); // Add the custom bot, it will control the players. RemapAbilitiesTestBot bot; coordinator.SetParticipants({ CreateParticipant(sc2::Race::Terran, &bot), }); // Start the game. coordinator.LaunchStarcraft(); coordinator.StartGame(sc2::kMapEmpty); // Step forward the game simulation. while (!bot.IsFinished()) { sc2::SleepFor(20); coordinator.Update(); } return bot.Success(); } }
[ "abrunasso@blizzard.com" ]
abrunasso@blizzard.com
5a7f8aea4d17b0abec72a9e565dfcb64f850a5d3
e2f371c00d77c07f6139f65ff299677b995c1d1f
/ch13/OOP/AccountHandler.h
8fd78e9457cd893a5503493d24875d38c2ddbc34
[]
no_license
kdhgus92/CPP-programming
e1587a38a632bb184c6662bf4701c3e8cedb67d1
55f94618d6c95332850e3f4b9cb9f6683f79c196
refs/heads/master
2022-11-17T15:43:11.813535
2020-07-08T11:31:17
2020-07-08T11:31:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
618
h
/* * 파일이름 : AccountHandler.h * 작성자 : 권오현 * 업데이트 정보: [2020, 07, 02] 파일버전 0.8 */ #ifndef __ACCOUNT_HANDLER_H__ #define __ACCOUNT_HANDLER_H__ #include "BankingCommonDecl.h" #include "Account.h" #include "BoundCheckArray.h" class AccountHandler { private: BoundCheckArray<Account*> accArr; //변경 int accNum = 0; public: AccountHandler(); void ShowMenu(void); void MakeAccount(void); void DepositMoney(void); void WithdrawMoney(void); void ShowAllAccInfo(void); ~AccountHandler(); protected: void MakeNormalAccount(void); void MakeCreditAccount(void); }; #endif
[ "noreply@github.com" ]
kdhgus92.noreply@github.com
9f8356ce18c2ab0c440ff52084c63b679e76d8da
fffe012158fb8ad26bfb8ea04bebaac9fbf58b48
/BuildingDetectorDemo/stdafx.cpp
dd9b71a3e29328690e31212fc246f1affce517d1
[]
no_license
Huang-Jin/BuildingDetecor
4ef2e5c7ec90451ae5de1d89a5f6ebd852f15129
0d86277b11411127cd1c2aca6e0b8bdaa87ea758
refs/heads/master
2021-05-10T20:48:33.528598
2018-01-23T06:36:21
2018-01-23T06:36:21
118,206,053
1
0
null
null
null
null
GB18030
C++
false
false
273
cpp
// stdafx.cpp : 只包括标准包含文件的源文件 // BuildingDetectorDemo.pch 将作为预编译头 // stdafx.obj 将包含预编译类型信息 #include "stdafx.h" // TODO: 在 STDAFX.H 中 // 引用任何所需的附加头文件,而不是在此文件中引用
[ "1309740625@qq.com" ]
1309740625@qq.com
64ad90935b4e37262bf69659ce7c9f6268304372
9e540513bfb885147307b8e1fd68b918db91ee97
/a star algorithm/a_star(guo).cpp
9767f6d13d91dd4ce9708200331252f1947490ca
[]
no_license
kapz28/All-the-projects
8776fc93f7800fbfa54582177b72703081d5ac68
c9e16f775787818f5a281b59afeadb8868339e7a
refs/heads/master
2021-07-08T10:58:03.483161
2021-05-05T05:59:49
2021-05-05T05:59:49
72,810,172
0
0
null
null
null
null
UTF-8
C++
false
false
7,668
cpp
// MTE 140 - Assignment 4 // Name: Matthew Robert Gulbronson, Student ID: 20656205 // Name: Peiliang Guo, Student ID: 20665804 // Name: Kapilan Satkunanathan, Student ID: 20694418 #include <iostream> #include <math.h> #include <algorithm> #include <string> #include <sstream> #include "a_star.hpp" using namespace std; // Calculates and returns the fcost int AStar::getFCost(Node* currentNode) { // TODO Step1. Return fCost as a sum of gCost and hCost return currentNode->gCost + currentNode->hCost; } // Computes the Euclidean distance between two nodes and scales it by 10 to avoid floats int AStar::getHDistance(Node* A, Node* B) { // TODO Step2. Return the Euclidian distance scaled by 10 // Calculate the delta x and delta y int dx = B->posX - A->posX; int dy = B->posY - A->posY; // Calculate the Euclidian distance * 10 return sqrt(dx*dx + dy*dy) * 10; } // Iterates through the node's parents and creates a list of the shortest path to take list<Node*> AStar::retracePath (Node* startNode, Node* endNode) { list<Node*> path; Node* currentNode = endNode; while (currentNode != startNode) { path.push_front(currentNode); currentNode = currentNode->parent; } return path; } // For the current node, cnode, discovers all walkable neighbours, and adds them to the neighbours list list<Node*> AStar::getNeighbours(Node* cnode, Node* grid[Y_LENGTH][X_LENGTH]) { list<Node*> neighbours; // TODO Step3. Add walkable neighbours to the neighbours list // Step3.1 Iterate from (cnode.y - 1) to (cnode.y + 1) // Step3.2 Iterate from (cnode.x - 1) to (cnode.x + 1) // Step3.3 Add neighbours that are not outside the world bounds and that are walkable // Determine the valid ranges of x and y within the boundaries of the grid int xRange[2] = { max(cnode->posX - 1, 0), min(cnode->posX + 1, X_LENGTH - 1) }; int yRange[2] = { max(cnode->posY - 1, 0), min(cnode->posY + 1, Y_LENGTH - 1) }; // Iterate through all points in the x and y ranges for (int y = yRange[0]; y <= yRange[1]; y++) { for (int x = xRange[0]; x <= xRange[1]; x++) { // Ignore the cnode itself if (x != cnode->posX || y != cnode->posY) { // Check if the neighbour is walkable Node* neighbour = grid[y][x]; if (neighbour->walkable) { // Push neighbour to the list neighbours.push_back(neighbour); } } } } return neighbours; } // Outputs the discovered path as a string string AStar::getPathString(list<Node*> path) { stringstream outputStream; for (list<Node*>::iterator it = path.begin(); it != path.end(); ++it) { outputStream << "(" << (*it)->posX << "," << (*it)->posY << ")" << endl; } return outputStream.str(); } // Outputs path distance int AStar::getPathDistance(list<Node*> path) { return path.size() > 0 ? path.back() -> fCost : 0; } // Finds shortest path between startNode and endNode using A* algorithm list<Node*> AStar::findPath(Node* world[Y_LENGTH][X_LENGTH], Node* startNode, Node* endNode) { list<Node*> openSet; // list of nodes not yet evaluated list<Node*> closedSet; // list of nodes already evaluated Node* currentNode; startNode->gCost = 0; startNode->hCost = getHDistance(startNode, endNode); startNode->fCost = startNode->hCost; openSet.push_back(startNode); // insert the starting node at the beginning of the open set while(!openSet.empty()) { // TODO Step4. Find a node in the openSet that has the smallest fCost // If there is a conflict, select the node with the smaller hCost // Use <list> iterator to iterate through the list; see sample iterator code below // Store the node with minimal cost for comparison list<Node*>::iterator minIt; int minFCost = INT_MAX, minHCost = INT_MAX; for(list<Node*>::iterator it = openSet.begin(); it != openSet.end(); it++) { Node* node = *it; // If the fCost is smaller than the current minimal // or equivalent fCost but smaller hCost than current minimal, // record the node as the new minimal if (node->fCost < minFCost || (node->fCost == minFCost && node->hCost < minHCost)) { minIt = it; minFCost = node->fCost; minHCost = node->hCost; } } // TODO Step5. Remove the found node from the open list and insert it into closed list currentNode = *minIt; openSet.erase(minIt); closedSet.push_back(currentNode); // TODO Step6. Get a list of walkable neighbours for the current node list<Node*> neighbours = getNeighbours(currentNode, world); // TODO Step7. Iterate through the neighbours list and add matching neighbours to the open list for(list<Node*>::iterator it = neighbours.begin(); it != neighbours.end(); it++) { Node* neighbour = *it; // Step7.1. Check if the current neighbour is already in the closed list; if it is, skip it bool foundInClosed = false; for(list<Node*>::iterator closedIt = closedSet.begin(); closedIt != closedSet.end(); closedIt++) { // If the neighbour is found in the closedSet, signal foundInClosed and break the loop if (*closedIt == neighbour) { foundInClosed = true; break; } } // If the neighbour is found in the closedSet, ignore it and continue to the next one. if (foundInClosed) { continue; } // Step7.2. Compute gCost from the start node for the curent neighbour // If that cost is less than previously computed gCost, update the neighbour's parent to the current node, and // update gCost, hCost, and fCost values for the neighbour to match the current node // Use getHDistance to get the cost from the current node to the current neighour // If a node has zero hCost, it means the node has not being visited bool isUnvisited = neighbour->fCost == 0; if (isUnvisited) { // Calculate and store the hCost for the node neighbour->hCost = getHDistance(neighbour, endNode); // Add the neighbour to the open set openSet.push_back(neighbour); } // Calculate the new gCost based on the current node int gCost = getHDistance(neighbour, currentNode) + currentNode->gCost; // Update the gCost if the node has never been visited or the new // gCost is lower than the previously stored gCost if (isUnvisited || neighbour->gCost > gCost) { neighbour->gCost = gCost; neighbour->fCost = getFCost(neighbour); // Update the parent so the path can be retracted neighbour->parent = currentNode; } } // TODO Step8. Check if the current node is the end node; if it is, return the retraced path from start to end if (currentNode == endNode) { return retracePath(startNode, endNode); } } list<Node*> empty; return empty; }
[ "noreply@github.com" ]
kapz28.noreply@github.com
207934a2f90ec5ab24a69b87703aa00eeb3b1a58
75bb52c11587ea6c286e5fcd311369850e74dfde
/3-01_a/main.cpp
ae01b1481c8b1c3b163e6364c1183bea4550d11d
[]
no_license
tado/BeyondInteraction_2nd_examples
6d763f889a7014fbf63113b263c0aac58dacf878
b59a333e45ebd7fa2ebd7aa991530dcca426a931
refs/heads/master
2021-01-10T18:55:41.437469
2020-03-11T01:55:22
2020-03-11T01:55:22
7,948,883
26
17
null
2016-03-08T21:53:10
2013-02-01T00:36:41
C++
UTF-8
C++
false
false
699
cpp
#include <iostream> using namespace std; class Dog { // Dogクラスの定義 public: string name; //犬の名前 (状態) void bark(); //犬が吠える (動作) }; //Dogクラスの定義終了 (最後に";"が入るのに注意) void Dog::bark() { //Dogのメソッド bark() の定義 //プログラムのデータ出力に、名前と鳴き声を表示 cout << name << "「ワンワン!」" << endl; } int main (int argc, char * const argv[]) { //メイン関数 Dog hachi; //Dogクラスをインスタンス化して、hachiを生成 hachi.name = "ハチ"; //hachiのプロパティnameに"ハチ"を代入 hachi.bark(); //hachiのメソッドbark()を実行 }
[ "tadokoro@gmail.com" ]
tadokoro@gmail.com
d0db409cb8018c3ca1439e6f74a6fcf08ba24b31
bd75df2a6d81b1023b0fd23c3bec2dfa4a1fa8a3
/exercise/Codeforce/1324B.cpp
f5eeac3446e7dc6728a77081af384626519c377e
[]
no_license
jongwuner/ps-study
596215ed2f3405197eabb4251dbfb3bff1b09352
a3f198dcf2467f1637aa8e1efdce81662d6b62ef
refs/heads/master
2021-07-18T15:54:51.622618
2020-05-10T11:53:11
2020-05-10T11:53:11
156,563,729
0
0
null
null
null
null
UTF-8
C++
false
false
647
cpp
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> Pair; const int MAX = 5001; map<int, int> Map; vector<int> vi; int N; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int T; cin >> T; while (T--) { vi.clear(); Map.clear(); bool ans = false; cin >> N; vi.resize(N + 1); for (int i = 1; i <= N; i++) cin >> vi[i]; for (int i = 1; i <= N; i++) { if (Map.find(vi[i]) == Map.end()) { Map[vi[i]] = i; } else { if (i - Map[vi[i]] >= 2) { ans = true; break; } } } if (ans) cout << "YES\n"; else cout << "NO\n"; } return 0; }
[ "jklh0202@naver.com" ]
jklh0202@naver.com
af9861f2ad6bbb3335650efcc59fcdae4847995b
77b54e9b87ee83d3d413009d4d484835d2860179
/src/solvers/solver.hpp
1fcaf04c19910432cb58ba892434c871a0368d55
[]
no_license
zhangchi0605/oppt
fe70a600ad8e8b35074bf1ca76d364dacff11677
461912d0b8a39b2261819cedbdef6ff29864962c
refs/heads/master
2020-04-05T09:06:19.523150
2018-09-29T14:13:14
2018-09-29T14:13:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,734
hpp
/** * Copyright 2017 * * This file is part of On-line POMDP Planning Toolkit (OPPT). * OPPT is free software: you can redistribute it and/or modify it under the terms of the * GNU General Public License published by the Free Software Foundation, * either version 2 of the License, or (at your option) any later version. * * OPPT is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with OPPT. * If not, see http://www.gnu.org/licenses/. */ /** @file solver.hpp * Contains an abstract definition of a POMDP solver */ #ifndef __OPPT_SOLVER_HPP__ #define __OPPT_SOLVER_HPP__ #include <fstream> #include <iostream> #include <memory> #include "global.hpp" #include "oppt/opptCore/core.hpp" #include "oppt/opptCore/resources/resources.hpp" //#include "problems/shared/filesystemUtils.hpp" #include "oppt/problemEnvironment/ProblemEnvironmentOptions.hpp" #include "oppt/plugin/Plugin.hpp" namespace oppt { // Forward declaration class ProblemEnvironment; } using namespace oppt; namespace solvers { typedef std::function<void(RobotEnvironment *const env1, RobotEnvironment *const env2)> RegisterEnvironmentFn; /** * An abstract class which represents a POMDP solver. When designing new POMDP solvers, the user has to inherit * from this class and override all pure virtual methods. */ class Solver { public: friend class oppt::ProblemEnvironment; /** * Default constructor */ Solver() = default; /** * Virtual destructor */ virtual ~Solver() {} /** * @brief Get the name of the solver */ const std::string getName() const { return solverName_; } /** * @brief Performs initial setup operations */ virtual void setup() = 0; /** * @brief Perform reset operations. This method is called after each simulation run */ virtual bool reset() = 0; /** * @brief Improve the POMDP policy starting from the current belief. * @param timeout The maximum time (in milliseconds) the solver should take to improve the policy * * @return true if the policy improvement was successful */ virtual bool improvePolicy(const FloatType &timeout) = 0; /** * @brief Get the next action the robot has to execute according to the calculated * policy. * * @return A shared pointer to the Action that is going to be executed. * If there's no action available, a nullptr should be returned */ virtual ActionSharedPtr getNextAction() = 0; /** * @brief Update the belief, based on the action taken and observation received * * @return true if the belief update was successful */ virtual bool updateBelief(const ActionSharedPtr& action, const ObservationSharedPtr& observation) = 0; /** * @brief Method for handling environment changes. Implementing this method is optional * * @param environmentChanges Vector of oppt::EnvironmentChange pointers. The changes are ordered in sequential order */ virtual void handleEnvironmentChanges(const std::vector<EnvironmentChangeSharedPtr>& environmentChanges) {} /** * @brief This method is called after a step has been performed and allows the user to serialize additional * information specific to a Solver implementation. Implementing this method is optional * * @param os An output stream to the log file */ virtual void serializeStep(std::ofstream& os) {} /** * @brief a method which is being called when a simulation run is finished. * Implementing this method is optional * * @param os The output stream to the log file * @param run The number of the run */ virtual void runFinished(std::ofstream& os, const unsigned int &run) {} /** * @brief Returns a vector consisting of a particle representation of a belief. This method is purely used * for visualization purposes and is optional * * @return A vector representation of belief particles consisting of shared pointers to RobotState objects */ virtual VectorRobotStatePtr getBeliefParticles() { return VectorRobotStatePtr(); } protected: /** * @brief Registers an environment for environment changes that happen in another environment * * When a RobotEnvironment is registered for environment changes, whenever am EnvironmentChange is * applied to this RobotEnvironment, is will automatically be applied to the registered RobotEnvironment * as well. Note that only planning environments can be registered * * @param registeredEnvironment The RobotEnvironment that has to be registered for environment changes * @param environment The RobotEnvironment the registeredEnvironment gets registered to. If this is a nullptr, * the registerdEnvironment is registered to the execution environment */ void registerForEnvironmentChanges(RobotEnvironment *const registeredEnvironment, RobotEnvironment *const environment=nullptr) { registerForEnvironmentChangesFn_(registeredEnvironment, environment); } /** The heuristic plugin needs to be loaded AFTER the robo environment is fully initialized */ void loadHeuristicPlugin() { // Load heuristic plugin if (problemEnvironmentOptions_->heuristicPlugin == "") return; if (!resources::FileExists(problemEnvironmentOptions_->heuristicPlugin)) { ERROR("Heuristic plugin '" + problemEnvironmentOptions_->heuristicPlugin + "' doesn't exist"); } heuristicPlugin_ = HeuristicPlugin::Create(problemEnvironmentOptions_->heuristicPlugin, "heuristicPlugin"); if (!heuristicPlugin_->load(robotPlanningEnvironment_, problemEnvironmentOptions_->configPath)) { ERROR("Heuristic plugin '" + problemEnvironmentOptions_->heuristicPlugin + "' couldn't be loaded"); } } protected: /** @brief The planning environment the solver uses for computing a policy */ oppt::RobotEnvironment* robotPlanningEnvironment_ = nullptr; /** @brief The name of the solver */ std::string solverName_ = "Solver"; /** @brief A std::unique_ptr to the oppt::HeuristicPlugin. If no HeuristicPlugin is provided in the problem configuration file, this will be a nullptr */ HeuristicPlugin::HeuristicPluginUniquePtr heuristicPlugin_; /** @brief A pointer to the ProblemEnvironmentOptions object*/ ProblemEnvironmentOptions* problemEnvironmentOptions_ = nullptr; /** @brief A pointer to the random engine*/ RandomEnginePtr randGen_ = nullptr; RegisterEnvironmentFn registerForEnvironmentChangesFn_; private: void setRobotPlanningEnvironment(oppt::RobotEnvironment* robotPlanningEnvironment) { robotPlanningEnvironment_ = robotPlanningEnvironment; } void setProblemEnvironmentOptions(ProblemEnvironmentOptions* problemEnvironmentOptions) { problemEnvironmentOptions_ = problemEnvironmentOptions; } void setRandomEngine(RandomEnginePtr& randomEngine) { randGen_ = randomEngine; } void setRegisterEnvironmentFn(RegisterEnvironmentFn &registerEnvFn) { registerForEnvironmentChangesFn_ = registerEnvFn; } }; typedef std::unique_ptr<Solver> SolverPtr; } #endif
[ "hoergems@gmail.com" ]
hoergems@gmail.com
114bf8d52bd515d580403613e9b69a836e347f7a
92d69be79664e5f63a56317ad1353ebe6c3e2b2d
/PLFoundationCore/PLTimer.cpp
d3e849574700682b26a8335886c4b8676f39114f
[ "Apache-2.0" ]
permissive
YPLiang19/PLFoundation
c95b264752c0ebeb1e1e11aa99a39e86d61c5970
5701a005ad2fc75f08786ba8c61d6beb590b2574
refs/heads/master
2022-12-02T10:31:41.712963
2020-08-21T10:07:50
2020-08-21T10:07:50
285,720,354
2
1
null
null
null
null
UTF-8
C++
false
false
1,530
cpp
// // PLTimer.cpp // PLFoundation // // Created by yongpengliang on 2020/8/20. // Copyright © 2020 yongpengliang. All rights reserved. // #include "PLTimer.h" PLFOUNDATON_NAMESPACE_BEGIN void PLTimer::init(PLTimeInterval interval, void *userInfo, bool repeats){ if (interval <= 0.0) { interval = 0.0001; } _fireDate = PLDate(_interval); _invalidated = false; _userInfo = userInfo; if (repeats) { _repeats = true; _interval = interval; }else{ _repeats = false; _interval = 0.0; } } PLTimer::~PLTimer(){ if (_invalidated == false) { invalidate(); } } void PLTimer::invalidate(){ _invalidated = true; } bool PLTimer::isValid(){ return !_invalidated; } PLDate PLTimer::fireDate(){ return _fireDate; } void PLTimer::setFireDate(PLDate &fireDate){ _fireDate = fireDate; } PLTimeInterval PLTimer::timeInterval(){ return _interval; } void * PLTimer::userInfo(){ return _userInfo; } PLComparisonResult PLTimer::compare(std::shared_ptr<PLTimer> anotherTimer){ if (this == anotherTimer.get()) { return PLOrderedSame; } return _fireDate.compare(anotherTimer->_fireDate); } void PLTimer::fire(){ if (_block) { try { _block(shared_from_this()); } catch (...) { fprintf(stderr, "PLTimer::fire err"); } if (_repeats == false) { invalidate(); } }else{ invalidate(); } } PLFOUNDATON_NAMESPACE_END
[ "ikeshi@tencent.com" ]
ikeshi@tencent.com
83a00d1e6905922985f13e40ca674f352e36410e
60bb67415a192d0c421719de7822c1819d5ba7ac
/blazetest/src/mathtest/dvecdvecouter/V2aV3b.cpp
045bd867f4306a2d2eae0ce2727999be2e53aeeb
[ "BSD-3-Clause" ]
permissive
rtohid/blaze
48decd51395d912730add9bc0d19e617ecae8624
7852d9e22aeb89b907cb878c28d6ca75e5528431
refs/heads/master
2020-04-16T16:48:03.915504
2018-12-19T20:29:42
2018-12-19T20:29:42
165,750,036
0
0
null
null
null
null
UTF-8
C++
false
false
3,668
cpp
//================================================================================================= /*! // \file src/mathtest/dvecdvecouter/V2aV3b.cpp // \brief Source file for the V2aV3b dense vector/dense vector outer product math test // // Copyright (C) 2012-2018 Klaus Iglberger - All Rights Reserved // // This file is part of the Blaze library. You can redistribute it and/or modify it under // the terms of the New (Revised) BSD License. Redistribution and use in source and binary // forms, with or without modification, are permitted provided that the following conditions // are met: // // 1. Redistributions of source code must retain the above copyright notice, this list of // conditions and the following disclaimer. // 2. Redistributions in binary form must reproduce the above copyright notice, this list // of conditions and the following disclaimer in the documentation and/or other materials // provided with the distribution. // 3. Neither the names of the Blaze development group nor the names of its contributors // may be used to endorse or promote products derived from this software without specific // prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT // SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED // TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR // BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH // DAMAGE. */ //================================================================================================= //************************************************************************************************* // Includes //************************************************************************************************* #include <cstdlib> #include <iostream> #include <blaze/math/StaticVector.h> #include <blazetest/mathtest/Creator.h> #include <blazetest/mathtest/dvecdvecouter/OperationTest.h> #include <blazetest/system/MathTest.h> //================================================================================================= // // MAIN FUNCTION // //================================================================================================= //************************************************************************************************* int main() { std::cout << " Running 'V2aV3b'..." << std::endl; using blazetest::mathtest::TypeA; using blazetest::mathtest::TypeB; try { // Vector type definitions using V2a = blaze::StaticVector<TypeA,2UL>; using V3b = blaze::StaticVector<TypeB,3UL>; // Creator type definitions using CV2a = blazetest::Creator<V2a>; using CV3b = blazetest::Creator<V3b>; // Running the tests RUN_DVECDVECOUTER_OPERATION_TEST( CV2a(), CV3b() ); } catch( std::exception& ex ) { std::cerr << "\n\n ERROR DETECTED during dense vector/dense vector outer product:\n" << ex.what() << "\n"; return EXIT_FAILURE; } return EXIT_SUCCESS; } //*************************************************************************************************
[ "klaus.iglberger@gmail.com" ]
klaus.iglberger@gmail.com
8968f28335dbdf0154257b1a65d96140e3ad416f
b66715c97e48731ebba2afb8d81d02beb695c691
/SPOJ/MUL - Fast Multiplication.cpp
918d15b51c7ec0215c61760fa475a982a0dd958a
[]
no_license
justHusam/Competitive-Programming
c105b982108db914d80c759741302a9828b123b4
4c86037370774dc18beb1f2b302a59f2e84979d4
refs/heads/master
2020-03-19T10:26:12.874772
2018-09-14T12:24:41
2018-09-14T12:24:41
136,369,844
4
0
null
null
null
null
UTF-8
C++
false
false
1,850
cpp
#include <bits/stdc++.h> using namespace std; const double PI = 4.0 * atan(1.0); const complex<double> I(0, 1); void FFT(double theta, vector<complex<double> > &a) { int n = a.size(); for (int m = n; m >= 2; m >>= 1) { int mh = m >> 1; for (int i = 0; i < mh; i++) { complex<double> w = exp(i * theta * I); for (int j = i; j < n; j += m) { int k = j + mh; complex<double> x = a[j] - a[k]; a[j] += a[k]; a[k] = w * x; } } theta *= 2; } int i = 0; for (int j = 1; j < n - 1; j++) { for (int k = n >> 1; k > (i ^= k); k >>= 1) ; if (j < i) swap(a[i], a[j]); } } void FFT(vector<complex<double> > &a) { int n = ceil(log(a.size()) / log(2) + 1e-9); a.resize(1 << n); FFT(2 * PI / a.size(), a); } void iFFT(vector<complex<double> > &a) { FFT(-2 * PI / a.size(), a); for (size_t i = 0; i < a.size(); i++) a[i] /= a.size(); } const int N = 1e4 + 10; char a[N], b[N], c[2 * N]; vector<complex<double> > A, B, C; void solve() { int sa = strlen(a); int sb = strlen(b); int sc = sa + sb + 1; A.clear(); A.resize(sc); B.clear(); B.resize(sc); for (int i = sa - 1, j = 0; i >= 0; i--) A[j++] = a[i] - '0'; for (int i = sb - 1, j = 0; i >= 0; i--) B[j++] = b[i] - '0'; FFT(A); FFT(B); C.clear(); C.resize(A.size()); for (size_t i = 0; i < A.size(); i++) C[i] = A[i] * B[i]; iFFT(C); for (size_t i = 0; i < C.size() - 1; i++) { int cr = round(C[i].real()) / 10; C[i] = fmod(round(C[i].real()), 10); C[i + 1] += cr; } int i = C.size() - 1, j; while (i >= 0 && fabs(C[i].real()) < 0.5) i--; if (i < 0) { c[0] = '0', c[1] = 0; return; } for (j = 0; i >= 0; j++, i--) c[j] = round(C[i].real()) + '0'; c[j] = 0; } int main(int argc, char **argv) { int t; scanf("%d", &t); while (t-- != 0) { scanf("%s%s", a, b); solve(); printf("%s\n", c); } return 0; }
[ "husam.sa3@gmail.com" ]
husam.sa3@gmail.com
5874f2594832077fa4ec94481d2ab4d302b09365
6c3d396136e3b218dd4aaeed1276342dd3d3585d
/src/planner/robot/robot_state.cc
126427bb787f13baf1da376272053f8d1fc5161c
[]
no_license
pjsdream/planner
4dc8120d516ae03349091792673afff427e64723
56100adbc9e5ea0af1bfbe252c1073acf7eb47b6
refs/heads/master
2021-09-14T18:55:01.906412
2018-01-29T12:40:53
2018-01-29T12:40:53
114,855,947
0
0
null
null
null
null
UTF-8
C++
false
false
5,291
cc
#include "planner/robot/robot_state.h" #include <iostream> namespace planner { RobotState::RobotState(const std::shared_ptr<LinearRobotModel>& robot_model) : robot_model_(robot_model) { joint_values_.resize(robot_model_->GetJoints().size()); joint_values_.setZero(); link_poses_.resize(robot_model_->GetLinks().size()); forward_kinematics_derivatives_.resize(robot_model_->GetJoints().size()); } void RobotState::SetJointValue(int index, double joint_value) { const auto& joint = robot_model_->GetJoint(index); if (joint.HasLimits()) joint_values_(index) = std::min(joint.GetUpperLimit(), std::max(joint.GetLowerLimit(), joint_value)); else joint_values_(index) = joint_value; } void RobotState::PerformForwardKinematics() { link_poses_[0] = Eigen::Affine3d::Identity(); const auto& links = robot_model_->GetLinks(); const auto& joints = robot_model_->GetJoints(); for (int i = 1; i < links.size(); i++) { const auto& link = links[i]; link_poses_[i] = link_poses_[i - 1] * joints[i - 1].Transform(GetJointValue(i - 1)); } } void RobotState::PerformDerivativeForwardKinematics() { PerformForwardKinematics(); const auto& links = robot_model_->GetLinks(); const auto& joints = robot_model_->GetJoints(); VectorMatrix4d forward_accumulations(joints.size()); VectorMatrix4d backward_accumulations(joints.size()); for (int i = 0; i < joints.size(); i++) { const auto& joint = joints[i]; if (i == 0) forward_accumulations[i] = joint.Transform(GetJointValue(i)).matrix(); else forward_accumulations[i] = forward_accumulations[i - 1] * joint.Transform(GetJointValue(i)).matrix(); } for (int i = joints.size() - 1; i >= 0; i--) { const auto& joint = joints[i]; if (i == joints.size() - 1) backward_accumulations[i] = joint.Transform(GetJointValue(i)).matrix(); else backward_accumulations[i] = joint.Transform(GetJointValue(i)).matrix() * backward_accumulations[i + 1]; } for (int i = 0; i < joints.size(); i++) { const auto& joint = joints[i]; if (i == 0) forward_kinematics_derivatives_[i] = Eigen::Matrix4d::Identity(); else forward_kinematics_derivatives_[i] = forward_accumulations[i - 1]; forward_kinematics_derivatives_[i] *= joint.TransformDerivative(GetJointValue(i)); if (i != joints.size() - 1) forward_kinematics_derivatives_[i] *= backward_accumulations[i + 1]; } } Eigen::Affine3d RobotState::GetLinkPose(int link_index) { return link_poses_[link_index]; } Eigen::Affine3d RobotState::GetEndeffectorLinkPose() { return link_poses_.back() * robot_model_->GetEndeffectorTransform(); } void RobotState::MoveToGripPose(const Eigen::Affine3d& link_pose) { Eigen::Vector3d target_position = link_pose.translation(); Eigen::Vector3d target_normal = -link_pose.linear().col(2); constexpr int max_iterations = 10; constexpr double alpha = 0.1; for (int iteration = 0; iteration < max_iterations; iteration++) { PerformDerivativeForwardKinematics(); auto ee_pose = GetEndeffectorLinkPose(); Eigen::Vector3d ee_position = ee_pose.translation(); Eigen::Vector3d ee_normal = ee_pose.linear().col(0); Eigen::Vector3d position_difference = target_position - ee_position; Eigen::Vector3d normal_difference = target_normal - ee_normal; Eigen::Matrix<double, 3, -1> jacobian; jacobian.resize(Eigen::NoChange, robot_model_->GetJoints().size()); Eigen::Matrix<double, 3, 1> b; b = position_difference; for (int i = 0; i < robot_model_->GetJoints().size(); i++) { const auto& derivative_matrix = forward_kinematics_derivatives_[i]; jacobian.col(i) = derivative_matrix.block(0, 3, 3, 1); } Eigen::VectorXd solution = jacobian.jacobiSvd(Eigen::ComputeThinU | Eigen::ComputeThinV).solve(b); for (int i = 0; i < robot_model_->GetJoints().size(); i++) SetJointValue(i, GetJointValue(i) + solution(i)); } for (int iteration = 0; iteration < max_iterations; iteration++) { PerformDerivativeForwardKinematics(); auto ee_pose = GetEndeffectorLinkPose(); Eigen::Vector3d ee_position = ee_pose.translation(); Eigen::Vector3d ee_normal = ee_pose.linear().col(0); Eigen::Vector3d position_difference = target_position - ee_position; Eigen::Vector3d normal_difference = target_normal - ee_normal; Eigen::Matrix<double, 6, -1> jacobian; jacobian.resize(Eigen::NoChange, robot_model_->GetJoints().size()); Eigen::Matrix<double, 6, 1> b; b.block(0, 0, 3, 1) = position_difference; b.block(3, 0, 3, 1) = normal_difference; for (int i = 0; i < robot_model_->GetJoints().size(); i++) { const auto& derivative_matrix = forward_kinematics_derivatives_[i]; jacobian.block(0, i, 3, 1) = derivative_matrix.block(0, 3, 3, 1); jacobian.block(3, i, 3, 1) = derivative_matrix.block(0, 0, 3, 1); } Eigen::VectorXd solution = jacobian.jacobiSvd(Eigen::ComputeThinU | Eigen::ComputeThinV).solve(b); for (int i = 0; i < robot_model_->GetJoints().size(); i++) SetJointValue(i, GetJointValue(i) + solution(i)); } /* for (int i = 0; i < robot_model_->GetJoints().size(); i++) std::cout << "joint[" << i << "] = " << GetJointValue(i) << "\n"; */ } }
[ "pjsdream2001@gmail.com" ]
pjsdream2001@gmail.com
1971a7d55339ca03f50b7e846d6c5d6c7d34e4e6
78513fdfdb619403e5bad21860d504c507e9cf3f
/ProcessorA.cpp
8685b79d7506d6f77aa01636b5af0f918d8e31c3
[]
no_license
PeopleCF/Boudjelida_Amin
1ea610bc397eae5e62c34542e078cb4f495acebb
2e572baec36b6b750d1a98b3f2eab5ebb1188a9e
refs/heads/master
2021-06-26T06:33:04.911938
2020-11-10T11:03:33
2020-11-10T11:03:33
148,983,040
0
0
null
null
null
null
UTF-8
C++
false
false
627
cpp
#include "stdafx.h" #include "ProcessorA.h" #include <iostream> ProcessorA::ProcessorA() { } std::string ProcessorA::Process(std::string s) { std::string reversed; int prev = -1; for (int i = s.length() - 1; i >=0 ; i--) { if (i < 0) continue; if (s[i] != ' ' && (s[i + 1] == ' ' || i == s.length() - 1)) prev = i; if (s[i] == ' ' && prev!=-1 ) { for (int j = i + 1; j <= prev; j++) { reversed += s[j]; } reversed += ' '; prev = -1; } } for (int i = 0; i <= prev; i++) reversed += s[i]; return reversed; } ProcessorA::~ProcessorA() { } char ProcessorA::getType() { return 'A'; }
[ "32578115+PeopleCF@users.noreply.github.com" ]
32578115+PeopleCF@users.noreply.github.com
9284203a65e4795b5ea7e2881fca831794d1cf78
95dc70a29e3ccdfb5cecce1cd8099691d5b6bb5d
/leetcode/binary_tree_level_order_traversal.cpp
e422cebc0c2973c71e5250b8d1a02afeef5b1bf5
[]
no_license
hotbig/letmetry
b19ba07e551aabb58c405695f5ed2a7fc0f57fd7
1418022a0d63c2cad41435d30d54b5a01773b0e5
refs/heads/master
2020-05-22T06:54:50.252554
2016-11-01T14:26:25
2016-11-01T14:26:25
36,932,799
0
0
null
null
null
null
UTF-8
C++
false
false
1,421
cpp
#include<iostream> #include<string> #include<vector> using namespace std; struct TreeNode{ int val; TreeNode *left; TreeNode *right; TreeNode(int x):val(x), left(NULL), right(NULL){} }; void printVV(vector<vector<int> > vv) { for(int i = 0; i < vv.size(); i++) { for(int j = 0; j < vv[i].size(); j++) { cout << vv[i][j] << " "; } cout<< endl; } } class Solution{ vector<vector<int> >res; public: void DFS(TreeNode* root, int level) { if(root == NULL) return; if(level == res.size()) { res.push_back(vector<int>()); } res[level].push_back(root->val); DFS(root->left, level+1); DFS(root->right, level+1); } vector<vector<int> > levelOrderBottom(TreeNode* root) { DFS(root, 0); return vector<vector<int> >(res.begin(), res.end()); } }; int main() { Solution s; TreeNode a(0); TreeNode b(-3); TreeNode c(-9); TreeNode d(-8); TreeNode e(2); TreeNode f(-5); TreeNode g(5); TreeNode h(-2); #if 0 1 2 5 3 4 6 7 #endif a.left = &b; // a.right = &h; // b.left = &c; // b.right = &d; // c.left = &e; // e.left = &g; // d.right=&f; printVV(s.levelOrderBottom(&a)); return 0; }
[ "randyn.yang@gmail.com" ]
randyn.yang@gmail.com
4466cd21411ef74e5951e1d055470148f8c7c903
d7ea55748b53cf98b9b3c63e6e7babec997db156
/QT5/02. QT_C++/01_BasicWidget/build-QCheckBox-Desktop_Qt_5_14_1_GCC_64bit-Debug/qrc_resources.cpp
c4987086dc0f7d517d945e46dffd22cd8164d99d
[]
no_license
maerad7/AIPortfolio
337f15d04ffe361dc0708d53ab24f46c6b896941
11544d19e33c328104e8480c1cb78f2e8dc7af20
refs/heads/master
2021-06-20T16:17:16.611431
2021-01-09T07:47:04
2021-01-09T07:47:04
158,547,230
0
0
null
null
null
null
UTF-8
C++
false
false
144,101
cpp
/**************************************************************************** ** Resource object code ** ** Created by: The Resource Compiler for Qt version 5.14.1 ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ static const unsigned char qt_resource_data[] = { // /home/newdrone18/workspace/qtbook-master/20.02.27_Qt_Programming_Korean_v1.4_Example_Source_code/Ch03/01_BasicWidget/01_QCheckBox/resources/editor.png 0x0,0x0,0x12,0x8a, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x46,0x0,0x0,0x0,0x40,0x8,0x6,0x0,0x0,0x0,0xa7,0x77,0x1,0x99, 0x0,0x0,0x0,0x4,0x73,0x42,0x49,0x54,0x8,0x8,0x8,0x8,0x7c,0x8,0x64,0x88, 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x13,0xb0,0x0,0x0,0x13,0xb0, 0x1,0x5c,0x3c,0x30,0x13,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66, 0x74,0x77,0x61,0x72,0x65,0x0,0x77,0x77,0x77,0x2e,0x69,0x6e,0x6b,0x73,0x63,0x61, 0x70,0x65,0x2e,0x6f,0x72,0x67,0x9b,0xee,0x3c,0x1a,0x0,0x0,0x12,0x7,0x49,0x44, 0x41,0x54,0x78,0x9c,0xd5,0x9b,0x79,0x70,0xdc,0x47,0x95,0xc7,0x3f,0xfd,0x3b,0xe6, 0x37,0x33,0x3a,0x3d,0x3a,0x6c,0xeb,0xf0,0xad,0x44,0x96,0xef,0x23,0xe,0x86,0x38, 0xc6,0xb8,0x42,0x82,0x13,0x42,0x36,0x6c,0xd8,0x84,0x33,0xcb,0xe1,0x14,0x5,0x14, 0x22,0x59,0xe2,0x2d,0xb6,0x96,0xd,0x5b,0xbb,0x14,0xae,0x65,0xc1,0xc4,0x4a,0x8, 0x47,0xa8,0x2c,0x54,0x20,0x95,0xc4,0xb,0x2c,0x10,0xc,0xe4,0xc4,0x61,0xbd,0x5e, 0x2,0x71,0x79,0x1d,0x3b,0xc6,0xb2,0x6c,0xc5,0x87,0x6e,0x69,0x46,0x33,0x9a,0xd1, 0x6f,0x7e,0xbf,0x5f,0xf7,0xfe,0x31,0x87,0x67,0x46,0xa3,0xcb,0x96,0xe3,0xf8,0x95, 0xba,0x7e,0xa3,0x9e,0xd7,0xaf,0xdf,0xfb,0xce,0xeb,0xd7,0xdd,0xaf,0xfb,0x27,0x94, 0x52,0x4c,0x97,0x76,0xb6,0x8a,0xcf,0x69,0x9a,0xf8,0x12,0x70,0x56,0x4a,0xf5,0x85, 0x1d,0xbb,0xd4,0xbe,0x9d,0xad,0xc2,0xf,0x3c,0x2c,0x84,0xb8,0x3,0xd4,0x6f,0x94, 0xe2,0xd3,0x3b,0x76,0xa9,0xbe,0x9d,0xad,0x62,0x99,0xa6,0x89,0x36,0x60,0xa5,0x94, 0xea,0xa1,0x1d,0xbb,0xd4,0x97,0xd3,0x32,0xee,0xd2,0x34,0xf1,0x55,0x20,0x29,0xa5, 0xba,0x7f,0xc7,0x2e,0xf5,0xf3,0x9d,0xad,0x42,0x0,0x5f,0x17,0x9a,0xf8,0x4,0x8a, 0x3,0x4a,0xa9,0xcf,0xec,0xd8,0xa5,0xda,0x77,0xb6,0x8a,0x46,0x21,0xc4,0xb7,0x81, 0xcd,0x4a,0xa9,0x1f,0x1,0x9f,0xdd,0xb1,0x4b,0xc9,0x9d,0xad,0xe2,0x46,0x4d,0x13, 0x5f,0x7,0x2a,0xa4,0x54,0xf,0xec,0xd8,0xa5,0x7e,0x90,0x96,0xfd,0x25,0x4d,0x13, 0xf7,0x2,0xc7,0xa4,0x54,0x9f,0xdf,0xb1,0x4b,0xbd,0x32,0x5d,0x1b,0xb5,0xb,0x0, 0x65,0xb6,0x10,0x7c,0x63,0xfe,0x82,0x9a,0x39,0xe5,0xe5,0xc1,0x35,0x9a,0x26,0x76, 0xa5,0xbf,0xfa,0x0,0xf0,0xb7,0x2b,0xd7,0xcc,0x2f,0xd5,0x34,0xed,0x36,0xe0,0xd3, 0x0,0x42,0xf0,0x80,0x65,0x99,0x9b,0x9a,0xae,0xae,0xb,0x1,0xff,0xb8,0xb3,0x55, 0xac,0xdd,0xd9,0x2a,0x2,0x9a,0x26,0xbe,0x3d,0xb7,0x6e,0xd6,0xfc,0xda,0xd9,0x15, 0x4d,0x9a,0x26,0x1e,0xd9,0xd9,0x2a,0x74,0x60,0xb,0x70,0xef,0xd2,0x96,0x86,0xa, 0xd3,0xd4,0xb7,0x2,0xf7,0xa7,0x65,0x7f,0x41,0xd7,0xb5,0x9b,0x96,0xaf,0x6c,0x2c, 0x4d,0xcb,0x7d,0xef,0xce,0x56,0x21,0x34,0x4d,0x3c,0x3c,0xab,0xaa,0x74,0x59,0x7d, 0x43,0x55,0x83,0x10,0xe2,0xa1,0x9d,0xad,0xa2,0x6c,0x67,0xab,0xb8,0x1a,0xf8,0x97, 0x85,0x8b,0x66,0x57,0x95,0x94,0xfa,0xaf,0x15,0x42,0x7c,0x6d,0xba,0x36,0x4e,0x1b, 0x98,0x7,0x1f,0x7c,0x70,0x9e,0x1e,0x6c,0xb9,0x55,0x29,0x8c,0xcd,0x5b,0x97,0xb3, 0x7a,0xdd,0x2,0x4d,0x4a,0xb5,0xb6,0xad,0xad,0xad,0x59,0x18,0x95,0x5b,0x2b,0x2a, 0x82,0xee,0xd,0x37,0xad,0xa2,0x61,0x5e,0x95,0x2e,0xb4,0xe0,0xf5,0x6d,0x6d,0x6d, 0xcd,0x9a,0x66,0x5c,0xdf,0xbc,0xac,0x5e,0xbf,0xe9,0x96,0x35,0xa9,0xe,0xad,0xfa, 0x5b,0xcd,0xca,0xad,0x5b,0xa4,0x54,0x15,0xef,0xb8,0xbe,0x59,0x6c,0xd8,0xd8,0x24, 0xa4,0x54,0x73,0xac,0xda,0x3b,0x37,0x6a,0x66,0xed,0xcd,0x9a,0xa6,0xa9,0x6d,0xb7, 0xae,0x65,0xc9,0x55,0x73,0x75,0x5d,0xf7,0x6d,0x69,0x6b,0x6b,0x6b,0xd6,0xd,0xff, 0xe6,0x85,0x8b,0x6b,0xf5,0x1b,0x6f,0x5e,0x83,0xe5,0x37,0x3d,0x61,0x84,0x6e,0xf1, 0xcf,0xbd,0x67,0xbd,0x94,0x6a,0xd1,0xfa,0xd,0x8b,0xc5,0x75,0xef,0x5c,0x2a,0x94, 0x52,0x7e,0xa3,0xec,0x9a,0x6d,0xba,0x7f,0xd1,0xcd,0x80,0xb8,0xf1,0xe6,0xd5,0x2c, 0x5b,0xd1,0xa8,0xb,0x21,0x36,0xb6,0xb5,0xb5,0x35,0xef,0xde,0xbd,0xbb,0x7c,0x3a, 0xb6,0x1a,0x53,0x61,0x7a,0xe8,0xa1,0x87,0x6e,0x10,0x42,0x7c,0x43,0xd3,0xb4,0xe5, 0x66,0xe5,0x66,0xbc,0xf8,0x11,0x34,0x4d,0x20,0x84,0xc8,0xb0,0x1c,0x35,0x4a,0x57, 0x23,0xc4,0x9f,0x0,0x10,0x42,0xa0,0x5,0x96,0x6c,0x5,0x8e,0xa2,0x97,0x21,0xc4, 0x79,0x5e,0xb3,0xfc,0xba,0x7f,0xd2,0x2,0x4d,0x38,0xe1,0xe7,0x52,0x7c,0x5a,0xaa, 0x5e,0x2f,0x59,0xb1,0x4f,0x79,0x71,0xdc,0xf0,0xaf,0xd2,0x32,0x40,0x98,0xd5,0x4b, 0x80,0xa3,0xc2,0x57,0x8f,0xae,0x8f,0xa6,0x80,0xd5,0x74,0xdd,0x28,0x5b,0xf7,0x49, 0x2d,0xb0,0xf8,0x93,0xd9,0xbe,0x32,0xb2,0x2b,0xae,0x7f,0x42,0xba,0x3,0x78,0xdd, 0x1d,0xe8,0xba,0x96,0x92,0x2d,0x7c,0x41,0xe0,0xa8,0xa6,0x69,0xc9,0xb6,0xb6,0xb6, 0x5f,0xfa,0x7c,0xbe,0x8f,0x6f,0xdf,0xbe,0x3d,0x32,0x99,0xcd,0x93,0x7a,0xcc,0x53, 0x4f,0x3d,0xa5,0xb,0x21,0xbe,0x33,0x67,0xce,0xec,0x65,0x1b,0xae,0xbd,0x86,0xab, 0xaf,0xbe,0x7a,0xc,0xcf,0x35,0x1b,0xd6,0x31,0x7b,0x76,0x6d,0x2e,0x50,0xcc,0xaa, 0xac,0x60,0xdd,0xfa,0xb5,0xf8,0x4c,0x33,0x8f,0xb7,0x71,0x7e,0x23,0x2d,0xcb,0x96, 0x8e,0x91,0xb1,0x7c,0xf9,0x32,0xea,0xea,0xe6,0x22,0x72,0xea,0xfc,0x7e,0x8b,0x55, 0xab,0x57,0x50,0x52,0x12,0xcc,0xa9,0x15,0xd4,0xd4,0x56,0x17,0x95,0xb1,0x68,0xd1, 0x2,0x1a,0x1a,0x1a,0xf2,0xd,0xd4,0x34,0x5a,0x96,0x2d,0x65,0xf1,0x92,0x45,0x3e, 0x21,0xb8,0x2d,0x99,0x4c,0x7e,0x7a,0x32,0x9b,0x61,0xa,0xc0,0xf4,0xf6,0xf6,0x36, 0x4b,0x29,0x17,0x36,0x34,0xd4,0xb,0xa5,0x24,0x76,0x72,0x74,0xc,0x4f,0x3c,0x1e, 0xc7,0x75,0xdd,0xbc,0x3a,0xd7,0xf3,0x88,0xc7,0x47,0x28,0xc,0xee,0x49,0xdb,0x26, 0x91,0x88,0x8f,0x91,0x31,0x12,0x1f,0xc1,0x4e,0xda,0x79,0x75,0x52,0x4a,0x62,0xb1, 0x18,0x9e,0x94,0x79,0xf5,0x4e,0x32,0xc9,0xc8,0x48,0x6c,0xac,0x1e,0x89,0x38,0xa3, 0x76,0x22,0xaf,0x4e,0xa1,0x88,0x8d,0x44,0x31,0x4d,0x93,0xc6,0x79,0x8d,0x5a,0x3a, 0xfe,0x4d,0x4a,0x93,0xe,0x25,0x29,0x65,0xb5,0x10,0x2,0x5d,0xd7,0x19,0x1c,0x1c, 0xa0,0xaf,0x3f,0xe5,0x85,0xe1,0xf0,0x8,0x91,0x70,0x1c,0x4d,0xf7,0x71,0xaa,0xf3, 0x24,0xb1,0x58,0x2,0x2f,0x6e,0x63,0x8f,0x3a,0x44,0x87,0x6d,0x12,0xae,0xc3,0xc9, 0x93,0x1d,0x78,0x4a,0x27,0x12,0x8e,0x13,0x1e,0x1a,0x1,0xa0,0x7f,0x70,0x98,0xf0, 0x68,0x37,0x0,0x91,0x48,0x1c,0x7b,0xd4,0x1,0xa0,0xf3,0x8d,0xd3,0x38,0x91,0x18, 0x52,0x4a,0x86,0x23,0x71,0x22,0x91,0x4,0xb6,0x53,0x4a,0xfb,0x89,0xe3,0xd8,0xa3, 0x1e,0x43,0x83,0x71,0xe2,0x23,0x36,0x49,0x3b,0xc9,0x50,0x78,0x84,0xe1,0x8e,0x53, 0x8,0xa1,0x11,0x9,0xc7,0xd1,0xf5,0xd4,0xef,0xfb,0xc6,0xd9,0x6e,0x94,0x33,0x0, 0xc0,0x40,0x7f,0x94,0x48,0x38,0x8e,0x52,0x6,0xaf,0xbf,0x7e,0x94,0xd5,0xab,0xd6, 0x60,0x59,0x16,0x42,0x88,0x9a,0x19,0x1,0x46,0xd3,0xb4,0x90,0x52,0xa,0xa1,0x9, 0x3c,0x29,0xf1,0x95,0x2e,0xc1,0xb0,0x42,0xfc,0xf4,0xc9,0x3,0x28,0xa5,0x8,0x54, 0x5d,0xf,0x80,0xbf,0x72,0x3,0x83,0x3d,0xbf,0x66,0xf7,0x37,0x9e,0x1,0xa0,0x7c, 0xc1,0x6,0x0,0xcc,0xf2,0x6b,0x39,0x71,0xfc,0xe7,0x74,0xb4,0xf7,0xa0,0xe9,0x16, 0x66,0xf9,0x4a,0x84,0xf0,0x63,0x6,0x17,0xb2,0xf7,0x97,0xaf,0xa6,0x78,0x4a,0x5b, 0x10,0x7a,0x10,0xb3,0x6c,0x35,0xc9,0xbe,0x9f,0xf2,0xbd,0x87,0x9f,0x45,0x29,0x85, 0xaf,0xf6,0x9d,0x0,0xe8,0xa5,0x6b,0xe9,0xe9,0xfe,0x31,0xf,0x7f,0x6b,0x2f,0x20, 0xf0,0x95,0xad,0x5,0x61,0x22,0x82,0xcb,0xd9,0xff,0xf2,0xa1,0x94,0x9e,0xd6,0x6c, 0x84,0x39,0x7,0xf4,0x10,0x42,0xf,0xf2,0xe3,0x1f,0xee,0x4b,0x19,0x50,0xb6,0x9, 0x1,0xb8,0x9e,0x8b,0x61,0xf8,0x50,0x4a,0xcd,0x9a,0x11,0x60,0x94,0x52,0xa1,0xcc, 0x67,0xcf,0xf3,0x0,0x41,0xd5,0xd2,0xaf,0x90,0x18,0xd8,0x8f,0x66,0x56,0x62,0x95, 0xaf,0x46,0x1,0x46,0xa0,0x81,0x50,0xf3,0x3f,0x63,0x87,0xff,0x8c,0x59,0xd6,0x82, 0x11,0x98,0x9f,0x2,0xae,0xf6,0x26,0xf4,0xc0,0x2,0xbc,0xd1,0xd3,0x98,0x15,0x1b, 0x10,0x9a,0x1f,0x14,0x4,0xe6,0x7d,0xe,0x23,0xf2,0xa,0x8,0x1d,0xb3,0x6c,0xd, 0xa,0x10,0x46,0x39,0xc1,0x45,0x5f,0xc6,0x89,0xbc,0x82,0x16,0x98,0x8f,0xe6,0x5f, 0x9c,0x2,0xa6,0x6c,0x3d,0x96,0x59,0x8d,0x17,0x6f,0x47,0x2f,0x59,0xd,0x46,0x8, 0x14,0x18,0x35,0x1f,0x44,0x6,0x57,0xa2,0x64,0x1c,0x11,0x5c,0x95,0x52,0x52,0x98, 0x68,0x73,0xee,0x45,0x8e,0xfc,0x19,0xcc,0x5a,0xb0,0x9a,0x52,0xba,0xbb,0x1e,0x96, 0x4f,0x43,0x29,0x55,0x36,0x15,0x60,0xc4,0x64,0xb,0xbc,0xdd,0xbb,0x77,0x7f,0xd1, 0x34,0xcd,0x9d,0xeb,0xd7,0xaf,0x15,0xdd,0x3d,0x5d,0x44,0x22,0x91,0xc,0x60,0x28, 0x14,0xa9,0xbf,0xf4,0x33,0x2d,0x6b,0xa2,0xe7,0x98,0x36,0x13,0x3c,0x8b,0xca,0x99, 0xe,0x6f,0xce,0x73,0xc9,0xe2,0x26,0xca,0xcb,0x2b,0x78,0xed,0xf0,0x11,0xe2,0xf1, 0x78,0xf9,0xfd,0xf7,0xdf,0x1f,0x9d,0xc8,0xee,0x49,0x3d,0x46,0x8,0x11,0xa,0x6, 0x83,0x5e,0x6d,0xed,0x6c,0x63,0xcd,0x9a,0x75,0x79,0x33,0x4f,0x21,0x4d,0x75,0x15, 0x7d,0xb9,0xf8,0x4e,0x9e,0xea,0xe0,0xb5,0xc3,0x47,0x28,0x29,0x29,0x9,0x1,0x17, 0x7,0xc,0x10,0xa,0x4,0x2,0x34,0x34,0x34,0x4e,0x5b,0x91,0xb7,0x12,0x9f,0xa6, 0x69,0x54,0x57,0xa5,0xe2,0xae,0x94,0x32,0x4,0x74,0x4e,0x24,0x63,0xaa,0x1e,0x23, 0x26,0x52,0xec,0xad,0x4,0xc0,0x78,0x7c,0x4a,0x29,0xc,0x23,0x65,0xae,0xa6,0x69, 0xa1,0x49,0x9a,0x4c,0xc9,0x63,0xaa,0x83,0xc1,0xa0,0x3e,0x5d,0x45,0xde,0x8a,0x7c, 0x66,0x7a,0xb1,0x99,0x3b,0xa1,0x8c,0x47,0x53,0xf1,0x98,0x1a,0xbf,0xdf,0x3f,0xa6, 0xfe,0xd0,0xa1,0x43,0xc4,0xe3,0x63,0x17,0x6a,0xc5,0xe8,0x42,0x76,0xf0,0x33,0x21, 0xaf,0xae,0xae,0x8e,0xfa,0xfa,0xfa,0x6c,0x1b,0xc3,0x30,0x10,0x42,0xa0,0x94,0xaa, 0x9a,0xac,0xed,0x94,0x86,0x92,0xdf,0xef,0xcf,0xba,0x63,0x86,0x2c,0xcb,0x1a,0xa3, 0xe0,0xe5,0xf2,0x94,0xf1,0xc8,0xcc,0xd9,0x8e,0x28,0xa5,0x10,0x42,0x60,0x59,0x96, 0x97,0x48,0x24,0x2e,0xde,0x63,0xa4,0x94,0x95,0x96,0x65,0xe5,0xd5,0x29,0xa5,0x68, 0x6a,0x6a,0x9a,0x54,0xb1,0xb7,0xc2,0x90,0x2a,0x6c,0x13,0x8,0x4,0xa4,0x6d,0xdb, 0x17,0x7,0xcc,0x77,0xbf,0xfb,0x5d,0x53,0x29,0x15,0xc8,0x78,0xc7,0x95,0x1c,0x7c, 0x33,0x14,0xc,0x6,0xc5,0xd0,0xd0,0xd0,0xc5,0x1,0x93,0x48,0x24,0x42,0xba,0xae, 0xe3,0xf3,0xf9,0xc6,0x0,0xd3,0xd9,0xd9,0x49,0x32,0x99,0x9c,0x31,0x85,0x67,0x82, 0xaf,0x90,0x42,0xa1,0x10,0xa1,0x50,0x3e,0x6,0xc1,0x60,0x50,0x17,0x42,0x5c,0x1c, 0x30,0xa6,0x69,0x86,0xa4,0x94,0xf8,0x7c,0xbe,0x31,0xdf,0xf5,0xf5,0xf5,0x91,0x48, 0x24,0x8a,0xb4,0x1a,0x4b,0x6f,0x56,0x4c,0x29,0x24,0xd3,0x34,0x99,0x35,0x6b,0x56, 0x56,0xb6,0x52,0xa,0xcb,0xb2,0x4,0x50,0x3b,0x59,0xdb,0x9,0x81,0x49,0x2f,0x84, 0x30,0x4d,0x73,0x8c,0xc7,0xac,0x5b,0xb7,0x2e,0x8f,0x77,0x3a,0x46,0x5d,0x4e,0x8f, 0x4a,0xef,0xb0,0xab,0xef,0xde,0x5a,0xb9,0xd8,0x95,0xee,0x46,0xa1,0x31,0x7,0x29, 0x5e,0xb1,0x6b,0x62,0xfb,0x9e,0x7c,0x52,0x79,0x19,0xbe,0x9,0x81,0x51,0x4a,0x85, 0x84,0x10,0x63,0xa2,0xfb,0x4c,0x2a,0xfb,0x66,0x2,0xaa,0x94,0x22,0xd2,0x77,0x8a, 0x63,0x7f,0xf8,0xc1,0x7c,0x4f,0x79,0xc7,0x35,0x4d,0x13,0x25,0x81,0x52,0x15,0x8b, 0x47,0x85,0xbf,0xbf,0xe4,0xc0,0x5d,0x9b,0x83,0x77,0xfc,0xe4,0xa5,0xf8,0x69,0x98, 0x4,0x98,0x4c,0xca,0xc1,0x30,0x8c,0x31,0x1e,0x13,0x8d,0x46,0x91,0x52,0x5e,0xb4, 0xb2,0x86,0x61,0x50,0x52,0x52,0x32,0x29,0xdf,0x74,0x64,0x16,0xe3,0x3b,0x71,0xf4, 0x8f,0xfc,0xf6,0xe9,0x6f,0x71,0xf8,0x4f,0x2f,0xb0,0x68,0xde,0x7c,0xdf,0x67,0x3f, 0x76,0x1f,0x8b,0x3,0x57,0xa1,0xd,0x45,0x45,0xb8,0xf7,0x75,0xbe,0x7a,0xe0,0x89, 0x75,0xdd,0x89,0xd8,0x2f,0xb6,0x6c,0x11,0xeb,0x5f,0x78,0x41,0xb9,0x93,0x7a,0x8c, 0xae,0xeb,0xca,0x30,0xc,0xe1,0x79,0x5e,0x9e,0x22,0xe3,0x2d,0xf0,0xa6,0xb,0x54, 0x4d,0x4d,0xd,0xab,0x56,0xad,0x9a,0x94,0x6f,0x3a,0x32,0x73,0xe9,0xd8,0xa1,0x97, 0xd9,0xfb,0xe4,0x37,0xf9,0xcb,0xe1,0xff,0xa1,0x79,0xc1,0x22,0xbe,0xf2,0x91,0x2f, 0xb0,0xd0,0xd7,0x84,0x18,0xc,0xc3,0xc9,0xbf,0xc0,0xc0,0x0,0x95,0x3,0x3,0x7c, 0x31,0xb8,0xc4,0xb8,0x37,0x7e,0x70,0x55,0x83,0x28,0x7d,0x1f,0xb0,0x67,0x42,0x60, 0xd2,0x8b,0x3b,0x4f,0x29,0x65,0x14,0x76,0xba,0x72,0xe5,0xca,0x29,0x29,0x3d,0x19, 0x8f,0xae,0xeb,0x53,0xe2,0x9b,0xaa,0xbc,0xc,0xfd,0xdf,0x1f,0x9f,0x65,0xef,0x93, 0xff,0xce,0xa9,0xe3,0x87,0xd8,0xb0,0x76,0x13,0xad,0xf7,0x3d,0x8a,0xa5,0x97,0x13, 0xe8,0xed,0x85,0xd7,0x8e,0xc2,0xc0,0xc0,0xf9,0x32,0x38,0x48,0xd5,0xe0,0x20,0xe5, 0x8b,0x35,0x39,0x2c,0xbc,0x6,0x98,0x42,0x8c,0x9,0x6,0x83,0x2a,0xa3,0x50,0xae, 0x52,0xb9,0xee,0x7f,0xb1,0x86,0x4d,0xb5,0x6e,0x32,0x79,0x4a,0x29,0xe,0xee,0x7f, 0x86,0xbd,0x4f,0x7e,0x93,0xb3,0x9d,0xaf,0xb3,0xb0,0x61,0x36,0x9f,0xbf,0xe7,0x1, 0x12,0x73,0xd6,0x31,0x22,0x34,0x86,0x3d,0x8f,0x9e,0xfa,0x7a,0x22,0x7d,0x7d,0x34, 0xbf,0xf4,0x12,0xc,0xc,0x60,0xc7,0x62,0x44,0x3c,0x8f,0x88,0xe7,0x51,0xe5,0xa, 0x19,0x35,0x99,0x3,0x93,0xaf,0x7c,0x43,0xc1,0x60,0x30,0x2f,0x61,0xfe,0x56,0x58, 0xa4,0x15,0x92,0x94,0x1e,0xaf,0xfc,0xfe,0x67,0xfc,0xe6,0xe9,0x5d,0xf4,0x9c,0x3d, 0x49,0xd3,0xc2,0x3a,0x3e,0xf5,0xc1,0xf7,0xd0,0xd8,0x38,0xf,0xe8,0x82,0xe8,0x73, 0x74,0x8b,0x6b,0xb1,0x7d,0x16,0x52,0x4a,0x4e,0xb6,0xb4,0x50,0xfb,0xe8,0xa3,0x24, 0xc2,0xe1,0x2c,0x28,0x11,0x5d,0x72,0xce,0xef,0x9,0x25,0x85,0x84,0x49,0x80,0x11, 0x42,0x54,0xf9,0xfd,0x7e,0x3d,0xe3,0x2d,0x33,0xf5,0xcb,0xce,0x14,0x9f,0xe7,0x3a, 0x1c,0x78,0xe1,0x69,0x7e,0xbb,0xe7,0x41,0x6,0x7a,0xcf,0xd0,0xd2,0xd4,0xc8,0xed, 0x1f,0xbd,0x85,0xb9,0x73,0xeb,0xf3,0x78,0x3d,0xd5,0x43,0xc5,0xa9,0xa7,0x89,0x2c, 0xb9,0x13,0xcf,0xf3,0x90,0x52,0x72,0xbc,0xa6,0x6,0xbb,0xab,0x8b,0x88,0xe7,0x31, 0x6c,0x28,0x4e,0x2c,0xd7,0x95,0x2d,0x91,0x9a,0xf0,0x1e,0x86,0xc9,0x81,0xa9,0x9, 0x4,0x2,0x40,0xea,0x28,0x63,0xa6,0xd,0xbb,0x50,0x3e,0xd7,0xb1,0xf9,0xef,0x67, 0x7f,0xc2,0xef,0xf6,0xb4,0x11,0x1e,0xec,0x61,0x55,0xcb,0x2,0xee,0xba,0xe5,0xaf, 0xa8,0xad,0xc9,0x5f,0xb7,0xb9,0xa3,0x83,0x24,0xfa,0x8f,0x91,0x8c,0x75,0x83,0x13, 0xc4,0x75,0xff,0x3a,0xb,0xcc,0xd9,0xee,0x6e,0xa2,0x24,0x89,0xb6,0x98,0x1c,0x2e, 0x91,0x5e,0x5c,0xb8,0x36,0x52,0xff,0xc0,0x7f,0x3c,0x17,0x3d,0xb,0x93,0xf,0xa5, 0xaa,0xc2,0xd,0x64,0x86,0xe2,0xf1,0xf8,0x8c,0x4,0xdf,0xe9,0xf0,0x25,0xed,0x4, 0xfb,0x9f,0x7d,0x9c,0xdf,0xff,0xea,0x51,0xe2,0xb1,0x30,0x6b,0x57,0x2c,0xe6,0x1d, 0xef,0xdf,0x44,0x55,0x28,0x3f,0x8b,0xe0,0xc4,0x7b,0x49,0xf4,0x1f,0xc3,0x89,0xf7, 0x9f,0xaf,0x34,0xe3,0xb8,0xb1,0x18,0xd2,0xe7,0xc3,0x3d,0x73,0x9a,0xd3,0x95,0x5d, 0xbc,0x56,0x2f,0x3c,0x57,0x78,0x42,0x28,0xf6,0xe0,0x8a,0x7,0x7e,0xf4,0x52,0xe4, 0x68,0x86,0x7d,0xb2,0xe0,0x3b,0x6b,0xbc,0xd,0xe4,0xc1,0x83,0x7,0xf3,0xa6,0xeb, 0x4b,0xb9,0xec,0x77,0x92,0x9,0x3a,0xe,0xfd,0x8e,0x13,0x7,0xf7,0xe2,0x39,0xa3, 0x5c,0xb3,0xba,0x89,0xb7,0x6f,0x78,0x37,0x95,0x15,0x15,0xb9,0x92,0x49,0x46,0xbb, 0x48,0xc,0x1c,0xc3,0x1d,0xd,0xe7,0xb5,0x4f,0x24,0x15,0x27,0xbb,0x5d,0x2c,0x6b, 0x90,0xf0,0xe1,0x17,0xf9,0xe3,0xb1,0xe7,0x71,0xca,0x84,0xe7,0x79,0xe2,0x7b,0x86, 0xd0,0xbf,0xfe,0xd8,0xf3,0xe1,0x13,0x85,0x7d,0x8e,0xb,0xcc,0x53,0x4f,0x3d,0xa5, 0x3,0x25,0x99,0xd,0x64,0xa1,0x61,0xcd,0xcd,0xcd,0xe9,0xe3,0x94,0xe2,0x34,0x13, 0x40,0xc5,0x63,0x61,0xe,0x3c,0xf7,0x38,0xff,0xfb,0xdc,0xe3,0xb8,0xae,0xc3,0xdb, 0xd7,0x5d,0xcd,0xb5,0xeb,0x57,0x51,0x56,0x9a,0x7b,0x2,0x22,0xb1,0x23,0xa7,0x49, 0xc,0x1e,0xc7,0xb3,0xf3,0xf3,0xdb,0xd1,0x84,0xa4,0xa3,0x3b,0xc9,0x99,0x7e,0x87, 0xe1,0x11,0xc5,0xd0,0xa1,0x2f,0x63,0x58,0x6,0x8d,0x2b,0xb7,0xca,0x60,0xcd,0xd2, 0x27,0xbe,0xf8,0xf7,0xf,0x8c,0x7b,0x5c,0x3b,0x2e,0x30,0xbd,0xbd,0xbd,0x95,0x4a, 0x29,0x51,0x6c,0x67,0xd,0x50,0x59,0x59,0x39,0xa9,0x61,0xb9,0x34,0x1d,0xbe,0xe1, 0xa1,0x5e,0x5e,0xf8,0xc5,0xf7,0xd8,0xb7,0xf7,0x31,0x4,0x82,0xeb,0xae,0x59,0xca, 0x35,0xeb,0x56,0x50,0x12,0x8,0xe6,0xf0,0x79,0xd8,0xe1,0x53,0x24,0x6,0xdb,0x91, 0x4e,0xfe,0x42,0x73,0x28,0xe6,0x71,0xa2,0x2b,0x49,0xd7,0xa0,0x43,0x78,0x44,0x32, 0x18,0x4d,0x52,0x5e,0x51,0xcd,0xb6,0xf,0x6d,0xe7,0x5d,0xb7,0x7c,0x82,0x3f,0xec, 0x3f,0x40,0x67,0x67,0x67,0xb0,0xb0,0xef,0x5c,0x1a,0x17,0x18,0xcf,0xf3,0x42,0x9a, 0xa6,0x65,0x77,0xd6,0x6f,0x46,0x50,0x1d,0xea,0x3f,0xcb,0xb3,0x3f,0x7b,0x84,0x3, 0xcf,0x3d,0x81,0x69,0xe8,0x6c,0x79,0xfb,0x4a,0xd6,0xaf,0x5a,0x46,0x6e,0x6a,0x55, 0x49,0x87,0xd1,0xa1,0xe,0x46,0x7,0x4f,0x20,0xbd,0xfc,0xb3,0xee,0xbe,0x88,0xcb, 0x89,0x2e,0x87,0x9e,0xb0,0xc3,0x60,0x4c,0x32,0x3c,0x92,0xa4,0x66,0xce,0x3c,0xee, 0xfc,0xd0,0x67,0x58,0x77,0xfd,0x6d,0x98,0xa6,0x85,0xcf,0xb2,0x8,0x4,0x2,0x9a, 0xa6,0x69,0xd5,0x13,0xe9,0x37,0x2e,0x30,0xba,0xae,0x87,0x94,0x52,0x98,0xa6,0x59, 0x74,0x46,0x7a,0xf5,0xd5,0x57,0x19,0x1d,0x1d,0x7b,0xc0,0x3f,0x15,0x0,0xa,0x69, 0x64,0xb8,0x8f,0xc3,0xfb,0xf7,0x70,0xf2,0xb5,0x97,0x28,0x9,0x4,0x78,0xf7,0xe6, 0xb5,0xac,0x59,0xb1,0x34,0x2f,0xdd,0x21,0x3d,0x9b,0xd1,0xc1,0x76,0x46,0x87,0x3a, 0x50,0xf2,0xfc,0x5,0x2,0xa5,0xe0,0xdc,0xa0,0xc3,0x89,0xae,0x24,0x83,0x51,0x8f, 0xbe,0x88,0x43,0xdc,0xf6,0xa8,0x9a,0xb3,0x90,0x5b,0xef,0xf8,0x4,0x9b,0x6f,0xba, 0x13,0x21,0x52,0x4b,0xb1,0x8c,0x1d,0xe9,0x9,0x65,0xc2,0x33,0xec,0x71,0x81,0xc9, 0x64,0xd2,0x8b,0xa5,0x1c,0x20,0x35,0x94,0x1c,0xc7,0x99,0x16,0x0,0xc5,0xf8,0x86, 0xfa,0x4e,0xf3,0xec,0x8f,0xff,0x1,0x1d,0x97,0x5b,0xdf,0xbd,0x91,0x95,0xcb,0x9b, 0x31,0xf5,0xf3,0x6a,0x49,0x37,0x4e,0x62,0xe0,0x38,0x76,0xb8,0x13,0x75,0x3e,0x2b, 0x80,0x94,0x70,0xba,0xdf,0xa1,0xa3,0x3b,0xc9,0x60,0xd4,0xa5,0x6f,0xd8,0xc3,0x4e, 0xba,0x34,0x2e,0x59,0xcb,0xd,0x9b,0xef,0xa2,0x6e,0xe1,0x4a,0xaa,0xaa,0xaa,0xb2, 0xa0,0x64,0xfa,0x55,0x4a,0x65,0x0,0x9f,0x30,0x59,0x35,0x25,0x60,0x8a,0x19,0x36, 0x7f,0xfe,0xfc,0x69,0x1,0x50,0x8c,0x7a,0xce,0xb4,0xf3,0xc3,0x47,0xef,0x63,0x76, 0x4d,0x9,0x1f,0xfb,0xe4,0xc7,0x51,0x83,0x9d,0xe8,0x69,0x50,0xbc,0x64,0x94,0xc4, 0xc0,0x31,0xec,0xc8,0x19,0xe0,0xbc,0x2c,0xc7,0x53,0x9c,0xea,0x71,0x38,0xd5,0x93, 0x24,0x32,0xe2,0xd2,0x1b,0x91,0x78,0x52,0xb2,0xfa,0x6d,0x37,0xb3,0xe5,0x7d,0xf7, 0x50,0x37,0x3f,0xff,0xde,0x4c,0xb1,0x84,0x7d,0x3a,0xb9,0x5f,0xc1,0x4,0x34,0x61, 0x8c,0x11,0x42,0x28,0x5d,0xd7,0x85,0xe3,0x38,0x33,0x9e,0xef,0xed,0x3e,0x73,0x9c, 0x87,0x1f,0xf8,0x1b,0x6a,0x43,0x1,0xee,0xfe,0x5c,0x2b,0xbe,0xf2,0xb9,0xc8,0x50, 0x23,0xb1,0x23,0xbf,0x26,0x39,0x74,0x8a,0x64,0xf4,0x5c,0x1e,0xff,0x68,0x52,0x71, 0xb2,0x27,0xc9,0xa9,0x1e,0x87,0xe1,0xb8,0x4b,0x6f,0xc4,0x43,0xd7,0x75,0x36,0xbc, 0xeb,0x4e,0xde,0x79,0xcb,0xa7,0x8,0xd5,0xe6,0x5f,0x18,0x1a,0xaf,0xdf,0x4c,0x78, 0x50,0x4a,0x59,0x8f,0x3d,0xf6,0x98,0xff,0xee,0xbb,0xef,0x2e,0x1a,0xf,0xc6,0x5, 0xc6,0x75,0xdd,0x50,0x20,0x10,0xf0,0x32,0x3c,0x85,0x1d,0x8c,0x97,0xf3,0x9d,0xa, 0x50,0x83,0xbd,0x9d,0xfc,0xd7,0xf7,0xff,0x8e,0xda,0x6a,0x3f,0x1f,0xb9,0xe7,0x53, 0xe8,0x56,0x29,0x4a,0x3a,0x68,0xba,0x45,0x70,0xd1,0x75,0x44,0x5f,0xdc,0x9f,0xbd, 0x59,0x15,0x1b,0x95,0x74,0x74,0x25,0x39,0xdd,0x97,0x24,0x12,0x97,0xf4,0x47,0x1c, 0xac,0x40,0x80,0xd5,0x9b,0xde,0xcf,0xca,0x8d,0xb7,0xe1,0x2f,0xa9,0x60,0x20,0x92, 0x60,0x20,0x72,0x7c,0x4c,0x3f,0xc5,0x72,0xbe,0x19,0x60,0x5c,0xd7,0x25,0x16,0x8b, 0x85,0x80,0x73,0x63,0x1a,0x32,0x1,0x30,0x8e,0xe3,0x84,0x2a,0x2b,0x2b,0x95,0x52, 0xaa,0x68,0xf0,0x1d,0x18,0x18,0x98,0x76,0xf0,0x55,0x4a,0x11,0xe9,0x3f,0xcd,0xef, 0xf7,0xfc,0x2b,0x73,0xaa,0x3,0x7c,0xf8,0xa3,0x77,0xa1,0x1b,0x6,0x2a,0x39,0x82, 0x74,0x6d,0x94,0x10,0x20,0x4,0x66,0xd9,0x6c,0xfa,0xbb,0xcf,0xd2,0xd1,0xe5,0x70, 0x66,0x20,0xc9,0x50,0xcc,0x23,0x1c,0x73,0xf0,0x7,0x2b,0x58,0xba,0xf1,0x36,0x16, 0x2c,0xdb,0x82,0xcf,0xa,0x10,0x89,0x8d,0x12,0x4b,0x38,0xe3,0xf6,0x6b,0x59,0x56, 0x36,0xe7,0x5b,0x8,0x8c,0xe7,0x79,0xb8,0xae,0x3b,0x7d,0x60,0x5c,0xd7,0xd,0xf9, 0xfd,0x7e,0x2d,0x23,0xac,0xd0,0x13,0xd6,0xac,0x59,0x33,0x2e,0x0,0xb9,0x75,0xae, 0xeb,0x22,0xa5,0xc4,0x75,0x5d,0xba,0xde,0x38,0xc6,0x33,0xdf,0xff,0x1a,0x57,0x35, 0x2f,0xe5,0x1d,0x9b,0xde,0x86,0xa1,0x83,0xb4,0x47,0x50,0x6e,0x12,0xa1,0x65,0xf2, 0x32,0x92,0x23,0xa7,0x86,0x79,0xfd,0xf8,0x8,0x3,0x51,0x97,0xe1,0xb8,0xcb,0xac, 0x9a,0x7a,0x6e,0xd8,0xf6,0x61,0x96,0xad,0xbf,0x11,0xc3,0xf4,0xa1,0xeb,0x7a,0xb6, 0x68,0x9a,0x86,0xae,0xeb,0x18,0x86,0x91,0xfd,0x7f,0x3c,0xa0,0x20,0x35,0x33,0x65, 0x3c,0x86,0x9,0x2,0xf0,0x44,0xc0,0x54,0x59,0x96,0x35,0xe6,0xcc,0x7a,0xaa,0xfb, 0x23,0xc7,0x71,0xf0,0x3c,0x2f,0xfb,0xec,0x7a,0xe3,0x18,0x8f,0x7f,0xeb,0x1e,0x16, 0x2f,0x69,0xe6,0xb1,0x67,0x3a,0xf9,0xe7,0x47,0x5e,0xe6,0x95,0xff,0xdc,0x8e,0x6d, 0x3b,0x8c,0x8c,0x8c,0x10,0x8d,0xc5,0x9,0x87,0x23,0xc,0xe,0xc,0x73,0xf8,0x68, 0x17,0xc3,0x31,0x9b,0x9a,0xba,0xc5,0x6c,0x79,0xcf,0x1d,0x34,0x5e,0xb5,0x1,0x5d, 0xd7,0x89,0x8d,0xc4,0xd1,0x75,0x3b,0xb,0x44,0x6,0xc,0xd3,0x34,0xf3,0xc0,0x31, 0xc,0x63,0x5c,0x80,0x20,0x95,0x4e,0x4d,0x3,0x33,0xee,0x51,0xed,0xb8,0xc0,0x48, 0x29,0x6b,0x72,0x8f,0x66,0xb,0x1,0x19,0x1e,0x1e,0x1e,0x77,0x4b,0xe0,0xba,0x2e, 0xae,0xeb,0xe2,0x38,0xe,0x52,0x4a,0x6,0x7b,0x4e,0xb1,0xe7,0x3b,0x9f,0x27,0x3e, 0x12,0xe7,0xf9,0x97,0x5f,0xa5,0x29,0xa4,0xd1,0x5c,0x53,0xca,0x57,0xff,0xed,0x87, 0x79,0x72,0x2d,0x7f,0x9,0x25,0xe5,0xd5,0x94,0xce,0x59,0xcd,0xd2,0xe6,0x4d,0xd4, 0xd4,0x37,0x63,0x18,0x6,0xf1,0x78,0x3c,0xb,0x44,0xa6,0x48,0x29,0xf1,0x3c,0x2f, 0xbb,0x9c,0xc8,0xcd,0x4b,0xa7,0xae,0xc9,0xe6,0x4f,0xd3,0x39,0x76,0x65,0x3d,0x66, 0xa2,0xf3,0xa5,0x89,0x66,0xa5,0xea,0xcc,0x8a,0xb3,0x18,0x30,0x47,0x8e,0x1c,0x19, 0x37,0xe7,0x9b,0x51,0xda,0xf3,0x3c,0x86,0x7,0xce,0x70,0xe8,0x85,0x6f,0x63,0xc7, 0xa3,0x4,0x83,0x65,0x2c,0xaf,0x9f,0x4d,0xd9,0xac,0xb9,0x94,0x94,0xd7,0x10,0x28, 0xab,0x26,0x58,0x56,0x85,0xbf,0xb4,0x8a,0x40,0x69,0x8,0x85,0x9e,0x97,0x60,0xcf, 0xc,0x13,0x4d,0xd3,0xb2,0x77,0x85,0x73,0x4b,0x6e,0x7d,0x2e,0xa5,0xf,0xee,0x8b, 0xda,0xa5,0x94,0x42,0xd7,0x75,0x94,0x52,0x2a,0x1d,0x63,0xa6,0x7,0x8c,0xeb,0xba, 0x95,0xe3,0xed,0x93,0x20,0x95,0xf3,0x9d,0x28,0x47,0x93,0x89,0x2f,0x9d,0xed,0x7, 0x59,0xb5,0xea,0x11,0x2a,0xab,0xeb,0xd1,0x74,0x33,0xb,0x98,0xeb,0xba,0xd9,0xdc, 0x48,0xa6,0xae,0xb0,0xaf,0x5c,0x10,0x72,0x63,0x8a,0xa6,0x69,0x79,0xc3,0x26,0x53, 0x7c,0xbe,0x54,0xfc,0x99,0xc,0x18,0x0,0xcb,0xb2,0xbc,0x68,0x34,0x3a,0x3d,0x60, 0x84,0x10,0xa2,0xb5,0xb5,0xb5,0x7c,0xa2,0x33,0xeb,0xc2,0xab,0x21,0xe3,0x29,0xb2, 0x62,0xed,0xf5,0x48,0x29,0xb3,0x0,0x24,0x93,0xc9,0x3c,0x40,0x32,0x1e,0x52,0x78, 0x14,0x93,0xf9,0x5c,0xe8,0x1d,0x19,0x80,0x32,0x60,0x64,0xbc,0x2a,0xd7,0x6b,0x26, 0xca,0x34,0x66,0xfa,0xf1,0xfb,0xfd,0x6a,0xa2,0x33,0xec,0xa2,0xc0,0x6c,0xdf,0xbe, 0xbd,0xdc,0x71,0x1c,0xad,0xf0,0xaa,0xc7,0x85,0x1e,0x65,0xe4,0x1a,0x94,0xbb,0x29, 0x2d,0x2c,0xc5,0xda,0xe5,0x3e,0x33,0x9f,0x2f,0xe6,0x1e,0x60,0xe6,0xfb,0x40,0x20, 0xa0,0x4d,0x7b,0x28,0x49,0x29,0x43,0xae,0xeb,0x52,0xec,0x5e,0xcc,0x74,0x94,0x98, 0x8c,0xb7,0x98,0x91,0x97,0x7a,0x17,0x9f,0x19,0xfe,0x7e,0xbf,0x5f,0xf7,0x3c,0x6f, 0xda,0xb3,0x52,0xc8,0x75,0x5d,0x26,0xbb,0xfe,0x71,0xa1,0xca,0x4e,0x87,0x77,0xa6, 0xf9,0x72,0x86,0x12,0x52,0xca,0x71,0x77,0xd8,0x45,0x81,0x71,0x5d,0x37,0x94,0x59, 0x39,0x16,0xb,0xb0,0x97,0xcb,0xa8,0x99,0x94,0xe9,0xf7,0xfb,0x71,0x1c,0x67,0x7a, 0x1e,0xe3,0x38,0x4e,0x48,0x8,0x51,0xf4,0x5e,0xcc,0x85,0x28,0x71,0xa9,0xf8,0x2e, 0x54,0xa6,0x94,0x32,0x3,0xcc,0xb8,0xd7,0xe7,0x8b,0x2e,0xf,0x5d,0xd7,0xd,0x79, 0x9e,0xa7,0x8a,0xe5,0x7b,0xc7,0xb,0x9a,0x85,0x4a,0xbc,0x19,0x7c,0x17,0x2a,0x33, 0x33,0x94,0x1c,0xc7,0xf1,0x6f,0xdb,0xb6,0xad,0xe8,0x31,0xc8,0x18,0x8f,0x11,0x42, 0x68,0xb7,0xdf,0x7e,0x7b,0x6d,0x45,0x45,0x85,0x7,0x18,0x99,0xa9,0xf1,0x62,0xe8, 0x52,0x78,0xca,0xc5,0xf4,0x2d,0x84,0xc0,0xef,0xf7,0xe3,0xba,0x2e,0x43,0x43,0x43, 0xf3,0x84,0x10,0xa7,0x81,0xa4,0x52,0x2a,0x1b,0x37,0x8c,0x82,0x6,0x26,0x60,0xd9, 0xb6,0x5d,0xeb,0xf7,0xfb,0x95,0xdf,0xef,0xcf,0x2e,0xb5,0x2f,0x7,0x5d,0xaa,0x7e, 0x75,0x5d,0x27,0x14,0xa,0xe1,0x79,0x1e,0x42,0x88,0x3a,0x60,0x10,0x30,0x84,0x10, 0xb6,0x52,0xca,0x81,0x1c,0x60,0xd2,0xa0,0xf8,0x1,0xbf,0xeb,0xba,0x65,0xba,0xae, 0x8b,0x8e,0x8e,0xe,0xda,0xdb,0xdb,0x19,0x1e,0x1e,0xbe,0x24,0xa,0x5e,0x2e,0x6a, 0x6c,0x6c,0x64,0xd6,0xac,0x59,0xb8,0xae,0x8b,0x6d,0xdb,0xe5,0x40,0x80,0x54,0x58, 0x11,0xe9,0x55,0xb3,0x63,0x90,0xfa,0x4f,0x3,0x4c,0xc0,0x7,0xf8,0x1c,0xc7,0x31, 0x5d,0xd7,0x9d,0xf2,0x5,0xe7,0x2b,0x8d,0x3c,0xcf,0xcb,0xbe,0x95,0xe7,0xba,0xae, 0x45,0xca,0x21,0x14,0x20,0x1,0x4f,0x8,0x91,0xbd,0x38,0xa4,0x1,0x7a,0xba,0x98, 0xae,0xeb,0xa,0xdb,0x4e,0x1d,0x4d,0x58,0x96,0x35,0xe6,0xca,0xc7,0x95,0x4e,0x99, 0x1b,0xe2,0xe9,0xc,0x80,0x41,0x6a,0xe4,0x98,0x80,0x43,0x1a,0x87,0xc,0x30,0x22, 0xa7,0xe0,0x38,0x4e,0xff,0xb9,0x73,0xe7,0x34,0x29,0x25,0x55,0x55,0x55,0x54,0x55, 0x4d,0x7a,0xc3,0xfc,0x8a,0xa3,0xde,0xde,0x5e,0x5c,0xd7,0x95,0xe1,0x70,0x38,0xc2, 0xf9,0xd9,0x39,0x8b,0x81,0x48,0xe7,0x2f,0xc,0x52,0xee,0x14,0x0,0x2,0xb5,0xb5, 0xb5,0xf5,0x2b,0x56,0xac,0x78,0xb1,0xa4,0xa4,0xc4,0x68,0x69,0x69,0xb9,0x3c,0x9a, 0x5f,0x42,0x8a,0x46,0xa3,0xea,0xd8,0xb1,0x63,0xba,0x6d,0xdb,0xcf,0xef,0xdb,0xb7, 0xef,0x3e,0x20,0x51,0x50,0xe2,0xd9,0x37,0xdc,0x84,0x10,0x19,0x60,0xfc,0x80,0xbf, 0xa1,0xa1,0x61,0x7e,0x5d,0x5d,0xdd,0x7b,0xd,0xc3,0x68,0x56,0x4a,0x69,0x9c,0x47, 0xf5,0xf2,0x4c,0x51,0x17,0x4f,0x42,0x29,0x25,0x84,0x10,0xa,0xb0,0x63,0xb1,0xd8, 0x1f,0xda,0xdb,0xdb,0x5f,0x4c,0x24,0x12,0xc3,0xc0,0x68,0x4e,0x89,0x2b,0xa5,0xec, 0x5c,0x60,0x4,0xe7,0x81,0xb1,0xd2,0xc5,0x97,0x2e,0x26,0xa9,0xb1,0x27,0x80,0xf1, 0x4f,0xf2,0xdf,0xda,0x94,0x9,0x1b,0x92,0x94,0xd,0xe,0x90,0x4c,0x17,0x3b,0x5d, 0x46,0x94,0x52,0x36,0x14,0xbc,0x13,0x99,0x6,0xa7,0x10,0x94,0x4c,0x70,0xd2,0x73, 0x4,0x5f,0x89,0xa4,0x91,0xfa,0x61,0x15,0x29,0x60,0xdc,0x74,0xc9,0x80,0x33,0xa2, 0x94,0xca,0x9e,0xfd,0x16,0x7d,0x59,0x34,0x3d,0x7d,0xe7,0x2,0xa3,0xe7,0x8,0xbe, 0x52,0x3d,0x26,0xf3,0xc3,0x66,0xa7,0x65,0x52,0x80,0x8c,0x2,0x6e,0x21,0xe,0x93, 0xbe,0x45,0x9b,0x6,0x29,0x33,0x9d,0x6b,0x5c,0xd9,0x1e,0x93,0x1,0x45,0x2,0x9e, 0x9a,0xc0,0xf8,0xff,0x7,0x6b,0xa5,0xc1,0xce,0xa5,0x84,0xda,0x6b,0x0,0x0,0x0, 0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, // /home/newdrone18/workspace/qtbook-master/20.02.27_Qt_Programming_Korean_v1.4_Example_Source_code/Ch03/01_BasicWidget/01_QCheckBox/resources/chat.png 0x0,0x0,0xa,0xf9, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x51,0x0,0x0,0x0,0x40,0x8,0x6,0x0,0x0,0x0,0x62,0x5,0x9b,0x8, 0x0,0x0,0x0,0x4,0x73,0x42,0x49,0x54,0x8,0x8,0x8,0x8,0x7c,0x8,0x64,0x88, 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x1a,0x94,0x0,0x0,0x1a,0x94, 0x1,0xab,0xa0,0xe8,0xc9,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66, 0x74,0x77,0x61,0x72,0x65,0x0,0x77,0x77,0x77,0x2e,0x69,0x6e,0x6b,0x73,0x63,0x61, 0x70,0x65,0x2e,0x6f,0x72,0x67,0x9b,0xee,0x3c,0x1a,0x0,0x0,0xa,0x76,0x49,0x44, 0x41,0x54,0x78,0x9c,0xd5,0x9c,0x7d,0x6c,0x13,0xe7,0x1d,0xc7,0x3f,0xcf,0xf9,0x35, 0x71,0xf3,0x62,0xb5,0x20,0xa,0x4a,0xff,0xe8,0x68,0xa5,0xb5,0x15,0x1b,0x15,0xa8, 0xa1,0x74,0x52,0xb5,0xad,0xaa,0x84,0x40,0x48,0xfd,0x63,0x42,0xc,0x55,0xaa,0x54, 0xf1,0xa2,0xa1,0x95,0xc1,0x34,0xcd,0xff,0x6d,0xd2,0xaa,0xac,0xa3,0x4,0xba,0xaa, 0x52,0x12,0x50,0x3b,0x21,0x4,0xca,0xc2,0x34,0x16,0x5a,0x58,0xa0,0xd1,0xe8,0xa0, 0x5b,0x26,0xaa,0x88,0x26,0x6a,0x35,0x5a,0x1,0x1a,0x94,0x24,0x44,0xc4,0x6e,0xde, 0xec,0xb3,0x7d,0x77,0xcf,0xfe,0x38,0x9f,0x73,0xb1,0xcf,0x89,0xe3,0xf8,0x1c,0xf3, 0x95,0x1e,0xf9,0xfc,0xdc,0xf3,0xf2,0xbb,0xcf,0xfd,0x9e,0xd7,0x3b,0x5b,0x48,0x29, 0x71,0x5b,0x91,0x48,0xa4,0x11,0x78,0x13,0xf8,0x11,0xf0,0x24,0x20,0x5c,0xaf,0x74, 0xf1,0x8a,0x3,0x9f,0x3,0xc7,0x81,0xf6,0x96,0x96,0x96,0x82,0xa0,0x84,0xdb,0x10, 0x23,0x91,0x48,0x13,0xd0,0x7,0xac,0x4,0xa8,0xa9,0xa9,0xa1,0xa6,0xa6,0x66,0x56, 0x1a,0xbb,0xd,0x85,0x8e,0x4b,0x4d,0x57,0xaa,0x92,0xc9,0x24,0x9a,0xa6,0x59,0x5f, 0xcf,0x2,0x5b,0xb,0x81,0xf4,0x2e,0xba,0xb6,0xf9,0x75,0x14,0x58,0xf9,0xdc,0x73, 0xcf,0xf1,0xd2,0x4b,0x2f,0x51,0x5b,0x5b,0x8b,0x10,0xd5,0xef,0x88,0xba,0xae,0x33, 0x3a,0x3a,0x4a,0x57,0x57,0x17,0xc3,0xc3,0xc3,0x5b,0x80,0x37,0x80,0x23,0x4e,0x69, 0x15,0x37,0xd,0x89,0x44,0x22,0x2b,0x80,0x97,0xeb,0xea,0xea,0xd8,0xb2,0x65,0xb, 0xa1,0x50,0x8,0x21,0x4,0x52,0x4a,0xc,0xc3,0x40,0x4a,0x59,0xb5,0xc1,0xe3,0xf1, 0xf0,0xe8,0xa3,0x8f,0xb2,0x7d,0xfb,0x76,0xeb,0x72,0xb6,0x17,0xba,0x4e,0xb7,0x3d, 0xf1,0x7b,0x0,0xab,0x57,0xaf,0xc6,0xe3,0xf1,0x20,0xa5,0x44,0x55,0xd5,0x92,0x9b, 0x9b,0x53,0x3e,0xb7,0xe2,0x7c,0x3e,0x1f,0xa1,0x50,0x88,0x70,0x38,0x8c,0xdf,0xef, 0x27,0x95,0x4a,0x7d,0xbf,0x90,0x5d,0xae,0x7a,0x22,0x50,0x3,0xb0,0x62,0xc5,0xa, 0x80,0xac,0xf7,0x95,0xa2,0x4a,0x2,0x4,0x48,0xa7,0xd3,0x59,0x8f,0xc,0x4,0x2, 0x0,0xbe,0x42,0xb6,0xb9,0xd,0xd1,0xac,0x44,0x31,0xab,0x79,0x50,0x0,0xe6,0xc6, 0x59,0xf6,0x17,0x52,0x45,0x20,0x2e,0x46,0x4b,0xd,0xb0,0x18,0x55,0x35,0xc4,0x7, 0x1,0x20,0x54,0x66,0x8a,0x53,0x92,0x8a,0x99,0xfb,0x2d,0x35,0x3c,0x4b,0x55,0x7, 0xf1,0x41,0xf1,0x3e,0xbb,0xaa,0xaa,0x39,0x57,0x13,0xc0,0x7,0xb2,0x4f,0xac,0x26, 0x58,0xb,0xf5,0xca,0xaa,0x80,0x58,0x4d,0xb0,0x4a,0x81,0xba,0xe4,0x7d,0x62,0x31, 0x46,0x17,0xba,0x8,0xb7,0x7,0x9f,0x62,0xb5,0x64,0x10,0xab,0xc9,0xab,0x1e,0xc8, 0x3e,0xb1,0x9a,0xc0,0xb8,0x3a,0x4f,0x8c,0x44,0x22,0x1,0xe0,0x57,0xc0,0xcb,0xc0, 0x77,0x28,0x6d,0x23,0x35,0x0,0xf0,0xf1,0xc7,0x1f,0xf3,0xc9,0x27,0x9f,0x94,0x64, 0x60,0xd1,0x15,0x5,0x2,0xac,0x5a,0xb5,0x8a,0x8d,0x1b,0x37,0xd2,0xd0,0xd0,0x90, 0x77,0xde,0xcd,0x66,0xed,0x8,0x31,0x12,0x89,0x84,0x81,0x7f,0x2,0xcf,0x0,0x8, 0x21,0xf0,0x78,0x3c,0xb,0x2e,0xdc,0x92,0xae,0xeb,0xe8,0xba,0x5e,0x72,0xfe,0xf9, 0x64,0x18,0x6,0xd3,0xd3,0xd3,0x44,0xa3,0x51,0xae,0x5f,0xbf,0xce,0xd6,0xad,0x5b, 0x79,0xfc,0xf1,0xc7,0xb3,0xe7,0x97,0x6a,0xb2,0x7d,0x18,0x78,0xe6,0x89,0x27,0x9e, 0x60,0xdb,0xb6,0x6d,0xd4,0xd4,0xd4,0x54,0xfd,0x46,0x6a,0x22,0x91,0xe0,0xda,0xb5, 0x6b,0x74,0x77,0x77,0x73,0xee,0xdc,0x39,0x5e,0x7f,0xfd,0x75,0x6b,0xf7,0x65,0x96, 0x2a,0xd2,0x27,0x46,0x22,0x91,0x1a,0xe0,0xa7,0x7e,0xbf,0x9f,0x57,0x5f,0x7d,0x35, 0xbb,0x13,0xbd,0x98,0xd,0x4e,0xb7,0x3,0x98,0x8f,0x1d,0x36,0x6c,0xd8,0xc0,0xb3, 0xcf,0x3e,0xcb,0xf4,0xf4,0x34,0x37,0x6e,0xdc,0xa8,0x8,0x40,0x70,0xf6,0xc4,0x35, 0x80,0xf7,0xb1,0xc7,0x1e,0xc3,0xeb,0xf5,0x22,0xa5,0x24,0x91,0x48,0x2c,0xa8,0xd0, 0x85,0xaa,0xd4,0x8b,0xb3,0xbe,0xb,0x21,0x8,0x6,0x83,0xf8,0x7c,0x3e,0xd6,0xac, 0x59,0x43,0x7f,0x7f,0x3f,0xa3,0xa3,0xa3,0x3c,0xf5,0xd4,0x53,0x8b,0xae,0xa3,0x18, 0x39,0x8d,0xce,0x35,0x0,0x4d,0x4d,0x4d,0x80,0xd9,0xdf,0xb8,0x29,0x27,0x30,0xc5, 0xc6,0xd9,0x8f,0xad,0x87,0x4a,0xe1,0x70,0x18,0x80,0x54,0x2a,0x55,0xb0,0x8e,0x85, 0xc4,0x15,0xa3,0x82,0xa3,0xb3,0xd5,0x9f,0xb8,0x35,0x9a,0x96,0x3a,0xc9,0x2e,0x14, 0x67,0xdd,0xec,0xdc,0xbe,0xbb,0x12,0x53,0x9d,0x8a,0x4f,0xb6,0x17,0xdb,0x74,0xe7, 0x8b,0xb3,0x9f,0x2b,0xe7,0x8a,0x66,0x2e,0x55,0x14,0xe2,0x52,0x2e,0xd3,0x2a,0x3e, 0x4f,0x2c,0xb7,0xca,0xdd,0x74,0x8b,0x89,0x73,0xa3,0x9c,0x42,0x72,0x15,0xa2,0xdb, 0x4d,0xd7,0xed,0xb2,0x8a,0x95,0x6b,0x10,0xab,0x15,0x8c,0x1b,0x50,0xcb,0xe,0xb1, 0x1a,0x3c,0xad,0x58,0xdb,0x16,0xa,0x4f,0x8,0x11,0x90,0x52,0x26,0x73,0xe3,0xcb, 0x6,0xb1,0x5a,0xbc,0xaa,0x9c,0xb6,0x39,0xc8,0x2f,0x84,0x48,0x4b,0x29,0x67,0x4d, 0x9e,0xcb,0x2,0xb1,0x5a,0x9b,0x6e,0x39,0xf2,0xe7,0xc8,0x7,0xf8,0x1,0xd5,0x1e, 0xb9,0x28,0x88,0xd5,0xd0,0x74,0xe7,0x9b,0x2b,0x96,0x1a,0x7,0x33,0x13,0x77,0xdb, 0x79,0x4f,0x26,0xcc,0x52,0x49,0x10,0xab,0xa1,0xe9,0xba,0x3d,0xad,0x11,0x42,0xa0, 0x28,0xa,0x86,0x61,0x90,0x4e,0xa7,0x1,0x24,0xe6,0x32,0x59,0x8,0x21,0x84,0xb4, 0x65,0x5c,0x30,0xc4,0x6a,0xf0,0x34,0xa7,0x7c,0xb9,0x71,0x81,0x40,0x80,0xc6,0xc6, 0x46,0xa4,0x94,0x4c,0x4c,0x4c,0xe4,0xed,0x1,0xf8,0xfd,0x7e,0x6a,0x6b,0x6b,0xf3, 0xca,0xb6,0xe4,0xf5,0x9a,0x68,0x12,0x89,0x4,0xaa,0xaa,0xa2,0xeb,0xfa,0xd,0xcc, 0x8d,0xe9,0xbc,0x3d,0xc1,0xa2,0x21,0x56,0x83,0xa7,0x2d,0xc4,0x93,0x14,0x45,0xc9, 0x82,0xa8,0xaf,0xaf,0x67,0x7c,0x7c,0x3c,0x9b,0x56,0x4a,0x89,0xdf,0xef,0xc7,0xe7, 0x2b,0xf8,0xa2,0x17,0x0,0xf1,0x78,0x9c,0x9e,0x9e,0x1e,0xeb,0xf8,0x2,0xa6,0x37, 0x4a,0x99,0x53,0x69,0x51,0x10,0xcb,0xe9,0x31,0x6e,0xe6,0xb3,0xeb,0xab,0xaf,0xbe, 0xe2,0xd4,0xa9,0x53,0xbc,0xf2,0xca,0x2b,0x4,0x2,0x1,0x1e,0x7a,0xe8,0x21,0x26, 0x27,0x27,0xb3,0xf9,0x2c,0x80,0x5d,0x5d,0x5d,0x8e,0x5b,0x7d,0xe3,0xe3,0xe3,0xc, 0xd,0xd,0x1,0xa0,0x69,0xda,0x7f,0x4f,0x9f,0x3e,0x7d,0x18,0xd0,0x81,0xbc,0x6d, 0xad,0x5,0x35,0xe7,0x6a,0xf0,0xb4,0x62,0xf3,0xc5,0x62,0x31,0x62,0xb1,0x18,0x63, 0x63,0x63,0xec,0xd9,0xb3,0x87,0x60,0x30,0x88,0x61,0x18,0x4c,0x4d,0x4d,0x65,0xbd, 0x34,0x9d,0x4e,0xd3,0xdf,0xdf,0x9f,0x97,0xd7,0x92,0x61,0x18,0x93,0x93,0x93,0x93, 0x7f,0xf9,0xf0,0xc3,0xf,0x5b,0xef,0xdd,0xbb,0x17,0x7,0x34,0x20,0x95,0x9b,0xae, 0x20,0xc4,0xf9,0x8c,0xaf,0x56,0xa0,0x96,0xa6,0xa6,0xa6,0x7a,0x84,0x10,0x9e,0xbb, 0x77,0xef,0xfe,0xf8,0xe4,0xc9,0x93,0xec,0xd8,0xb1,0x83,0xda,0xda,0x5a,0xfc,0x7e, 0x3f,0xf1,0x78,0x1c,0x20,0xeb,0x81,0xd3,0xd3,0xd3,0xbd,0x97,0x2f,0x5f,0xfe,0xa3, 0x10,0xc2,0xd0,0x75,0xdd,0x2b,0x84,0x30,0x34,0x4d,0x53,0xbf,0xf8,0xe2,0x8b,0x21, 0x20,0x89,0x39,0xa5,0x49,0x1,0x29,0x29,0xa5,0x96,0x5b,0xd7,0xbc,0x9e,0xe8,0xd4, 0x69,0x57,0x83,0xa7,0x15,0x71,0x93,0x27,0x8e,0x1d,0x3b,0xf6,0xbb,0x9d,0x3b,0x77, 0xb6,0x7c,0xf9,0xe5,0x97,0x9b,0xda,0xda,0xda,0x78,0xed,0xb5,0xd7,0x8,0x6,0x83, 0xd4,0xd7,0xd7,0x3,0xe6,0xe0,0x2,0x66,0xff,0x79,0xed,0xda,0xb5,0x1b,0x98,0x7d, 0x9e,0x7,0xb3,0xc9,0xea,0x40,0x1a,0x13,0x5e,0x32,0x13,0x1c,0xb7,0xf8,0x17,0xf4, 0xdc,0xb9,0x10,0xd0,0x62,0xbc,0xb6,0x92,0xf9,0x0,0x14,0x45,0xd1,0x55,0x55,0x4d, 0x1c,0x3d,0x7a,0x74,0x7f,0x22,0x91,0x38,0x73,0xfb,0xf6,0x6d,0xe,0x1d,0x3a,0x94, 0xed,0xe7,0x60,0x6,0x62,0x20,0x10,0x78,0xd2,0xeb,0xf5,0x26,0x30,0x21,0x4d,0x67, 0x42,0x3c,0xf3,0x3d,0x1b,0x9f,0x3b,0xa0,0x64,0xeb,0x72,0x8a,0xcc,0xd5,0x42,0x2e, 0xa6,0x5a,0x80,0x2a,0x8a,0xa2,0x3,0x6a,0x22,0x91,0x88,0xb7,0xb7,0xb7,0xef,0x53, 0x55,0xb5,0x73,0x6a,0x6a,0x8a,0x77,0xdf,0x7d,0x97,0x9e,0x9e,0x1e,0x34,0x4d,0x43, 0x51,0x14,0x9a,0x9a,0x9a,0x50,0x14,0xa5,0x69,0xc7,0x8e,0x1d,0xcd,0x98,0xb0,0xd4, 0x4c,0xb0,0xe0,0x4d,0x1,0x53,0x32,0x67,0xa9,0x67,0x57,0x49,0x6f,0x40,0x54,0x2b, 0x50,0xbb,0x32,0x10,0x53,0x40,0x52,0x55,0xd5,0xc4,0x91,0x23,0x47,0x7e,0xfe,0xed, 0xb7,0xdf,0xee,0x96,0x52,0x8e,0x5d,0xba,0x74,0x89,0xd6,0xd6,0x56,0x39,0x32,0x32, 0xc2,0xda,0xb5,0x6b,0x1,0x58,0xb6,0x6c,0xd9,0xcf,0x2,0x81,0x40,0x8a,0x19,0x90, 0x71,0x4c,0x8f,0x4c,0x93,0x99,0x60,0x17,0x7a,0x6c,0x5c,0x96,0xe6,0x5c,0x4c,0x9a, 0x4a,0xe6,0x83,0x2c,0xc4,0xa4,0x3d,0xb4,0xb5,0xb5,0x9d,0x1a,0x18,0x18,0x58,0xaf, 0xeb,0xfa,0x9f,0x63,0xb1,0x98,0x78,0xe7,0x9d,0x77,0xb8,0x70,0xe1,0x2,0x0,0x1e, 0x8f,0xe7,0xf9,0xbd,0x7b,0xf7,0xee,0x61,0xc6,0x3,0xd3,0x56,0x51,0xf6,0xe0,0x44, 0xb3,0xec,0xcd,0x79,0x29,0xf3,0xe5,0x9c,0x53,0x30,0x7,0x9,0x2f,0x33,0x6b,0x5e, 0xcf,0xf9,0xf3,0xe7,0x63,0x7,0xf,0x1e,0xdc,0x15,0x8d,0x46,0x37,0xeb,0xba,0x7e, 0x51,0x55,0xd5,0x6c,0x21,0x3e,0x9f,0xef,0x37,0xbb,0x77,0xef,0x5e,0x47,0xe,0x38, 0x87,0x30,0x8b,0xe5,0xbc,0x10,0x97,0x1a,0x4c,0xb1,0xf9,0x1c,0xec,0x16,0xd8,0xe0, 0x61,0x5e,0x6b,0xf6,0xb8,0xa3,0xa3,0xe3,0x5f,0x7,0xf,0x1e,0xfc,0xc9,0x37,0xdf, 0x7c,0xb3,0x41,0xd3,0xb4,0xe3,0x98,0x4d,0xdf,0xdb,0xd0,0xd0,0xf0,0xa7,0x17,0x5f, 0x7c,0xb1,0x2e,0x93,0x5e,0xcc,0x17,0x84,0x10,0xf9,0x10,0x33,0x95,0x17,0x3d,0xad, 0x58,0x6a,0xa0,0x85,0x64,0x18,0x86,0xe5,0x85,0xb3,0x3c,0x28,0x27,0x28,0x27,0x4e, 0x9c,0xb8,0xfe,0xf6,0xdb,0x6f,0xbf,0x31,0x38,0x38,0xf8,0x4c,0x2a,0x95,0xfa,0x83, 0x10,0x22,0xbc,0x7e,0xfd,0xfa,0x43,0xe,0x69,0xb,0x86,0x59,0x10,0x85,0x10,0x4a, 0x32,0x99,0xcc,0xdb,0xea,0xa9,0x6,0x4f,0x2b,0x16,0x9e,0xa5,0xc,0x44,0x1f,0x73, 0x7b,0x14,0xd6,0xe7,0x47,0x1f,0x7d,0x34,0xda,0xda,0xda,0xfa,0x66,0x6f,0x6f,0xef, 0x77,0x35,0x4d,0xeb,0xdf,0xb9,0x73,0xe7,0xda,0x62,0xeb,0xca,0x4e,0xb6,0x33,0xd, 0xdc,0x9b,0x4a,0xa5,0xbc,0xc1,0x60,0xb0,0x60,0x86,0x62,0x3d,0xd4,0xcd,0x7c,0x45, 0xca,0x6a,0xce,0x6,0xe6,0x72,0xd,0x32,0x1b,0x8,0x73,0x85,0xab,0x57,0xaf,0xc6, 0xaf,0x5e,0xbd,0xda,0x51,0xe0,0x3c,0xb6,0xcf,0xac,0x89,0xf6,0x15,0x8b,0x7,0xf0, 0xa6,0xd3,0x69,0xc7,0x55,0x8c,0xdb,0x60,0x16,0xeb,0x79,0xe,0xe5,0xd9,0xbd,0x4d, 0x61,0x66,0xb4,0x2d,0x4,0x66,0xbe,0x80,0x43,0x7a,0x43,0x4a,0x69,0x7a,0x62,0xc6, 0xb,0x3d,0x80,0x47,0xd7,0x75,0x5,0x60,0x7a,0x7a,0xda,0xac,0x5d,0x51,0x2a,0xee, 0x69,0xa5,0x0,0xb4,0xde,0x9f,0xcc,0x6c,0xa0,0xe6,0x15,0x89,0xb9,0x8c,0xb3,0x8e, 0xad,0xcf,0xb9,0x40,0x3a,0xc5,0xcd,0xa,0x96,0x9d,0x96,0xd7,0x59,0x1d,0xaf,0x67, 0x7c,0x7c,0x7c,0x6c,0xf9,0xf2,0xe5,0xdc,0xbc,0x79,0x13,0x29,0x25,0x5e,0xaf,0x97, 0xda,0xda,0xda,0xec,0xb,0x43,0x4e,0x17,0xa8,0x69,0xda,0xac,0x97,0x38,0xa5,0x94, 0xf8,0x7c,0xbe,0x39,0x7f,0x58,0x58,0xce,0xa6,0xeb,0xf1,0x78,0xb0,0xba,0xa0,0x91, 0x91,0x11,0x0,0x52,0xa9,0xd4,0xb0,0x55,0x6c,0x26,0x18,0xe4,0x3,0xc2,0x21,0x6e, 0x5e,0x88,0xb9,0x76,0x5a,0x10,0x5,0x19,0x90,0xdd,0xdd,0xdd,0x37,0xf7,0xef,0xdf, 0x1f,0x1b,0x1e,0x1e,0xe,0x8f,0x8d,0x8d,0xf1,0xc8,0x23,0x8f,0xe0,0xf7,0xfb,0xb3, 0xeb,0x4c,0x27,0xc5,0xe3,0x71,0x74,0x5d,0xcf,0x42,0xb0,0xf6,0xef,0x2a,0x2d,0x4d, 0xd3,0xb8,0x72,0xe5,0xa,0x0,0xd1,0x68,0x74,0x80,0x7c,0x80,0x3a,0xf3,0x43,0xb4, 0xc7,0x15,0x4,0x67,0x57,0x5e,0xff,0x97,0x4e,0xa7,0x65,0x34,0x1a,0xfd,0xfd,0xc3, 0xf,0x3f,0xfc,0x56,0x6b,0x6b,0x2b,0xeb,0xd6,0xad,0xe3,0xe9,0xa7,0x9f,0x9e,0xf5, 0xbf,0xd,0x56,0x81,0xe1,0x70,0x98,0xfa,0xfa,0xfa,0xec,0x4b,0xa0,0x60,0x6e,0xab, 0x87,0x42,0x21,0x0,0xee,0xdd,0xbb,0x87,0xaa,0xaa,0xb9,0x55,0xcc,0xd2,0x62,0xfb, 0x3e,0x30,0x5f,0xff,0xbb,0x73,0xe7,0xe,0x9f,0x7e,0xfa,0x29,0x93,0x93,0x93,0x24, 0x93,0xc9,0x7f,0x9f,0x3e,0x7d,0xfa,0xa,0x33,0x9b,0xa8,0xd6,0xae,0x8c,0x7d,0x80, 0xc1,0x76,0x9c,0xe7,0x81,0xb,0xb1,0x4b,0x48,0x29,0x11,0x42,0x78,0x31,0x5f,0x52, 0xf,0x60,0x3e,0x12,0xc,0xec,0xda,0xb5,0x6b,0x6f,0x38,0x1c,0x7e,0x83,0x39,0x7e, 0x2c,0xbd,0x79,0xf3,0x66,0x36,0x6e,0xdc,0x48,0x22,0x91,0x20,0x1e,0x8f,0xa3,0x28, 0xa,0xd,0xd,0xd,0x28,0x8a,0xc2,0xd7,0x5f,0x7f,0xcd,0xfb,0xef,0xbf,0x5f,0xb4, 0x21,0xe5,0x92,0xaa,0xaa,0x57,0x7a,0x7b,0x7b,0x7f,0x3d,0x38,0x38,0x38,0xc4,0xcc, 0x36,0x96,0x9a,0xf9,0x74,0xea,0x17,0x17,0x7d,0x23,0x2d,0x4f,0xb4,0x5c,0xde,0x72, 0x7b,0xa3,0xbd,0xbd,0xbd,0xad,0xb9,0xb9,0xf9,0xef,0xab,0x57,0xaf,0x7e,0x3e,0x18, 0xc,0xae,0xb2,0x2f,0x17,0x83,0xc1,0x60,0x53,0x28,0x14,0xda,0x64,0x7f,0x27,0xd0, 0xe3,0xf1,0x50,0x57,0x57,0x87,0xa2,0x28,0xc,0xf,0xf,0x5b,0x0,0xd3,0xb1,0x58, 0xec,0x84,0x61,0x18,0x79,0xbb,0xc1,0x65,0x94,0x94,0x52,0x2a,0xba,0xae,0x4f,0xde, 0xbf,0x7f,0x7f,0xf0,0xec,0xd9,0xb3,0xff,0xc1,0x1c,0x89,0xad,0xa0,0x91,0xf1,0xc2, 0x5,0xb9,0xd7,0x2,0x64,0x41,0xcc,0xc2,0xcb,0x54,0xea,0x1,0xb4,0xbe,0xbe,0xbe, 0xff,0xf5,0xf5,0xf5,0xdd,0x65,0x66,0xbe,0x5,0xc0,0xb6,0x6d,0xdb,0x7e,0x18,0xa, 0x85,0x36,0xd5,0xd5,0xd5,0x99,0x85,0x78,0xbd,0x34,0x34,0x34,0x20,0x84,0x20,0x1a, 0x8d,0xf2,0xde,0x7b,0xef,0x1,0x68,0xb7,0x6e,0xdd,0xda,0xd7,0xd9,0xd9,0xf9,0xf, 0x37,0xc,0xcf,0x91,0x35,0x82,0x59,0x4d,0xd6,0x2,0x67,0x5,0xc3,0x2d,0x80,0x90, 0x81,0x28,0xa5,0x94,0x42,0x8,0x8d,0x99,0x51,0xda,0x3e,0x4f,0x30,0x32,0x71,0x59, 0x23,0x82,0xc1,0xa0,0xf,0xa0,0xb1,0xb1,0xd1,0x2c,0x24,0xf3,0x54,0xed,0xf6,0xed, 0xdb,0x74,0x74,0x74,0xa0,0xeb,0xba,0x31,0x34,0x34,0xb4,0xaf,0xb3,0xb3,0xb3,0xc7, 0x2d,0xc3,0x6d,0x92,0xcc,0x40,0xb4,0x9c,0x20,0x17,0xa4,0xe3,0xbc,0xa7,0x5c,0xb2, 0xf,0x2c,0xd6,0x5d,0xb4,0xcf,0x4b,0x8c,0x4c,0x1a,0x81,0xd,0x62,0x38,0x1c,0xfe, 0x41,0xe6,0xd3,0x4c,0x64,0x18,0x5c,0xba,0x74,0x89,0x8b,0x17,0x2f,0x2,0x18,0xf7, 0xef,0xdf,0xff,0xc5,0xf1,0xe3,0xc7,0xff,0xe6,0xa6,0xe1,0x39,0xb2,0xfa,0x1a,0xc9, 0xc,0x3c,0xab,0x39,0xa7,0xe4,0x1c,0x1b,0xaa,0xe5,0x50,0x16,0xa2,0xcd,0x1b,0x2d, 0x60,0x32,0x73,0x5e,0xc7,0x4,0x6b,0x0,0x34,0x37,0x37,0x37,0x6,0x2,0x81,0x4d, 0x5e,0xaf,0x97,0xba,0xba,0x3a,0x26,0x26,0x26,0xf8,0xe0,0x83,0xf,0x18,0x19,0x19, 0x41,0x4a,0x39,0x16,0x8b,0xc5,0xe,0x1c,0x3b,0x76,0xec,0x9c,0x9b,0x46,0x3b,0xc8, 0x6a,0x29,0xd6,0x34,0xc6,0x72,0x8,0xc7,0x7,0x4b,0xe5,0xd6,0xac,0x29,0x8e,0x94, 0xd2,0x10,0x42,0xa4,0x98,0xe9,0x1f,0x2d,0x80,0xd9,0x51,0xe5,0x85,0x17,0x5e,0xf8, 0x2d,0x10,0x5c,0xb9,0x72,0x25,0x9f,0x7d,0xf6,0x19,0x67,0xce,0x9c,0x41,0x4a,0x89, 0xae,0xeb,0x7f,0x1d,0x18,0x18,0xf8,0x65,0x4f,0x4f,0xcf,0x98,0xdb,0x46,0x3b,0xc8, 0x7e,0xe3,0x2d,0xbb,0x53,0x52,0x4a,0xf7,0x7e,0xc6,0x65,0xaf,0xbc,0x50,0x7f,0x2b, 0x84,0xb0,0xef,0xc3,0x9,0x40,0xee,0xdb,0xb7,0x6f,0x4b,0x30,0x18,0xfc,0xb3,0x3d, 0x9d,0x94,0xf2,0x56,0x2a,0x95,0x8a,0x1c,0x3e,0x7c,0xb8,0x92,0xcd,0x37,0x57,0x79, 0xcd,0xd9,0xcd,0x81,0x24,0xaf,0xf2,0x62,0xea,0x12,0x42,0x88,0x3,0x7,0xe,0x2c, 0xf7,0xf9,0x7c,0x83,0xc0,0xb2,0x4c,0xf4,0xe7,0x52,0xca,0xb7,0xee,0xdc,0xb9,0xd3, 0x75,0xf2,0xe4,0xc9,0x8a,0xdc,0xf1,0xf9,0x54,0x49,0x70,0x76,0x15,0xfd,0xaf,0x75, 0x91,0x48,0xa4,0x1b,0xd8,0x2,0x5c,0x6,0x5a,0x5a,0x5a,0x5a,0xce,0xbb,0x69,0xd8, 0x83,0xa4,0xff,0x3,0xb7,0x7e,0x69,0x42,0x94,0x4a,0x97,0x69,0x0,0x0,0x0,0x0, 0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, // /home/newdrone18/workspace/qtbook-master/20.02.27_Qt_Programming_Korean_v1.4_Example_Source_code/Ch03/01_BasicWidget/01_QCheckBox/resources/calendar.png 0x0,0x0,0xf,0xaa, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x50,0x0,0x0,0x0,0x40,0x8,0x6,0x0,0x0,0x0,0x8d,0xc7,0xf0,0x36, 0x0,0x0,0x0,0x4,0x73,0x42,0x49,0x54,0x8,0x8,0x8,0x8,0x7c,0x8,0x64,0x88, 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x17,0xc4,0x0,0x0,0x17,0xc4, 0x1,0x74,0x9a,0x4f,0xf9,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66, 0x74,0x77,0x61,0x72,0x65,0x0,0x77,0x77,0x77,0x2e,0x69,0x6e,0x6b,0x73,0x63,0x61, 0x70,0x65,0x2e,0x6f,0x72,0x67,0x9b,0xee,0x3c,0x1a,0x0,0x0,0xf,0x27,0x49,0x44, 0x41,0x54,0x78,0x9c,0xe5,0x9c,0x7b,0x70,0x54,0xd7,0x7d,0xc7,0x3f,0xe7,0xde,0xbb, 0xab,0x7d,0x20,0x81,0x2c,0xad,0xd0,0x63,0xf5,0x70,0xc1,0x10,0x49,0x80,0x31,0xa, 0x1,0x8c,0x29,0x4e,0x1d,0x4c,0x4c,0x26,0x6d,0xed,0x6,0x1c,0x7b,0x6c,0xc6,0xa9, 0xdb,0x5,0x89,0xd6,0x1e,0xbb,0xae,0x67,0x3a,0x99,0x4e,0xfa,0x8f,0x67,0xec,0xc, 0x9,0x99,0x4c,0x56,0x60,0x3b,0xe3,0x19,0xbb,0xcd,0xcb,0x8f,0xca,0x9d,0x29,0xa6, 0xc6,0x1e,0x48,0xa7,0xc1,0xf,0x1e,0xb5,0xc1,0xa4,0x80,0x30,0xa0,0xa0,0x95,0x64, 0xc4,0x4a,0x91,0x94,0x5d,0xd0,0xbe,0xee,0xe9,0x1f,0x7b,0x77,0xf7,0xee,0x4a,0x5a, 0xed,0x5e,0xf1,0xb0,0xc9,0x77,0xe6,0x8e,0x96,0x73,0xce,0x3d,0xe7,0x77,0xbe,0xfb, 0xfb,0x9d,0xdf,0xf9,0xfd,0xce,0x59,0x84,0x94,0x12,0xab,0xe8,0xe8,0xe8,0x58,0x5, 0xfc,0x2d,0x70,0x3f,0xe0,0xb2,0xdc,0xd1,0xb5,0xc7,0x31,0xe0,0x5,0xe0,0xdf,0x3a, 0x3b,0x3b,0x47,0x67,0xd2,0x91,0x66,0xf5,0xc5,0x8e,0x8e,0x8e,0x16,0xe0,0x3d,0x0, 0x87,0xc3,0x81,0xdd,0x6e,0x9f,0x89,0x1c,0xd7,0xc,0x52,0x4a,0x42,0xa1,0xd0,0x62, 0x29,0xe5,0x4f,0x80,0x3b,0x80,0x7,0x66,0xd2,0x9f,0xb0,0xaa,0x81,0x1d,0x1d,0x1d, 0x2f,0x2,0x7f,0xb3,0x78,0xf1,0x62,0x16,0x2d,0x5a,0x44,0x24,0x12,0x21,0x10,0x8, 0x30,0x77,0xee,0x5c,0x54,0x55,0x9d,0x89,0x4c,0x57,0x1d,0x3,0x3,0x3,0x1c,0x3f, 0x7e,0x9c,0x70,0x38,0x9c,0x0,0x1a,0x3b,0x3b,0x3b,0xfb,0xac,0xf6,0x65,0x49,0x3, 0x3b,0x3a,0x3a,0x14,0xe0,0x41,0x87,0xc3,0xc1,0xc2,0x85,0xb,0x29,0x2d,0x2d,0xa5, 0xb4,0xb4,0x94,0x91,0x91,0x11,0x22,0x91,0x8,0x8a,0xa2,0x58,0x95,0xe7,0xaa,0x23, 0xa5,0x30,0x55,0x55,0x55,0x9c,0x3b,0x77,0x4e,0x5,0x36,0x2,0x3f,0xb2,0xda,0x9f, 0x55,0x13,0x6e,0x2,0x5c,0x6e,0xb7,0x9b,0x50,0x28,0x44,0x79,0x79,0x39,0x89,0x44, 0x82,0x70,0x38,0x4c,0x2c,0x16,0xb3,0x2a,0xcb,0x35,0xc5,0xac,0x59,0xb3,0x52,0x1f, 0x17,0xcd,0xa4,0x1f,0xab,0x4,0x36,0x3,0x38,0x9d,0x4e,0x6,0x7,0x7,0x19,0x1d, 0x1d,0x25,0x16,0x8b,0xa1,0xeb,0xfa,0x4c,0x64,0xb9,0xa6,0xb0,0xd9,0x6c,0xa8,0xaa, 0x2a,0x13,0x89,0xc4,0x8c,0x8,0xb4,0x6a,0x6b,0xcd,0x90,0x74,0x1e,0x0,0x91,0x48, 0xe4,0xb,0x45,0x5e,0xa,0xe,0x87,0x43,0x0,0xad,0x1d,0x1d,0x1d,0xc2,0x6a,0x1f, 0x56,0x9,0x8c,0x1,0x44,0xa3,0x51,0xab,0xe3,0x5e,0x77,0x48,0x29,0x89,0x46,0xa3, 0x12,0x88,0x0,0x96,0xbd,0x9e,0x55,0x13,0x7e,0x5,0xf8,0xfe,0xc0,0xc0,0x80,0x5d, 0xd7,0x75,0xca,0xca,0xca,0xac,0x8e,0x7f,0x5d,0x10,0x8b,0xc5,0xb8,0x78,0xf1,0x22, 0xb1,0x58,0x4c,0x0,0x2f,0x74,0x76,0x76,0xc6,0xad,0xf6,0x65,0x79,0x1b,0xd3,0xde, 0xde,0x7e,0x52,0x8,0xb1,0xd0,0xea,0xc0,0x9f,0x13,0x5c,0x6,0xe6,0x77,0x76,0x76, 0xf6,0x5b,0xed,0xc0,0xf2,0x46,0x1a,0x98,0x5,0xb0,0x60,0xc1,0x82,0x2c,0xcf,0x9b, 0xf5,0x75,0xe4,0x7c,0x39,0x72,0xaa,0xb2,0x49,0xca,0xb,0x6d,0x93,0xb7,0xcf,0x29, 0xde,0x53,0x14,0x85,0xe1,0xe1,0x61,0xc2,0xe1,0xb0,0x5d,0xd3,0xb4,0xa1,0x29,0x7, 0x2e,0x0,0x96,0x8,0xf4,0xf9,0x7c,0x42,0x55,0xd5,0x6a,0x55,0x55,0x79,0xec,0xf1, 0xc7,0x51,0x84,0xe5,0x35,0xf8,0xba,0xe1,0x7f,0x7e,0xf3,0x1b,0x7e,0xf1,0xf3,0x9f, 0xab,0xb1,0x58,0x6c,0x35,0xb0,0xcf,0x6a,0x3f,0x96,0x8,0x14,0x42,0x2c,0x14,0x42, 0xa8,0xb,0xbf,0xf4,0x25,0x14,0x21,0x88,0x44,0xa3,0x5c,0x8e,0x44,0xac,0x49,0x60, 0x90,0x7f,0x25,0xbe,0x2,0x21,0x44,0xb2,0x9f,0xd4,0x5f,0xa3,0x2c,0xdd,0xbf,0x10, 0x28,0x8a,0x82,0xc3,0x6e,0x67,0xe1,0x82,0x5,0xa9,0xfa,0x7b,0xb9,0xd6,0x4,0x2, 0x1b,0x0,0x5a,0x5b,0x5b,0x1,0x18,0x8f,0x46,0x19,0x37,0x11,0x68,0x3d,0x3d,0x31, 0x33,0x8,0x21,0xd2,0x24,0x9a,0x3f,0x93,0x53,0x5e,0x62,0xb3,0x51,0x51,0x51,0x81, 0xaa,0xaa,0x24,0x12,0x89,0x6f,0x0,0x7f,0x6f,0x75,0x4c,0x4b,0xdb,0x18,0x21,0xc4, 0x9f,0x1,0x34,0x36,0x36,0x2,0x10,0x8f,0x67,0x9c,0xd8,0x75,0x25,0x8f,0x8c,0xa6, 0x99,0x2a,0xd2,0xe5,0x29,0x52,0xe3,0x89,0x4,0xaa,0xaa,0xd2,0xba,0x68,0x11,0x40, 0xd3,0x13,0x4f,0x3c,0x31,0xc7,0xea,0xb8,0x56,0xf7,0x81,0x8b,0x1,0xaa,0x3c,0x1e, 0xa4,0x94,0xc4,0xe2,0x96,0x77,0x1,0x57,0x16,0x26,0x73,0x15,0x26,0x33,0x26,0x67, 0x8d,0x4e,0x18,0x9b,0xfe,0xaf,0x2c,0x5f,0xe,0x20,0x22,0x91,0xc8,0x57,0xad,0xe, 0x69,0x55,0x3,0x6b,0x15,0x45,0xc1,0xed,0x76,0x13,0x4f,0x24,0xd2,0xe5,0x56,0xb4, 0x4f,0x4a,0xc9,0x4c,0x72,0x92,0x86,0x3c,0x5,0x6b,0x1f,0x90,0x96,0xf9,0x4f,0xe6, 0xcd,0x4b,0xb5,0xb4,0x9c,0xd2,0x2a,0x7a,0xd,0x7c,0xf4,0xd1,0x47,0xe7,0x95,0x94, 0x94,0x68,0x2d,0x2d,0x2d,0x8,0x21,0x8a,0xd2,0xbe,0xb1,0xd1,0x51,0x7e,0xbd,0x7f, 0x3f,0xef,0xec,0xdd,0xcb,0xa9,0x93,0x27,0xb9,0x78,0xf1,0x22,0x43,0xc1,0x20,0xaa, 0xaa,0x52,0xe7,0xf5,0xd2,0xd0,0xd0,0xc0,0xb7,0x36,0x6d,0xe2,0x2f,0xee,0xbd,0xb7, 0xe0,0x94,0xd8,0xd8,0xd8,0x18,0x87,0xf,0x1d,0xe2,0xe0,0x7,0x1f,0xf0,0xe1,0x7, 0x1f,0xb0,0x62,0xe5,0x4a,0xfe,0xf9,0x7b,0xdf,0x9b,0x52,0xfb,0x84,0x10,0x48,0x5d, 0x47,0x4a,0x49,0x59,0x59,0x19,0xe,0x87,0x83,0xf1,0xf1,0xf1,0x3b,0xb,0x9e,0x44, 0xe,0x8a,0x26,0x50,0xd3,0xb4,0x6f,0x0,0x34,0xb7,0xb4,0x0,0xa4,0x9,0x9c,0x4e, 0x87,0x62,0xb1,0x18,0x8b,0x9b,0x9b,0x27,0xcd,0xd6,0xc4,0xe3,0x71,0xce,0x9e,0x39, 0xc3,0xd9,0x33,0x67,0xf8,0xf5,0xfe,0xfd,0x6c,0x7f,0xee,0x39,0x7e,0xf1,0xfa,0xeb, 0xe9,0x35,0xd6,0x8c,0xcf,0x6,0x6,0x38,0xf8,0xe1,0x87,0x7c,0x68,0x10,0x76,0xf2, 0xc4,0x89,0xac,0x38,0xbc,0xd2,0xe3,0x49,0x7e,0xc8,0xd1,0xbe,0x2c,0x8,0x41,0x22, 0x91,0x40,0xd3,0x34,0xda,0xda,0xda,0x38,0x70,0xe0,0x80,0xa7,0xbd,0xbd,0xbd,0x6e, 0xe7,0xce,0x9d,0x45,0xe7,0x5,0x8b,0x26,0x30,0xe5,0x40,0x9a,0x9a,0x9a,0x0,0xa, 0xd6,0xc0,0xcf,0x3e,0xfb,0xac,0xe0,0x54,0x57,0x4f,0x4f,0xf,0x7f,0xfd,0xf0,0xc3, 0xec,0xde,0xbb,0x37,0x9d,0xb0,0x0,0x58,0xbb,0x7a,0x35,0xa7,0xbb,0xbb,0xf3,0xbe, 0x1b,0xe8,0xed,0x9d,0x54,0xfb,0xb2,0xbc,0x32,0xc9,0x75,0x50,0x3,0x96,0x2d,0x5b, 0xc6,0x81,0x3,0x7,0x10,0x42,0x6c,0x0,0x5e,0x2c,0x48,0x40,0x13,0xac,0xac,0x81, 0x4b,0x1,0x3c,0x86,0x3,0x89,0xc7,0xe3,0x5,0xad,0x7d,0xfd,0x7d,0x7d,0x94,0x94, 0x94,0xf0,0xd0,0xe6,0xcd,0xfc,0xec,0x57,0xbf,0xe2,0xbd,0x83,0x7,0x39,0xdd,0xd3, 0xc3,0xeb,0x6f,0xbe,0xc9,0x93,0x4f,0x3d,0x45,0xd3,0xcd,0x37,0x67,0xb5,0x3f,0x71, 0xe2,0x4,0xff,0xf7,0xdb,0xdf,0x66,0x95,0x4d,0xf6,0x5,0x68,0x5a,0xb6,0xe,0x4, 0x2,0x81,0x69,0xb5,0x4f,0x90,0x71,0x24,0x26,0x2d,0xff,0x76,0x1,0xd3,0x98,0x38, 0x7e,0xb1,0x2f,0xa4,0x1d,0x88,0xcb,0x95,0xe5,0x40,0xa6,0x43,0x43,0x43,0x3,0x87, 0x3e,0xfe,0x98,0xca,0xca,0xca,0xac,0xf2,0xdb,0x57,0xaf,0xe6,0xf6,0xd5,0xab,0xd9, 0xf4,0xc0,0x3,0xdc,0xbe,0x7c,0x79,0x96,0x39,0xf6,0xf7,0xf7,0xb3,0xac,0xad,0x2d, 0xfd,0xef,0xba,0xba,0x3a,0x86,0x82,0x41,0x56,0xac,0x5c,0xc9,0xed,0x77,0xdc,0xc1, 0x1d,0x6b,0xd6,0x10,0xc,0x6,0x79,0x70,0xd3,0xa6,0x74,0x9b,0xa1,0x60,0x90,0xf1, 0xf1,0x71,0x9c,0x4e,0xa7,0x59,0xe6,0x8c,0x93,0x49,0x16,0xa4,0x9d,0x97,0xd3,0xe5, 0x62,0xf6,0x9c,0x39,0x8c,0x8e,0x8c,0xac,0x28,0x8a,0x8,0x3,0x45,0x11,0xe8,0xf3, 0xf9,0x1a,0x35,0x4d,0xb3,0x99,0x1d,0x48,0xa1,0xfe,0xb3,0xa6,0xb6,0x36,0x6f,0x7d, 0x43,0x43,0x3,0x73,0xe6,0xcc,0x61,0x78,0x78,0x38,0x5d,0xb6,0x68,0x51,0x76,0xae, 0xf3,0xc7,0x7e,0x3f,0x55,0xc6,0x99,0x4b,0x8a,0x94,0x33,0x67,0xce,0x4c,0xe8,0xab, 0xaf,0xb7,0x97,0x5b,0x16,0x2c,0xc8,0xd6,0x3e,0x21,0x26,0x68,0x66,0x42,0xd7,0xd1, 0x54,0x95,0x55,0xab,0x56,0xf1,0x5f,0x7b,0xf6,0xb8,0xb7,0x6d,0xdb,0xd6,0xec,0xf7, 0xfb,0x4f,0x14,0x38,0x25,0xa0,0x78,0x13,0xde,0x0,0xd0,0x62,0x44,0x20,0x57,0x72, 0xff,0x77,0xfc,0x93,0x4f,0xb2,0xc8,0xbb,0x6d,0xd9,0xb2,0x9,0x66,0x5d,0x53,0x5b, 0x9b,0xed,0x9d,0x85,0xc0,0xeb,0xf5,0x4e,0xe8,0x2b,0xd0,0xd7,0x67,0x6a,0x32,0x51, 0xfb,0x52,0x48,0x69,0xfb,0x92,0x25,0x4b,0x0,0x90,0x52,0x6e,0x2c,0x56,0xee,0xa2, 0x8,0x14,0x42,0x7c,0xd,0x32,0xeb,0x46,0xf4,0xa,0x10,0x38,0x34,0x34,0xc4,0x9e, 0xdd,0xbb,0x79,0xf8,0x81,0xcc,0x56,0xac,0xac,0xac,0x8c,0x9f,0xec,0xdc,0x39,0xb5, 0x1c,0x64,0x8,0x71,0x38,0x9d,0x54,0xe4,0x2c,0xb,0x81,0xf3,0xe7,0xa7,0xd5,0x3e, 0x0,0xdd,0xd8,0x7f,0xd6,0x1a,0xd6,0x21,0xa5,0xfc,0xcb,0x62,0xe5,0x2f,0xca,0x84, 0x85,0x10,0x13,0x1c,0x48,0x31,0x38,0x75,0xf2,0x24,0x2f,0xfd,0xf4,0xa7,0x0,0x4, 0x83,0x41,0x8e,0x1d,0x3d,0x4a,0x5f,0x20,0x90,0xd5,0x66,0xcd,0xda,0xb5,0x6c,0xdf, 0xb1,0x83,0xfa,0xfa,0xfa,0x7c,0x82,0x24,0xff,0x18,0x8f,0xd7,0xeb,0x65,0x28,0x18, 0x4c,0x57,0x7,0x8c,0x3e,0xf3,0x69,0x9f,0x10,0x2,0x8c,0x75,0xd0,0x6e,0xb3,0xe1, 0xf5,0x7a,0xe9,0xeb,0xeb,0x5b,0xb4,0x69,0xd3,0x26,0xf5,0xd5,0x57,0x5f,0x2d,0x78, 0x71,0x2f,0x96,0x40,0xaf,0xaa,0xaa,0xb8,0x5d,0x2e,0x4b,0xe6,0xfb,0xbf,0x47,0x8e, 0xf0,0xaf,0x2f,0xbf,0x3c,0x69,0xdd,0x82,0x85,0xb,0xf9,0xa7,0xef,0x7e,0x97,0x75, 0xeb,0xd7,0xe7,0x3d,0x16,0xcd,0x8a,0x38,0xc,0x42,0xbc,0x5e,0x2f,0x47,0x3f,0xfe, 0x38,0xdd,0xa6,0xb7,0xb7,0xd7,0x2c,0x74,0xd6,0x7b,0xb9,0x9a,0xa9,0xeb,0x3a,0xaa, 0xb1,0xe,0xbe,0xf6,0xda,0x6b,0x36,0x8f,0xc7,0xf3,0x15,0xe0,0xfd,0x42,0xe7,0x54, 0xb0,0x9,0xfb,0x7c,0xbe,0x3a,0x45,0x51,0xec,0x56,0x22,0x90,0x14,0x7a,0xcf,0x9f, 0x9f,0xb2,0xae,0xfb,0xd4,0x29,0xbe,0xb3,0x79,0x33,0x2b,0xda,0xda,0x78,0x7b,0xcf, 0x9e,0xa9,0x3b,0x99,0x84,0x10,0x6f,0x8e,0xb6,0x6,0x2,0x81,0x89,0xe1,0x5d,0xee, 0x9e,0xd0,0xa8,0x4b,0x99,0x71,0x2a,0x30,0x90,0x52,0x3e,0x5c,0xcc,0x9c,0xa,0xd6, 0x40,0x45,0x51,0xee,0x91,0x52,0xd2,0x92,0x13,0x81,0x14,0x83,0x3f,0xbd,0xf3,0x4e, 0xaa,0x6b,0x6a,0x48,0x24,0x12,0x9c,0xff,0xdd,0xef,0x38,0xdd,0xdd,0xcd,0xa7,0xa7, 0x4f,0x13,0x8,0x4,0xd2,0xb,0x7a,0x5f,0x20,0xc0,0x77,0x36,0x6f,0xe6,0xa5,0x97, 0x5f,0xe6,0xeb,0x1b,0x36,0x64,0xbd,0x3f,0x15,0x21,0xb9,0x4,0xa6,0xbf,0xa8,0x69, 0xb4,0xf,0x4c,0x7,0xed,0x1e,0xf,0x22,0xa9,0x91,0xdf,0x4,0x3a,0xa,0x9d,0x53, 0x31,0x26,0xbc,0xe,0xa0,0xb1,0xc8,0x8,0xc4,0x8c,0x95,0xab,0x56,0xb1,0x72,0xd5, 0xaa,0x9,0xe5,0xa3,0x23,0x23,0x3c,0xfc,0xe0,0x83,0x1c,0x3e,0x74,0x28,0x5d,0xf6, 0xfd,0x67,0x9f,0x9d,0x40,0xe0,0x54,0x84,0xe4,0xae,0x97,0xfd,0xfd,0xfd,0x48,0x5d, 0x47,0x51,0xd5,0x49,0x63,0xe1,0xdc,0xc4,0x83,0x2e,0x25,0x8a,0xa2,0xb0,0x6e,0xdd, 0x3a,0xf6,0xee,0xdd,0xeb,0xdd,0xb6,0x6d,0xdb,0xed,0x7e,0xbf,0xff,0xbd,0x42,0xe6, 0x54,0x8c,0x17,0xbe,0xd,0xc0,0x53,0x59,0x99,0x74,0x20,0x45,0x6c,0xa2,0xa7,0xc3, 0xec,0x39,0x73,0x78,0xfc,0xc9,0x27,0xb3,0xca,0x72,0xcd,0x3d,0x9f,0x39,0xd6,0xe7, 0x6c,0x65,0x62,0xb1,0x18,0x9f,0x5d,0xb8,0x90,0x79,0xcf,0x94,0x89,0x21,0xd5,0x87, 0xa9,0x4e,0x1a,0xda,0x7f,0xd7,0x5d,0x77,0x1,0xa0,0xeb,0xfa,0x3f,0x16,0x2a,0x7b, 0xc1,0x4,0xa,0x21,0x1a,0x34,0x4d,0xc3,0x65,0xd1,0x81,0x4c,0x87,0x68,0xce,0x91, 0x40,0x43,0x43,0x43,0xae,0x0,0xc9,0x3f,0x4c,0x34,0xc7,0x5c,0x13,0x86,0x64,0x4c, 0x5c,0x88,0xf6,0x41,0x32,0x11,0x22,0xa5,0xa4,0xb4,0xb4,0x94,0xe6,0xe6,0x66,0x84, 0x10,0x7f,0xde,0xde,0xde,0xde,0x54,0x88,0xdc,0x5,0x11,0xe8,0xf3,0xf9,0xe6,0x2a, 0x8a,0x52,0xd2,0xda,0xda,0x5a,0xb4,0x3,0x39,0xfe,0xc9,0x27,0x84,0xc3,0xe1,0xbc, 0x6d,0x2e,0x5d,0xba,0x44,0xa7,0xdf,0x9f,0x55,0xf6,0x57,0x1b,0x33,0x7b,0xda,0x49, 0x73,0x7d,0x64,0x8,0xf1,0x78,0x3c,0x38,0x4c,0xa1,0x1b,0x18,0x8e,0x84,0xc9,0x63, 0xe1,0x74,0x9f,0xa6,0xe4,0x42,0x2a,0xa2,0xba,0xef,0xbe,0xfb,0x20,0xc9,0xcb,0x63, 0x79,0x85,0x36,0x50,0xa8,0x6,0x7e,0x5d,0x4a,0x39,0x21,0x85,0x55,0x8,0x76,0xfa, 0xfd,0x7c,0x79,0xe9,0x52,0xb6,0x3f,0xf7,0x1c,0x47,0xe,0x1d,0xe2,0xf7,0x46,0xb4, 0x31,0x3c,0x3c,0xcc,0xfe,0x7d,0xfb,0xd8,0xf1,0x83,0x1f,0xf0,0xcd,0x7b,0xee,0xe1, 0x88,0x69,0xfd,0xab,0xae,0xa9,0xe1,0x5b,0xf7,0xdf,0x9f,0xe9,0x24,0x77,0xd2,0x93, 0x98,0xa3,0xb7,0xae,0x2e,0x6b,0x5c,0xf3,0x56,0x26,0xeb,0xac,0xc4,0xf4,0x4e,0xea, 0x7d,0x1,0xe9,0xa3,0xcf,0xba,0xba,0x3a,0xe6,0xcf,0x9f,0x8f,0xa2,0x28,0xbe,0xad, 0x5b,0xb7,0xb6,0x4c,0x37,0xbf,0x82,0x9c,0x88,0x10,0x62,0x3d,0x64,0x22,0x90,0x62, 0x8,0xec,0xb,0x4,0x18,0x1d,0x19,0xe1,0x87,0xdb,0xb7,0xf3,0xc3,0xed,0xdb,0x1, 0x70,0xbb,0xdd,0x53,0x6a,0x65,0x53,0x53,0x13,0xbf,0x7c,0xe3,0xd,0xaa,0xaa,0xaa, 0x92,0x63,0x67,0x84,0xc8,0x95,0x29,0x8b,0x10,0x6f,0x7d,0x3d,0x9f,0x7e,0xfa,0x69, 0xba,0x3e,0xd0,0xdb,0x5b,0xb0,0xf6,0x99,0x3d,0xb2,0x10,0x82,0xf6,0xf6,0x76,0x9e, 0x7e,0xfa,0x69,0x97,0x94,0x72,0xf7,0x96,0x2d,0x5b,0x96,0x3f,0xff,0xfc,0xf3,0x41, 0xa6,0x40,0x41,0x1a,0x28,0x84,0x58,0x6,0x50,0x69,0xc1,0x81,0xf4,0xf5,0x4d,0xcc, 0x51,0x4e,0x46,0x9e,0xcb,0xe5,0x62,0xf3,0x23,0x8f,0xf0,0xe6,0xee,0xdd,0xd9,0xeb, 0xdf,0x34,0xa9,0x29,0x8c,0xba,0x5c,0x4f,0x7c,0xde,0x70,0x42,0xb9,0x79,0xc0,0x7c, 0x29,0xff,0x14,0x9c,0x4e,0x27,0x4f,0x3d,0xf5,0x94,0x0,0x9a,0x54,0x55,0xfd,0xf7, 0xc7,0x1e,0x7b,0xac,0x64,0xaa,0xf9,0x15,0xaa,0x81,0x8d,0x36,0x9b,0xd,0x97,0xd3, 0x59,0xb4,0x3,0x79,0xad,0xab,0x8b,0xb7,0xf7,0xec,0x61,0xff,0xbe,0x7d,0xc,0xf4, 0xf7,0x13,0xc,0x6,0x9,0x85,0x42,0x54,0x55,0x55,0x51,0x53,0x53,0x43,0x6d,0x6d, 0x2d,0xcb,0x57,0xac,0x60,0xe3,0xfd,0xf7,0x4f,0xb8,0x63,0x33,0x5d,0x62,0xd4,0x6c, 0x8e,0x4d,0x37,0xdf,0x4c,0x49,0x49,0x66,0x9e,0x17,0x7,0x7,0x73,0x27,0x91,0x77, 0x3f,0x48,0x4e,0x79,0x63,0x63,0x23,0xdb,0xb6,0x6d,0xc3,0xef,0xf7,0xaf,0x89,0xc5, 0x62,0xef,0x6d,0xdd,0xba,0xf5,0xdb,0xbb,0x76,0xed,0x3a,0x9d,0x3b,0xbf,0x69,0xef, 0xc6,0xf8,0x7c,0xbe,0x4a,0x4d,0xd3,0x2e,0xde,0x7a,0xeb,0xad,0x6c,0xd9,0xb2,0x85, 0xf0,0xe5,0xcb,0x8c,0x4d,0xe3,0x14,0xae,0x14,0x72,0xcf,0x78,0x31,0x7d,0x2e,0xe4, 0xfc,0xd7,0xfc,0x39,0x5f,0x9d,0xb9,0xef,0x5c,0x9c,0x39,0x73,0x86,0x1d,0x3b,0x76, 0x20,0xa5,0xc,0xe9,0xba,0xfe,0x2f,0x8a,0xa2,0x3c,0xef,0xf7,0xfb,0x43,0xa9,0xfa, 0x69,0x4d,0x58,0x55,0xd5,0xbb,0x1,0x9a,0xaf,0x42,0xa,0x2b,0x1f,0xa6,0xd3,0xbe, 0xdc,0xba,0xbc,0x1a,0x56,0xa4,0xf6,0x99,0x31,0x6f,0xde,0x3c,0x9e,0x79,0xe6,0x19, 0xec,0x76,0xfb,0x2c,0x21,0xc4,0x76,0x29,0xe5,0x7f,0xa,0x53,0xe3,0x42,0x4c,0xf8, 0x1e,0x80,0x46,0x63,0x5d,0xba,0x66,0x67,0xc0,0xd3,0xac,0x7d,0x85,0x10,0x92,0x36, 0xf3,0x3c,0x75,0x53,0x11,0x97,0x82,0x94,0x92,0x63,0xc7,0x8e,0x11,0x89,0x44,0x10, 0x42,0x9c,0x50,0x55,0x75,0xa3,0x34,0x99,0xed,0xb4,0x4,0x4a,0x29,0x97,0x9,0x21, 0x32,0x29,0xac,0x2b,0x18,0x81,0x4c,0x85,0xe9,0x26,0x9d,0xaf,0x6e,0xca,0x88,0x63, 0x8a,0x3a,0x72,0xcb,0x4d,0x8,0x4,0x2,0xbc,0xf2,0xca,0x2b,0x32,0x10,0x8,0x8, 0x29,0xe5,0xeb,0x52,0xca,0x6d,0x7e,0xbf,0xff,0xa2,0xb9,0xcd,0xb4,0x4,0xa,0x21, 0x9a,0x6c,0x76,0x3b,0x2e,0xa7,0x93,0xe8,0xb5,0xba,0x40,0x7e,0x5,0xcc,0x31,0x5f, 0xe8,0xa7,0xa4,0xd6,0x3d,0xf3,0x72,0x60,0x40,0xd7,0x75,0x4e,0x9d,0x3a,0xc5,0x1b, 0x6f,0xbc,0x41,0x7f,0x7f,0x3f,0xc0,0x59,0x5d,0xd7,0xdb,0x77,0xed,0xda,0xf5,0xce, 0x64,0xa2,0xe6,0x25,0xd0,0xe7,0xf3,0x95,0x6b,0x9a,0xe6,0x4a,0x5d,0x22,0x2,0x70, 0x99,0x8e,0x19,0xaf,0x16,0xcc,0x37,0xaa,0x26,0x4c,0x34,0x87,0x1c,0x61,0x7a,0x27, 0x95,0x47,0x9c,0xe0,0x40,0x98,0x5a,0xcb,0x74,0x5d,0x67,0x64,0x64,0x84,0x9e,0x9e, 0x1e,0x8e,0x1c,0x39,0xc2,0xd1,0xa3,0x47,0xd1,0x75,0x1d,0xbb,0xdd,0x8e,0xae,0xeb, 0x24,0x12,0x89,0x7f,0x78,0xf1,0xc5,0x17,0x27,0x25,0xf,0xa6,0x21,0x50,0x51,0x94, 0xaf,0x1,0x34,0x37,0x37,0x3,0x60,0xb7,0xd9,0xb0,0xdb,0x6c,0xd3,0x12,0xf0,0x79, 0x82,0x94,0x12,0x5d,0xd7,0x89,0xc7,0xe3,0x44,0x22,0x11,0xc2,0xe1,0x30,0x63,0x63, 0x63,0xf4,0xf4,0xf4,0x70,0xec,0xd8,0x31,0xce,0x9d,0x3b,0x97,0x6e,0xab,0x69,0x1a, 0x42,0x8,0x34,0x4d,0x63,0xfd,0xfa,0xf5,0x74,0x75,0x75,0x61,0x9c,0x83,0xff,0xc7, 0x54,0xfd,0xe7,0x25,0x50,0x4a,0x79,0xf,0xc0,0xa1,0x83,0x7,0x53,0xea,0x7c,0xd5, 0x91,0x7f,0x49,0x67,0x62,0x44,0x62,0xfc,0x8d,0xc7,0xe3,0x84,0x2f,0x5d,0x22,0xf4, 0x87,0x3f,0x30,0x36,0x36,0xc6,0xe8,0xe8,0x28,0xe3,0xe3,0xe3,0x79,0xef,0xdd,0x38, 0x1c,0xe,0x2a,0x2b,0x2b,0x29,0x2b,0x2b,0xa3,0xb4,0xb4,0x14,0x97,0xcb,0xc5,0xb9, 0x73,0xe7,0xd2,0x97,0x0,0xdc,0x6e,0xb7,0xc,0x87,0xc3,0x77,0xe7,0x15,0x27,0xdf, 0x0,0x5b,0xb7,0x6e,0xfd,0x48,0x51,0x94,0xa5,0xe,0x87,0x83,0x48,0x24,0x82,0xaa, 0xaa,0x59,0x9b,0xd5,0xc9,0x50,0xcc,0x45,0xa1,0x42,0xdb,0x16,0xd3,0xa7,0xaa,0xaa, 0xa8,0xaa,0x8a,0xa2,0x28,0xe9,0xcf,0xaa,0xaa,0xa2,0x69,0x1a,0x4e,0xa7,0x13,0x87, 0xc3,0x91,0xfe,0x6d,0x9f,0x10,0x99,0xf3,0xe1,0xd4,0x33,0x3c,0x3c,0xcc,0xa9,0x53, 0xa7,0x58,0xb2,0x64,0x9,0x97,0x2f,0x5f,0xe6,0xc4,0x89,0x13,0x0,0xd,0x2f,0xbc, 0xf0,0x42,0xef,0x64,0xe3,0xe5,0xd5,0x40,0x5d,0xd7,0xdd,0x36,0x9b,0x4d,0x6e,0xd8, 0xb0,0x41,0x74,0x75,0x75,0x51,0x5f,0x5f,0xcf,0xc6,0x8d,0x1b,0xd3,0x66,0x91,0x3b, 0xf8,0x64,0x4f,0x21,0xed,0xae,0x64,0x5f,0xc5,0x8e,0x99,0xb,0x9b,0xb1,0x44,0x85, 0x42,0x21,0xea,0xeb,0xeb,0x53,0x4,0xae,0x3,0x5e,0x2a,0x8a,0x40,0x9f,0xcf,0x57, 0x6,0xcc,0xf7,0x78,0x3c,0xc2,0x6e,0xb7,0x63,0xb3,0xd9,0xe8,0xe9,0xe9,0xe1,0xf0, 0xe1,0xc3,0xb4,0xb4,0xb4,0xa0,0xaa,0x6a,0x51,0x93,0x1,0x66,0x34,0x61,0x2b,0xed, 0x8a,0x1d,0x33,0x14,0xa,0xa5,0x63,0xe8,0xea,0xea,0x6a,0xe6,0xce,0x9d,0x8b,0x91, 0xe6,0x5f,0x5f,0x14,0x81,0x42,0x8,0xf5,0xa1,0x87,0x1e,0x5a,0xe1,0x74,0x3a,0x85, 0xc7,0xe3,0xc9,0x12,0x68,0xdf,0xbe,0x7d,0xec,0xdb,0x67,0xf9,0x4a,0xf1,0x17,0x6, 0xe1,0x70,0x18,0xbb,0xdd,0x8e,0xc7,0xe3,0x91,0x83,0x83,0x83,0xeb,0x3c,0x1e,0x8f, 0x2b,0x18,0xc,0x46,0xa4,0x94,0x59,0x1b,0xe1,0x9,0x4,0xa,0x21,0x6c,0x80,0x5d, 0x51,0x94,0xe5,0x0,0x15,0x15,0x15,0x44,0xa3,0x51,0x62,0xb1,0x18,0xf5,0xf5,0xf5, 0xd4,0xd6,0xd6,0x72,0xe1,0xc2,0x85,0x19,0x5f,0x8a,0xfc,0x3c,0xa2,0xa4,0xa4,0x84, 0x8a,0x8a,0xa,0xde,0x7f,0xff,0x7d,0x6,0x6,0x6,0x58,0xbc,0x78,0x31,0xf5,0xf5, 0xf5,0x62,0x70,0x70,0xb0,0x7c,0xcd,0x9a,0x35,0x2b,0xba,0xba,0xba,0xe,0xa,0x21, 0xa2,0x52,0xca,0xf4,0x86,0x38,0x8b,0x40,0x83,0xbc,0x12,0x92,0x4,0xb6,0x1,0x94, 0x97,0x97,0x13,0x8b,0xc5,0x50,0x14,0x85,0xb1,0xb1,0x31,0xd6,0xae,0x5d,0xcb,0x2d, 0xb7,0xdc,0x72,0x6d,0x67,0x76,0xd,0x91,0x4a,0xc4,0xa6,0x2e,0xe,0xd4,0xd4,0xd4, 0x0,0xe0,0x76,0xbb,0xef,0x6,0x8e,0x2,0xc2,0x70,0x3e,0x31,0x30,0x11,0x28,0x84, 0x50,0x1,0xbb,0xf1,0x94,0xa8,0xaa,0xba,0xc4,0x6e,0xb7,0x4b,0x97,0xcb,0x25,0x86, 0x86,0x86,0x28,0x2f,0x2f,0x67,0x68,0x68,0x88,0x77,0xde,0x79,0x87,0xc6,0xc6,0xc6, 0x9,0xd7,0xca,0x6e,0x4,0x8c,0x8c,0x8c,0x70,0xf6,0xec,0x59,0x20,0xa9,0x38,0xa1, 0x50,0x88,0x9b,0x6e,0xba,0x9,0x9b,0xcd,0x26,0xe3,0xf1,0xf8,0x57,0x81,0x1f,0x1b, 0x4d,0xa5,0x10,0x42,0x97,0x52,0x26,0xcc,0x2c,0xd8,0x48,0x12,0xaa,0x79,0xbd,0xde, 0xd9,0x8a,0xa2,0xcc,0xf3,0x78,0x3c,0x42,0x8,0x41,0x34,0x1a,0xa5,0xb2,0xb2,0x92, 0x68,0x34,0xca,0x85,0xb,0x17,0xb8,0x60,0x9c,0x78,0xdd,0x88,0xb0,0xd9,0x6c,0x54, 0x57,0x57,0x63,0xb7,0xdb,0xd3,0x3f,0x1e,0xaf,0xab,0xab,0x13,0x3d,0x3d,0x3d,0xcb, 0xbc,0x5e,0xef,0xec,0x40,0x20,0x30,0xc,0x24,0x48,0xf2,0x95,0x24,0x50,0x8,0xa1, 0x90,0x4c,0x6d,0xa9,0x80,0xd6,0xd2,0xd2,0xb2,0x18,0x10,0x15,0x15,0x15,0x18,0xf5, 0xd8,0x6c,0x36,0x1a,0x1b,0x1b,0x89,0xc5,0x62,0x5c,0xba,0x74,0xe9,0xfa,0xcc,0xee, 0x2a,0x43,0x55,0x55,0xdc,0x6e,0x77,0x3a,0x14,0x4c,0x1d,0xf6,0x57,0x57,0x57,0xd3, 0xd3,0xd3,0x63,0x5b,0xba,0x74,0xe9,0xaa,0x40,0x20,0xf0,0x36,0x10,0x7,0x14,0x21, 0x84,0x92,0xd2,0x40,0xc5,0xfc,0xd8,0xed,0xf6,0x72,0xc8,0xfc,0xaa,0x5b,0xd3,0x34, 0x66,0xcd,0x9a,0x45,0x34,0x1a,0xc5,0x66,0xb3,0xe1,0x72,0x7d,0x91,0xfe,0x83,0x8e, 0xe2,0xa1,0xaa,0x2a,0xe,0x87,0x23,0x1d,0x3f,0xcf,0x99,0x93,0xfc,0x19,0x89,0xd3, 0xe9,0x6c,0x22,0x87,0xab,0x49,0x17,0xb2,0xf1,0xf1,0xf1,0xdf,0x43,0xf2,0xea,0x19, 0x24,0x8f,0xd,0x3d,0xc6,0xe5,0xed,0xc4,0x35,0x48,0x67,0x5d,0x4f,0x98,0x93,0x12, 0x29,0xa4,0xce,0x70,0x12,0x89,0x44,0x6e,0x2a,0x5e,0xa6,0x8,0xd4,0xcd,0xcf,0xbb, 0xef,0xbe,0x7b,0xe4,0x91,0x47,0x1e,0x39,0xdc,0xdd,0xdd,0xfd,0x65,0x5d,0xd7,0xa9, 0xae,0xae,0x4e,0xef,0xd0,0xff,0xd8,0x30,0x3a,0x3a,0xca,0xf1,0xe3,0xc7,0x25,0x10, 0xed,0xee,0xee,0xfe,0x6f,0xb2,0xb9,0x92,0xe9,0x58,0x58,0x8,0xe1,0x20,0xb9,0x85, 0x71,0x0,0x25,0xad,0xad,0xad,0xf5,0x6d,0x6d,0x6d,0xcf,0x96,0x94,0x94,0xdc,0x71, 0x9d,0x64,0xff,0x3c,0x21,0xd2,0xd7,0xd7,0xf7,0x77,0x6f,0xbd,0xf5,0xd6,0x5e,0x92, 0xbf,0x70,0x1f,0x7,0xc6,0xa5,0x94,0x11,0x33,0x81,0x1a,0x49,0x2,0xcd,0x8f,0xfd, 0xb6,0xdb,0x6e,0x9b,0x5f,0x55,0x55,0xd5,0xac,0xaa,0xea,0x6c,0x29,0xa5,0x2a,0xa5, 0x54,0x84,0x10,0x9,0xa,0x48,0x9c,0x7c,0xc1,0x20,0xa5,0x94,0x2a,0x80,0x10,0x42, 0x17,0x42,0x24,0x14,0x45,0x49,0x44,0x22,0x91,0xfe,0x8f,0x3e,0xfa,0xe8,0xc3,0x60, 0x30,0x38,0x46,0x92,0xbc,0xd4,0x73,0x59,0x4a,0xa9,0x67,0x65,0x63,0x84,0x10,0xe9, 0x7d,0x20,0x99,0x3d,0xa1,0x8d,0xcc,0x16,0x47,0x25,0xb9,0x78,0xea,0xdc,0x80,0x4, 0x92,0x9c,0x9f,0x24,0x39,0xbf,0x4,0x49,0x6f,0x1b,0x33,0x9e,0xa8,0xf1,0x44,0x80, 0x4b,0x52,0x4a,0x1d,0x72,0x22,0x11,0x29,0x65,0x54,0x8,0x91,0x62,0x34,0xb7,0x13, 0x8d,0x8c,0xf7,0xb9,0xf1,0xe2,0xb8,0x24,0x52,0x73,0x4b,0xad,0x71,0x71,0x26,0x92, 0x78,0xc9,0x7c,0xa8,0x34,0x69,0x3e,0xd0,0xd8,0x17,0x9a,0xb5,0x4f,0x25,0xa3,0x7d, 0x7f,0x4c,0x4,0x26,0x8c,0x27,0x46,0x52,0xf3,0xa2,0xb9,0x7c,0xe5,0x4d,0xa8,0x1a, 0x44,0xe6,0x9a,0xaf,0xe0,0xc6,0x25,0xd0,0x7c,0x59,0x2b,0xa5,0x81,0x51,0x20,0x3e, 0x15,0x4f,0x5,0xff,0xaf,0x1d,0xc6,0x61,0x72,0x4a,0x3,0x6f,0x64,0xa4,0xc8,0x93, 0xb2,0x0,0x72,0xfe,0x1f,0x3a,0x27,0xe8,0x76,0x3,0x89,0x6b,0x5e,0x0,0x0,0x0, 0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, // /home/newdrone18/workspace/qtbook-master/20.02.27_Qt_Programming_Korean_v1.4_Example_Source_code/Ch03/01_BasicWidget/01_QCheckBox/resources/browser.png 0x0,0x0,0x18,0xe8, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x3b,0x0,0x0,0x0,0x40,0x8,0x6,0x0,0x0,0x0,0xa4,0xc0,0xf,0xb1, 0x0,0x0,0x0,0x4,0x73,0x42,0x49,0x54,0x8,0x8,0x8,0x8,0x7c,0x8,0x64,0x88, 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x14,0x3a,0x0,0x0,0x14,0x3a, 0x1,0xe2,0x93,0x5f,0x67,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66, 0x74,0x77,0x61,0x72,0x65,0x0,0x77,0x77,0x77,0x2e,0x69,0x6e,0x6b,0x73,0x63,0x61, 0x70,0x65,0x2e,0x6f,0x72,0x67,0x9b,0xee,0x3c,0x1a,0x0,0x0,0x18,0x65,0x49,0x44, 0x41,0x54,0x68,0x81,0xc5,0x9b,0x7b,0x74,0x5c,0xc5,0x9d,0xe7,0x3f,0x55,0xb7,0xdf, 0x2d,0xa9,0xd5,0xad,0xb7,0x64,0xc9,0xb6,0x2c,0x1b,0xdb,0xd8,0xc6,0xc4,0x36,0x98, 0x6,0xc,0xe6,0xd,0xc9,0x10,0x20,0xc9,0x3c,0xb2,0xd9,0x24,0x27,0xcb,0xd9,0xdd, 0x99,0x1c,0xed,0xec,0xec,0xec,0x64,0x13,0x96,0x4c,0x66,0x77,0xe6,0xcc,0x23,0xc9, 0xfc,0x31,0x51,0x26,0x13,0xb2,0x27,0x64,0x26,0x8f,0x99,0x84,0x40,0x2,0x87,0xa7, 0x4d,0x30,0xf,0xe3,0xc6,0x60,0x1b,0xcb,0xf8,0x89,0x2d,0x59,0x7e,0x60,0xc9,0x7a, 0x5a,0xaf,0x7e,0xdd,0xbe,0x55,0xb5,0x7f,0x74,0xdf,0x56,0x77,0x5b,0x32,0x86,0x25, 0x67,0xeb,0x9c,0xdf,0xa9,0xba,0xdd,0x7d,0xaf,0xea,0x53,0xdf,0x5f,0x55,0xfd,0xaa, 0xea,0x4a,0x18,0x63,0xf8,0x6d,0xa4,0x78,0xbc,0x7b,0x3,0x10,0x7,0x5a,0x81,0x36, 0x21,0x44,0x9b,0x10,0x62,0xb1,0x31,0xa6,0x19,0xf0,0x8,0x21,0x86,0x8d,0x31,0x67, 0x8c,0x31,0xef,0x1,0xe7,0x80,0x41,0xe0,0x6d,0x60,0x67,0x22,0xd1,0xa3,0x7e,0x1b, 0x75,0x12,0x1f,0x15,0x6c,0x3c,0xde,0xed,0x5,0x6e,0x2,0x3e,0x29,0xa4,0x7c,0xc0, 0x68,0xdd,0x2a,0xa5,0x20,0x56,0x1f,0x75,0x9a,0x5b,0x1b,0x44,0x63,0x4b,0xbd,0x55, 0xdf,0x58,0x4b,0x2c,0x16,0x41,0x48,0xc1,0xd8,0xf8,0x14,0x63,0xc3,0x13,0x8c,0x9c, 0x1f,0x57,0xc3,0x83,0xa3,0x66,0x62,0x74,0xd2,0xa3,0xb5,0x46,0x8,0x31,0x69,0x8c, 0x79,0xa,0x78,0x12,0xd8,0x9e,0x48,0xf4,0xa4,0x3e,0x92,0xa,0xf2,0x11,0xc0,0xc6, 0xe3,0xdd,0xf5,0xc0,0xc3,0x42,0x88,0x2f,0x79,0xbd,0x9e,0xea,0xcf,0x7f,0xfe,0x16, 0xdd,0xb6,0xb8,0x49,0xd6,0xd4,0x37,0xd1,0xb5,0xa4,0x9,0x9f,0x57,0x62,0x49,0x10, 0xc6,0x20,0x5,0x8,0x1,0x99,0x6c,0xe,0x5b,0x4b,0x6c,0x5,0x5a,0x1b,0xb4,0x31, 0xe4,0x1c,0xc5,0xc9,0xd3,0xa3,0xbc,0xbd,0xf7,0x18,0xbb,0x5f,0xde,0xeb,0x8c,0x9e, 0x1f,0xf3,0x20,0x44,0x16,0x63,0x7e,0x5,0x7c,0x23,0x91,0xe8,0x39,0xf1,0xff,0xd, 0x36,0x1e,0xef,0xe,0x2,0x7f,0x22,0xa4,0x78,0x68,0xc5,0x8a,0x45,0xc1,0x3f,0xf9, 0xd3,0xcf,0xc8,0xa5,0x8b,0x9b,0x90,0x2,0x72,0x4a,0x21,0xa4,0x7,0x4b,0xa,0xc2, 0x41,0xff,0x82,0xcf,0xf8,0xf5,0xb,0xaf,0x92,0xab,0xee,0x44,0x1b,0x43,0xc8,0x67, 0xd1,0x54,0x1b,0x20,0x56,0xe5,0x43,0x19,0xc3,0xb9,0xa1,0xb,0x1c,0xe8,0x3d,0xc1, 0xf6,0x5f,0xbf,0xac,0x66,0xa6,0x66,0xc,0x86,0x47,0x80,0xff,0x9d,0x48,0xf4,0x8c, 0x7c,0x38,0xd4,0xf,0x1,0x1b,0x8f,0x77,0x5b,0xc0,0x17,0xa4,0x94,0x7f,0x2d,0x4, 0x8d,0xff,0xfe,0xc1,0x4f,0x8a,0xdf,0xbd,0xff,0x5a,0xa4,0x30,0xc,0x8d,0xcf,0x72, 0x21,0x6b,0xa1,0xec,0x34,0x9b,0xae,0x68,0xc1,0xeb,0xf5,0x2c,0xf8,0x1c,0x63,0xc, 0x7f,0xd3,0xf3,0xcf,0x6c,0xd8,0x72,0xf,0x39,0xa5,0x99,0x4d,0xe5,0x98,0x4c,0xda, 0xcc,0x66,0x1d,0x9a,0x23,0x7e,0x5a,0x62,0x41,0x1a,0x6a,0xfc,0x64,0xb2,0xe,0x2f, 0xef,0x78,0x9b,0x17,0x7e,0xb9,0x5d,0xdb,0xb6,0x93,0xc1,0x98,0xbf,0x5,0xfe,0xfe, 0xc3,0xb8,0xf7,0x7,0x82,0x8d,0xc7,0xbb,0xeb,0x84,0x10,0xbf,0x32,0xc6,0x6c,0xf9, 0xc4,0x3,0x5b,0xcd,0x83,0x5f,0xba,0x43,0x44,0x6b,0x42,0x8c,0x4e,0xce,0xd2,0x3f, 0x6e,0xb8,0x90,0x72,0xf0,0x5a,0x82,0x9a,0xa0,0x87,0xe4,0xe8,0x29,0x56,0xb4,0x45, 0x59,0xdc,0xb1,0x68,0xde,0x67,0xbd,0xb5,0x77,0x1f,0xa7,0xa6,0xbd,0xd4,0x35,0xb4, 0xe0,0x28,0x5d,0x34,0xdb,0xd1,0x8c,0x4c,0xa6,0x19,0x9b,0xce,0xe0,0xb1,0x4,0x57, 0xb6,0xd7,0xd2,0xd1,0x10,0x62,0x7a,0x26,0xcd,0xb6,0x67,0x13,0xbc,0xfe,0xc2,0x2e, 0xb4,0xe1,0x38,0xc6,0xdc,0x93,0x48,0xf4,0xf4,0xff,0x56,0x60,0xe3,0xf1,0xee,0xd5, 0x52,0xca,0xe7,0xae,0xbf,0x61,0x4d,0xfb,0xd7,0x1e,0xfa,0x3,0x19,0x8,0x4,0xd0, 0xca,0x41,0x6b,0x85,0x31,0x86,0xaa,0x70,0x98,0x5d,0x7b,0xe,0x50,0xd3,0xb2,0x2, 0x21,0xf2,0xf7,0xf8,0x74,0x8a,0x15,0xed,0x75,0x65,0xcf,0x31,0xc6,0xf0,0xf6,0xfe, 0x3,0xbc,0xf4,0xfa,0x1e,0xae,0xbb,0xfd,0x53,0x38,0x5a,0xe3,0x28,0x83,0x52,0xa, 0x47,0x99,0x2,0xb4,0x22,0x6d,0x2b,0xc6,0xa6,0x32,0x74,0xd6,0x7b,0xe9,0x88,0x59, 0x44,0xc2,0x41,0x6c,0x3c,0x9c,0x3d,0x3f,0xcd,0xf7,0xbe,0xfd,0x33,0x35,0x32,0x38, 0x36,0x8b,0x31,0xf,0x24,0x12,0x3d,0x3b,0x3e,0x52,0xd8,0x78,0xbc,0xfb,0x1e,0x21, 0xc5,0x63,0x9f,0xfd,0x77,0xb7,0x5,0x1e,0xfc,0xf,0x77,0x5b,0x7e,0x9f,0x97,0x83, 0x47,0xfb,0xb0,0xed,0x2c,0xcf,0xbf,0xde,0x4b,0xd7,0xaa,0xf5,0xc4,0xc4,0x24,0x37, 0xc5,0x37,0x72,0xe0,0x48,0x1f,0xde,0xda,0x56,0xaa,0x42,0x21,0x1a,0x43,0x39,0x6a, 0xaa,0xc2,0x0,0x8c,0x8c,0x8c,0xf2,0xd2,0x2b,0xaf,0x31,0x32,0x99,0x61,0xc5,0xba, 0x8d,0xc4,0xea,0x9b,0xf1,0x5a,0x82,0xd9,0x8c,0x83,0xa3,0x34,0x4a,0x69,0x72,0x25, 0xb9,0x25,0x61,0xeb,0xea,0x18,0xd5,0xe1,0x20,0xa9,0x54,0xa,0xad,0x35,0x0,0xc9, 0x54,0x86,0xa1,0xd1,0x9,0x7e,0xf6,0xaf,0xaf,0xeb,0x37,0x77,0xbe,0x63,0xb4,0x36, 0xdd,0x89,0x44,0xcf,0x3f,0x5d,0xe,0xac,0xbc,0xc,0xd0,0xff,0xc,0x3c,0xf3,0x77, 0xdf,0xfc,0x8f,0xa1,0x2f,0xff,0xe1,0xbd,0x96,0xdf,0xe7,0xe5,0xd5,0x5d,0x6f,0x50, 0x15,0xe,0xb2,0xed,0xb5,0x7d,0xdc,0x70,0xdb,0x27,0xb9,0xba,0xab,0x81,0xb5,0xab, 0x97,0xb3,0x7d,0xe7,0x3e,0xf6,0xf6,0xbe,0x43,0x28,0x18,0x44,0x4a,0x1,0x26,0x5f, 0xc1,0xe7,0xb7,0xbd,0xc8,0x8e,0xb7,0x8e,0xb0,0x66,0xf3,0x9d,0xdc,0x7c,0xf7,0x7d, 0x34,0xb7,0xb4,0x51,0xe3,0xb1,0xe9,0x8c,0x41,0xff,0x91,0x7d,0x58,0x52,0x20,0xa5, 0xc0,0x92,0x12,0x21,0x4,0x7e,0x8f,0xc5,0xaa,0x96,0x0,0x35,0x55,0x21,0xc6,0xc6, 0xc7,0xf9,0xab,0xef,0xfc,0x18,0x57,0x92,0x5d,0x7b,0xf,0x32,0x9c,0xf2,0xf1,0x3f, 0xbf,0xf2,0x69,0xf9,0x3f,0x1e,0xfa,0xa4,0x25,0xa5,0xf8,0x5e,0x3c,0xde,0xfd,0xf, 0x97,0x3,0x7b,0x49,0x65,0xe3,0xf1,0xee,0xbb,0x10,0x3c,0xfb,0x9d,0xef,0xfe,0xb1, 0xdc,0x78,0x75,0x17,0xb6,0x6d,0xf3,0xe8,0xcf,0x9e,0x20,0xd4,0x76,0x25,0xd5,0xd5, 0x35,0xb4,0x35,0xc5,0xa8,0x52,0x17,0x30,0xa1,0x28,0x87,0xdf,0x7e,0x8b,0x96,0xf6, 0x4e,0xda,0xda,0x3b,0xc0,0x80,0x11,0x30,0x3b,0x72,0x9a,0xc6,0xda,0x30,0x4f,0xbf, 0x94,0x60,0xcb,0x6d,0xf7,0xa0,0x35,0x28,0xad,0x51,0x5a,0x93,0x4a,0xa5,0x38,0x72, 0xe0,0x6d,0xae,0xb8,0x6a,0x13,0xc6,0x8,0x72,0x8e,0xc2,0x51,0x1a,0x83,0x61,0x73, 0x67,0x15,0x91,0xea,0xbc,0x47,0xfc,0xfd,0xf7,0x7e,0xc4,0xc7,0x6e,0xb8,0x8b,0xeb, 0x57,0xd6,0xe1,0x38,0xe,0xb9,0x5c,0x8e,0x99,0xd9,0x24,0xd5,0x55,0x61,0xa4,0x94, 0xbc,0xb9,0xe7,0x20,0xff,0xeb,0x1b,0x3f,0x47,0x6b,0xbe,0x92,0x48,0xf4,0x7c,0xeb, 0x43,0x29,0x1b,0x8f,0x77,0x5f,0x21,0xa4,0xf8,0xe5,0xc3,0x5f,0xff,0x3c,0x1b,0xaf, 0xee,0x62,0x64,0x74,0x9c,0xef,0xfe,0xeb,0x36,0x96,0x5d,0x73,0xf,0xed,0x4b,0x3a, 0xa9,0x6f,0x68,0x64,0x49,0xc4,0xb0,0xaa,0xab,0x83,0xb1,0x53,0x47,0xd9,0xb0,0x61, 0x3,0xed,0x8b,0x17,0x23,0xa5,0xc4,0xb2,0x24,0x1e,0x29,0x89,0x34,0x2d,0xe6,0x95, 0xb7,0xe,0xb1,0xf5,0xf6,0x8f,0x23,0xa5,0x44,0x16,0x14,0x94,0x42,0x10,0x8,0x86, 0xb8,0x6a,0x53,0x1c,0x8f,0x65,0x21,0x4,0x54,0x5,0x2c,0x2c,0xa9,0x31,0x6,0x1c, 0xc7,0xe1,0xc0,0x3b,0x87,0x0,0x88,0x45,0x6b,0x19,0x99,0xca,0xd0,0x7b,0xa4,0x1f, 0xcb,0xb2,0x90,0x52,0x12,0xa,0x6,0x48,0xa7,0xd3,0x64,0xb3,0x59,0xae,0xd9,0xb8, 0x86,0x2f,0x3e,0x78,0x33,0xc0,0xdf,0xc5,0xe3,0xdd,0x77,0x7f,0x60,0x65,0xe3,0xf1, 0xee,0x5a,0x21,0xe5,0xde,0x7b,0x3e,0xbe,0x79,0xc9,0x43,0x5f,0xfd,0x7d,0x4b,0x8, 0xc1,0xf1,0xbe,0x93,0xbc,0x97,0x8d,0x20,0xbc,0x7e,0xbc,0x96,0x45,0x38,0x60,0xb1, 0xbe,0xd5,0x5b,0xbc,0x67,0x66,0x76,0x96,0x63,0xef,0x4d,0xd2,0xda,0xd6,0xe,0x18, 0x8c,0x1,0x3,0x18,0x6d,0xd0,0x46,0xa3,0xb4,0x41,0x6b,0x93,0x57,0xb6,0x38,0x10, 0x69,0x1c,0x9d,0xef,0xa7,0x32,0x33,0xc9,0xd0,0xd9,0x7e,0x42,0xad,0x6b,0x19,0x3e, 0xd3,0x47,0xb4,0xbe,0x1,0x4f,0x7a,0x84,0x37,0xf6,0xbf,0xcb,0x7d,0xf7,0xdd,0xcb, 0xc7,0xba,0xea,0xc9,0xe5,0x72,0xe4,0x72,0x39,0x6c,0xdb,0x2e,0xe6,0x7e,0xbf,0x1f, 0x29,0x25,0x7f,0xfd,0xad,0x9f,0x9a,0x37,0x76,0xf6,0x27,0x31,0x66,0x53,0x22,0xd1, 0x73,0xec,0xb2,0x60,0xe3,0xf1,0x6e,0x29,0x84,0x78,0xbe,0xbd,0xa3,0xf1,0xb6,0x9f, 0xfe,0xe4,0x6b,0xd2,0xe3,0xb1,0x70,0x7f,0x63,0x8c,0x61,0xff,0xe1,0x13,0x78,0xa2, 0xed,0x2c,0xaf,0x93,0x4,0x3,0x73,0x1,0x83,0x6d,0xdb,0x1c,0x3e,0x7e,0x92,0x86, 0x8e,0x95,0x8,0x77,0x38,0x2e,0xdc,0x53,0x84,0xd4,0x6,0xad,0x4c,0x7e,0x4,0x2e, 0x40,0x3a,0x4a,0x53,0x2d,0xd3,0xbc,0x37,0x34,0xca,0xfa,0xe5,0x2d,0xbc,0x79,0x62, 0x92,0xba,0xba,0x5a,0x62,0xd6,0xc,0x83,0x53,0x86,0x58,0x24,0xc8,0xba,0xce,0x26, 0x0,0xb4,0xd6,0xd8,0xb6,0x5d,0x34,0x17,0x3e,0x14,0xa,0x91,0xc9,0x66,0xf9,0xaf, 0xff,0xfd,0x7,0x6a,0xe8,0xec,0xe4,0x69,0x8c,0xd9,0x90,0x48,0xf4,0x4c,0x56,0xc2, 0xce,0xe7,0xc6,0x9f,0x93,0x52,0xdc,0xf1,0xc8,0xf,0xfe,0x5b,0x19,0x28,0x80,0x10, 0x82,0xab,0x56,0x2d,0xa3,0x96,0xa9,0x32,0x50,0x0,0x9f,0xcf,0x47,0x73,0x7d,0x2d, 0xfb,0xde,0x4c,0x94,0xb7,0xa6,0x28,0xb8,0x6e,0xc1,0x8d,0x85,0x4,0x29,0xf2,0xae, 0x2c,0x84,0x40,0x20,0x18,0x1c,0xb9,0xc0,0xd4,0xc4,0x18,0x75,0xb1,0x28,0xb5,0x62, 0x92,0xcd,0xcb,0x63,0xac,0xe8,0x5c,0xcc,0xcd,0x57,0x2f,0x29,0x82,0x2,0x85,0x67, 0xcc,0x99,0x28,0x3c,0x63,0x66,0x66,0x86,0x80,0xdf,0xcf,0xc3,0xf,0xfd,0xae,0xe5, 0xf3,0xc9,0x25,0xc0,0x9f,0xbf,0xaf,0xb2,0xf1,0x78,0xb7,0x5f,0x48,0xd9,0xf7,0xf5, 0x6f,0x7c,0xbe,0xed,0xae,0xdb,0x37,0xbc,0xef,0xb4,0x34,0x33,0x33,0xc3,0xf3,0xdb, 0x5f,0x2,0xe9,0x23,0xeb,0x38,0x74,0xad,0x58,0x45,0x6d,0x6d,0x94,0xea,0x58,0x43, 0xfe,0xe1,0x25,0xbf,0xd5,0xda,0x94,0xa9,0xa9,0x4a,0x2,0x9,0x47,0x69,0x2c,0x1, 0xa3,0xa7,0x8e,0x70,0xc7,0x4d,0x9b,0xb0,0x2c,0x6b,0xc1,0xbf,0xe9,0x38,0x4e,0x99, 0xba,0xae,0x19,0x63,0x88,0x44,0x22,0x3c,0xbb,0xfd,0x75,0x7e,0xf0,0x8f,0x3b,0x72, 0xc0,0xf2,0x44,0xa2,0xe7,0x74,0xe9,0xbd,0x95,0xca,0x7e,0x39,0x18,0xf0,0x2e,0xba, 0x75,0xeb,0x55,0x82,0xcb,0x48,0x4a,0x6b,0xee,0xbc,0xfd,0x56,0x56,0x2c,0xef,0xe4, 0x9a,0x1b,0x6f,0x63,0x71,0xe7,0xa,0xe,0xf6,0xee,0x2b,0x74,0xd6,0x62,0x86,0x1, 0x44,0x61,0x60,0x12,0xe4,0xd5,0xc8,0x47,0x1e,0x25,0x96,0x9d,0xe6,0xee,0x5b,0x36, 0x5f,0x12,0x14,0x28,0xaa,0x59,0x69,0x4a,0x29,0x32,0x99,0xc,0x77,0x6c,0xbd,0x96, 0x86,0x46,0xcb,0x2,0xfe,0xb2,0xf2,0xde,0x22,0x6c,0x3c,0xde,0x1d,0x11,0x52,0x7e, 0xfd,0xe1,0xbf,0xf8,0xa2,0xf1,0x7a,0x3c,0x5c,0x4e,0xb0,0x31,0x3b,0x9b,0x64,0x7f, 0x6f,0x2f,0x7b,0xf6,0x1f,0x24,0x14,0xa,0xa3,0xc,0x6c,0xbe,0xf9,0xce,0x22,0x60, 0x19,0xad,0x21,0xf,0x25,0xf3,0x70,0x2,0x51,0xe4,0xf4,0x48,0x8,0xd7,0xd4,0x92, 0x4c,0xa5,0xf3,0x8d,0xa8,0x14,0xa3,0x63,0xe3,0x0,0x8c,0x15,0xf2,0xf7,0x83,0x85, 0xbc,0xa7,0x9,0x21,0xf8,0xbd,0xcf,0x6e,0x95,0xc0,0xe7,0xe2,0xf1,0xee,0x75,0xa5, 0xf7,0x96,0x46,0xea,0x5f,0xa9,0xa,0x7,0x22,0x37,0x6c,0x5e,0x75,0x59,0xaa,0xf6, 0x1e,0x78,0x87,0xbe,0xc1,0x29,0xae,0xde,0xb8,0x99,0xce,0xf5,0xbe,0xbc,0x7a,0x85, 0xca,0xb8,0xe9,0xa2,0xe6,0x12,0x20,0x8c,0xfb,0x5d,0xbe,0xe0,0xb7,0x24,0xcb,0x9a, 0x3c,0xc5,0x31,0xe0,0xcd,0x3d,0xfb,0x78,0x61,0xd7,0x21,0xda,0x97,0xad,0x62,0xf3, 0x8a,0xb,0x4c,0x5c,0x98,0xa2,0xea,0xfc,0x28,0xeb,0xd7,0xac,0xbc,0x24,0xac,0x10, 0x2,0x5d,0x98,0xbf,0xaf,0xbf,0x76,0x3d,0x3f,0x89,0xbd,0xa6,0xa7,0x26,0x72,0x7f, 0xb,0xdc,0xe3,0xfe,0x79,0x9,0x10,0x8f,0x77,0xb,0x21,0xe5,0x83,0xf,0x7d,0xe3, 0xb,0xa2,0x72,0x50,0xaa,0x4c,0xb3,0xc9,0x24,0x3f,0xfe,0xb7,0xc7,0xe9,0x1b,0x9a, 0x62,0x53,0x7c,0xb,0x5e,0x9f,0xaf,0x48,0x55,0x26,0xe2,0x7c,0xc9,0xb8,0xdf,0xe5, 0xa7,0x26,0x0,0x29,0x29,0x3,0xdd,0x77,0x72,0x92,0x8d,0x5b,0xee,0x22,0xd6,0xb4, 0x88,0x77,0x86,0x25,0xa1,0x50,0x88,0xfe,0xf3,0xd3,0xf4,0x9d,0x1c,0xe0,0x87,0x3f, 0x7f,0xa6,0xac,0x31,0xe7,0x4b,0x33,0x33,0x33,0x48,0x29,0xb9,0xf7,0xfe,0x4d,0x16, 0x98,0xbb,0xe2,0xf1,0xee,0xe6,0x32,0x58,0x60,0x93,0x14,0x34,0x6e,0xde,0xd0,0x75, 0xc9,0x7,0x1,0x3c,0xbf,0x7d,0x7,0x57,0xdd,0x7c,0x1f,0x9b,0xae,0xdb,0x52,0x6, 0x58,0x49,0x5a,0xe9,0xc1,0x6,0xa,0x73,0xaf,0x29,0x36,0x86,0x36,0x60,0x3b,0x86, 0xb7,0xf6,0xf5,0x72,0x7e,0x78,0x84,0xdf,0xbc,0xbe,0x87,0x65,0x2b,0xd7,0x15,0xef, 0xf7,0xf9,0xfc,0xbc,0xb4,0xef,0x24,0xb3,0xb2,0x9e,0x6d,0xaf,0xed,0x25,0x53,0xdd, 0xc5,0x73,0xaf,0xbc,0xc5,0xd4,0xf4,0xc,0xc6,0x98,0x79,0x5d,0x59,0x6b,0x4d,0x3a, 0x9d,0xe6,0xfa,0x6b,0xd6,0xa0,0x75,0x4e,0x0,0xf7,0x56,0xc2,0xde,0xb7,0xfe,0xea, 0xe5,0xda,0xef,0xf7,0x5d,0x52,0xd5,0x91,0xd1,0x31,0x86,0x26,0xb3,0x8,0x61,0xa1, 0x2b,0x7e,0x56,0xa6,0xe8,0xbc,0xa4,0xa0,0x31,0x68,0x93,0x87,0xd6,0xc6,0x60,0x8c, 0xc1,0x56,0x1a,0x55,0xd3,0x49,0xdf,0x7b,0xe3,0xfc,0xfe,0xa7,0xee,0x63,0x63,0x87, 0x8f,0xbb,0xae,0xaa,0x67,0xf3,0x62,0x1f,0x32,0x3d,0x42,0x4b,0xe7,0x1a,0xb4,0x31, 0x78,0x9a,0xf3,0x8d,0xb0,0x67,0xd0,0xc3,0x9f,0x7e,0xff,0x65,0xbe,0xfa,0x8f,0xcf, 0x90,0xc9,0xe6,0x47,0x61,0xd7,0xdc,0x94,0x4e,0xa7,0xa9,0xa9,0xae,0x62,0xfd,0x86, 0x66,0x3,0xdc,0x5f,0x6,0x2b,0xa4,0xfc,0xf4,0x27,0xee,0xbb,0xfe,0x92,0xfe,0x71, 0xe8,0xc8,0x51,0x1e,0x7d,0xec,0x79,0x36,0xdf,0x7a,0x6f,0x7e,0x1b,0x45,0xcf,0xef, 0xae,0xb,0x70,0xe6,0x83,0xb,0x63,0xf2,0x11,0x95,0x36,0x73,0xc0,0xda,0xd0,0x5a, 0xad,0xb9,0x61,0xc3,0x2a,0x96,0x75,0x34,0x53,0x17,0x8d,0x60,0x59,0x16,0x2d,0x4d, 0xf5,0xfc,0xce,0x96,0x75,0x78,0x52,0x83,0xd4,0x57,0xfb,0x59,0xd3,0xea,0xa5,0xb9, 0xca,0x90,0x53,0x50,0xdb,0xb0,0x88,0xdf,0xb9,0x79,0x3,0x7e,0x9f,0x77,0x9e,0x1a, 0x40,0x26,0x93,0xc1,0x18,0xc3,0xe6,0xcd,0x2b,0x5,0x70,0x6b,0x3c,0xde,0x5d,0xd, 0xe0,0x89,0xc7,0xbb,0x57,0x0,0xcb,0xd7,0x5e,0xb9,0xf8,0xa2,0x9b,0x4e,0xf4,0x9d, 0xa4,0xa3,0xbd,0xd,0xbf,0xdf,0xcf,0x53,0x3b,0xf6,0xb0,0xe5,0xee,0xcf,0xa0,0x4d, 0x7e,0xca,0xc9,0xe6,0x4,0x5e,0x29,0xcb,0x26,0xd3,0x4b,0xb5,0x96,0xe3,0x86,0x8b, 0x5,0x68,0x5d,0xb8,0xae,0xf,0x19,0x16,0x37,0xd7,0xce,0x7b,0x8f,0x65,0x59,0x7c, 0xe6,0x8e,0x6b,0xc8,0xda,0x39,0x42,0xc1,0x0,0x0,0xf,0x18,0x53,0x36,0xbf,0x96, 0x26,0xad,0xe7,0x22,0xbd,0x4c,0x26,0xc3,0xca,0x15,0xcb,0x50,0xea,0x65,0xaf,0x65, 0xf9,0xee,0x6,0x1e,0xf3,0x0,0x5b,0xa4,0x14,0x34,0xd5,0x47,0x8a,0xae,0xf0,0xdc, 0xf6,0x1d,0x9c,0x1b,0x9d,0xe2,0x82,0x13,0x22,0x1a,0x1b,0xe7,0xd6,0xb5,0xcd,0x84, 0x22,0xd,0x28,0xad,0x91,0x2a,0x3f,0x5f,0xe6,0x84,0x26,0xe3,0x40,0xd0,0x23,0x8b, 0xa4,0xb,0x75,0x0,0xa5,0xe6,0x62,0x62,0xad,0xc,0xaa,0x0,0x1d,0x9,0x8,0x3a, 0x9b,0xab,0x2f,0xd1,0x44,0x79,0xe0,0x50,0x70,0x6e,0xee,0x75,0x5d,0xf6,0xe8,0xf1, 0x3e,0x6a,0x6b,0x6a,0xa8,0xa,0x7,0x8b,0x9f,0xbd,0xb9,0xef,0x0,0x5a,0xfa,0x58, 0xde,0xd1,0x80,0xc7,0xe3,0xa1,0x2e,0x56,0x4b,0x75,0x44,0xea,0xd4,0x2c,0x5b,0x80, 0xc7,0x24,0xd0,0xba,0x66,0x6d,0xa7,0x71,0x27,0xf3,0xef,0xfe,0x9f,0x9f,0x72,0x6c, 0x32,0x4c,0x68,0xc9,0xb5,0x2c,0x59,0xb9,0x9e,0xfa,0xd6,0xa5,0x1c,0x1e,0x93,0xd4, 0x37,0xb5,0x17,0x2a,0x5a,0x88,0x7a,0x1c,0x4d,0x3a,0xab,0xb1,0x95,0xce,0x37,0xd2, 0x3c,0xbe,0x6b,0x74,0x3e,0xe0,0x57,0x5a,0xcd,0x1,0x6b,0x93,0xf,0xfc,0xd,0x74, 0xd6,0xfb,0xdf,0x77,0x74,0xad,0x4c,0x5a,0xe7,0xff,0x5e,0x3a,0x9d,0xe5,0x9f,0x9e, 0x3b,0x42,0xb6,0xa4,0xdf,0x2e,0x6a,0x6d,0xe6,0xd9,0xa3,0x8a,0xaf,0xfe,0x70,0xf, 0x8f,0xbf,0xd4,0x8b,0xd6,0x86,0x58,0x5d,0x40,0x90,0xdf,0xbb,0x46,0x2,0x2d,0xd7, 0xc5,0x57,0x17,0x45,0x39,0x33,0x5,0x91,0x86,0x96,0x7c,0xa5,0xa,0x15,0xd3,0x32, 0x40,0x5d,0x73,0x5b,0x59,0x78,0xe7,0x28,0x4d,0x4e,0x29,0x66,0x32,0x8a,0xac,0x93, 0xdf,0x5d,0x70,0xa,0x6b,0x55,0x47,0xbb,0xdf,0x6b,0x94,0xa3,0x4b,0xb6,0x5b,0xa, 0x21,0xa3,0x36,0x54,0xfb,0xd5,0x25,0x37,0xe4,0x16,0x4a,0xf9,0x85,0x85,0x66,0xf5, 0xca,0x2e,0x26,0x27,0xa7,0x78,0x79,0x5f,0x1f,0x5a,0x6b,0xb4,0xd6,0xb4,0x36,0x37, 0xf0,0x47,0xb7,0x34,0xf2,0xe9,0x9b,0xba,0xc8,0x66,0x6d,0x5e,0xdd,0x7f,0xa,0x7c, 0x8d,0x2,0x21,0x16,0xb9,0xb0,0xad,0xab,0x56,0x2e,0x2a,0x36,0xaf,0xc7,0x17,0x44, 0x6b,0x43,0x34,0x28,0x11,0xb9,0x54,0x1,0x5a,0x57,0x80,0xaa,0xfc,0x62,0xdb,0xd1, 0xd8,0x39,0xc5,0x74,0xc6,0xc1,0x2e,0x5c,0xe7,0x1c,0x5d,0xc8,0xb,0xd7,0x4a,0xe3, 0x38,0xaa,0xd8,0x0,0xee,0xb2,0x2e,0x16,0xd0,0x1f,0x1a,0x54,0x6b,0x8d,0x14,0x82, 0x3f,0xfa,0xc4,0x1a,0x76,0xf5,0xa7,0x70,0x94,0x2a,0x7e,0x17,0x8d,0x54,0x71,0xdd, 0xca,0x6,0x5a,0xaa,0x14,0x39,0x4f,0x84,0xaa,0x48,0x2d,0x40,0x1e,0x56,0x48,0xb9, 0xe8,0x58,0xff,0x60,0x11,0x76,0xe3,0x15,0x4d,0xb4,0x45,0xfd,0xdc,0xb6,0x26,0xc6, 0xc0,0xa1,0xdd,0x17,0x5,0xec,0x4e,0x1,0xc6,0x5,0xce,0x39,0xa,0xdb,0x56,0x4c, 0x26,0x1d,0x92,0x59,0x45,0xae,0x0,0x9c,0x2b,0x28,0x9f,0x73,0x14,0x39,0x65,0x70, 0x1c,0x5d,0xd8,0x54,0xcb,0xdf,0x3f,0x36,0x39,0xf3,0x81,0x61,0x5d,0x50,0xd7,0x95, 0xdb,0x5a,0x1a,0x9,0x66,0x87,0xd8,0xf9,0xf6,0x89,0xe2,0x67,0xae,0xed,0x3f,0xdc, 0x47,0x26,0x6b,0x13,0x8,0x7,0xc0,0x98,0x6,0xc8,0x87,0x8b,0x6d,0xe3,0x33,0x86, 0xd1,0xf1,0x49,0xea,0xa2,0x35,0x3c,0x70,0xe7,0xd,0xc5,0x87,0xa7,0x95,0xc4,0xd1, 0x1a,0xca,0x4e,0x5e,0xf2,0x61,0x81,0x36,0x12,0x2d,0x4d,0x71,0xe7,0x41,0x8,0x41, 0x4e,0x29,0xbc,0x52,0xe2,0xf5,0x80,0x47,0xe4,0x83,0x6,0x77,0x7a,0x51,0xee,0xba, 0x56,0x69,0xc2,0x7e,0xc9,0x8a,0x25,0x6d,0x1f,0x18,0x56,0x29,0x55,0x6,0xac,0xb5, 0xe6,0xfa,0xd5,0x2d,0x3c,0x76,0x50,0xb1,0xa4,0x69,0x82,0x68,0x4d,0x98,0x4c,0x26, 0xcb,0xf,0xff,0xed,0x69,0x4e,0xda,0x8b,0x58,0x9d,0xc9,0x11,0x8,0x5,0x20,0x3f, 0xeb,0xd4,0x49,0xa,0x73,0xed,0x85,0xac,0xe4,0x9b,0xff,0xfc,0x3c,0x7,0xe,0x1d, 0x2d,0xee,0xe4,0xfd,0xf9,0x1f,0x7e,0x9a,0xcc,0xd0,0xb1,0x32,0x55,0x8b,0xca,0x39, 0xa,0xdb,0x51,0xe4,0x72,0x1a,0xbb,0x58,0x56,0xa4,0xb2,0xe,0x53,0xc9,0x1c,0x17, 0x92,0xe,0xa9,0xac,0x83,0x9d,0x53,0x65,0xf7,0x38,0x4a,0x93,0xca,0x64,0x3f,0x34, 0xa8,0x52,0xaa,0xcc,0x36,0xac,0x5b,0x89,0x99,0x1d,0x22,0x14,0xc,0x70,0x6e,0x68, 0x98,0x87,0x7b,0x1e,0xe7,0x94,0xb8,0x2,0x7f,0x38,0x8a,0xd1,0x65,0x2a,0x59,0x1e, 0x60,0xe8,0xc2,0xf8,0x74,0x3,0x6,0xac,0x68,0x27,0xcf,0x1d,0xb5,0x79,0x62,0xe7, 0xb,0x2c,0xad,0xb7,0xf8,0xc2,0xa7,0xee,0x40,0xdb,0xb3,0x38,0x4e,0x3e,0x82,0x68, 0x8c,0x79,0x59,0x56,0xab,0x78,0xfb,0xf4,0x34,0xda,0x5f,0x83,0x94,0x12,0x25,0xdc, 0x33,0x1c,0x51,0x36,0xd1,0x1a,0x3,0xa9,0x82,0x4b,0x15,0x3f,0x36,0xf9,0x3d,0x26, 0xa5,0x35,0x47,0xfb,0x4e,0xb3,0x7a,0xf9,0x92,0xcb,0x2,0x35,0xc6,0x94,0x1,0xba, 0xd0,0xae,0xeb,0xde,0xbc,0xb2,0x9a,0x13,0x67,0xc7,0x38,0xde,0x7f,0x8a,0x15,0x57, 0x6e,0xa4,0x6f,0x4c,0x63,0x54,0xe,0xbf,0xcf,0x22,0x9d,0x4c,0x41,0xde,0x37,0x47, 0x3d,0x46,0xeb,0xb3,0xe3,0x23,0x13,0x6b,0xb5,0x31,0xc2,0xef,0x15,0xd8,0x8e,0x45, 0x55,0x4b,0x27,0x93,0x96,0xe4,0x89,0x17,0xdf,0x64,0xeb,0xb5,0x6b,0x79,0x77,0x34, 0x4b,0x4d,0x24,0xc2,0x8d,0x2b,0xa3,0x58,0x96,0x45,0x5b,0x63,0x94,0x53,0xe7,0x46, 0xa9,0xe,0x7,0x49,0x1c,0xe8,0x47,0x44,0x97,0x14,0x76,0x1d,0x4a,0x2a,0xc8,0xdc, 0x96,0x8c,0x31,0xa6,0x7c,0xf,0x4a,0x1b,0x7a,0x67,0xd2,0x74,0x2d,0xc9,0xe1,0xf3, 0xce,0x1f,0x5,0x55,0xaa,0xaa,0x94,0xc2,0x71,0x9c,0x8b,0x94,0xd5,0x5a,0xb3,0xf5, 0x9a,0x2b,0xb1,0x6d,0x9b,0xe5,0x6d,0xb5,0x3c,0xfe,0xcc,0x4b,0x60,0xda,0x90,0xc6, 0xe0,0xf7,0x58,0xa4,0x93,0x69,0x10,0x8c,0x25,0x76,0xf5,0x18,0x9,0xc,0x8d,0xd, 0x4f,0x28,0xa5,0xd,0x3e,0x8f,0xcc,0xcf,0x8b,0x85,0x1,0xe6,0xac,0x1d,0x63,0x47, 0xef,0x59,0x32,0x23,0xc7,0x59,0x56,0xab,0x8a,0xb,0x6b,0x9f,0xcf,0xc7,0x8a,0xa5, 0x6d,0xb4,0x34,0xc6,0xe8,0xa8,0xf7,0x93,0xb5,0x6d,0x72,0x39,0x55,0x74,0x67,0xdb, 0x51,0xd8,0x39,0x55,0x70,0xe1,0x82,0x8b,0x57,0xd8,0xb4,0x13,0xe0,0x17,0xdb,0xf7, 0xbd,0xef,0xba,0xd9,0x85,0xac,0x4,0xad,0x74,0x69,0xad,0x35,0x8e,0xe3,0xb0,0xe7, 0xf8,0x38,0x68,0x8d,0xdf,0x2b,0x30,0x46,0x93,0x9e,0x49,0x41,0xfe,0xec,0x17,0xf, 0x30,0x38,0x3e,0x32,0x2e,0x5d,0x58,0xa5,0x74,0x41,0x99,0x7c,0xa0,0x90,0xf6,0x37, 0x33,0x64,0x49,0xd2,0xce,0xfc,0x93,0xff,0x86,0xab,0xd6,0x92,0xda,0x7b,0x98,0x29, 0x15,0x66,0xda,0x29,0xdf,0x97,0x2a,0xc6,0xc3,0xc6,0x1d,0x49,0x4d,0x71,0x2a,0x53, 0xda,0x30,0x6e,0xea,0x78,0x7c,0xdb,0x6e,0x3e,0xbe,0x65,0x3d,0x3f,0xfa,0xf9,0x53, 0xb4,0x34,0x44,0x79,0xf5,0xc0,0x69,0xd6,0x75,0x36,0xd2,0xd1,0xda,0xc8,0xad,0x5b, 0x36,0xcf,0xab,0xe6,0x7c,0xf0,0x4a,0x29,0x7a,0xf,0x1e,0xc3,0x9,0x2f,0xc6,0x6b, 0x14,0x1,0x9f,0x37,0x1f,0x36,0x26,0x33,0x1a,0xc3,0x59,0x17,0x76,0x28,0x95,0x4c, 0xcb,0x4c,0xd6,0x26,0xe4,0xb3,0xc8,0x29,0x5d,0x16,0xf6,0x19,0x24,0xe1,0x80,0x97, 0xe5,0x1d,0x8d,0xf3,0xc2,0x4a,0x29,0xb8,0xe9,0x9a,0x35,0xcc,0xce,0x26,0xf9,0xd1, 0xb6,0xc3,0x54,0xd5,0xb5,0x14,0x40,0xb,0xe3,0xb6,0x99,0xb,0xfc,0x55,0x9,0xb0, 0x2e,0xcc,0xbb,0xfd,0x76,0x84,0xbf,0xf8,0xfe,0xd3,0x4,0x1a,0x97,0x33,0x78,0xc1, 0x10,0xee,0x68,0xe0,0x58,0x56,0x73,0xf8,0x84,0x62,0x45,0xd7,0x30,0xf5,0xd1,0x9a, 0x22,0xdc,0x42,0x90,0x4a,0x29,0x6c,0x3b,0xc7,0xb3,0xaf,0x1d,0xc0,0x17,0xbb,0x1a, 0xe3,0xe4,0xa8,0xf2,0x7b,0xd0,0x4a,0x91,0x9a,0x49,0x1a,0x60,0x8,0xf2,0x23,0xf1, 0x6e,0x80,0x13,0x7d,0x83,0xb4,0x44,0x83,0xe5,0x11,0x92,0x93,0xf,0x8,0xd6,0x2d, 0xa,0xbc,0x6f,0x58,0x57,0x55,0x15,0xe6,0x9a,0xa5,0x41,0xa4,0xca,0xe6,0x5d,0xd8, 0x71,0xf2,0xae,0x5d,0x18,0x8d,0x4b,0x5d,0xd9,0x71,0xf3,0xc2,0x8,0x1f,0x6a,0x59, 0x89,0x11,0x16,0x1a,0x99,0xf,0x42,0x94,0x26,0xe0,0xb3,0x8a,0xa0,0xb9,0x5c,0xee, 0x22,0xe0,0x4a,0xf8,0x47,0x7f,0xf1,0xc,0xc9,0xea,0x2b,0x31,0x5a,0x61,0xb4,0xa2, 0xa9,0xae,0x8a,0xe4,0x4c,0x92,0xe4,0x74,0xca,0x72,0x19,0x65,0x22,0xd1,0xd3,0x2b, 0xa4,0x78,0xef,0xc0,0xde,0x63,0x84,0x3,0x1e,0xc2,0x3e,0xab,0xa4,0x32,0xf9,0x8a, 0x76,0x35,0x87,0x2f,0x9,0xea,0xa6,0x6b,0x3f,0xb6,0x96,0xcf,0xdd,0xbc,0x94,0x55, 0xb5,0x49,0x3c,0x26,0x57,0xde,0x57,0x8b,0x53,0x90,0xfb,0xd9,0x5c,0x79,0xae,0x61, 0xe7,0x2c,0x99,0xc9,0x71,0xf0,0x58,0xdf,0x25,0x21,0x5d,0x3b,0x75,0xe6,0x1c,0x47, 0xa7,0x22,0x48,0x8f,0xf,0xb4,0x42,0xa2,0x69,0x8c,0x86,0x19,0x3c,0x75,0x1e,0x40, 0x3,0x4f,0xbb,0xca,0x62,0xb4,0x79,0xa2,0xf7,0x8d,0x3,0xca,0x51,0x9a,0x96,0x58, 0xb0,0x10,0xe2,0xe5,0x2b,0x60,0x49,0x88,0x45,0x2e,0xbd,0x32,0x29,0x4d,0x96,0x65, 0xb1,0x65,0xd3,0x95,0x7c,0xf1,0x96,0x4e,0xd6,0xd6,0xa5,0xf1,0x92,0x2b,0xe,0x54, 0xc5,0x88,0xab,0xb4,0x11,0x94,0x9e,0x6b,0x58,0x95,0xcf,0x1d,0x95,0x9f,0xaf,0xb7, 0x1f,0x9e,0x29,0xaa,0x3a,0x9f,0xba,0xae,0xb,0x3f,0xff,0xda,0x3e,0x42,0xb5,0xad, 0x50,0x50,0xb5,0x3e,0x12,0xc2,0x23,0x61,0xe8,0xd4,0x90,0x6,0x76,0x25,0x12,0x3d, 0xe3,0x45,0x58,0xe0,0xc9,0xd9,0xe9,0xa4,0x75,0xea,0xcc,0x8,0x6d,0xb1,0x50,0x5e, 0xd9,0x42,0xa8,0x57,0xe5,0x97,0x18,0xf3,0xc1,0xe3,0x58,0x8f,0xc7,0xc3,0xd6,0x6b, 0xd7,0x12,0x9c,0x3e,0x41,0xce,0x71,0x8a,0x23,0xf4,0x7c,0xea,0x96,0x29,0x5b,0xba, 0x97,0x6c,0x79,0xcb,0x40,0x4b,0x81,0x4b,0x7,0xaa,0x59,0x5b,0x62,0x94,0x3,0xda, 0x1,0xad,0x68,0xa9,0xab,0x22,0x93,0xce,0x30,0x31,0x7c,0x41,0x2,0xbf,0x72,0xeb, 0xe4,0xc2,0xee,0x44,0x88,0xa9,0x43,0xbd,0xc7,0x89,0x54,0xf9,0x8,0xfa,0x3c,0xc5, 0x60,0xfe,0xcc,0x58,0x8a,0x37,0xf,0x1c,0xc3,0xb6,0x6d,0x1c,0xc7,0xb9,0xac,0x2d, 0xd6,0xd2,0x34,0x38,0x3a,0x81,0x5d,0x2,0x68,0x57,0xba,0x70,0x69,0x5e,0xe8,0x36, 0xae,0x2b,0xf,0x4e,0x64,0xc8,0x64,0xb3,0xc5,0x63,0x8e,0x52,0x55,0x4b,0xaf,0xb5, 0x52,0x45,0x55,0x2d,0xc,0x2d,0x75,0xd5,0x9c,0x3f,0x3b,0xe2,0x2e,0xe6,0x9f,0x2a, 0x83,0x4d,0x24,0x7a,0x14,0xc6,0xfc,0x74,0xd7,0xb,0x9,0x3d,0x3b,0x9b,0xe1,0xaa, 0xa5,0xd1,0xb9,0x55,0x8b,0xa3,0xf8,0xcd,0x91,0x59,0x32,0x99,0x6c,0xd9,0xa1,0x92, 0x2a,0xac,0x34,0x2e,0x95,0xde,0x3e,0x70,0x88,0x53,0xd3,0x1,0x72,0x39,0x67,0xce, 0x95,0x2b,0x5c,0xba,0x8,0xae,0xe6,0x56,0x4b,0xae,0x3b,0x8f,0x4c,0x67,0xd9,0x7f, 0xf4,0x4c,0x11,0xae,0x12,0xda,0x2d,0x63,0x34,0xa6,0xa0,0xea,0xb2,0x45,0x75,0x58, 0x12,0xfa,0xe,0xe,0x28,0x60,0x77,0x22,0xd1,0x33,0x50,0xa9,0x2c,0xc0,0x5f,0x65, 0xb3,0xb6,0xfd,0xf2,0x8b,0x6f,0xd1,0x56,0x17,0xa6,0x36,0xec,0x2b,0xba,0xf2,0xf0, 0x8c,0xe6,0xa5,0xdd,0x7,0x2f,0x3a,0x72,0xc8,0x66,0xb3,0x45,0xf8,0xf9,0xa6,0x84, 0x47,0x7e,0xf1,0x22,0xb5,0x6d,0xcb,0x8b,0x7d,0xd4,0x9e,0xf,0xf2,0xa2,0xc1,0x6a, 0x6e,0xa9,0x28,0x80,0xa5,0xad,0xb5,0x17,0x1,0x56,0xaa,0x5c,0x1d,0xf4,0x80,0x52, 0xf8,0x2c,0x58,0xb6,0x28,0xc6,0x99,0xfe,0x73,0xcc,0x5c,0x98,0xb5,0x80,0xaf,0x94, 0x36,0x7e,0x11,0x36,0x91,0xe8,0x39,0x8f,0x31,0xdf,0x4e,0x6c,0x4b,0x98,0xf1,0x89, 0x19,0xd6,0x77,0xd6,0x95,0x55,0x64,0xdb,0xbb,0xe,0xdb,0x5e,0xdb,0xb3,0x20,0x70, 0x65,0xd9,0xb6,0x6d,0xfc,0xa1,0x48,0x5e,0x49,0x77,0xa,0xca,0x95,0x44,0x57,0x17, 0x1,0xbb,0x83,0x95,0x2e,0x2a,0xeb,0xf7,0x18,0x3c,0x52,0x5c,0xa4,0x6a,0x65,0x39, 0x35,0x33,0x85,0xd1,0xe,0x2b,0x3a,0xea,0x41,0x6b,0x8e,0xef,0x3f,0xa1,0x80,0x67, 0x13,0x89,0x9e,0x9d,0xf3,0xc2,0x16,0xd2,0xb7,0xb4,0xd6,0x93,0xbf,0x79,0x76,0x97, 0x89,0xd5,0xf8,0x69,0x8d,0x85,0xf2,0x8a,0xe4,0x14,0xb6,0x63,0xd8,0xde,0xef,0xe5, 0xd7,0xdb,0xdf,0x98,0x17,0xd8,0x5,0x75,0xcb,0xd9,0x6c,0x16,0x8f,0x9c,0xb,0x1f, 0x2b,0xc3,0xc5,0xf9,0x6c,0xae,0xff,0x16,0x66,0x2,0x61,0xca,0x8e,0x26,0x2b,0x55, 0x3d,0x37,0x34,0xcc,0x77,0x7e,0xf4,0x24,0x83,0xb9,0x26,0xaa,0xfc,0x1e,0xda,0x9b, 0xa2,0xf4,0x1f,0x3d,0x4d,0x3a,0x99,0x95,0xc6,0xe8,0xaf,0x55,0x76,0xab,0x32,0xd8, 0x44,0xa2,0x67,0xda,0x68,0xf5,0x97,0x7,0xdf,0xe8,0x15,0x67,0x4e,0xf,0x73,0xed, 0xca,0xc6,0x7c,0x54,0x55,0x8c,0x79,0x35,0x89,0xa1,0x30,0x3,0x67,0x6,0x2f,0x52, 0xb1,0x52,0xd9,0xc9,0xa9,0x69,0x6,0x86,0x67,0x2f,0x9a,0x72,0x2a,0xfb,0xee,0xdc, 0xe0,0x55,0x3a,0x32,0xe7,0x95,0x4d,0x66,0x54,0xd9,0x38,0x51,0x6a,0x17,0x26,0xa7, 0x78,0xe4,0x89,0x37,0x70,0x62,0xeb,0x8,0x85,0xaa,0xd8,0x70,0x65,0x3b,0x99,0x54, 0x9a,0xfe,0x83,0x27,0x95,0xd6,0xce,0xcf,0x77,0xef,0xfe,0xde,0x49,0x21,0x84,0x5c, 0x10,0x56,0x8,0xe1,0x39,0x71,0xe2,0xc5,0x7f,0xd1,0x46,0x1f,0xfc,0xe5,0xf,0x1e, 0x57,0xc9,0xd9,0x34,0x5b,0xd6,0xb4,0x0,0xa6,0x58,0xe1,0x6c,0x4e,0x33,0x3e,0x9d, 0x2e,0x83,0xab,0x54,0x76,0x62,0xe2,0x2,0x8f,0xfe,0xec,0x9,0xaa,0x5a,0x57,0x17, 0x17,0x4,0xae,0x1b,0x2f,0xb4,0x30,0x98,0xaf,0x1f,0x8f,0x4d,0x67,0xe8,0x3b,0x73, 0xfe,0x22,0xd0,0x5c,0x2e,0x87,0xdf,0xe7,0x65,0xed,0xb2,0x26,0x84,0x56,0xac,0xbf, 0xa2,0x8d,0x80,0x47,0xb2,0xf7,0x95,0x5e,0x6d,0xdb,0xce,0xf4,0xe0,0x60,0xef,0xb7, 0x81,0x0,0x10,0x12,0x42,0x78,0x2e,0x82,0x15,0x42,0x58,0x80,0x7f,0x7c,0xfc,0x84, 0x18,0x1a,0xdc,0xff,0xa5,0xe4,0x74,0x72,0xea,0x89,0x47,0x9f,0x52,0x7e,0x8f,0xe0, 0xfa,0xd5,0xcd,0xc5,0x91,0xd2,0x76,0xf2,0xc3,0xfc,0x42,0x7d,0xf6,0xe9,0x17,0x76, 0xf0,0xc7,0x3d,0xdb,0x39,0xe6,0x2c,0x43,0xe1,0x29,0x57,0x75,0x21,0x95,0x2b,0xfa, 0xae,0xa3,0x14,0xc6,0xc9,0x61,0x9c,0x1c,0xbd,0x3,0xd3,0xf3,0xaa,0x7b,0xec,0xc4, 0x49,0xde,0x39,0x31,0xc8,0x15,0x8b,0x1b,0x69,0xa8,0xd,0xf3,0xce,0xee,0x23,0x66, 0x6a,0x7c,0x46,0x8f,0x8d,0x1e,0xef,0x3e,0x7b,0x76,0xf7,0x54,0x1,0xd6,0xf,0xf8, 0x5d,0x85,0x4b,0x95,0xf5,0x16,0xcc,0x77,0xfa,0x74,0x62,0x7c,0x74,0xf4,0xdd,0x2f, 0x9f,0x3f,0x3d,0x68,0x9e,0x7b,0x62,0x87,0x69,0x8e,0x86,0x58,0xbf,0xac,0xae,0x18, 0xed,0xc,0x8e,0x4d,0x5e,0xe4,0xc6,0xee,0x75,0x6f,0xff,0x18,0x91,0xd6,0x95,0x18, 0x2b,0x50,0xd2,0xdf,0x4b,0x20,0x4b,0x14,0x9e,0x4f,0x55,0xed,0x38,0x79,0x50,0x95, 0x3,0x95,0xe3,0xf8,0xb8,0x2c,0x7b,0x87,0xc2,0x85,0xed,0x3b,0x35,0xc4,0xaa,0xb5, 0xd7,0xd2,0xd9,0x56,0x47,0xdf,0xa1,0x93,0xc,0xe,0xc,0x8b,0xa9,0xa9,0xb3,0xdf, 0xec,0xeb,0x7b,0xf1,0x28,0xe0,0x2b,0x31,0x6f,0x21,0xcf,0x1f,0x59,0x16,0xa4,0xf6, 0x14,0xbe,0xf0,0x0,0xde,0xbe,0xbe,0x17,0x8f,0xf8,0x7c,0xa1,0xbf,0x79,0x77,0x2f, 0x5f,0x8f,0xd4,0x45,0xd9,0x7c,0xd3,0xd5,0xf8,0x3d,0x16,0xaf,0x1f,0x1e,0xe2,0xc0, 0x10,0xac,0xef,0xb2,0xe7,0x3d,0x58,0x1a,0x1e,0x9b,0x40,0x4,0x1d,0xc0,0x5d,0xf9, 0xe4,0xb,0xee,0x52,0x6f,0x6e,0xd9,0x37,0x77,0x2a,0xa0,0x8d,0x6,0xad,0x8b,0x81, 0x41,0x7e,0xde,0x54,0xa0,0x1c,0x66,0x6c,0xc5,0xf0,0xd8,0x24,0x91,0xaa,0x40,0x71, 0x7a,0x3b,0x37,0x78,0x1e,0xed,0x8f,0xb1,0xa6,0xab,0x95,0x73,0xa7,0x86,0x38,0x7e, 0x60,0x80,0x54,0x6a,0xec,0xc9,0x23,0x47,0x9e,0xda,0x5e,0x60,0x70,0xc8,0xef,0x4e, 0x38,0xee,0xb5,0x10,0x42,0xba,0xfe,0x2c,0x1,0xab,0xc2,0x3c,0x47,0x8e,0x3c,0xf5, 0xc2,0xba,0x75,0xbf,0xb7,0xec,0xad,0x6d,0x3b,0x3f,0x3b,0x3d,0x35,0xcd,0x4d,0x77, 0x5d,0xcf,0xed,0x1f,0x5b,0xc4,0xf8,0xc8,0x10,0xb6,0x7d,0x31,0xec,0xc0,0x99,0x73, 0x4c,0xc8,0x56,0xaa,0x73,0xf9,0xbd,0x1f,0x17,0xb4,0x78,0x82,0x57,0x1,0x8a,0xd1, 0x79,0xd3,0xba,0x1c,0xd2,0x85,0x2e,0xd8,0xf9,0x71,0x9b,0xa0,0x4f,0x92,0xb5,0x6d, 0xa6,0xa7,0x67,0x39,0x3d,0x66,0xb3,0xfa,0xca,0xab,0xe9,0x3f,0x3c,0xc0,0xf1,0x3, 0x3,0x64,0x32,0x53,0x7b,0xe,0x1e,0x7c,0xfc,0xd1,0x82,0x50,0x56,0x49,0x5e,0x66, 0xa2,0x70,0xf4,0x17,0x28,0xf8,0x78,0xb0,0x60,0xa5,0xe5,0xe0,0xca,0x95,0x1f,0xbf, 0x3f,0x1a,0x5d,0xfa,0x9f,0x9a,0x97,0x2e,0xe2,0x8e,0xcf,0xdc,0x21,0x57,0xb5,0x58, 0x78,0x9c,0x99,0xe2,0x59,0x8b,0x10,0x82,0xfe,0x53,0x67,0x79,0xe2,0xc5,0x3d,0xd8, 0x8b,0x6e,0x29,0x1,0x75,0xd7,0xb4,0x14,0x94,0xd6,0x5,0xea,0x7c,0x6e,0xb4,0x6, 0xa3,0xf2,0xb0,0x46,0x17,0xe0,0x34,0xc6,0x94,0x3,0x2f,0x8f,0xcc,0x72,0xe1,0xfc, 0x0,0xe7,0x53,0x21,0xae,0xdb,0xb8,0x86,0x68,0xb4,0x81,0x77,0xde,0x3c,0x6a,0x6, 0x7,0x86,0xc5,0xf4,0xf4,0xe0,0xb3,0x47,0x8e,0x3c,0xf9,0x13,0x63,0x74,0xa,0xc8, 0x0,0xe9,0x12,0x2b,0xbd,0xce,0x5c,0xe,0x6c,0x0,0x8,0xb6,0xb7,0x5f,0xb3,0xb1, 0xad,0x6d,0xe3,0x9f,0x55,0xd7,0xd6,0xf8,0xbf,0xfc,0x5f,0xee,0x94,0xab,0xbb,0xda, 0x48,0x26,0x93,0x4c,0x4c,0x4c,0x70,0xf6,0xdc,0x10,0xff,0xf0,0xfc,0x0,0x35,0x2d, 0x2b,0xe7,0x46,0x80,0x62,0x28,0x59,0xf4,0xe5,0x5,0x60,0xf5,0x9c,0xa2,0xc6,0x75, 0x65,0x5d,0x6,0xeb,0xb5,0x4,0xcb,0x3b,0xea,0xe8,0x68,0x8e,0x91,0x4d,0x65,0xd8, 0xf7,0xda,0x3b,0x7a,0x72,0x7c,0xda,0xc,0x9f,0x3f,0xf4,0xe3,0x81,0x81,0x57,0x5f, 0xa9,0x84,0x5a,0xa0,0x9c,0x72,0x61,0x7d,0xb,0x41,0x96,0xe6,0xd1,0xe8,0xd2,0xc5, 0x5d,0xcb,0x6f,0xff,0x33,0x9f,0xd7,0xdf,0xb4,0xe9,0xc6,0x65,0xe2,0xbe,0x7b,0x36, 0xd1,0x58,0x1f,0xe5,0xfb,0xbf,0x78,0x89,0x63,0xb3,0xf5,0x64,0x72,0x25,0xab,0xa3, 0x32,0x58,0x57,0x5a,0xf7,0x5c,0xc8,0x94,0x40,0x96,0xb8,0xb2,0xab,0x6e,0x1,0xde, 0x12,0x86,0x25,0xad,0x31,0xba,0xda,0xeb,0x41,0x2b,0x6,0x8e,0x9e,0xa1,0xff,0xd0, 0x69,0x63,0xdb,0xd9,0xd4,0xa9,0x53,0x3b,0x1f,0x19,0x1e,0x3e,0x7c,0xb4,0x4,0x68, 0xa1,0xdc,0x2d,0xcf,0xba,0xb0,0xd6,0x42,0x80,0x95,0x9f,0xf9,0xfd,0xd5,0x91,0xce, 0xce,0xad,0xf7,0x46,0x6a,0xdb,0xef,0xf0,0x7a,0x3d,0xd6,0x8d,0xb7,0x5d,0x21,0x9a, 0x3a,0x97,0x23,0x3,0x11,0xde,0x1b,0x99,0xe6,0xbd,0xd1,0x69,0x86,0xc6,0x67,0xc8, 0xe5,0xd4,0xe5,0xc1,0xe6,0x37,0xa8,0xc0,0xe4,0x15,0x95,0x18,0x62,0x35,0x1,0x9a, 0x62,0x55,0xb4,0xd4,0xd7,0xe0,0xb5,0x24,0xef,0xd,0xc,0x72,0xbc,0xb7,0xdf,0x64, 0x52,0x36,0x33,0x33,0x43,0xfb,0x6,0x6,0x5e,0x7b,0x3a,0x99,0x1c,0x1d,0x29,0x40, 0xcc,0x7,0x39,0xdf,0x67,0xc9,0xe2,0xbb,0x4e,0x42,0x8,0x7f,0x5,0x60,0x25,0x70, 0x99,0x55,0x55,0x35,0x35,0x2d,0x59,0x72,0xe3,0xbd,0xd5,0xd5,0xcd,0x9b,0x83,0x55, 0x21,0xb3,0xfa,0xda,0x35,0xb2,0xbd,0xb3,0x8d,0x70,0x75,0x8,0xa5,0x35,0xe7,0xc7, 0x66,0x38,0x37,0x3a,0xcd,0xd4,0x6c,0x9a,0x74,0x26,0x47,0x26,0x9b,0x43,0x6b,0x95, 0x77,0xdf,0x2,0xac,0xc0,0xe0,0xf7,0x48,0xfc,0x5e,0xf,0x55,0x41,0x2f,0x8d,0xb1, 0x2a,0x1a,0xa2,0x61,0xbc,0x96,0x24,0x9d,0x4a,0x33,0x7c,0x6e,0x8c,0x81,0x23,0xa7, 0xcd,0xec,0x64,0x52,0xa4,0xd2,0x13,0x27,0xce,0x9c,0x7e,0xe3,0xd9,0xb,0x17,0x6, 0x4e,0x3,0xd9,0x12,0xa8,0xf9,0x2c,0x5d,0x71,0x3d,0x6b,0x8c,0x71,0x4a,0x61,0xe5, 0x42,0x60,0xcc,0x4d,0xd0,0xa5,0x65,0x3f,0xe0,0x8f,0xc5,0x96,0x76,0xb4,0x77,0x5c, 0x77,0x7f,0x28,0x18,0x5b,0x5,0x88,0xda,0xc6,0xa8,0x59,0xd4,0xd5,0x21,0x16,0x2d, 0x6d,0x21,0x12,0xad,0xc6,0x7d,0x59,0xc4,0x18,0x43,0x26,0x9b,0x23,0x9d,0xb1,0xd1, 0x5a,0xe3,0xf7,0x5a,0xf8,0x7d,0x56,0x61,0x5a,0xd2,0xa0,0xd,0xa9,0xd9,0x14,0x83, 0x67,0x46,0x18,0x3e,0x3d,0x6c,0x26,0x46,0x26,0x85,0x31,0x86,0x6c,0x76,0xe6,0xdc, 0xb9,0x73,0xfb,0x5e,0x18,0x1e,0x3e,0x74,0xac,0x0,0x59,0x69,0x2e,0xd0,0x42,0xd, 0x90,0x2,0x32,0xc6,0x98,0xf2,0x37,0xdc,0xe6,0x1,0x9e,0xf,0xd0,0x2d,0xfb,0x4a, 0x3e,0xf3,0x85,0x42,0x75,0x75,0x4d,0x4d,0x6b,0xd6,0xd7,0x44,0xda,0xd6,0x6,0x83, 0xd1,0x2e,0x81,0xb0,0x82,0xe1,0x80,0xe,0x47,0xaa,0x8,0x84,0x3,0x32,0x10,0xe, 0x10,0x8,0x5,0xf0,0x7,0xfc,0x48,0x9,0xa9,0x64,0x86,0x6c,0x32,0x43,0x26,0x9d, 0x21,0x33,0x9b,0x36,0xa9,0xd9,0xb4,0x49,0xcd,0xa4,0x25,0x60,0x32,0x99,0xa9,0xb3, 0xd3,0xd3,0xe7,0x8e,0x8c,0x8e,0x1e,0x3b,0x38,0x3d,0x3d,0x38,0x2,0xd8,0x25,0xe6, 0x42,0xba,0xe5,0xc,0xb,0x83,0x27,0x81,0x6c,0x51,0xd0,0xca,0x5,0xb8,0xc8,0x47, 0x7,0x17,0x29,0x38,0x8f,0xf9,0x4a,0x72,0x6f,0x49,0xee,0xf5,0x7a,0x43,0xe1,0xe6, 0xe6,0x75,0x6b,0xaa,0xab,0x9b,0xbb,0x3c,0x9e,0x40,0xc4,0xe3,0xd,0x44,0x3c,0x96, 0x2f,0x22,0x2d,0x6f,0x48,0x20,0xa,0xc7,0xe8,0xc6,0x28,0xed,0xa4,0x94,0x93,0x9d, 0x71,0x9c,0xec,0x94,0xe3,0x64,0xa6,0x93,0xc9,0xd1,0x33,0xe7,0xcf,0x1f,0x3a,0x9c, 0xc9,0x4c,0x4e,0x93,0xf,0x8,0x72,0x25,0x66,0x97,0xe4,0xa5,0xb0,0xb,0xd9,0x2c, 0x90,0x2b,0x13,0x73,0xa1,0xdd,0x6,0x21,0x84,0x77,0x1e,0xe0,0x52,0xc0,0xca,0x70, 0xcc,0xd,0x37,0x3d,0x25,0x56,0x3a,0xa9,0x4b,0x40,0x4,0x2,0xb5,0x55,0x52,0x7a, 0xac,0x74,0x7a,0x62,0xd6,0x18,0x6d,0xc8,0xef,0xfe,0xb9,0xb9,0x2a,0x31,0xa7,0xc4, 0xe6,0x3,0x2e,0x55,0xba,0x14,0x3c,0xd,0xa4,0xcd,0x3c,0x1b,0x67,0x97,0x7c,0x19, 0xb3,0xa0,0xb2,0xaf,0x0,0xed,0x9b,0xc7,0x4a,0x41,0x4b,0xc3,0xcd,0xca,0x28,0x46, 0x92,0x3f,0xf6,0x72,0xf3,0xd2,0xb4,0x10,0x70,0x69,0xc8,0x97,0x2b,0xc9,0xe7,0x3, 0x76,0x61,0x93,0x80,0x5a,0x50,0xc0,0xcb,0xd9,0x40,0x2b,0x40,0xbb,0x4a,0x57,0x2a, 0x79,0x39,0x8a,0xba,0x56,0xfa,0x76,0xa6,0xb,0xea,0x9a,0x2e,0xb1,0xf7,0x53,0xb8, 0x54,0xe9,0x74,0x1,0x74,0x41,0xc8,0xf,0x4,0x5b,0x1,0x2e,0x99,0x73,0xe7,0x52, 0x35,0x4b,0x41,0x3d,0xcc,0xc5,0xdb,0x95,0xb0,0x54,0xc0,0xba,0x79,0x25,0xac,0xa6, 0x5c,0xdd,0x52,0x60,0xd7,0x65,0x1d,0xf3,0x1,0x0,0xfe,0x9f,0xfe,0x17,0xaf,0xa0, 0xb8,0xc5,0x9c,0xda,0x95,0xae,0x3b,0x9f,0xb,0xcf,0xe7,0xc6,0xf3,0xb9,0x72,0xa9, 0xc2,0x6e,0xbf,0x74,0x0,0xfd,0x61,0xeb,0xfc,0x91,0xfd,0x97,0x25,0x14,0xdf,0x48, 0x75,0xc1,0x16,0x52,0xd6,0xcd,0x2f,0xe5,0xc2,0x6e,0xb9,0x70,0xcc,0xfb,0xd1,0xd4, 0xf1,0xff,0x2,0xe8,0xfb,0x2,0xc1,0x9,0x35,0xa5,0xf0,0x0,0x0,0x0,0x0,0x49, 0x45,0x4e,0x44,0xae,0x42,0x60,0x82, // /home/newdrone18/workspace/qtbook-master/20.02.27_Qt_Programming_Korean_v1.4_Example_Source_code/Ch03/01_BasicWidget/01_QCheckBox/resources/mail.png 0x0,0x0,0xf,0x3b, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x44,0x0,0x0,0x0,0x40,0x8,0x6,0x0,0x0,0x0,0xa3,0x82,0xd1,0xa4, 0x0,0x0,0x0,0x4,0x73,0x42,0x49,0x54,0x8,0x8,0x8,0x8,0x7c,0x8,0x64,0x88, 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x14,0x72,0x0,0x0,0x14,0x72, 0x1,0x39,0x38,0x12,0x6b,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66, 0x74,0x77,0x61,0x72,0x65,0x0,0x77,0x77,0x77,0x2e,0x69,0x6e,0x6b,0x73,0x63,0x61, 0x70,0x65,0x2e,0x6f,0x72,0x67,0x9b,0xee,0x3c,0x1a,0x0,0x0,0xe,0xb8,0x49,0x44, 0x41,0x54,0x78,0x9c,0xdd,0x5b,0x6b,0x6c,0x1c,0xd7,0x75,0xfe,0xee,0xcc,0xec,0x72, 0xdf,0x4b,0x52,0x24,0x97,0x4f,0xc9,0xa4,0xf8,0x58,0x3e,0x4c,0xae,0x42,0x2b,0x62, 0x6a,0xbd,0x6c,0xb9,0x4e,0x94,0x4,0x6,0x8c,0xc4,0x85,0x93,0x34,0x40,0x2d,0x4b, 0xb1,0x64,0x27,0x75,0x6b,0x20,0x41,0xff,0x14,0xa8,0x91,0x3a,0x92,0x25,0x91,0xa2, 0x9e,0x4e,0x6c,0xb4,0x6e,0x92,0xa2,0x41,0x1a,0x23,0x2,0x1c,0x54,0x45,0x9b,0xa2, 0x46,0x10,0xc9,0xb2,0x92,0xba,0x94,0x5a,0x52,0xb4,0x1e,0xa4,0x24,0x52,0xd4,0x86, 0xf4,0x72,0xb5,0xaf,0xd9,0xc7,0xbc,0x6e,0x7f,0xec,0xce,0x72,0xf6,0xbd,0xcb,0x5d, 0xca,0x49,0xf,0x70,0xb9,0x33,0xf7,0xdc,0xc7,0x39,0xdf,0x9c,0x73,0xee,0xb9,0x77, 0x86,0x84,0x52,0x8a,0xb5,0xa6,0x83,0xaf,0xfd,0x8d,0x99,0x52,0xfa,0x3c,0xcb,0xb2, 0xdf,0x11,0x45,0xb1,0x85,0x82,0x82,0x52,0xa,0x4a,0x91,0xf8,0xa5,0x0,0xa5,0xc9, 0x6b,0x4a,0x1,0xb5,0xd,0x0,0x11,0xc0,0x8f,0x64,0x59,0x3e,0xf4,0xfa,0xe1,0x63, 0x37,0xd7,0x5a,0x56,0xb2,0xd6,0x80,0x1c,0xfa,0xde,0xab,0x83,0xc,0xc3,0xfc,0xb, 0xcb,0xb2,0x8e,0x27,0xfe,0x78,0xb7,0xee,0xa1,0xf6,0xf6,0x8c,0x36,0xa9,0x22,0xd0, 0x94,0x7b,0xbf,0xdf,0x87,0xb3,0x3f,0xff,0x99,0xb8,0xb4,0xb4,0x8,0x59,0x96,0xf7, 0x1e,0x3e,0x32,0xfe,0xa3,0xb5,0x94,0x77,0x4d,0x1,0x39,0x74,0xf0,0xd5,0xaf,0x30, 0x84,0x79,0x7b,0xd3,0xa6,0x61,0xee,0xb1,0x5d,0x4f,0xb2,0x1c,0xc7,0x41,0x96,0x65, 0x0,0x40,0xa1,0x79,0x55,0xbe,0x4e,0xa7,0x83,0x24,0x49,0x98,0x9e,0xbe,0x8a,0x7f, 0xfc,0xf1,0xdb,0xa,0x1,0x39,0x25,0xcb,0xf2,0x2b,0x47,0x46,0x8f,0xcb,0x6b,0x21, 0xf3,0x9a,0x1,0x72,0xf8,0xf5,0xef,0xbe,0x4a,0x29,0xfd,0xeb,0xa7,0x9f,0xfe,0x13, 0xd2,0xd5,0xdd,0x3,0x59,0x96,0x11,0xe,0x87,0x21,0x8a,0xe2,0x8a,0x9b,0x0,0x5, 0xaf,0x59,0x96,0x85,0xdd,0x6e,0x87,0xc1,0x60,0xc0,0xe2,0xe2,0x22,0xce,0x9c,0x1a, 0x17,0x5,0x41,0x3c,0x2f,0x49,0xe2,0x17,0x8e,0x8e,0x9d,0x88,0x54,0x5a,0xee,0x35, 0x1,0xe4,0xc8,0xe1,0xbf,0x3d,0x8,0xe0,0xdb,0x7b,0x9e,0x3f,0xc0,0xae,0x5b,0xb7, 0xe,0xb1,0x58,0xc,0xa1,0x50,0x28,0x43,0xd9,0x7c,0x40,0xa4,0xdf,0xdb,0x6c,0x36, 0x54,0x57,0x57,0x23,0x14,0xa,0x61,0x7c,0xec,0xb0,0x10,0xc,0x6,0x2f,0x4a,0xb2, 0xb4,0x7b,0x74,0xec,0x64,0x45,0x41,0xa9,0x38,0x20,0x47,0xf,0xbf,0x36,0xa,0x42, 0x5e,0xde,0xf7,0x8d,0x17,0x59,0xbb,0xbd,0x1a,0x3c,0xcf,0x23,0x12,0x89,0xcb,0x5c, 0x8c,0xe2,0xf9,0x78,0x26,0x93,0x9,0x75,0x75,0x75,0x8,0x87,0xc3,0x18,0x3b,0x7a, 0x48,0x8,0xf1,0xa1,0x8b,0x92,0x24,0xed,0x1e,0x3b,0x76,0xaa,0x62,0xa0,0x54,0x14, 0x90,0xd1,0x23,0xdf,0x3b,0x49,0x8,0x39,0xb0,0xef,0x1b,0x2f,0xb1,0x56,0x9b,0xd, 0xc1,0x60,0x10,0xb1,0x58,0xac,0x64,0xc5,0xf3,0xf1,0x8c,0x46,0x23,0x1c,0xe,0x7, 0x78,0x9e,0xc7,0xe8,0xd1,0x43,0x2,0xcf,0x87,0xde,0x97,0x24,0xe9,0xf3,0xc7,0xc6, 0x4f,0x57,0x4,0x94,0x8a,0x0,0x32,0x76,0xf4,0x20,0x21,0x84,0xbc,0x1,0x42,0xf6, 0xee,0xdd,0x77,0x80,0xb5,0x5a,0x6d,0x8,0x4,0x2,0x88,0xc5,0x62,0x0,0x56,0xa7, 0x78,0x3e,0x9e,0xd1,0x68,0x44,0x63,0x63,0x23,0x42,0xa1,0x10,0xc6,0x46,0xf,0x9, 0x3c,0xcf,0x5f,0x90,0x24,0xe9,0xf3,0xe3,0xc7,0xcf,0x44,0xcb,0xd5,0xa5,0x6c,0x40, 0x8e,0x8d,0x1e,0x64,0x8,0x61,0xfe,0x8e,0x10,0xf2,0xa7,0x7b,0xf7,0xbd,0xc8,0x99, 0x2d,0x16,0xf8,0xfd,0x7e,0x8,0x82,0x50,0xb6,0xe2,0xf9,0x78,0x26,0x93,0x9,0x8d, 0x8d,0x8d,0x8,0x6,0x83,0x38,0x36,0xf6,0xba,0xc0,0xf3,0xfc,0x79,0x49,0x92,0xbf, 0x70,0xfc,0x44,0x79,0xa0,0x94,0x5,0xc8,0xf8,0xd8,0x21,0x86,0x10,0xf2,0x43,0x86, 0x61,0x9f,0xdd,0xb3,0x77,0x3f,0x67,0x32,0x99,0x93,0x96,0x51,0x8a,0xb2,0xc5,0xb6, 0x4b,0xbf,0x37,0x9b,0xcd,0x49,0x50,0xc6,0x46,0x5f,0x17,0xc2,0xe1,0xf0,0xaf,0x25, 0x49,0xfa,0xe2,0x89,0x93,0x6f,0xac,0x1a,0x14,0x66,0xb5,0x1d,0x1,0x80,0x61,0x98, 0x7f,0xe0,0x38,0xee,0xd9,0x3d,0x7b,0xf,0x70,0x26,0x93,0x19,0x7e,0xbf,0x1f,0xd1, 0x68,0x34,0x29,0xb0,0xa2,0x28,0x29,0xca,0x68,0xef,0x73,0x5d,0x97,0xc2,0xb,0x6, 0x83,0x70,0xbb,0xdd,0xb0,0x58,0x2c,0xf8,0xcb,0x57,0xbe,0xad,0x37,0x1a,0x4d,0xdb, 0x58,0x96,0x3d,0xfb,0xad,0x6f,0xee,0x67,0x1f,0x38,0x20,0x27,0xc6,0xf,0xbf,0x46, 0x8,0xf3,0x95,0x3f,0x7b,0xee,0x5,0xce,0x64,0x32,0xc1,0xef,0xf7,0x27,0x2d,0x63, 0x35,0xca,0x2a,0x8a,0xb2,0x2a,0xc0,0x2,0x81,0x0,0xee,0xdd,0xbb,0x7,0x8b,0xc5, 0x8a,0x3f,0x7f,0xf9,0x15,0x3d,0xc7,0x71,0xbb,0x18,0x86,0x39,0xf5,0x40,0x1,0x39, 0x31,0x7e,0x78,0x3f,0x80,0xbf,0xfa,0xda,0xd7,0xf7,0x70,0x26,0xb3,0x19,0x3e,0x9f, 0x2f,0xc5,0x32,0x2a,0x65,0x1,0xa5,0x80,0xe2,0x76,0xbb,0x61,0xb7,0xdb,0xf1,0xd2, 0x37,0xff,0x42,0x7,0x60,0xdf,0xb7,0x5e,0x7a,0xe1,0x95,0xd5,0xe8,0x56,0x72,0xc, 0x39,0x71,0xfc,0xc8,0x53,0x4,0x38,0xfb,0xe5,0x67,0xbe,0xca,0x34,0x35,0xb7,0xc0, 0xef,0xf7,0x23,0x12,0x89,0xac,0x69,0x0,0x2d,0x96,0x57,0x5b,0x5b,0x8b,0x86,0x86, 0x6,0xdc,0xb8,0x71,0x1d,0x6f,0xfd,0xe0,0x8c,0xa2,0x50,0xe5,0x99,0x53,0xa7,0xdf, 0xfc,0xf9,0x9a,0x1,0x72,0xf2,0xf8,0xd1,0x11,0x10,0xfc,0x6a,0xf7,0xee,0xa7,0x74, 0x1b,0x3b,0xbb,0x48,0x28,0x14,0xca,0x9a,0x81,0x7e,0x92,0xa0,0x34,0x36,0x36,0xc2, 0x6e,0xb7,0xe3,0xc3,0xf,0xff,0x8b,0xbe,0xf3,0xb3,0x9f,0x88,0xb2,0x2c,0x6f,0x3f, 0x7d,0xe6,0xad,0x4b,0xc5,0xea,0x58,0xb4,0xcb,0x9c,0x3a,0x71,0xb4,0x9b,0x61,0x98, 0x7f,0xfb,0xa3,0x47,0x77,0x70,0x1d,0x1b,0x3b,0x49,0x38,0x1c,0x46,0x30,0x18,0xac, 0x68,0x3c,0xa8,0x4,0xcf,0xed,0x76,0x83,0xe7,0x79,0xc,0xd,0xb9,0xc8,0xf6,0x1d, 0x8f,0xb1,0x2c,0xcb,0xfe,0xeb,0x8b,0x7,0xf6,0x65,0x6e,0xb1,0xcb,0x1,0xe4,0xf4, 0xc9,0x51,0x7,0xcb,0xb2,0xff,0x39,0x30,0x30,0x64,0x72,0xb9,0x3e,0xc5,0x8,0x82, 0x0,0xbf,0xdf,0x5f,0x50,0xe8,0xb5,0x54,0x3c,0x17,0x4f,0x51,0x14,0xcc,0xcf,0xcf, 0x43,0x92,0x24,0xec,0xdc,0xb9,0x8b,0x75,0xf6,0xe,0x58,0x38,0x8e,0xfb,0x8f,0x3, 0xfb,0xf7,0xd6,0x54,0x4,0x90,0x33,0xa7,0xc6,0xaa,0x58,0x96,0xfd,0xf7,0xb6,0xf5, 0x1b,0x1a,0x1e,0xdd,0xb6,0x83,0x93,0x65,0x19,0x5e,0xaf,0xb7,0xe8,0x40,0x58,0xe9, 0x55,0xa5,0x18,0x9e,0x24,0x49,0xb8,0x7d,0xfb,0x36,0x74,0x3a,0x1d,0xbe,0xf4,0xa5, 0x67,0x74,0xf5,0xd,0xd,0xad,0x1c,0xc7,0xfd,0x62,0xff,0xb,0xcf,0x73,0x65,0x3, 0x42,0x8,0xf9,0xae,0xd1,0x68,0x72,0x3e,0xf9,0xd9,0x2f,0xea,0x0,0x60,0x79,0x79, 0x39,0x43,0x99,0x72,0x14,0x5a,0xed,0x18,0xaa,0x95,0xce,0xcd,0xcd,0x61,0x62,0x62, 0x2,0xb3,0xb3,0xb3,0x29,0xf1,0x4c,0x92,0x24,0xdc,0xba,0x75,0xb,0x26,0x93,0x9, 0xcf,0x3d,0xb7,0x4f,0xcf,0xb2,0xdc,0x16,0x0,0xdf,0x29,0xa8,0x6f,0xbe,0xa0,0xfa, 0xc6,0xe9,0x63,0x8f,0x52,0x4a,0x7f,0xfd,0xb5,0xaf,0xef,0x21,0x36,0x9b,0x1d,0x8b, 0x8b,0x8b,0x10,0x45,0x11,0xc0,0x83,0xf,0xa0,0xb2,0x2c,0x23,0x12,0x89,0x20,0x14, 0xa,0xc1,0xe3,0xf1,0x20,0x10,0x8,0xa0,0xa3,0xa3,0x3,0xbd,0xbd,0xbd,0x68,0x6e, 0x6e,0x6,0x0,0xbc,0xf3,0xce,0x3b,0xe8,0xe8,0xe8,0x0,0x21,0x24,0xa9,0x83,0xd5, 0x6a,0xc5,0xfa,0xf5,0xeb,0x31,0x3b,0x3b,0x83,0x37,0xce,0x9c,0x94,0x14,0x45,0x19, 0xfc,0xc1,0x9b,0x7f,0x3f,0x5d,0x32,0x20,0xdf,0x3f,0x33,0x6e,0x66,0x18,0x66,0x7a, 0xeb,0xf6,0xc7,0x5b,0xfa,0xfa,0x6,0x18,0xaf,0xd7,0xb,0x9e,0xe7,0xd7,0x5c,0x71, 0xed,0x75,0x2c,0x16,0x43,0x38,0x1c,0x86,0xd7,0xeb,0x85,0xd7,0xeb,0x85,0xd1,0x68, 0xc4,0xc0,0xc0,0x0,0x3a,0x3a,0x3a,0x60,0xb5,0x5a,0x53,0x14,0x7,0x80,0xf,0x3e, 0xf8,0x0,0xa1,0x50,0x8,0x56,0xab,0x35,0xa5,0xde,0xe1,0x70,0xc0,0x6e,0xb7,0xe3, 0xdc,0xb9,0x5f,0xc8,0xef,0x5f,0x38,0x7f,0x59,0x14,0xc5,0x4f,0xbf,0xf9,0xd6,0xdb, 0x4a,0x36,0xbd,0x73,0xfa,0x14,0x21,0xe4,0x48,0x5d,0x7d,0x43,0x53,0x4f,0x4f,0x2f, 0xc3,0xf3,0x7c,0xc1,0xe5,0xb5,0x12,0xa0,0xa8,0x56,0x10,0x8,0x4,0xf0,0xf1,0xc7, 0x1f,0x23,0x1a,0x8d,0xa2,0xab,0xab,0xb,0x23,0x23,0x23,0x70,0x38,0x1c,0xe0,0xb8, 0x54,0x71,0x55,0xd7,0x95,0x65,0x19,0x7a,0xbd,0x1e,0x2e,0x97,0xb,0x67,0xcf,0x9e, 0x85,0xc5,0x62,0x49,0x1,0x6b,0x69,0x69,0x9,0x66,0xb3,0x19,0xbb,0x76,0x3d,0xc9, 0x7e,0x70,0xf1,0xfd,0x21,0x0,0x2f,0x3,0x38,0x56,0x12,0x20,0xc,0xc3,0x3e,0xbd, 0x65,0xcb,0xa3,0x1c,0x80,0x8c,0x20,0x5a,0x29,0x50,0x14,0x45,0x49,0xb1,0x2,0x8f, 0xc7,0x83,0xda,0xda,0x5a,0xf4,0xf7,0xf7,0x63,0xfb,0xf6,0xed,0x30,0x9b,0xcd,0x29, 0x32,0xa9,0xf1,0x43,0x96,0xe5,0x64,0x4c,0x51,0x49,0x14,0x45,0x18,0xc,0x6,0x34, 0x37,0x37,0x83,0xe7,0x79,0x58,0x2c,0x96,0x94,0x7e,0xb,0xb,0xb,0x68,0x6f,0x6f, 0xc7,0x97,0x9f,0x79,0x96,0xfb,0xe7,0x9f,0xfe,0xd3,0x4b,0x25,0x3,0x2,0x80,0xb0, 0x6c,0x7c,0x8f,0x24,0x88,0x2,0x58,0x86,0xad,0x88,0x5b,0xa8,0x67,0xab,0x7e,0xbf, 0x1f,0x1e,0x8f,0x7,0x92,0x24,0xa1,0xa7,0xa7,0x7,0x5b,0xb7,0x6e,0x45,0x5d,0x5d, 0x1d,0x18,0x26,0x35,0xce,0xab,0x7d,0x54,0x20,0xb4,0xf5,0x5a,0x12,0x45,0x11,0x1c, 0xc7,0xe1,0x91,0x47,0x1e,0xc1,0xbb,0xef,0xbe,0xb,0xb3,0xd9,0x9c,0x62,0x25,0x92, 0x24,0x1,0x80,0xa,0xb2,0x2e,0x97,0xd2,0x79,0x97,0x21,0xa,0xa,0x86,0x61,0x60, 0x30,0x18,0xc0,0xf3,0x3c,0x38,0x96,0x2b,0x19,0x14,0xd5,0xa,0x78,0x9e,0xc7,0xf2, 0xf2,0x32,0x3c,0x1e,0xf,0x5a,0x5b,0x5b,0xd1,0xd3,0xd3,0x83,0x9d,0x3b,0x77,0xc2, 0x68,0x34,0x66,0xcc,0xab,0x2a,0x2f,0xcb,0x72,0xca,0x78,0xd9,0xc0,0xd0,0x5e,0xb, 0x82,0x0,0xb3,0xd9,0x9c,0x3c,0x66,0xd4,0x5a,0x98,0xc3,0xe1,0xc8,0x68,0x5f,0x32, 0x20,0x2a,0xad,0xab,0x5d,0x7,0x5f,0xc0,0x7,0x4a,0x69,0x51,0x96,0x22,0x8,0x2, 0x22,0x91,0x8,0xfc,0x7e,0x3f,0x96,0x96,0x96,0xc0,0xb2,0x2c,0x7a,0x7b,0x7b,0x31, 0x38,0x38,0x88,0xea,0xea,0xea,0x8c,0x60,0xa8,0x75,0x5,0x15,0x84,0x42,0xca,0x67, 0xe3,0x9,0x82,0x0,0xbd,0x5e,0x8f,0x2d,0x5b,0xb6,0xe0,0xdc,0xb9,0x73,0x68,0x6f, 0x6f,0x7,0xa5,0x14,0x56,0xab,0x35,0xdd,0xfd,0x52,0x5,0x28,0xe,0x90,0xd4,0xc9, 0x3a,0x36,0x74,0xe0,0xf2,0xe4,0x65,0xd4,0x58,0x6b,0xc0,0x30,0x4c,0x46,0x8e,0x10, 0x8d,0x46,0x11,0xa,0x85,0xb0,0xbc,0xbc,0xc,0xbf,0xdf,0x8f,0xb6,0xb6,0x36,0xf4, 0xf5,0xf5,0xe1,0xf1,0xc7,0x1f,0x87,0x5e,0xaf,0xcf,0x1c,0x9d,0xc6,0x13,0x28,0xd5, 0x1d,0x4a,0x55,0x3e,0x17,0x2f,0x12,0x89,0xc0,0x66,0xb3,0xc1,0x6a,0xb5,0x22,0x1c, 0xe,0xc3,0x68,0x34,0xa2,0xa9,0xa9,0x49,0xf3,0xd0,0xca,0xb0,0x10,0x4a,0x53,0x27, 0xeb,0xef,0xe9,0xc7,0xa5,0xff,0xbe,0x84,0x56,0x47,0x2b,0x44,0x51,0x44,0x38,0x1c, 0xc6,0xfd,0xfb,0xf7,0xe1,0xf1,0x78,0x60,0x30,0x18,0xe0,0x74,0x3a,0xb1,0x69,0xd3, 0xa6,0xac,0x4b,0x22,0x80,0xa4,0x5,0x68,0x41,0x28,0x47,0xf9,0x6c,0x3c,0x41,0x10, 0x60,0x30,0x18,0x30,0x32,0x32,0x82,0x8b,0x17,0x2f,0xa2,0xaf,0xaf,0x2f,0xad,0x1d, 0x49,0xfe,0xc9,0x46,0x45,0xb9,0x8c,0x3a,0x20,0xc7,0x71,0x78,0xb8,0xf7,0x61,0xfc, 0x76,0xe2,0xb7,0x88,0x6,0xa3,0x68,0x6a,0x6a,0x82,0xcb,0xe5,0x42,0x7d,0x7d,0x7d, 0xc6,0x92,0xa8,0xf6,0x53,0x14,0x25,0x69,0x9,0xa5,0xc4,0x83,0x72,0x78,0xe1,0x70, 0x18,0xf3,0xf3,0xf3,0x70,0x3a,0x9d,0xe0,0x38,0x2e,0x65,0x55,0x4b,0xd0,0x2a,0x1, 0xc9,0x32,0xa9,0xd5,0x62,0x45,0x4f,0x57,0xf,0x82,0xc1,0x20,0x86,0x5d,0xc3,0x19, 0x5d,0xb4,0xb1,0x40,0x8d,0xec,0xc5,0x28,0x51,0x49,0xde,0xf4,0xf4,0x34,0xaa,0xaa, 0xaa,0x50,0x5d,0x5d,0x5d,0x30,0x88,0xa6,0x53,0x51,0xbb,0xdd,0xf4,0x49,0x9b,0x1d, 0xcd,0x90,0x64,0x9,0x53,0x1f,0x4d,0x1,0x88,0xbb,0x82,0x20,0x8,0x8,0x87,0xc3, 0x8,0x87,0xc3,0x88,0xc5,0x62,0x29,0xaf,0x2c,0xcb,0xd9,0xe4,0x95,0xca,0x9b,0x9b, 0x9b,0x43,0x34,0x1a,0x45,0x4b,0x4b,0x4b,0x52,0xde,0xd4,0x45,0x80,0x2,0x95,0x72, 0x19,0x2d,0xf5,0x75,0xf7,0xe1,0xfc,0xa5,0xf3,0xf0,0xde,0xf7,0xc2,0x35,0xe0,0xca, 0xd9,0xf6,0x41,0x59,0x5,0x0,0xb8,0xdd,0x6e,0x78,0xbd,0x5e,0xc,0xd,0xd,0x65, 0x95,0x39,0x1e,0xd7,0xf2,0xc7,0x90,0xbc,0x16,0x42,0x91,0x29,0x88,0x36,0xe,0x8c, 0x3c,0x32,0x82,0x7b,0x8b,0xf7,0x30,0x75,0x6d,0x6a,0xcd,0x9f,0x7c,0x21,0xde,0xe2, 0xe2,0x22,0x16,0x16,0x16,0xd0,0xdb,0xdb,0x9b,0x57,0xe6,0x42,0xb4,0x2a,0xb,0x51, 0xef,0x59,0x86,0xc5,0xb6,0x2d,0xdb,0xf0,0xcb,0x5f,0xfd,0x12,0x1c,0xc7,0xa1,0xf3, 0xa1,0xce,0x8c,0xf6,0xf,0xc2,0x62,0x96,0x97,0x97,0x71,0xe7,0xce,0x1d,0x74,0x75, 0x75,0x41,0xaf,0xd7,0x67,0x55,0x3e,0xa5,0x7f,0xb9,0x2e,0x93,0x4d,0x8,0xb5,0xce, 0x6c,0x32,0x63,0x64,0x78,0x4,0xe7,0x2f,0x9d,0x7,0x43,0x18,0xb4,0x35,0xb7,0x25, 0x97,0x5c,0xb5,0xf,0x21,0x24,0xa5,0x7f,0xfa,0x7d,0x39,0xc0,0x4,0x2,0x1,0xcc, 0xce,0xce,0xa2,0xb1,0xb1,0x11,0x35,0x35,0x35,0x79,0xfb,0xae,0x30,0x56,0x9,0x88, 0x3a,0x5e,0xa1,0x49,0x1c,0xf5,0xe,0xf4,0x3b,0xfb,0x31,0xf1,0xbf,0x13,0x60,0x59, 0x16,0xf5,0xb5,0xf5,0x39,0x95,0xa8,0x24,0x85,0x42,0x21,0xdc,0xbc,0x79,0x13,0x56, 0xab,0x15,0x1b,0x36,0x6c,0xc8,0x39,0x57,0x96,0x3c,0x24,0x27,0xad,0x3a,0xa8,0xa6, 0xd7,0x39,0x3b,0x9d,0xb8,0xef,0xbf,0x8f,0xf,0xaf,0x7c,0x88,0x4d,0x3,0x9b,0x50, 0x63,0x8f,0x3f,0xad,0x6c,0x9,0x9a,0xda,0x5f,0xcb,0xd3,0xde,0x17,0xc3,0x8b,0x46, 0xa3,0x98,0x99,0x99,0x81,0x4e,0xa7,0x83,0xd3,0xe9,0xcc,0x6b,0x49,0x69,0x33,0x3, 0xa0,0xe5,0xe7,0x21,0xb9,0x26,0xd1,0xd6,0x6d,0x1e,0xda,0x8c,0xf7,0x42,0xef,0xe1, 0xf2,0xd4,0x65,0xb8,0xfa,0x5d,0x30,0x1b,0xcd,0x19,0xed,0xd5,0x3e,0xd9,0xdc,0xaa, 0x18,0x1e,0x10,0xdf,0xb9,0xde,0xb9,0x73,0x7,0x0,0xe0,0x74,0x3a,0x33,0xf8,0xb9, 0xe4,0xd3,0x5c,0xaf,0x3e,0x86,0x14,0xca,0x2e,0xb5,0x75,0xc,0xc3,0x60,0x64,0x78, 0x4,0xef,0x5d,0x78,0xf,0x57,0xa6,0xaf,0xe0,0xe1,0xee,0x87,0x51,0xa5,0xaf,0x4a, 0x2a,0x95,0x2b,0x8e,0xe4,0x8b,0x39,0xe9,0xfd,0x64,0x59,0xc6,0xc2,0xc2,0x2,0x24, 0x49,0x42,0x67,0x67,0x27,0xaa,0xaa,0xaa,0x8a,0x96,0x4f,0x3b,0x57,0x2e,0x2a,0xb8, 0xfd,0x2f,0x16,0x7d,0x95,0x4c,0x46,0x13,0x36,0x6f,0xda,0x8c,0xb,0xbf,0xb9,0x80, 0xa9,0x9b,0x53,0x70,0xb6,0x3b,0xa1,0xd7,0xe9,0x73,0x82,0x91,0x4e,0xf9,0x78,0x8a, 0xa2,0x60,0x69,0x69,0x9,0x92,0x24,0xa1,0xbe,0xbe,0x1e,0xb5,0xb5,0xb5,0x79,0x65, 0xc9,0x3a,0x4e,0x81,0x70,0x56,0xb2,0x85,0x14,0x33,0x71,0xc3,0xba,0x6,0xc,0x38, 0x7,0x30,0xf9,0xd1,0x24,0xae,0xdf,0xbe,0x8e,0x8d,0xad,0x1b,0x21,0xc9,0x12,0x6e, 0xdf,0xbb,0x8d,0x98,0x10,0x2b,0x2c,0x74,0x16,0xd2,0xeb,0xf5,0xa8,0xb3,0xd4,0x41, 0x96,0x65,0x58,0x2c,0x96,0xe4,0xd6,0xbe,0x90,0x2c,0x19,0x75,0x44,0xf3,0x37,0xb, 0x15,0x88,0x21,0x2b,0x83,0x15,0x33,0xb9,0xf6,0xbe,0xf3,0xa1,0x4e,0xf8,0x83,0x7e, 0xdc,0x75,0xdf,0xc5,0xcc,0xc2,0xc,0x24,0x41,0x82,0x2,0x25,0xe3,0x44,0xac,0x58, 0x92,0x65,0x19,0x81,0x48,0x0,0x76,0xb3,0x1d,0xdd,0xdd,0xdd,0x25,0x3f,0xa4,0x62, 0xa9,0x80,0xcb,0x64,0xe,0x5e,0xa,0x30,0xae,0x3e,0x17,0xbc,0x3e,0x6f,0xfc,0x33, 0x9,0x42,0x31,0x3c,0x38,0x8c,0x1,0xe7,0x40,0x5e,0x50,0xd4,0x4d,0xa1,0x28,0x8a, 0x90,0x24,0x9,0x92,0x24,0x21,0x1a,0x8d,0xe2,0xea,0x8d,0xab,0x70,0x2f,0xb9,0xe1, 0x9,0x7a,0xb0,0xec,0x5b,0xce,0x58,0xda,0x8b,0x95,0x8d,0x94,0x65,0x21,0x25,0x4c, 0x94,0x5e,0xa7,0x28,0xa,0xa6,0xae,0x4f,0x41,0x10,0x4,0x58,0x2c,0x16,0x3c,0xb1, 0xed,0x9,0x54,0xdb,0xab,0x93,0x7c,0xf5,0x48,0x40,0x55,0x5a,0x2d,0xd9,0x2c,0x92, 0xe3,0x38,0xc,0xf6,0xe,0xa2,0xc6,0x5e,0x83,0x8f,0x66,0x3f,0xc2,0x95,0xe9,0x2b, 0xe8,0xef,0xea,0x47,0x53,0x43,0x53,0xc9,0xb2,0xa9,0xb1,0x35,0x97,0xae,0x5,0x0, 0x29,0x3d,0x7e,0x0,0x40,0x4c,0x88,0x61,0x62,0x6a,0x2,0xf7,0xfd,0xf7,0xd1,0xdb, 0xdd,0x8b,0xe1,0xc1,0x61,0xb0,0x2c,0xb,0x45,0x51,0x32,0x3e,0xc6,0x2b,0x56,0x11, 0x0,0x68,0x6d,0x6a,0x85,0xcd,0x6a,0xc3,0xe4,0xb5,0x49,0x5c,0xbd,0x71,0x15,0x82, 0x28,0x60,0x7d,0xf3,0xfa,0xa2,0x65,0x2b,0xc6,0x8d,0xa,0x64,0xaa,0xd9,0xe3,0x47, 0xbe,0xc9,0x83,0xa1,0x20,0x26,0xa6,0x26,0xa0,0x28,0xa,0x3e,0xf7,0xd8,0xe7,0xd0, 0x50,0xd7,0x0,0x20,0xfe,0xd2,0x29,0x10,0x8,0xa4,0x9c,0x9c,0x17,0x33,0x5e,0xfa, 0xbd,0xd5,0x6c,0xc5,0xe6,0xc1,0xcd,0x98,0x9e,0x99,0xc6,0xec,0xdc,0x2c,0x44,0x49, 0x44,0x47,0x5b,0x47,0xde,0xb1,0xb4,0x94,0x58,0x35,0x1f,0x4c,0x50,0x5d,0xf4,0x2c, 0x62,0xea,0xfa,0x14,0x5a,0x9a,0x5a,0x30,0xf2,0xa9,0x11,0xe8,0x74,0xba,0xe4,0x7e, 0x43,0xfd,0x78,0x37,0x9f,0xe0,0xc5,0x2,0xc3,0xb2,0x2c,0x6,0xba,0x7,0x30,0xef, 0x9e,0xc7,0xed,0x85,0xdb,0xf1,0x9c,0x64,0x43,0x67,0xc1,0x1c,0x63,0x65,0x8c,0xdc, 0xbc,0x82,0x79,0x48,0xba,0x50,0xb9,0x84,0xbe,0x35,0x7f,0xb,0x73,0xf7,0xe6,0xb0, 0xf5,0xd3,0x5b,0xd1,0xda,0xdc,0xa,0x0,0xc9,0x17,0xd2,0xf9,0x3e,0xf8,0x2f,0xa7, 0xae,0xb5,0xb1,0x15,0x36,0x8b,0xd,0xd7,0x66,0xaf,0xe1,0xda,0xec,0x35,0x74,0xb7, 0x77,0xaf,0x7a,0x15,0x53,0xa9,0xe8,0x13,0xb3,0x6c,0xf9,0x8,0xa5,0x14,0x92,0x2c, 0x61,0xf2,0xfa,0x24,0x22,0xd1,0x8,0x9e,0xfa,0xec,0x53,0x68,0x6d,0x6e,0x4d,0x5a, 0x85,0xd7,0xeb,0x4d,0x6,0xca,0x6c,0x7d,0x2b,0x51,0x67,0xb3,0xd8,0xe0,0xea,0x73, 0x41,0xa1,0xa,0xa6,0x67,0xa6,0x21,0x2b,0xf9,0xff,0x49,0x22,0x6e,0x45,0xab,0xdc, 0xcb,0x50,0x25,0x7f,0xec,0x88,0xc6,0xa2,0x98,0xba,0x31,0x5,0x67,0xa7,0x13,0xed, 0xeb,0xdb,0x41,0x8,0x81,0x28,0x8a,0xf0,0xf9,0x7c,0x79,0xcf,0x53,0x2b,0x51,0xa7, 0x25,0x1d,0xa7,0x43,0xef,0xc6,0x5e,0xdc,0xfd,0xdd,0x5d,0x5c,0xbd,0x79,0x15,0xce, 0xe,0x27,0x74,0x5c,0xce,0x97,0x73,0x0,0x40,0x72,0x65,0xc4,0x59,0x2d,0x84,0x10, 0xa2,0xa7,0x74,0x5,0xc5,0x6c,0x4f,0xc9,0x1f,0xf4,0x63,0x66,0x7e,0x6,0x3b,0x3e, 0xb3,0x3,0x1d,0x1b,0xe2,0x9f,0x20,0x4,0x83,0xc1,0xe4,0xeb,0x49,0x6d,0xbf,0x4a, 0x59,0x47,0x1,0xd,0xd1,0xd6,0xd4,0x86,0xb6,0xa6,0x36,0xdc,0xb8,0x73,0x23,0x23, 0x23,0x56,0xdb,0x24,0x2,0x8,0x1,0x60,0x21,0x84,0x64,0xbc,0x30,0xe2,0xd2,0x3a, 0x30,0x0,0xaa,0x0,0x54,0x51,0xa,0x42,0x35,0xcb,0xae,0x56,0xb0,0x45,0xcf,0x22, 0xaa,0xc,0x55,0xd8,0xf9,0x99,0x9d,0x60,0x18,0x6,0x92,0x24,0xc1,0xe7,0xf3,0x25, 0xf,0x96,0xd3,0xa9,0x52,0x96,0x50,0xc,0x55,0x5b,0xab,0x61,0xac,0x32,0x62,0xee, 0x77,0x73,0x68,0x69,0x68,0x81,0xc9,0x60,0x4a,0x6d,0x40,0x8,0x68,0xfc,0x80,0xc8, 0x4,0x80,0x23,0x84,0xb0,0x0,0x62,0x94,0x52,0x5,0xd0,0x0,0x92,0x0,0xc3,0x90, 0x28,0x55,0x0,0x25,0x6a,0xaa,0xaa,0x5,0xc5,0xfd,0xb1,0x1b,0x1d,0xf,0x75,0xa0, 0xda,0x16,0x4f,0xb2,0x78,0x9e,0x47,0x20,0x10,0x28,0x39,0xa7,0xc8,0x57,0x57,0x2e, 0x55,0xe9,0xab,0xd0,0xd9,0xd6,0x9,0xb7,0xc7,0xd,0x45,0x51,0x60,0x31,0x59,0xd2, 0x5a,0x50,0x6,0x71,0x40,0x58,0xc4,0xbd,0x84,0x10,0x42,0x22,0x94,0x52,0xaa,0xb5, 0x10,0xbd,0xa6,0x18,0xa8,0x6,0xc,0x35,0x78,0x46,0x85,0x28,0x86,0xfa,0x87,0xc0, 0xb2,0x2c,0x64,0x59,0x86,0xcf,0xe7,0x4b,0x26,0x59,0xb9,0x94,0x7b,0x50,0x20,0xa4, 0x13,0x21,0x4,0xcd,0xf5,0xcd,0xf0,0x87,0xfc,0x8,0x86,0x83,0xb0,0x9a,0xe2,0x1f, 0xd1,0x90,0x95,0x14,0xc4,0x80,0xb8,0xeb,0x50,0x0,0x4a,0xa2,0x44,0xb9,0x44,0x67, 0x6,0x71,0x6b,0xd1,0x21,0xe,0x88,0xe,0xa0,0x44,0x15,0x5b,0x10,0x5,0xc4,0xc4, 0x18,0xd6,0x55,0xaf,0x83,0xcf,0xe7,0x8b,0xd7,0xa5,0xfd,0xb7,0x83,0x96,0x3e,0x29, 0x10,0xb2,0x91,0xdd,0x62,0x87,0x20,0xa,0x88,0xc4,0x22,0x30,0x99,0x92,0xee,0x43, 0x10,0xf,0xd,0xa,0x0,0x39,0x51,0x24,0x42,0x8,0xa3,0x5a,0x88,0x6a,0x3a,0x6c, 0xa2,0x24,0x2d,0x47,0x7d,0xfd,0x67,0x31,0x5a,0x72,0xa6,0xdc,0xa5,0xd4,0x7d,0x12, 0xa4,0x9e,0xc7,0x50,0x4a,0x1,0x2,0xf5,0xd4,0x9d,0x4b,0x14,0x55,0x67,0x6,0x0, 0xa3,0x75,0x19,0xa2,0xf9,0x25,0x0,0x8,0xa5,0xa,0x58,0x96,0x85,0xa3,0xc1,0x91, 0x11,0x5c,0xb3,0x25,0x6b,0xe5,0xf2,0xd6,0x9a,0xd2,0x32,0x59,0xa2,0x29,0xea,0x7d, 0xd2,0x12,0xb4,0x7e,0xa4,0x16,0xba,0x70,0x77,0x1e,0x54,0x59,0x79,0x5d,0x15,0xbf, 0xa6,0x9a,0x2e,0x48,0xa4,0xf7,0xea,0x65,0xba,0xb,0xd1,0x94,0x1f,0x85,0x2a,0x29, 0x2c,0x9a,0xb5,0x59,0x3a,0x38,0xb4,0xc4,0xf6,0x48,0xa,0x44,0xd3,0x1a,0x53,0x0, 0xb3,0xb3,0x33,0x48,0xbc,0x86,0x48,0xd7,0x57,0x1,0x90,0xc,0xaa,0xb2,0xa6,0x48, 0x0,0xc4,0x68,0x34,0x76,0xf9,0xea,0xd4,0xff,0xec,0x98,0x9a,0xbc,0x2,0x4a,0x29, 0x89,0x9b,0x5c,0x22,0x9d,0xd7,0xe4,0x8,0xc9,0x7a,0xed,0x3d,0x34,0x39,0x44,0x3a, 0x2f,0x85,0xaf,0xc9,0x71,0xd2,0xc7,0xcb,0xd2,0x26,0x39,0x5e,0x12,0xf8,0xdc,0x72, 0x20,0xc7,0x3c,0x94,0x52,0x2a,0xcb,0xf2,0x24,0x0,0x1,0xf1,0xff,0x1a,0x97,0xb4, 0xfa,0x27,0x3f,0xcb,0x24,0x84,0xe8,0x0,0x18,0x91,0xb2,0xf4,0xa2,0xa,0xc9,0x20, 0xb,0x36,0xd1,0xa9,0xb8,0x1d,0xd4,0xef,0xf,0x29,0x88,0xeb,0xa0,0x6,0x50,0x11, 0x71,0x30,0x62,0x89,0x12,0x5,0x10,0x1,0xc0,0x53,0x4a,0x95,0x64,0xc,0xa1,0x94, 0x8a,0x64,0xc5,0xc9,0x68,0xda,0x0,0x6a,0xf0,0xf9,0x43,0x4,0x84,0x22,0xae,0x38, 0x85,0xc6,0x3,0x90,0xa,0xa,0x9f,0x91,0x98,0x1,0x0,0xa5,0x54,0x20,0x84,0x64, 0x3,0x83,0x43,0x3c,0xa,0x53,0x64,0x75,0xda,0xdf,0x6b,0x22,0x58,0x91,0x5d,0x41, 0x1c,0x10,0x15,0x94,0x28,0x80,0x8,0xd5,0x4,0xbe,0xac,0x5f,0x32,0x27,0xc,0x45, 0x87,0xb8,0xcb,0x68,0x97,0xa5,0xff,0xf,0x80,0xc8,0x48,0x58,0x87,0x6a,0x15,0x29, 0x8d,0xb,0x2d,0x79,0x9,0x37,0x4a,0xa6,0xb8,0xf8,0xc3,0x4,0x44,0x7d,0x90,0x32, 0x0,0x4a,0xf3,0x28,0xfd,0x7f,0xf2,0x6,0x74,0xf7,0xf5,0x16,0xd3,0x90,0x0,0x0, 0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, // /home/newdrone18/workspace/qtbook-master/20.02.27_Qt_Programming_Korean_v1.4_Example_Source_code/Ch03/01_BasicWidget/01_QCheckBox/resources/users.png 0x0,0x0,0x14,0xe9, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x40,0x0,0x0,0x0,0x40,0x8,0x6,0x0,0x0,0x0,0xaa,0x69,0x71,0xde, 0x0,0x0,0x0,0x4,0x73,0x42,0x49,0x54,0x8,0x8,0x8,0x8,0x7c,0x8,0x64,0x88, 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x12,0x74,0x0,0x0,0x12,0x74, 0x1,0xde,0x66,0x1f,0x78,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66, 0x74,0x77,0x61,0x72,0x65,0x0,0x77,0x77,0x77,0x2e,0x69,0x6e,0x6b,0x73,0x63,0x61, 0x70,0x65,0x2e,0x6f,0x72,0x67,0x9b,0xee,0x3c,0x1a,0x0,0x0,0x14,0x66,0x49,0x44, 0x41,0x54,0x78,0x9c,0xed,0x9b,0x79,0x8c,0x5d,0xd7,0x7d,0xdf,0x3f,0xe7,0xdc,0xfd, 0xad,0x43,0xce,0xc,0x87,0xe4,0xc,0x49,0x89,0x22,0x23,0xc9,0x92,0x4c,0xd9,0x92, 0xb7,0x3a,0x96,0x23,0x19,0x56,0x14,0x39,0x8d,0x81,0xc2,0xcb,0x3f,0xdd,0xd2,0xa2, 0x29,0x10,0x20,0x89,0xb3,0x0,0x6d,0xd1,0xa6,0xaa,0x8a,0x2,0xe,0xdc,0x2d,0x70, 0x11,0x24,0x56,0x5b,0xa0,0x9,0xfc,0x47,0x92,0xc2,0x68,0x5a,0x24,0x8e,0x93,0xd4, 0x49,0xbc,0xc0,0x92,0x2a,0xd9,0x6e,0x24,0x55,0x9b,0x25,0x52,0x5c,0x67,0xe7,0x9b, 0x99,0xf7,0xde,0x7d,0x77,0x39,0xe7,0xfc,0xfa,0xc7,0xbd,0xef,0xcd,0x90,0xa2,0x14, 0xe,0x45,0x5a,0x6,0x92,0x3,0xfc,0x70,0x2f,0xde,0xbb,0xcb,0xf9,0x7e,0x7f,0xeb, 0xf9,0xdd,0x7b,0x95,0x88,0xf0,0x57,0x79,0xe8,0xb7,0x7b,0x2,0x6f,0xf7,0xf8,0x6b, 0x2,0x6e,0xe4,0xc5,0x7f,0xf1,0x47,0x1b,0x87,0x7e,0xf6,0xe1,0xc6,0xc2,0x8d,0xbc, 0xc7,0x5b,0x1d,0xea,0x7a,0xc5,0x80,0x47,0x1f,0x55,0xba,0xf7,0xad,0xc6,0xc3,0xc0, 0xfb,0x94,0x72,0xef,0x3,0xf5,0x1e,0x81,0xa9,0xea,0x2e,0xf4,0x10,0xf9,0x3f,0xa0, 0x9f,0x54,0xc2,0x13,0xbf,0xfa,0xc7,0xe9,0x57,0xe4,0x7,0x24,0xf8,0x5c,0x17,0x2, 0x7e,0xe1,0xa1,0xf8,0x98,0x43,0xff,0x16,0xf0,0x81,0x38,0xa,0x8a,0x4e,0xbb,0x19, 0x34,0x1b,0xd,0xd5,0x6a,0x36,0x70,0x38,0x6,0xfd,0x94,0xc1,0x20,0x95,0xc1,0x30, 0x2d,0xf3,0xd2,0x84,0xa,0xbe,0x8e,0x92,0xbf,0xf7,0x1f,0xff,0x70,0xf4,0xda,0x5b, 0xbe,0xf9,0x5b,0x1c,0x6f,0x89,0x0,0xa5,0x94,0xfa,0xb9,0x87,0x92,0x9f,0x51,0xc2, 0xe7,0x92,0x38,0xf6,0xee,0xb8,0xed,0xa8,0xdf,0xe9,0xb4,0x51,0x4a,0x21,0xce,0x62, 0xca,0x1c,0x27,0xe,0x94,0x8f,0x13,0x30,0xc6,0xb2,0xd9,0xdf,0xe2,0xd4,0x6b,0x8b, 0xa6,0x28,0x8b,0xd2,0x89,0xfa,0x85,0xcf,0xff,0x51,0xfa,0x85,0xb7,0xd3,0x1a,0xae, 0x99,0x80,0x47,0x1f,0x55,0xba,0xf7,0x78,0xfc,0x65,0x50,0xf,0x1e,0x9e,0xdf,0xaf, 0x8e,0xdf,0x72,0x4,0x4f,0x83,0x2d,0x6,0xe0,0x4a,0xc4,0x39,0x44,0x4,0xe7,0x1c, 0xc6,0x58,0x8c,0x13,0x1c,0x1a,0xbc,0x4,0xeb,0xe0,0xfc,0xe2,0x32,0xcb,0xab,0x3d, 0x34,0x7c,0xe9,0x3f,0x7c,0x25,0xfd,0xc4,0x75,0xc6,0x75,0xd5,0xe3,0x9a,0x83,0xe0, 0xc6,0xe3,0xc9,0xcf,0x82,0x7a,0xf0,0x5d,0x77,0xdd,0xaa,0x6e,0xbf,0xf5,0x28,0x1e, 0x25,0xe4,0x9b,0x84,0x5a,0x88,0xc2,0x90,0x24,0x8e,0x89,0xe3,0x98,0x28,0x8a,0x88, 0xa2,0x88,0x30,0xf0,0xf0,0xc4,0x60,0xb2,0x1e,0x98,0x11,0x87,0xe6,0xf,0x70,0xfc, 0xe8,0x21,0x9c,0xf0,0xb7,0x7e,0xfe,0x47,0x93,0x7f,0x70,0x3d,0x41,0xed,0x66,0x5c, 0x93,0x5,0xfc,0xdc,0x83,0xf1,0x71,0xad,0xf5,0x73,0x87,0x17,0xf6,0x87,0xb7,0x1d, 0x3f,0x8a,0xcd,0xb7,0xf0,0xb5,0x23,0xf0,0x7d,0x7c,0xdf,0x43,0xeb,0x8a,0x57,0x71, 0x82,0xb1,0x16,0x63,0xc,0x45,0x59,0x92,0x17,0x5,0x45,0x5e,0x92,0x15,0x39,0xd6, 0x69,0xe2,0xf6,0xc,0x67,0xcf,0x2f,0xb2,0xbc,0xda,0x4b,0xb1,0xdc,0xfe,0xab,0x7f, 0x92,0x9e,0xb9,0xde,0x0,0xff,0xb2,0xe1,0xef,0xf6,0x84,0x47,0x1f,0x55,0x5a,0x7b, 0xc9,0x17,0x1b,0x8d,0x58,0x1d,0x3b,0x7a,0x4,0x31,0x29,0xbe,0x76,0x44,0x61,0x40, 0x10,0x4,0x4,0xbe,0x8f,0xe7,0x79,0x0,0xb5,0xf9,0x1b,0x8a,0x31,0x21,0xb5,0x4b, 0xf8,0xd6,0xc7,0x98,0x9c,0x22,0xeb,0x33,0x7f,0x60,0x8e,0x8d,0xfe,0x30,0x28,0xb2, 0xe2,0x37,0x95,0x52,0xf,0x7c,0xbf,0xe3,0xc1,0xae,0x5d,0xe0,0xe2,0x13,0xc9,0xc7, 0x45,0x78,0xcf,0xed,0xc7,0x8e,0x6,0x5a,0x9,0x62,0x32,0x7c,0xdf,0x23,0x8,0x2, 0xa2,0x30,0x24,0x8a,0x22,0xe2,0xb8,0x96,0x28,0x22,0xc,0x43,0xc2,0xc0,0xc7,0xf, 0x7c,0x7c,0xcf,0xab,0x45,0xe3,0x79,0x9a,0x3c,0xdd,0x4,0x71,0x1c,0x3d,0x7c,0x20, 0x10,0xf8,0x91,0xcf,0x3c,0xd8,0x78,0xe8,0x46,0x80,0x7c,0xb3,0xb1,0x6b,0x2,0x94, 0xe3,0x3,0x49,0x12,0x96,0x9d,0x4e,0xb,0x9b,0xf5,0xd1,0x5a,0x4d,0x80,0x5,0x81, 0x4f,0x14,0x6,0xc4,0x51,0x44,0x12,0xc7,0x84,0x51,0x48,0x18,0x4,0xf8,0x7e,0x5, 0xde,0xf3,0x3c,0xb4,0xae,0x5c,0x44,0x6b,0x8d,0x2,0xf2,0x74,0x83,0x66,0xa3,0x49, 0x14,0x6,0x5,0x8a,0xf,0xdc,0x0,0x8c,0x6f,0x3a,0x76,0xed,0x2,0x78,0xbc,0xaf, 0xdd,0x6c,0x86,0x4a,0x81,0x75,0x25,0x5a,0x85,0x28,0x55,0x1,0xf2,0xb4,0x87,0xef, 0xfb,0x44,0x61,0x88,0xd6,0xa,0x0,0x6b,0x4c,0x5,0x58,0x69,0x94,0x52,0xdb,0x82, 0x42,0x1,0xb6,0xcc,0x1,0x68,0x25,0x49,0xb0,0x5e,0x6c,0xbe,0x17,0xe0,0xf1,0x47, 0xbb,0x7b,0xb,0xe7,0xdf,0xa3,0x44,0xee,0x11,0xe4,0x7d,0x5a,0xe9,0x77,0x20,0xee, 0x59,0x11,0xf5,0x94,0xd2,0xee,0x69,0x55,0xf0,0x9d,0x1f,0xfe,0xec,0x46,0xef,0xfb, 0x4e,0x40,0x95,0xf7,0xe3,0x77,0xb7,0x5b,0x4d,0x9c,0x35,0x70,0x99,0xbb,0xa,0x32, 0xd9,0x56,0x7f,0x8d,0x7f,0xd9,0xb9,0xb7,0xf3,0x78,0x10,0x71,0x88,0xb3,0x34,0x5a, 0xb1,0xca,0x8b,0xfe,0xfb,0xbf,0xfe,0xc8,0xf4,0xd7,0x10,0xef,0x3e,0x85,0xe0,0x7, 0x71,0x11,0xb7,0xbb,0x41,0x14,0x26,0xaa,0x18,0xd,0x8e,0x8d,0xd2,0xad,0x1f,0x37, 0x65,0x11,0x49,0x0,0xdf,0x78,0x64,0xfa,0xab,0xa5,0x75,0xff,0xf0,0x81,0x7f,0xd3, 0x3b,0x7d,0xd,0xb8,0xb7,0x31,0xed,0x26,0xe6,0xd4,0x15,0xdf,0xf7,0xde,0x79,0xfb, 0x31,0xba,0xed,0x8,0x6d,0x47,0x13,0x5f,0x1f,0x6f,0xa3,0x30,0x24,0x8,0x7c,0x94, 0x82,0xd2,0x58,0x8a,0xa2,0x20,0xcb,0xb,0xb2,0x2c,0x27,0xcb,0x73,0xb2,0x2c,0x63, 0x94,0xe5,0x64,0x59,0xce,0x28,0xcb,0x0,0x48,0xda,0xd3,0x24,0x6a,0xc0,0x5c,0x63, 0x40,0xd2,0x68,0x97,0xb3,0x87,0xef,0xc,0xe2,0xd6,0xc,0x5e,0x10,0x55,0x44,0x89, 0x1,0x71,0x60,0x4b,0x4c,0xde,0x27,0x1f,0x5c,0x64,0x65,0xf1,0x54,0x69,0x8a,0xac, 0x14,0xe1,0xe7,0xef,0xfb,0xd7,0xeb,0x8f,0x5d,0x2b,0x1,0xbb,0xb2,0x0,0xeb,0x50, 0x4a,0x83,0xa3,0x8a,0xe6,0xe2,0x2c,0xd6,0x56,0x62,0x8c,0xa1,0xac,0xa3,0xbd,0xb5, 0x16,0x14,0x58,0xeb,0x28,0xcb,0x12,0x63,0xc,0xd6,0x9a,0xfa,0x58,0x87,0x73,0x95, 0x0,0xf8,0x5a,0x98,0x4f,0x2e,0x12,0x79,0x25,0x33,0xf3,0xb7,0x31,0x7d,0xe8,0xae, 0x0,0x5,0x98,0xc,0x29,0xfa,0x88,0xcd,0x70,0xa6,0x4,0x4,0x5,0x28,0x14,0x49, 0x67,0x96,0xc3,0xad,0x3d,0x41,0x6f,0xf9,0xb5,0xa0,0xb7,0x7a,0xfe,0x37,0xbe,0xf1, 0x2f,0xa7,0x3f,0xad,0x4a,0xfb,0x89,0x6b,0x71,0x8b,0x5d,0x5,0xc1,0xcf,0xff,0x49, 0xfe,0xa,0x4a,0x86,0x83,0x41,0xa,0xca,0xc7,0x1a,0x8b,0x31,0x96,0xd2,0x18,0xca, 0x3a,0xcf,0xe7,0x79,0xa5,0xd9,0x51,0xad,0xf1,0xbc,0x28,0x28,0x8a,0x92,0xb2,0x34, 0x18,0x63,0x30,0x35,0x61,0xd6,0x59,0x0,0x16,0xa6,0x1c,0x8d,0x58,0x73,0xf3,0x5d, 0xf7,0x33,0x73,0xf3,0x3d,0x20,0x16,0x97,0x6d,0x21,0xce,0x82,0xe,0x50,0x41,0xb, 0x1d,0x75,0x50,0x7e,0x82,0x28,0x8d,0xd8,0xc,0x3b,0x5c,0x41,0x6c,0xc6,0xde,0x3, 0xc7,0x58,0x38,0x76,0x42,0x69,0xdf,0xbb,0x4f,0x2,0xfd,0x85,0xdd,0x82,0xdf,0x35, 0x1,0x22,0x22,0xa,0xf5,0x9d,0xc1,0x30,0xc5,0xa1,0x31,0xb5,0x86,0x8b,0xa2,0x24, 0x2f,0x4a,0xf2,0xbc,0xa8,0xcc,0xbc,0x36,0xf5,0x2c,0xcb,0xc9,0xf3,0xa2,0x22,0xa1, 0xdc,0x41,0x42,0x4d,0xdc,0x9e,0x86,0xa3,0x19,0x3b,0xe6,0x8f,0xbf,0x97,0xa8,0xb3, 0x1f,0x97,0x6d,0x20,0xb6,0x44,0x47,0x6d,0x74,0xd4,0xa9,0x24,0xec,0xa0,0xc3,0x76, 0x25,0x41,0x13,0x1d,0x34,0x50,0x41,0x82,0xcb,0xfb,0x98,0xfe,0x79,0xa2,0xb8,0xc9, 0xdc,0xc2,0x6d,0xbe,0xc0,0x27,0xbf,0xfe,0xc8,0xf4,0xa7,0x6f,0x28,0x1,0x0,0xe2, 0x78,0x62,0x90,0xa6,0x85,0x31,0x6,0x2b,0x9a,0xa2,0x2c,0x29,0x8a,0x62,0x2,0x7e, 0x94,0x5d,0x6a,0x1,0x59,0xbe,0x83,0x84,0xa2,0xac,0x88,0x30,0x25,0x81,0x27,0xec, 0xef,0x38,0xf6,0xce,0x1d,0xa5,0xb1,0xe7,0x10,0x2e,0xdf,0x2,0xe5,0xa1,0xc3,0x66, 0x5,0x36,0xea,0xee,0x90,0x36,0x3a,0x6c,0xa1,0xc3,0x26,0xca,0x6f,0xa0,0xfc,0x18, 0xe5,0xc7,0x88,0x58,0xcc,0x60,0x91,0x46,0x67,0x9a,0xa9,0xbd,0x73,0xa2,0x84,0xc7, 0xbe,0xf1,0xcf,0x67,0xf,0xdc,0x50,0x2,0x94,0xe6,0x89,0x2c,0x2b,0x83,0x34,0x4d, 0x51,0x41,0xa3,0xd6,0x7e,0x65,0xfa,0xe3,0x60,0x57,0x5,0xb9,0x8c,0x51,0x96,0xd5, 0x4,0xd4,0x24,0x94,0x15,0x9,0xd6,0x3a,0xe,0x74,0x1d,0x61,0x94,0x30,0x73,0xe4, 0x4,0x52,0xa6,0x80,0xa0,0x83,0x4,0x15,0x34,0x6b,0xb0,0x63,0x2b,0xd8,0xd6,0xbe, 0xf2,0x93,0xa,0xbc,0x17,0xa1,0xbc,0x10,0xa5,0x3,0x9c,0x19,0xe1,0xf2,0xd,0xa6, 0xf,0x1c,0x53,0x7e,0x18,0x26,0xce,0x33,0x9f,0xbf,0xa1,0x4,0x9c,0x6f,0x8f,0xfe, 0xa7,0x13,0x9e,0x39,0x75,0xe6,0x82,0x41,0x79,0xe0,0x27,0xb5,0xf6,0x8b,0x89,0xd9, 0x6f,0x93,0x90,0x4f,0xa2,0x7f,0x9e,0x57,0x56,0x62,0x6d,0xe5,0xfb,0xad,0xc8,0x31, 0x33,0x7f,0x1c,0xa5,0x7c,0x5c,0xd9,0x47,0xe9,0x10,0xe5,0x45,0x68,0x3f,0x46,0x5, 0xd,0x74,0xd8,0xc6,0x8b,0xba,0x95,0xb,0x8c,0xc1,0x7b,0x71,0x5,0xdc,0xb,0x50, 0xda,0xaf,0x44,0xf9,0x98,0xc1,0x12,0x4a,0x9,0x53,0xd3,0x7,0x3,0x8d,0xde,0x55, 0x35,0xb9,0x6b,0x2,0x7e,0xf7,0x77,0xc5,0xae,0xf4,0xcc,0x3f,0x4a,0x47,0xb9,0x5e, 0x5c,0x5a,0x21,0x88,0x5b,0x58,0xf4,0xc4,0xdc,0x47,0x79,0x56,0xbb,0x40,0xb6,0x4d, 0x48,0xed,0x2,0xe3,0xc8,0x1f,0xfb,0x55,0x44,0x8f,0x9b,0x7b,0x10,0x93,0x55,0xd3, 0xd0,0x1e,0x68,0x1f,0x74,0x88,0xf6,0xe2,0xca,0xdf,0xc3,0xe,0x3a,0x6c,0xd5,0x5a, 0xdf,0x9,0xda,0x3,0xe5,0x81,0xd2,0x95,0x88,0xc5,0x95,0x43,0xe2,0x66,0x7,0x41, 0x5a,0x7f,0xfa,0xcb,0x53,0xb7,0x5c,0x2d,0x9e,0x5d,0x57,0x82,0x1f,0xfd,0xa8,0xea, 0xe6,0x6d,0xff,0x5f,0x14,0xa5,0x55,0x2c,0xaf,0xd3,0x69,0x37,0x69,0x75,0x66,0x29, 0x46,0x7d,0xf2,0xd1,0x16,0x88,0x79,0xf3,0xb,0x28,0x45,0xbb,0x15,0xa3,0xd4,0x80, 0x30,0x69,0x21,0x36,0x1f,0xff,0x1,0x54,0x55,0x22,0x4a,0x81,0xf6,0x50,0x7e,0xc, 0xa5,0xdb,0x6,0xaa,0xd4,0x8e,0x63,0xab,0x6b,0x8d,0x77,0xc5,0x64,0x84,0xc9,0xc, 0xa,0xc4,0xd7,0xde,0xbd,0xc0,0xab,0x57,0x83,0x67,0x57,0x16,0xf0,0xc0,0x43,0xe1, 0x9,0xeb,0x79,0xcf,0xf9,0xa1,0x7a,0xb8,0x7d,0x6c,0xaf,0x52,0xad,0x6,0x2f,0xbe, 0x7a,0x86,0xc5,0xc5,0x55,0x82,0xb8,0x4d,0xb3,0x3b,0x87,0x1f,0xc4,0x55,0xb1,0xf0, 0x3a,0xdc,0x1a,0x3f,0x88,0x69,0x76,0xe7,0x48,0x42,0x45,0x18,0x37,0x51,0xca,0x43, 0xca,0x11,0x20,0x55,0xa1,0x53,0x57,0x85,0xe2,0xc,0x62,0x32,0x5c,0xbe,0x89,0x33, 0x23,0xb0,0x25,0x38,0x3,0x62,0xab,0x63,0xc4,0xd5,0xe7,0xc8,0xa4,0x1a,0x15,0x33, 0x42,0x69,0x9f,0x30,0x6a,0x94,0x82,0xdc,0x73,0xb5,0x98,0xae,0xda,0x2,0x1e,0x78, 0x28,0x3c,0x1,0xf2,0xf5,0xb8,0xa1,0x9b,0xef,0xb8,0xe3,0xb0,0xd7,0x48,0xf6,0xb1, 0x9c,0x2c,0x92,0x9d,0x19,0x22,0xcb,0x6b,0x5c,0xdc,0xea,0x73,0xf4,0xc8,0x3c,0x49, 0x67,0x16,0x0,0x67,0xd,0xd6,0x54,0xda,0xf5,0xfc,0x8,0xed,0x55,0xb7,0x1a,0xa5, 0x23,0xd2,0x72,0x8b,0x70,0xef,0x2c,0x22,0x16,0x67,0x72,0xb4,0xf6,0x11,0x57,0x22, 0xb6,0x40,0x6c,0x8e,0x94,0x1e,0x4e,0x4,0xa5,0x7d,0x44,0x2c,0x62,0x72,0xc4,0x64, 0xd5,0xff,0xce,0x54,0x64,0x8c,0x45,0xaa,0x98,0x22,0xb6,0x4,0x20,0x8,0x43,0x3f, 0xcb,0xd3,0x43,0xd7,0x95,0x80,0xf,0x7f,0x34,0xba,0xcb,0xf3,0xe4,0xcf,0x93,0x86, 0xd7,0xb8,0xfb,0xdd,0xc7,0xbd,0x56,0x73,0x8a,0x95,0xb5,0xd7,0x48,0xb3,0x35,0xf2, 0x8e,0x90,0x6,0xc2,0xec,0x30,0xe7,0xf9,0x17,0x4f,0x12,0xc6,0x21,0xed,0x46,0x4c, 0x23,0x49,0x68,0x34,0x63,0x0,0xd2,0xad,0x4d,0xd2,0xd1,0x88,0x7e,0x9a,0x91,0x67, 0x5,0xb7,0xdf,0x1c,0x32,0x4c,0xfb,0x15,0x18,0xad,0xb7,0x81,0xdb,0x0,0x31,0x1e, 0xe,0x41,0x39,0x53,0xfb,0xb7,0x20,0xae,0x40,0xcc,0x8,0x67,0xb2,0x8a,0x8,0x57, 0x20,0xb6,0xac,0x2c,0xc5,0x55,0x2e,0xa7,0xfc,0xea,0x5e,0xf9,0x28,0x35,0xc0,0xb3, 0xd7,0x8d,0x80,0xfb,0xef,0x57,0x53,0x5e,0xe4,0xff,0x71,0xab,0x19,0xb6,0xee,0xbe, 0xe7,0x76,0x3f,0x8a,0x43,0x96,0x56,0x5e,0x22,0x2f,0x6,0x84,0x1,0x20,0x8a,0x2, 0x61,0xd1,0x73,0xcc,0xb7,0xda,0x94,0x43,0x4b,0x9a,0xa6,0x78,0xbd,0xfe,0xc4,0x3c, 0x9d,0x82,0x32,0xf0,0x50,0xcd,0x0,0xe6,0x5a,0x6c,0xcc,0x7a,0x38,0x93,0x61,0x8b, 0xb4,0x6a,0xa0,0x9a,0xc,0xd1,0x3e,0xa2,0x34,0x4e,0x40,0x39,0x83,0xd2,0x79,0x45, 0x0,0xae,0x76,0x89,0xbc,0x26,0x61,0x54,0x5b,0x43,0x5e,0xc5,0xf,0x71,0x13,0x2, 0x9c,0xc9,0x28,0x4d,0x11,0x6a,0xa5,0xbe,0x7d,0xdd,0x8,0x50,0x51,0xf0,0x1b,0x4a, 0x33,0x7d,0xe7,0x89,0x5b,0x7c,0x3f,0xf0,0x38,0xbf,0xf8,0x3c,0xd6,0x16,0x68,0xd, 0x51,0xac,0x50,0x4a,0x50,0x4a,0xa1,0xb5,0x60,0x3a,0xd0,0x38,0xd0,0x22,0xcf,0x1d, 0xa7,0x4f,0x5e,0x84,0xdc,0x22,0x2,0x5,0xe0,0xfb,0x8e,0x9b,0x8e,0x74,0x49,0x1a, 0x1e,0xeb,0x59,0xe,0x3e,0xe4,0x69,0x8f,0x38,0x69,0x57,0xc0,0x94,0x6,0x4,0x25, 0xe,0xe5,0xa,0x94,0xe,0xaa,0x20,0x27,0x52,0x11,0x30,0x71,0x8f,0xf4,0x12,0x12, 0x26,0xf3,0xf4,0x13,0xb2,0xd1,0x0,0x0,0xab,0xcb,0xeb,0x43,0xc0,0x3,0xf,0xf9, 0x1f,0x17,0x51,0x9f,0x3e,0x7a,0xcb,0xc,0xad,0xe6,0x14,0x4b,0xab,0x2f,0x63,0x4c, 0x3e,0x59,0xeb,0x3,0x44,0x49,0x5,0xde,0xf3,0x15,0x79,0x3e,0x62,0x66,0xae,0x49, 0x91,0xe7,0x44,0xb1,0xc3,0x6,0xa,0xe7,0x84,0x6,0x55,0xb4,0x2e,0x8b,0x8c,0xe9, 0x7d,0x6d,0xce,0xad,0xc,0x29,0xf6,0xf8,0x64,0x83,0x4d,0x92,0xe6,0x5e,0xc4,0x95, 0x50,0xe,0x71,0xe2,0x6a,0xed,0x57,0x29,0x6f,0xe2,0x2,0x62,0x6b,0x2,0x2a,0x57, 0xa8,0x2c,0x21,0xbd,0x44,0xfb,0x3a,0x6c,0x91,0xad,0x2f,0x3,0x6a,0xe9,0x47,0x1e, 0xd9,0x5a,0xbb,0x2e,0x4,0x80,0x7a,0xb4,0xd5,0xf1,0xdd,0xc2,0xc2,0x61,0x3d,0x48, 0x2f,0x32,0xca,0x36,0xc7,0x4a,0xd9,0xce,0x48,0x2,0x61,0xac,0xf0,0x2d,0x94,0x85, 0x65,0x73,0x63,0x13,0xcf,0xd3,0xc4,0x31,0x38,0x1,0x11,0x5,0xf5,0xf1,0x5a,0x1b, 0xfa,0xbd,0x1,0x9e,0x6f,0x79,0xb9,0x54,0x4,0x2b,0x67,0x69,0x4f,0xcd,0xe1,0x45, 0x53,0x98,0x74,0xb9,0x2,0x6f,0xb,0x94,0x17,0x80,0xf2,0xaa,0x94,0x28,0x52,0xf7, 0xc,0x4a,0xb0,0x5,0xce,0x56,0x71,0x0,0x37,0x4e,0xb7,0xa,0xbf,0x75,0x90,0x32, 0x1f,0xd2,0x5b,0x5f,0x74,0x69,0xe1,0xfe,0xcb,0xd5,0x82,0x87,0x37,0x49,0x83,0xf, 0x3c,0x18,0x7c,0x44,0x84,0x13,0x37,0xdd,0x34,0xaf,0xb5,0xf6,0x59,0xbb,0x78,0x66, 0x47,0xff,0xa3,0x6a,0x78,0x48,0x85,0x1f,0x4,0x3c,0xf,0x92,0x86,0xc2,0x99,0x9c, 0xb2,0x18,0x91,0x34,0x14,0x71,0xa2,0x48,0x12,0x45,0xa3,0xa9,0x68,0xb6,0x14,0x8a, 0x92,0x6c,0x34,0xc4,0xf3,0xe1,0xd9,0xcc,0xb0,0x55,0x3a,0x2e,0x9c,0x79,0x1,0x15, 0x24,0x68,0xbf,0x81,0x2b,0xfa,0xb8,0x62,0xb,0x97,0x6f,0x55,0x29,0x30,0xdf,0xc4, 0x16,0x5b,0xb8,0x62,0xb3,0xfa,0xbd,0xe8,0x23,0xc5,0x60,0x7,0x78,0xf0,0x1a,0x33, 0x28,0x3f,0x64,0xf1,0xcc,0x8b,0x36,0x2f,0xe5,0xe5,0x7f,0xf5,0xa5,0x8d,0x7f,0x7b, 0x5d,0x8,0x10,0xe4,0x13,0x51,0xec,0x95,0x33,0xb3,0xfb,0xe9,0xf5,0xce,0x63,0x4d, 0x95,0x66,0x44,0x5e,0x2f,0x6e,0x2c,0xe,0xb4,0xaa,0xc8,0x88,0x62,0x45,0xa3,0xa1, 0x48,0x9a,0x8a,0x28,0x51,0x4,0x61,0x15,0x2f,0xea,0x8b,0x93,0xb9,0x84,0xc7,0x4e, 0x7d,0x90,0x3c,0x1d,0xb2,0xb1,0x7a,0x6,0xaf,0xb9,0xf,0x2f,0x9e,0xaa,0x7c,0x3c, 0xaf,0x0,0xdb,0x9,0x11,0x5b,0x48,0x31,0xb8,0xc4,0xe7,0x41,0x55,0xe7,0x34,0x66, 0xe9,0x2d,0x9f,0x21,0x4b,0x53,0xfd,0x5f,0xbf,0xb3,0xf0,0xef,0x9e,0x7c,0x85,0xd1, 0x6e,0x8,0x78,0x63,0x17,0xd0,0xea,0x44,0xab,0xd3,0x8,0x34,0x9a,0xc1,0x70,0x63, 0xa2,0xe9,0x31,0x9,0x5a,0x4b,0x15,0xde,0xab,0x2,0xe,0x14,0x88,0x2,0x75,0x59, 0x83,0x69,0x7c,0xde,0xd8,0x62,0x10,0x58,0x1f,0x1c,0xe1,0xd9,0xa5,0x4f,0xe1,0x24, 0xe0,0x9b,0x59,0xc2,0x87,0x16,0xff,0x14,0x71,0x8e,0x3d,0x73,0x87,0xd1,0x61,0x1b, 0x33,0xb8,0x50,0x97,0xc8,0x57,0x1e,0xca,0x8f,0xf1,0xdb,0xf3,0x28,0x1d,0xd0,0x5b, 0x3e,0xc5,0xfa,0xf2,0x39,0x7e,0xfb,0xd4,0xbd,0xf2,0xcd,0xec,0xee,0xff,0x74,0xe4, 0xe1,0x4f,0x6d,0x0,0x5f,0x7a,0xcb,0x4,0x28,0xe1,0xf6,0x76,0xa3,0x89,0x75,0x96, 0xb2,0xcc,0x19,0x17,0x77,0xce,0x82,0xe7,0x33,0xe9,0xf9,0xd5,0x47,0x4f,0xe2,0xc2, 0x95,0x1a,0x6c,0x32,0x21,0x4e,0x58,0xee,0xdf,0xc6,0x5f,0x2c,0x7e,0x8a,0x6e,0xb7, 0xcb,0xad,0xc7,0x17,0xf8,0x76,0x7a,0x13,0xb6,0x6c,0xf1,0xa1,0xe5,0xdf,0x67,0x6b, 0xe3,0x22,0x7,0xf,0x1f,0x27,0x98,0x3a,0x5a,0x45,0x79,0x93,0x21,0x36,0x43,0x4c, 0x8e,0xf2,0xa3,0x7a,0x41,0x14,0xa1,0xfc,0x98,0x62,0xd4,0xe7,0xc2,0xe9,0xe7,0xc8, 0x8b,0x9c,0x6f,0x16,0x3f,0xc1,0xe9,0xf6,0xbb,0x74,0x73,0x2a,0x8d,0xf3,0x82,0xff, 0x7e,0xf4,0x63,0xbf,0xf2,0x53,0x27,0xff,0xe0,0x9f,0x5e,0x55,0x2c,0xb8,0x62,0x4f, 0xf0,0xfe,0xfb,0xd5,0xc,0xa1,0xbf,0x7a,0xc7,0x9d,0xb7,0xd0,0xee,0x34,0xb8,0xb0, 0xf4,0x42,0x15,0xf4,0x4,0xac,0x85,0x30,0xaa,0xcb,0xf0,0x5a,0xf3,0x6a,0x47,0x69, 0x3e,0x29,0xce,0xb7,0xe1,0x4f,0x48,0x58,0x19,0xdc,0xc6,0x33,0x8b,0x9f,0x64,0x66, 0x76,0x96,0xdb,0x6f,0xbb,0x99,0xac,0x14,0x4e,0x9e,0xbe,0xc0,0x4c,0x4b,0x71,0xa4, 0xb1,0xcc,0x3,0xfc,0x16,0x73,0xde,0x22,0x53,0x7b,0x67,0x89,0x9b,0x1d,0xe2,0xa4, 0x45,0x10,0x37,0x1,0xf,0xc4,0x50,0x66,0x29,0x59,0x36,0x24,0x1b,0xf6,0xd8,0xe8, 0xad,0x71,0xa1,0x98,0xe7,0x7f,0xdb,0x4f,0xb3,0x6a,0xe6,0x40,0x34,0x8d,0xce,0x5e, 0x5e,0x7c,0x75,0x91,0xcd,0x8b,0x5b,0xa2,0x34,0x7f,0xf7,0xe4,0xef,0xff,0x93,0x2f, 0x5e,0x13,0x1,0x1f,0xfe,0x48,0x70,0x9f,0xf6,0xf9,0xda,0x3d,0xf7,0xde,0x81,0x50, 0xb0,0xba,0x7e,0xaa,0x6a,0x72,0x16,0x42,0x10,0x2a,0xb4,0xb7,0x4d,0xc0,0x18,0xf3, 0x15,0xb1,0xef,0x18,0x1b,0xa3,0x5,0xbe,0x7d,0xfe,0x27,0x39,0x78,0x60,0x3f,0xc7, 0x8f,0x1f,0x61,0x63,0x58,0xb2,0x78,0x31,0xc5,0x1a,0x43,0x2b,0x34,0x1c,0x9a,0x9, 0x28,0xd2,0x2d,0x6e,0x33,0x5f,0xe5,0xce,0xe8,0x19,0x66,0xbd,0x15,0x94,0x18,0x50, 0xa,0x2f,0x68,0x60,0xcb,0xb4,0xca,0x8,0xca,0x67,0xc5,0xec,0xe3,0x2f,0x46,0x77, 0xf2,0xa2,0xfa,0x10,0x61,0xa3,0xc3,0xda,0x46,0x49,0x2f,0x85,0xa3,0x87,0x66,0xf1, 0x35,0x3c,0xff,0xbd,0x33,0x6c,0x5c,0xec,0x3b,0x71,0xf2,0x37,0x5f,0xfb,0xc3,0x7f, 0xf6,0xe5,0x5d,0x13,0xf0,0xfe,0xf,0x85,0xf7,0x24,0xd,0x79,0xfa,0xae,0x77,0x1e, 0x23,0x69,0x24,0x5c,0x58,0x7a,0x1,0x71,0x50,0x5a,0x21,0x8e,0xab,0x7e,0xfe,0x95, 0xb5,0x5f,0xef,0xef,0xb8,0x96,0x0,0xd6,0x45,0x3c,0x79,0xf6,0xa7,0x89,0x9a,0x7, 0x79,0xf7,0xdd,0xb7,0xb3,0xdc,0xcb,0x58,0xdb,0xca,0x41,0x57,0xcf,0xa,0x5c,0x99, 0x71,0xc7,0x4d,0x2d,0x6c,0x91,0x32,0x1a,0x6e,0x91,0x6e,0xf5,0xf9,0xc9,0xfb,0xf, 0x62,0xb7,0x5e,0xc3,0x4f,0x4f,0xe1,0xe7,0xcb,0x14,0xe1,0x3e,0xca,0xe4,0x26,0x74, 0xeb,0x30,0x8f,0x7d,0xe5,0x55,0x9a,0xdd,0x3d,0xb4,0xbb,0x5d,0xa2,0xa4,0xc5,0xf3, 0xa7,0xd6,0xb1,0x2a,0x41,0x29,0xe1,0xf0,0x6c,0x8b,0x24,0xf4,0x78,0xee,0xc5,0xd3, 0xb2,0xb9,0x35,0x5c,0x1e,0x95,0xde,0xb1,0xa5,0x3f,0xfa,0xa5,0xe1,0x1b,0x11,0xf0, 0xba,0x2c,0xa0,0x94,0xf2,0x9f,0xfc,0x66,0x79,0x52,0x14,0xe9,0xe6,0xe6,0x80,0x28, 0x6a,0x20,0x2,0x59,0x2e,0x68,0xa5,0x10,0xb7,0x1d,0xf1,0xc5,0x5d,0xba,0xbd,0x7c, 0x7f,0x2c,0x2f,0xad,0xfe,0x18,0xa5,0x74,0xb8,0xf5,0x87,0x8e,0x32,0xc8,0xc,0xab, 0x5b,0xd9,0xb6,0xd5,0xa0,0xf0,0xc2,0x26,0x9b,0x99,0x47,0xdc,0x68,0xb3,0x99,0x5, 0x9c,0xdb,0xf4,0x58,0xcb,0x63,0xa6,0x16,0x4e,0x10,0xdd,0xfc,0x31,0xd4,0xf,0xfd, 0x7d,0xa2,0x9b,0x1e,0x66,0x6a,0xfe,0x9d,0xac,0x65,0x21,0x4b,0x3,0xcd,0xea,0x40, 0x88,0x9b,0x1d,0x32,0x9,0x71,0xaa,0x1,0x80,0x73,0xc2,0xe9,0xe5,0x4d,0xf2,0xd2, 0x70,0xec,0xa6,0xfd,0x4a,0xc1,0x4c,0xe2,0x99,0x5f,0x7e,0x33,0xb,0xb8,0x52,0x1a, 0xf4,0x0,0xed,0x2c,0xdf,0xed,0xf,0x86,0xa2,0x94,0x26,0x8,0x1a,0x20,0xa0,0xf5, 0x36,0x48,0x91,0xab,0x3,0x9f,0x16,0xd3,0x2c,0xf,0x4e,0x70,0xe4,0xc8,0x61,0xe2, 0x38,0xe0,0xc2,0xfa,0x58,0x19,0x97,0xfa,0xcb,0xf2,0x86,0x60,0xfd,0x16,0x5,0xd, 0xfc,0x46,0x97,0xff,0xb7,0xe8,0x98,0x99,0x99,0x61,0x76,0x76,0x96,0xd9,0xd9,0x59, 0xf6,0xed,0xdb,0xc7,0xcc,0xcc,0xc,0x27,0xd7,0x84,0x20,0xee,0x90,0xdb,0x80,0xb0, 0xb5,0x97,0x33,0x4b,0xd9,0x25,0xe6,0x27,0x2,0xe7,0xd7,0x6,0x34,0x92,0x90,0x85, 0x83,0x33,0xbe,0x28,0x7e,0xf1,0xe8,0x8f,0x7d,0xee,0xd6,0xdd,0x10,0xa0,0x0,0x65, 0xa,0x9e,0xde,0xdc,0x18,0xda,0xa2,0xcc,0xe9,0xb6,0xe,0xe2,0x79,0x6a,0x72,0x9f, 0x31,0x78,0xf7,0x97,0x80,0x77,0xe,0x4e,0x6f,0x7e,0x90,0x24,0xf1,0x59,0x38,0x38, 0xcd,0xea,0xc6,0x88,0xa2,0x30,0x8c,0x4b,0xa8,0x6d,0xe7,0x13,0x9c,0x38,0x4e,0x2d, 0xa6,0x94,0xba,0x45,0x10,0x77,0x79,0xf6,0xbc,0xa5,0xd5,0xee,0x32,0x35,0x35,0x75, 0x89,0xbc,0xb8,0xe2,0x8,0x9a,0x7b,0x9,0x1a,0x7b,0x79,0xe1,0xe4,0x3a,0x45,0x59, 0xbe,0xe,0x40,0x96,0x1b,0x56,0x37,0x52,0x16,0xe6,0xa7,0x49,0xa2,0x10,0xd1,0xf6, 0xd7,0x77,0x43,0x80,0x0,0x72,0xe1,0x82,0xf9,0x1d,0x67,0x9c,0x79,0xf5,0xd5,0x57, 0x9,0xc3,0x16,0xdd,0xee,0xde,0x2b,0x5e,0x60,0x52,0xc,0x5d,0x1,0x7c,0x69,0x3, 0x56,0x86,0x27,0x58,0x58,0x38,0x48,0x69,0x1c,0x6b,0x9b,0xe9,0xa5,0x27,0x89,0xd4, 0xd,0x8e,0x6a,0x3b,0xca,0x4a,0x9c,0x73,0x28,0x3f,0x20,0x57,0x9,0x67,0xb7,0xfc, 0x89,0x5,0xcc,0xcd,0xcd,0xe1,0x82,0xe,0xeb,0xa3,0x10,0x2f,0x88,0x41,0x29,0xd2, 0x51,0x5e,0x4f,0xb8,0xae,0x49,0x27,0xc5,0x6,0xac,0xf4,0x52,0x9c,0x75,0xdc,0x7c, 0x64,0x9f,0xf,0xdc,0x7f,0xf3,0xc7,0x7e,0xe5,0x8a,0xbd,0xc2,0x2b,0x11,0x60,0x1, 0x7b,0xfa,0x15,0xce,0xe,0x7,0x7c,0x76,0x75,0x69,0x53,0x7a,0xbd,0x15,0xe,0xec, 0x3f,0xca,0x9e,0xa9,0x5d,0x75,0x9c,0x19,0x99,0x19,0x44,0x34,0xdd,0x76,0x83,0xad, 0x61,0x8e,0x38,0xa9,0xc1,0xca,0x4,0xf4,0xf6,0xb6,0xee,0x6,0x89,0xad,0x8a,0xd, 0x67,0xf9,0xda,0xb3,0xcb,0x58,0x6b,0x11,0x11,0x8c,0x31,0x3c,0xf9,0xe2,0xca,0x8e, 0x73,0x2e,0x95,0x2a,0x98,0xcb,0x84,0xc,0x27,0x8e,0xe5,0xde,0x80,0xbd,0xdd,0x26, 0x41,0x10,0x14,0xa,0xf5,0xd1,0xab,0x22,0x40,0x44,0xc,0xd5,0xa,0xb6,0x78,0xea, 0x71,0xf3,0x45,0x6b,0x79,0xfa,0xe4,0xab,0xe7,0xcc,0xd2,0xe2,0x79,0xf6,0xee,0x99, 0x67,0x61,0xfe,0xe,0xa6,0xba,0xfb,0x9,0x83,0xa4,0x5a,0xac,0xbc,0x29,0x1,0xb3, 0x68,0xa5,0x88,0xa3,0x80,0x51,0x5e,0x5e,0x2,0x5a,0x9c,0xb9,0xc,0x7c,0xdd,0xea, 0x72,0xb6,0xda,0x77,0x8e,0x27,0x5e,0x58,0x65,0x94,0xe5,0x14,0x45,0x41,0x51,0x14, 0x3c,0xfd,0xf2,0x7a,0x75,0xcc,0xe,0x12,0x64,0x1c,0x90,0x2e,0x27,0x43,0x84,0xfe, 0xb0,0x40,0x29,0xa1,0xd3,0x4a,0x42,0x70,0xf7,0x5d,0x69,0x8e,0x6f,0x54,0x9,0x66, 0xf5,0x7f,0xfe,0xb,0xcf,0x9b,0x9f,0xbe,0xf5,0x56,0xff,0x73,0x2f,0xbf,0x74,0xf6, 0xfe,0x8b,0xeb,0x1b,0xcc,0x2f,0x1c,0x64,0xcf,0xd4,0x1,0xa6,0xf7,0x1e,0xaa,0x9, 0x73,0xb8,0xfa,0x31,0xd7,0xe5,0x63,0xe3,0xcc,0x3b,0x68,0x97,0x21,0x4a,0x43,0x9a, 0x97,0xd5,0xc4,0xd1,0x28,0xb1,0x38,0x5b,0xa2,0x43,0xcd,0x76,0xd,0xad,0x50,0x52, 0x3f,0x1,0xac,0x79,0xdd,0x1a,0x5a,0x9e,0x39,0x79,0x91,0x77,0x1c,0x6a,0x21,0xc0, 0xb3,0xa7,0x7a,0x97,0x0,0x1e,0xef,0x8f,0x7b,0x84,0x82,0xe0,0x4c,0x8e,0xaa,0x4b, 0x55,0x63,0x1c,0x79,0x6e,0x68,0xb7,0x23,0xd6,0x7b,0xea,0xc4,0xbd,0xf7,0x3e,0x16, 0x3c,0xfd,0xf4,0x4f,0x5d,0x12,0x34,0xae,0x48,0x80,0x88,0x38,0xa5,0x54,0xa,0xe8, 0xb5,0x45,0x16,0xd7,0x16,0xcd,0x3f,0x7e,0xd7,0x7b,0xfc,0xbf,0xed,0xe8,0x7f,0x66, 0x6d,0xed,0xa5,0x8e,0xe7,0x69,0xd3,0xed,0xb6,0xfc,0x20,0xf4,0x9,0x82,0x0,0xcf, 0xd3,0x97,0x3f,0x29,0x7,0x60,0x69,0xfd,0x4,0x8d,0x4e,0x3,0xe7,0x1c,0x45,0x51, 0x42,0xfd,0x4e,0x80,0x29,0x33,0x74,0x10,0x81,0xd8,0x6a,0xb9,0xac,0x14,0x4a,0xd4, 0x36,0xf8,0x1d,0xd7,0x7a,0xe9,0xdc,0x26,0xc7,0xe6,0x42,0x56,0x36,0xb,0x86,0x59, 0x51,0x1,0x46,0x5e,0x4f,0x2,0x35,0x31,0xa,0x6c,0x31,0x42,0xfb,0x21,0xe0,0x18, 0x64,0x5,0x9d,0x56,0xc,0x10,0xf4,0x66,0x2f,0xde,0xd,0x3c,0x75,0x35,0x16,0x80, 0x88,0x18,0xa5,0x54,0x1f,0x70,0x80,0xfd,0xee,0x53,0xe6,0x37,0xc3,0x90,0x2f,0x1d, 0xb9,0xd9,0xbb,0xa7,0xb3,0xc7,0x7e,0x38,0x1d,0x6e,0x1d,0xf7,0x3c,0xa6,0x94,0x96, 0x8e,0x52,0x44,0x48,0xe5,0x4e,0x32,0xd6,0x9f,0xa0,0x6,0xa1,0x6a,0xb7,0x5b,0xd6, 0xaf,0x6a,0x26,0xa9,0xdf,0x11,0xaa,0xba,0xbe,0x8a,0x18,0x71,0x6e,0x1b,0xfc,0xb8, 0x94,0xbc,0x8c,0xc8,0x57,0x2e,0xf4,0x29,0xee,0xea,0x72,0x72,0x71,0xeb,0x52,0xed, 0x4f,0x48,0x70,0xdb,0xfe,0x2f,0xe,0xa5,0x3c,0x6c,0xb1,0x51,0x4d,0x40,0xfb,0x58, 0x6b,0x88,0x82,0x0,0x0,0xa7,0x64,0xfe,0xaa,0x9,0xa8,0x49,0xb0,0xc0,0x96,0x52, 0xaa,0x4,0xca,0xa2,0xa0,0xf8,0xde,0x4b,0xf6,0x1b,0xc0,0xd3,0x40,0x4,0xc4,0x40, 0x58,0xef,0x7,0xb5,0xf8,0xd4,0xb5,0xc4,0xfe,0xf7,0xdb,0x4f,0xaa,0x24,0x7d,0x18, 0x11,0x3f,0x9,0x34,0xc3,0xdc,0x60,0xf2,0x21,0x9e,0x1f,0xd7,0x66,0x5b,0x9b,0xbd, 0xaa,0xdd,0x60,0x32,0xb6,0xbb,0x2d,0xa7,0x96,0x6,0xe4,0x79,0xce,0xa9,0xa5,0x7e, 0x15,0x1f,0xaa,0x89,0x5d,0xa2,0xf5,0x49,0x50,0x64,0x1c,0x5f,0x2c,0x26,0xeb,0xe3, 0xc7,0x6d,0x2,0x4f,0x53,0x16,0x55,0xff,0x40,0x7c,0x79,0xdd,0x5b,0x68,0x57,0xd5, 0x15,0x16,0x91,0x91,0x52,0x2a,0xab,0xc1,0x36,0x6b,0xe0,0x63,0xf0,0x63,0xd9,0x9, 0xde,0x3,0xb4,0x19,0xae,0x3f,0x9d,0xe5,0xe6,0x27,0xca,0xd2,0x10,0x85,0x1e,0xfd, 0x34,0x5,0x67,0x51,0x5a,0x57,0xd1,0xbe,0x36,0xff,0x9,0xf8,0x2b,0x2c,0x28,0x56, 0xb7,0x32,0x86,0x99,0xe1,0xec,0xda,0xa8,0xa,0x96,0xb2,0x33,0xe5,0x6d,0x5b,0xc2, 0x38,0xa0,0x82,0xa0,0xbd,0x90,0x62,0xb8,0xe,0x28,0x2,0x6f,0xf,0xc3,0xb4,0x72, 0x7b,0xe5,0x95,0x27,0xaf,0x89,0x80,0x9a,0x4,0x1,0x72,0x20,0x57,0x4a,0x79,0x54, 0x5a,0x6f,0x5c,0x6,0x7e,0xa2,0x7d,0x40,0xf,0xd6,0x5e,0xf8,0x5a,0xeb,0xd0,0x7b, 0xe8,0xf,0x52,0xa6,0x5a,0x11,0x2b,0x2b,0x19,0x68,0xaf,0x9a,0xb4,0x73,0x55,0x47, 0x58,0x6a,0xd0,0x8a,0xcb,0xac,0x60,0x7b,0x9c,0x5e,0xcb,0x38,0xb7,0x3a,0xaa,0xde, 0x19,0xa8,0xe6,0xf2,0x6,0x24,0x54,0x16,0xa1,0x83,0xa8,0x7a,0xde,0x60,0x53,0xa2, 0x40,0xb1,0x9c,0xe6,0x28,0x25,0x83,0x93,0xff,0xe3,0x91,0x8d,0x6b,0x26,0xe0,0x32, 0x32,0x2c,0x90,0x2,0xa9,0xaa,0x72,0xe1,0x58,0xeb,0xfe,0x8e,0xad,0x9f,0x2d,0xbe, 0xb0,0x29,0x77,0x15,0xff,0xf7,0xf4,0xd9,0xd5,0x3b,0xdf,0x79,0xc7,0x61,0x7f,0xaa, 0xe9,0xb3,0x99,0x6b,0xc4,0xb9,0xba,0xb7,0x38,0x5e,0x51,0x6d,0x83,0xbf,0xd2,0x62, 0xfa,0xa5,0x73,0x7d,0xd6,0xb6,0x46,0x3b,0x7a,0x10,0x63,0x8d,0xb3,0xbd,0x7f,0x89, 0x3b,0x80,0x52,0x1e,0x7b,0x9b,0x9a,0xcd,0xad,0xd,0x96,0x56,0x87,0xc6,0xe4,0xf9, 0xff,0x52,0x4a,0x75,0x81,0x41,0x3d,0xff,0x6b,0x27,0xe0,0x32,0x32,0x4,0x30,0xb5, 0x4c,0x7a,0x56,0x4a,0xa9,0x8,0x70,0x83,0xa5,0xef,0xfe,0x12,0xfe,0x7b,0xbf,0x72, 0xfe,0xfc,0x1a,0xfb,0xa6,0x9a,0x94,0x9b,0x86,0x51,0x6e,0x5e,0x7,0x7e,0x3b,0x6, 0x5e,0xb6,0x96,0x14,0x78,0xfc,0x85,0xf5,0xfa,0xc1,0xea,0xf6,0xa3,0xb0,0x6d,0x12, 0x76,0x10,0x52,0xff,0xaf,0x95,0x62,0xff,0x4c,0x97,0x24,0x52,0x2c,0xad,0x65,0x88, 0x73,0x66,0xe3,0x7b,0x5f,0xfe,0x35,0xa0,0x55,0xcf,0xad,0x2f,0x55,0x10,0xba,0x31, 0x1f,0x4c,0xd4,0x56,0x11,0x2,0xe1,0xfa,0x33,0xbf,0x77,0xb6,0xec,0x2f,0xfd,0xfa, 0xb9,0xe5,0xd,0x97,0x16,0x8e,0xa3,0x7,0xa7,0x98,0xee,0xc4,0x68,0x55,0xb7,0xbb, 0xeb,0xaa,0xaf,0xda,0x1f,0x3f,0x1b,0x1c,0x4b,0x55,0x1c,0xf5,0x6,0x59,0x5d,0x20, 0xd9,0xed,0x8a,0xb1,0xae,0xb7,0xc7,0x45,0x14,0xe2,0xd0,0xc0,0x54,0x2b,0xe6,0x96, 0x85,0x69,0xba,0x9d,0x36,0x6b,0xa3,0x84,0x5e,0xdf,0x48,0xbe,0x75,0xe1,0xbf,0xf5, 0x4f,0x3f,0x35,0xa0,0x72,0xdb,0xb1,0xcb,0x56,0x73,0xbd,0x11,0x6f,0xa6,0xd6,0x4, 0xb4,0x80,0x36,0xd0,0x22,0x68,0x74,0x17,0x7e,0xf8,0x67,0x3e,0x1b,0x34,0xba,0x1f, 0x39,0x7c,0x60,0x2f,0x7,0xe7,0xa6,0x50,0x9e,0x66,0x94,0x95,0x94,0xc6,0x62,0x9d, 0x54,0xb,0x2a,0xa4,0xae,0x14,0xae,0x34,0xc6,0x9d,0x25,0xa9,0xbb,0x53,0x93,0x9e, 0x74,0xf5,0xa2,0xa6,0xaf,0x69,0xc4,0x1,0xa0,0xe8,0xf,0x47,0xbc,0x76,0xb6,0x27, 0x83,0x34,0x53,0xf9,0xc6,0xd9,0x2f,0x2e,0x7e,0xeb,0x3f,0x7f,0x1,0xcc,0x16,0x30, 0x0,0xfa,0xc0,0x86,0x88,0x94,0x37,0x8c,0x80,0x9a,0x84,0xb8,0x26,0x61,0x22,0x73, 0xf7,0xfc,0x9d,0x8f,0x27,0xfb,0x6e,0xfb,0x8c,0xe7,0x7b,0xe1,0x54,0x27,0x61,0xaa, 0x93,0xe8,0xc0,0xf7,0xf1,0x7c,0xf,0xad,0x14,0x7a,0xdc,0x60,0x65,0xc7,0x5a,0xf1, 0x4d,0xa6,0x37,0x9e,0xbb,0x31,0x8e,0xa2,0xb4,0x8c,0xf2,0x92,0xb5,0xde,0xc0,0x15, 0xb9,0xd1,0xe2,0xec,0xa0,0x7f,0xee,0xdb,0xff,0xfe,0xe2,0x73,0xbf,0xf7,0x67,0x35, 0xf0,0xb1,0x6c,0x8a,0xc8,0x60,0x32,0xcf,0x1b,0xf9,0x6e,0xb2,0x52,0x2a,0x0,0x3a, 0x54,0x4,0x34,0x81,0x66,0x63,0xfa,0x96,0xf9,0xf6,0x4d,0x7f,0xe3,0x1,0xbf,0x73, 0xf0,0x83,0x41,0xd2,0xbd,0x13,0x54,0x78,0x7d,0xee,0x26,0x88,0xb3,0x43,0x93,0x5e, 0x7c,0x2e,0x5b,0x7b,0xe5,0xab,0x1b,0x2f,0x7d,0xf5,0x5b,0xd6,0xa6,0x9b,0xc0,0xb0, 0x96,0x2d,0xa0,0x27,0x22,0x3b,0x7b,0xeb,0x37,0x96,0x80,0xc9,0x4d,0x2a,0x6b,0xe8, 0x52,0xa5,0xcd,0x6,0x90,0x8c,0xc5,0x4b,0xba,0x5d,0xbf,0x31,0x3d,0x13,0xc6,0x9d, 0x3d,0x82,0x8a,0x45,0x5c,0x0,0xe2,0x23,0xe2,0x81,0x78,0x22,0xec,0x2c,0x14,0x44, 0x29,0x1c,0x28,0x8b,0xd2,0x46,0x29,0x65,0x50,0xba,0xb0,0x79,0xbf,0x57,0x5c,0x3c, 0xb7,0x6c,0xed,0x68,0x8,0x8c,0x76,0x48,0x4a,0x65,0xf2,0x3d,0x11,0xb9,0xe2,0xf3, 0x82,0xef,0xb,0x1,0x93,0x9b,0x55,0xf5,0xc3,0xd8,0x35,0xc6,0x5,0x55,0xc4,0xa5, 0xc1,0x69,0x67,0x4d,0xa1,0x6b,0x19,0xaf,0x10,0xea,0x7c,0x87,0xa3,0xca,0x3a,0xe5, 0xe,0xc9,0x6b,0xc9,0xa8,0x40,0xf,0x80,0x6c,0xec,0xeb,0x6f,0x38,0xa7,0xb7,0xf3, 0xe3,0xad,0x9a,0x90,0x71,0x29,0xbd,0xb3,0xa2,0x8c,0xd8,0x2e,0xa8,0x76,0x44,0x86, 0x9,0x1,0x96,0x7a,0xc9,0xce,0x36,0xf8,0xc,0x28,0x76,0xe6,0xf8,0xab,0x9a,0xc3, 0xf,0xc8,0xd7,0x6b,0x57,0x1c,0x75,0x36,0xb9,0xa4,0x30,0xb8,0xde,0x1f,0x54,0xfc, 0x40,0x13,0xf0,0xfd,0x18,0x7f,0xfd,0xe9,0xec,0xdb,0x3d,0x81,0xb7,0x7b,0xfc,0x95, 0x27,0xe0,0xff,0x3,0xba,0x7f,0x66,0x53,0x52,0x1d,0xd3,0x49,0x0,0x0,0x0,0x0, 0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, }; static const unsigned char qt_resource_name[] = { // resources 0x0,0x9, 0xa,0x6c,0x78,0x43, 0x0,0x72, 0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x63,0x0,0x65,0x0,0x73, // editor.png 0x0,0xa, 0xb,0x68,0x21,0x47, 0x0,0x65, 0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // chat.png 0x0,0x8, 0xe,0x87,0x5a,0x67, 0x0,0x63, 0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // calendar.png 0x0,0xc, 0x7,0xb5,0xf,0xc7, 0x0,0x63, 0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // browser.png 0x0,0xb, 0x9,0x16,0x7a,0x87, 0x0,0x62, 0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // mail.png 0x0,0x8, 0x7,0xff,0x59,0x27, 0x0,0x6d, 0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // users.png 0x0,0x9, 0xc,0x96,0xae,0x67, 0x0,0x75, 0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, }; static const unsigned char qt_resource_struct[] = { // : 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/resources 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/resources/calendar.png 0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1d,0x8b, 0x0,0x0,0x1,0x2a,0xfa,0xe3,0xb0,0x40, // :/resources/mail.png 0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x46,0x25, 0x0,0x0,0x1,0x2a,0xfa,0xe3,0xb0,0x40, // :/resources/browser.png 0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2d,0x39, 0x0,0x0,0x1,0x2a,0xfa,0xe3,0xb0,0x40, // :/resources/editor.png 0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x2a,0xfa,0xe3,0xb0,0x40, // :/resources/users.png 0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x55,0x64, 0x0,0x0,0x1,0x2a,0xfa,0xe3,0xb0,0x40, // :/resources/chat.png 0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x12,0x8e, 0x0,0x0,0x1,0x2a,0xfa,0xe3,0xb0,0x40, }; #ifdef QT_NAMESPACE # define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name # define QT_RCC_MANGLE_NAMESPACE0(x) x # define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b # define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b) # define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \ QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE)) #else # define QT_RCC_PREPEND_NAMESPACE(name) name # define QT_RCC_MANGLE_NAMESPACE(name) name #endif #ifdef QT_NAMESPACE namespace QT_NAMESPACE { #endif bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); #ifdef QT_NAMESPACE } #endif int QT_RCC_MANGLE_NAMESPACE(qInitResources_resources)(); int QT_RCC_MANGLE_NAMESPACE(qInitResources_resources)() { int version = 3; QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData) (version, qt_resource_struct, qt_resource_name, qt_resource_data); return 1; } int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_resources)(); int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_resources)() { int version = 3; QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData) (version, qt_resource_struct, qt_resource_name, qt_resource_data); return 1; } namespace { struct initializer { initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_resources)(); } ~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_resources)(); } } dummy; }
[ "ds.jeong@smsoft.co.kr" ]
ds.jeong@smsoft.co.kr
46765d5545005280effe0d26c16ca2ae167c89a8
0a1f7719e13c0abc90088a8ef193c0dec227fe04
/BK-Algorithm/StackApplication.h
e0dfc56c254f7a0f47b077d6cdd9b8bfef9db2bc
[]
no_license
BK927/BK-FromDataStructure-ToAlgorithm
28880762a3a63b0e6ba55caeb6e3fffebed07cfb
fc39ec7133dfa6b8e0bc6b3c9b71310a6edd97ee
refs/heads/master
2020-06-19T01:04:46.097427
2019-07-21T06:31:53
2019-07-21T06:31:53
196,513,274
1
0
null
null
null
null
UHC
C++
false
false
2,361
h
#pragma once #include <algorithm> #include <iostream> #include <fstream> #include "Stack.h" #include "Location2D.h" #include "MazeManager.h" using namespace std; namespace algorithm { class StackApplication { public: static void CheckMatching(const char* filename); template<typename unsigned int HEIGHT, unsigned int WIDTH> static void ExploreMaze(const char maze[][WIDTH]); private: enum class eCheckMatchingError { Missing_Single_Quotation_Mark, Missing_Double_Quotation_Mark, Missing_Bracket }; static void checkMatchingErrMsg(const unsigned int nLine, const unsigned int nChar, const eCheckMatchingError err); }; template<typename unsigned int HEIGHT, unsigned int WIDTH> inline static void StackApplication::ExploreMaze(const char maze[][WIDTH]) { char copiedMaze[HEIGHT][WIDTH]; memcpy_s(copiedMaze, sizeof(char) * HEIGHT * WIDTH, maze, sizeof(char) * HEIGHT * WIDTH); bkDS::Stack<Location2D> stack; Location2D entry = MazeManager::FindEntry<HEIGHT, WIDTH>(copiedMaze); if (entry == Location2D(-1, -1)) { cout << "오류 : 입구를 찾는데 실패 했습니다." << endl; return; } stack.Push(entry); while (!stack.IsEmpty()) { Location2D currentLoc = stack.Peek(); stack.Pop(); MazeManager::PrintMap<HEIGHT, WIDTH>(copiedMaze, currentLoc); cout << '(' << currentLoc.row << ", " << currentLoc.col << ") " << endl << endl; if (copiedMaze[currentLoc.row][currentLoc.col] == 'x') { cout << endl << "출구 발견!" << endl; return; } copiedMaze[currentLoc.row][currentLoc.col] = '.'; if (MazeManager::IsValidLoc<HEIGHT, WIDTH>(currentLoc.row + 1, currentLoc.col, copiedMaze)) { stack.Push(Location2D(currentLoc.row + 1, currentLoc.col)); } if (MazeManager::IsValidLoc<HEIGHT, WIDTH>(currentLoc.row - 1, currentLoc.col, copiedMaze)) { stack.Push(Location2D(currentLoc.row - 1, currentLoc.col)); } if (MazeManager::IsValidLoc<HEIGHT, WIDTH>(currentLoc.row, currentLoc.col + 1, copiedMaze)) { stack.Push(Location2D(currentLoc.row, currentLoc.col + 1)); } if (MazeManager::IsValidLoc<HEIGHT, WIDTH>(currentLoc.row, currentLoc.col - 1, copiedMaze)) { stack.Push(Location2D(currentLoc.row, currentLoc.col - 1)); } } cout << "오류 : 출구를 발견하는데 실패했습니다." << endl; } }
[ "dead4bees927@gmail.com" ]
dead4bees927@gmail.com
b3c1e00b00ee2901d973edda38b9ad9fccdba9c3
a49ac9e119b891c7307b8b02a5e4fa3cf5ec6f6c
/Facebook/copyConnections.cpp
a4dd93831cda7610ec3b56d135d0bfc0c912c741
[]
no_license
EdgeLord836/problem-solving
c4adae209a4f8f21a2bbc4ece47024031ee54ba6
e10655f197f45ce473acf9cc5f014bc25c5dca48
refs/heads/main
2023-08-14T17:38:17.189139
2021-10-09T01:16:17
2021-10-09T01:16:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,982
cpp
using namespace std; #include <iostream> #include <vector> #include <unordered_map> #include <unordered_set> #include <algorithm> #include <random> #include <utility> class Node { public: int data; vector<Node*> friends; Node(int d) { data = d; } ~Node() { for (int i = 0; i < friends.size(); i++) { delete friends[i]; } friends.clear(); } }; void shuffle(vector<pair<int, int>> &vec) { random_device rd; default_random_engine rng( rd() ); shuffle(vec.begin(), vec.end(), rng); } class CloneGraph { public: static vector<Node*> createTestGraphDirected(int nodes_count, int edges_count) { vector<Node*> vertices; for (int i = 0; i < nodes_count; i++) { vertices.push_back(new Node(i)); } vector<pair<int, int>> all_edges; for (int i = 0; i < vertices.size(); i++) { for (int j = i + 1; j < vertices.size(); j++) { all_edges.push_back(make_pair(i, j)); } } shuffle(all_edges); for (int i = 0; i < edges_count && i < all_edges.size(); i++) { pair<int, int> edge = all_edges[i]; vertices[edge.first]->friends.push_back(vertices[edge.second]); vertices[edge.second]->friends.push_back(vertices[edge.first]); } return vertices; } static void printGraph(vector<Node*> vertices) { for (auto n : vertices) { cout << to_string(n->data) + ": {"; for (auto t : n->friends) { cout << to_string(t->data) + " "; } cout << "}" << endl; } } static void printGraph(Node* root, unordered_set<Node*> &visited_nodes) { if (root == nullptr || visited_nodes.find(root) != visited_nodes.end()) { return; } visited_nodes.insert(root); cout << to_string(root->data) + ": {"; for (auto n : root->friends) { cout << to_string(n->data) + " "; } cout << "}" << endl; for (auto n : root->friends) { printGraph(n, visited_nodes); } } static void printGraph(Node* root) { unordered_set<Node*> visited_nodes; printGraph(root, visited_nodes); } static bool areGraphsEqualRec(Node* root1, Node* root2, unordered_set<Node*> &visited) { if (root1 == nullptr && root2 == nullptr) { return true; } if (root1 == nullptr || root2 == nullptr) { return false; } if (root1->data != root2->data) { return false; } if (root1->friends.size() != root2->friends.size()) { return false; } for (Node* nbr1 : root1->friends) { bool found = false; for (Node* nbr2 : root2->friends) { if (nbr1->data == nbr2->data) { if (visited.find(nbr1) != visited.end()) { visited.insert(nbr1); areGraphsEqualRec(nbr1, nbr2, visited); } found = true; break; } } if (!found) { return false; } } return true; } }; Node* cloneRec(Node* root, unordered_map<Node*, Node*> &nodesCompleted) { if (root == nullptr) { return nullptr; } Node* newNode = new Node(root->data); nodesCompleted[root] = newNode; for (auto p : root->friends) { Node* x = nodesCompleted[p]; if (x == nullptr) { newNode->friends.push_back(cloneRec(p, nodesCompleted)); } else { newNode->friends.push_back(x); } } return newNode; } Node* clone(Node* root) { unordered_map<Node*, Node*> nodesCompleted; return cloneRec(root, nodesCompleted); } int main() { vector<Node*> vertices = CloneGraph::createTestGraphDirected(7, 18); CloneGraph::printGraph(vertices[0]); Node* cp = clone(vertices[0]); cout << endl; cout << "After copy." << endl; CloneGraph::printGraph(cp); unordered_set<Node*> set; cout << boolalpha << CloneGraph::areGraphsEqualRec(vertices[0], cp, set) << endl; }
[ "imhantran@gmail.com" ]
imhantran@gmail.com
b55f1726efd112b95eeecd749ad50c96dc4efbfa
ab831d976e3cc012e362b7b520f25ae5a127d799
/third/behaviac-3.5.9/inc/behaviac/base/core/singleton.h
5c44b93418c775ccfc2f856815b6d05a45aa2e73
[ "LicenseRef-scancode-unknown-license-reference", "Zlib", "BSD-2-Clause", "BSD-3-Clause", "MIT" ]
permissive
bohge/Hades
7b8c04695cd6e7ecb38e6fd554f0e6f7aa59ca1d
472d72ef095048d080e1b4fcf0f846d0e57b8b22
refs/heads/master
2021-01-02T22:16:05.573728
2018-08-04T02:04:37
2018-08-04T02:04:37
99,313,890
1
1
null
null
null
null
UTF-8
C++
false
false
2,831
h
///////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Tencent is pleased to support the open source community by making behaviac available. // // Copyright (C) 2015 THL A29 Limited, a Tencent company. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except in compliance with // the License. You may obtain a copy of the License at http://opensource.org/licenses/BSD-3-Clause // // Unless required by applicable law or agreed to in writing, software distributed under the License is // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and limitations under the License. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// #ifndef BEHAVIAC_BASE_CORE_SINGLETON_H #define BEHAVIAC_BASE_CORE_SINGLETON_H #include "behaviac/base/core/config.h" #include "behaviac/base/core/assert_t.h" #include "behaviac/base/core/memory/memory.h" /* class CSequenceManager { BEHAVIAC_DELCARE_SINGLETON(CSequenceManager); //... }; in cpp: BEHAVIAC_IMPLEMNT_SINGLETON(CSequenceManager); */ #define BEHAVIAC_DELCARE_SINGLETON(T) \ protected: \ static T* ms_singleton; \ static T* GetInstance_(); \ static void SetInstance_(T*); \ T(const T&); \ const T& operator=(const T&); \ public: \ static inline T* GetInstance() \ { \ if (!GetInstance_()) \ { \ CreateInstance(); \ } \ \ return GetInstance_(); \ } \ \ static T* CreateInstance() \ { \ if (!GetInstance_()) \ { \ T* p = BEHAVIAC_NEW T; \ SetInstance_(p); \ } \ \ return GetInstance_(); \ } \ \ static void DestroyInstance() \ { \ T* p = GetInstance_(); \ if (p) \ { \ BEHAVIAC_DELETE(p); \ SetInstance_(0); \ } \ } #define BEHAVIAC_IMPLEMNT_SINGLETON(T) \ T* T::ms_singleton = 0; \ T* T::GetInstance_() \ { \ return ms_singleton; \ } \ void T::SetInstance_(T* p) \ { \ ms_singleton = p; \ } #endif//BEHAVIAC_BASE_CORE_SINGLETON_H
[ "zhaopeng_wj@cyou-inc.com" ]
zhaopeng_wj@cyou-inc.com
ceab46473d8f76f4a5c2450128a8fb048504bade
12297984495f808a57ff61557eeecda2e08d5c3d
/makedepend/BuildDepend.cpp
53a0574e29e37e0b4dc251f46aea0b688a563e9f
[]
no_license
alzwded/makedepend-wnt
2f24f36f3eeb9d16745d6c878832a22e7f83d7dd
50fddce8342698c80498d1b26073394774aff613
refs/heads/master
2021-01-18T19:30:00.438497
2012-09-24T13:18:41
2012-09-24T13:18:41
5,899,229
0
1
null
null
null
null
UTF-8
C++
false
false
483
cpp
#include "BuildDepend.h" #include "DependencyGenerator.h" #include "Path.h" #include <fstream> #include <string> void BuildDepend::operator()(const std::string& _infile, const std::string& _outfile) { std::string outfile = _outfile; if(outfile.empty()) { Path outpath(_infile); outfile = outpath.RHead() + ".d"; } std::fstream fout(outfile.c_str(), std::ios::out); if(!fout.is_open()) { return; } fout << gDep_(_infile); fout.close(); }
[ "alzwded@gmail.com" ]
alzwded@gmail.com
ad3070cb3c2f597cc3fde4ce41abe31d92c97e64
f0b7bcc41298354b471a72a7eeafe349aa8655bf
/codebase/apps/Radx/src/RadxApRemoval/Args.cc
44d64795f577633df4f9ac34829d1926bb319da6
[ "BSD-3-Clause" ]
permissive
NCAR/lrose-core
23abeb4e4f1b287725dc659fb566a293aba70069
be0d059240ca442883ae2993b6aa112011755688
refs/heads/master
2023-09-01T04:01:36.030960
2023-08-25T00:41:16
2023-08-25T00:41:16
51,408,988
90
53
NOASSERTION
2023-08-18T21:59:40
2016-02-09T23:36:25
C++
UTF-8
C++
false
false
23,112
cc
// *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* // ** Copyright UCAR (c) 1990 - 2016 // ** University Corporation for Atmospheric Research (UCAR) // ** National Center for Atmospheric Research (NCAR) // ** Boulder, Colorado, USA // ** BSD licence applies - redistribution and use in source and binary // ** forms, with or without modification, are permitted provided that // ** the following conditions are met: // ** 1) If the software is modified to produce derivative works, // ** such modified software should be clearly marked, so as not // ** to confuse it with the version available from UCAR. // ** 2) Redistributions of source code must retain the above copyright // ** notice, this list of conditions and the following disclaimer. // ** 3) Redistributions in binary form must reproduce the above copyright // ** notice, this list of conditions and the following disclaimer in the // ** documentation and/or other materials provided with the distribution. // ** 4) Neither the name of UCAR nor the names of its contributors, // ** if any, may be used to endorse or promote products derived from // ** this software without specific prior written permission. // ** DISCLAIMER: THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS // ** OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED // ** WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* ////////////////////////////////////////////////////////// // Args.cc : command line args // // Mike Dixon, RAP, NCAR, P.O.Box 3000, Boulder, CO, 80307-3000, USA // // March 2014 // ////////////////////////////////////////////////////////// #include "Args.hh" #include "Params.hh" #include <string> #include <iostream> #include <Radx/RadxTime.hh> using namespace std; // Constructor Args::Args () { TDRP_init_override(&override); startTime = 0; endTime = 0; } // Destructor Args::~Args () { TDRP_free_override(&override); } // parse the command line // // returns 0 on success, -1 on failure int Args::parse (int argc, char **argv, string &prog_name) { _progName = prog_name; char tmp_str[BUFSIZ]; bool OK = true; vector<string> fields; // loop through args for (int i = 1; i < argc; i++) { if (!strcmp(argv[i], "--") || !strcmp(argv[i], "-h") || !strcmp(argv[i], "-help") || !strcmp(argv[i], "-man")) { _usage(cout); exit (0); } else if (!strcmp(argv[i], "-d") || !strcmp(argv[i], "-debug")) { sprintf(tmp_str, "debug = DEBUG_NORM;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-v") || !strcmp(argv[i], "-verbose")) { sprintf(tmp_str, "debug = DEBUG_VERBOSE;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-vv") || !strcmp(argv[i], "-extra")) { sprintf(tmp_str, "debug = DEBUG_EXTRA;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-instance")) { if (i < argc - 1) { sprintf(tmp_str, "instance = %s;", argv[i+1]); TDRP_add_override(&override, tmp_str); } } else if (!strcmp(argv[i], "-ag")) { sprintf(tmp_str, "aggregate_sweep_files_on_read = TRUE;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-ag_all")) { sprintf(tmp_str, "aggregate_all_files_on_read = TRUE;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-disag")) { sprintf(tmp_str, "write_individual_sweeps = TRUE;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-native")) { sprintf(tmp_str, "output_native_byte_order = TRUE;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-cfradial")) { sprintf(tmp_str, "output_format = OUTPUT_FORMAT_CFRADIAL;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-dorade")) { sprintf(tmp_str, "output_format = OUTPUT_FORMAT_DORADE;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-foray")) { sprintf(tmp_str, "output_format = OUTPUT_FORMAT_FORAY;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-nexrad")) { sprintf(tmp_str, "output_format = OUTPUT_FORMAT_NEXRAD;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-uf")) { sprintf(tmp_str, "output_format = OUTPUT_FORMAT_UF;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-mdv")) { sprintf(tmp_str, "output_format = OUTPUT_FORMAT_MDV_RADIAL;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-cf_classic")) { sprintf(tmp_str, "netcdf_style = CLASSIC;"); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "output_format = OUTPUT_FORMAT_CFRADIAL;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-cf_nc64bit")) { sprintf(tmp_str, "netcdf_style = NC64BIT;"); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "output_format = OUTPUT_FORMAT_CFRADIAL;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-cf_netcdf4")) { sprintf(tmp_str, "netcdf_style = NETCDF4;"); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "output_format = OUTPUT_FORMAT_CFRADIAL;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-cf_netcdf4_classic")) { sprintf(tmp_str, "netcdf_style = NETCDF4_CLASSIC;"); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "output_format = OUTPUT_FORMAT_CFRADIAL;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-force_vary")) { sprintf(tmp_str, "output_force_ngates_vary = TRUE;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-out_start")) { sprintf(tmp_str, "output_filename_mode = START_TIME_ONLY;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-out_end")) { sprintf(tmp_str, "output_filename_mode = END_TIME_ONLY;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-rem_miss")) { sprintf(tmp_str, "remove_rays_with_all_data_missing = TRUE;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-rem_trans")) { sprintf(tmp_str, "remove_rays_with_antenna_transitions = TRUE;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-preserve_sweeps")) { sprintf(tmp_str, "preserve_sweeps = TRUE;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-keep_long")) { sprintf(tmp_str, "remove_long_range_rays = FALSE;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-rem_short")) { sprintf(tmp_str, "remove_short_range_rays = TRUE;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-trim_sur")) { sprintf(tmp_str, "trim_surveillance_sweeps_to_360deg = TRUE;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-const_ngates")) { sprintf(tmp_str, "set_ngates_constant = TRUE;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-ldata")) { sprintf(tmp_str, "write_latest_data_info = TRUE;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-change_lat_sign")) { sprintf(tmp_str, "change_radar_latitude_sign = TRUE;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-apply_georefs")) { sprintf(tmp_str, "apply_georeference_corrections = TRUE;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-to_float32")) { sprintf(tmp_str, "set_output_encoding_for_all_fields = TRUE;"); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "output_encoding = OUTPUT_ENCODING_FLOAT32;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-to_int32")) { sprintf(tmp_str, "set_output_encoding_for_all_fields = TRUE;"); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "output_encoding = OUTPUT_ENCODING_INT32;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-to_int16")) { sprintf(tmp_str, "set_output_encoding_for_all_fields = TRUE;"); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "output_encoding = OUTPUT_ENCODING_INT16;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-to_int08")) { sprintf(tmp_str, "set_output_encoding_for_all_fields = TRUE;"); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "output_encoding = OUTPUT_ENCODING_INT08;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-start")) { if (i < argc - 1) { startTime = RadxTime::parseDateTime(argv[++i]); if (startTime == RadxTime::NEVER) { OK = false; } else { sprintf(tmp_str, "mode = ARCHIVE;"); TDRP_add_override(&override, tmp_str); } } else { OK = false; } } else if (!strcmp(argv[i], "-end")) { if (i < argc - 1) { endTime = RadxTime::parseDateTime(argv[++i]); if (endTime == RadxTime::NEVER) { OK = false; } else { sprintf(tmp_str, "mode = ARCHIVE;"); TDRP_add_override(&override, tmp_str); } } else { OK = false; } } else if (!strcmp(argv[i], "-path") || !strcmp(argv[i], "-f")) { if (i < argc - 1) { // load up file list vector. Break at next arg which // start with - for (int j = i + 1; j < argc; j++) { if (argv[j][0] == '-') { break; } else { inputFileList.push_back(argv[j]); } } sprintf(tmp_str, "mode = FILELIST;"); TDRP_add_override(&override, tmp_str); } else { OK = false; } } else if (!strcmp(argv[i], "-field")) { if (i < argc - 1) { fields.push_back(argv[++i]); } else { OK = false; } } else if (!strcmp(argv[i], "-write_other")) { sprintf(tmp_str, "write_other_fields_unchanged = TRUE;"); TDRP_add_override(&override, tmp_str); } else if (!strcmp(argv[i], "-lat")) { if (i < argc - 1) { sprintf(tmp_str, "radar_latitude_deg = %s;", argv[++i]); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "override_radar_location = TRUE;"); TDRP_add_override(&override, tmp_str); } else { OK = false; } } else if (!strcmp(argv[i], "-lon")) { if (i < argc - 1) { sprintf(tmp_str, "radar_longitude_deg = %s;", argv[++i]); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "override_radar_location = TRUE;"); TDRP_add_override(&override, tmp_str); } else { OK = false; } } else if (!strcmp(argv[i], "-alt")) { if (i < argc - 1) { sprintf(tmp_str, "radar_altitude_meters = %s;", argv[++i]); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "override_radar_location = TRUE;"); TDRP_add_override(&override, tmp_str); } else { OK = false; } } else if (!strcmp(argv[i], "-name")) { if (i < argc - 1) { sprintf(tmp_str, "instrument_name = \"%s\";", argv[++i]); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "override_instrument_name = TRUE;"); TDRP_add_override(&override, tmp_str); } else { OK = false; } } else if (!strcmp(argv[i], "-max_range")) { if (i < argc - 1) { sprintf(tmp_str, "max_range_km = %s;", argv[++i]); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "set_max_range = TRUE;"); TDRP_add_override(&override, tmp_str); } else { OK = false; } } else if (!strcmp(argv[i], "-compress")) { if (i < argc - 1) { sprintf(tmp_str, "output_compressed = TRUE;"); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "compression_level = %s;", argv[++i]); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "netcdf_style = NETCDF4;"); TDRP_add_override(&override, tmp_str); } else { OK = false; } } else if (!strcmp(argv[i], "-indir")) { if (i < argc - 1) { sprintf(tmp_str, "input_dir = \"%s\";", argv[++i]); TDRP_add_override(&override, tmp_str); } else { OK = false; } } else if (!strcmp(argv[i], "-outdir")) { if (i < argc - 1) { sprintf(tmp_str, "output_dir = \"%s\";", argv[++i]); TDRP_add_override(&override, tmp_str); } else { OK = false; } } else if (!strcmp(argv[i], "-fixed_angle")) { if (i < argc - 1) { i++; sprintf(tmp_str, "lower_fixed_angle_limit = %s;", argv[i]); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "upper_fixed_angle_limit = %s;", argv[i]); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "set_fixed_angle_limits = true;"); TDRP_add_override(&override, tmp_str); } else { OK = false; } } else if (!strcmp(argv[i], "-fixed_angle_max")) { if (i < argc - 1) { i++; sprintf(tmp_str, "upper_fixed_angle_limit = %s;", argv[i]); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "set_fixed_angle_limits = true;"); TDRP_add_override(&override, tmp_str); } else { OK = false; } } else if (!strcmp(argv[i], "-sweep")) { if (i < argc - 1) { i++; sprintf(tmp_str, "lower_sweep_num = %s;", argv[i]); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "upper_sweep_num = %s;", argv[i]); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "set_sweep_num_limits = true;"); TDRP_add_override(&override, tmp_str); } else { OK = false; } } else if (!strcmp(argv[i], "-sweep_max")) { if (i < argc - 1) { i++; sprintf(tmp_str, "read_upper_sweep_num = %s;", argv[i]); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "set_sweep_num_limits = true;"); TDRP_add_override(&override, tmp_str); } else { OK = false; } } else if (!strcmp(argv[i], "-radar_num")) { if (i < argc - 1) { i++; sprintf(tmp_str, "read_radar_num = %s;", argv[i]); TDRP_add_override(&override, tmp_str); sprintf(tmp_str, "read_set_radar_num = true;"); TDRP_add_override(&override, tmp_str); } else { OK = false; } } } // i // set fields if specified if (fields.size() > 0) { sprintf(tmp_str, "set_output_fields = true;"); TDRP_add_override(&override, tmp_str); string nameStr = "output_fields = { "; for (size_t ii = 0; ii < fields.size(); ii++) { string fieldStr = "\""; fieldStr += fields[ii]; fieldStr += "\", "; nameStr += "{ "; nameStr += fieldStr; nameStr += fieldStr; nameStr += fieldStr; nameStr += fieldStr; nameStr += "\"\", "; nameStr += "OUTPUT_ENCODING_ASIS, "; nameStr += "SCALING_DYNAMIC, "; nameStr += "0.01, "; nameStr += "0.0 "; nameStr += " }"; if (ii != fields.size() - 1) { nameStr += ", "; } else { nameStr += " "; } } nameStr += "};"; TDRP_add_override(&override, nameStr.c_str()); } // if (fields.size() ... if (!OK) { _usage(cerr); return -1; } return 0; } void Args::_usage(ostream &out) { out << "Usage: " << _progName << " [args as below]\n" << "Options:\n" << "\n" << " [ -h ] produce this list.\n" << "\n" << " [ -ag ] aggregate sweep files into volume on read.\n" << " Files with the SAME VOLUME NUMBER in the name are aggregated.\n" << " Applies to CfRadial and DORADE sweep files.\n" << "\n" << " [ -ag_all ] aggregate files in input list on read.\n" << " ALL FILES in the input list are aggregated into a volume.\n" << " See '-f' option.\n" << "\n" << " [ -alt ? ] override radar altitude (m)\n" << "\n" << " [ -apply_georefs] apply georeference corrections on read.\n" << " For moving platforms, measured georeference information is sometimes\n" << " available. If so, this is applied and appropriate corrections made.\n" << " Earth-centric azimuth and elevation angles will be computed.\n" << "\n" << " [ -change_lat_sign] change the sign of the radar latitude\n" << " Useful for RAPIC files that always have a positive latitude.\n" << "\n" << " [ -cfradial ] convert to cfradial (the default)\n" << "\n" << " [ -cf_classic ] output classic-style netcdf (the default)\n" << " [ -cf_netcdf4 ] output netcdf4 style\n" << " [ -cf_classic4 ] output classic-style netcdf4\n" << " [ -cf_nc64bit ] output 64-bit NC netcdf\n" << " The above only apply to cfradial output.\n" << "\n" << " [ -const_ngates ] force number of gates constant for all rays\n" << " Added gates will be filled with missing values\n" << "\n" << " [ -compress ? ] compress output\n" << " specifiy compression level [1-9]\n" << " For cfradial, forces netcdf4 mode\n" << "\n" << " [ -d, -debug ] print debug messages\n" << "\n" << " [ -dorade ] convert to dorade\n" << "\n" << " [ -disag ] dis-aggregate into sweep files on write\n" << " optional for CfRadial files\n" << " always applies to DORADE sweep files\n" << "\n" << " [ -fixed_angle ? ] set single fixed_angle\n" << " or minimum - see '-fixed_ang_max'\n" << "\n" << " [ -fixed_angle_max ? ] set max fixed_angle\n" << " use '-fixed_ang' for setting minimum\n" << "\n" << " [ -end \"yyyy mm dd hh mm ss\"] end time\n" << " Sets mode to ARCHIVE\n" << "\n" << " [ -f, -paths ? ] set file paths\n" << " Sets mode to FILELIST\n" << "\n" << " [ -field ? ] Specify particular field\n" << " Specify name or number\n" << " Use multiple -field args for multiple fields\n" << " If not specified, all fields will be used\n" << "\n" << " [ -foray ] convert to FORAY-1 netcdf\n" << "\n" << " [ -force_vary ] force use of ragged arrays for CfRadial\n" << " even if ngates is constant for all rays\n" << "\n" << " [ -indir ? ] set input directory\n" << "\n" << " [ -instance ?] specify the instance\n" << "\n" << " [ -keep_long ] keep long range rays\n" << " Keep NEXRAD long-range non-Doppler sweeps\n" << " Default is to remove them\n" << "\n" << " [ -lat ? ] override radar latitude (deg)\n" << "\n" << " [ -lon ? ] override radar longitude (deg)\n" << "\n" << " [ -ldata ] write _latest_data_info files\n" << "\n" << " [ -max_range ? ] set max range (km)\n" << "\n" << " [ -mdv ] convert to MDV in radial coords\n" << "\n" << " [ -native ] output in host-native byte ordering\n" << "\n" << " [ -name ? ] override instrument name\n" << "\n" << " [ -nexrad ] convert to NEXRAD archive level 2\n" << "\n" << " [ -outdir ? ] set output directory\n" << "\n" << " [ -out_end ? ] compute output path using end time\n" << " default is to use both start and end times\n" << "\n" << " [ -out_start ? ] compute output path using start time\n" << " default is to use both start and end times\n" << "\n" << " [ -preserve_sweeps ] preserve sweep details as they are in file.\n" << " This generally applies to NEXRAD data - by default we\n" << " consolidate sweeps by combining split-cut sweeps\n" << " into a single sweep.\n" << " If this flag is true, we leave the sweeps unchanged.\n" << "\n" << " [ -radar_num ? ] set radar number\n" << " Applies to NOAA HRD data. LF radar = 1, TA radar = 2\n" << " Generally not needed\n" << "\n" << " [ -rem_miss ] remove rays in which data at all gates and\n" << " for all fields is missing\n" << "\n" << " [ -rem_short ] remove short range rays\n" << " Remove NEXRAD short-range Doppler sweeps\n" << "\n" << " [ -rem_trans ] remove rays with antenna transitions\n" << "\n" << " [ -start \"yyyy mm dd hh mm ss\"] start time\n" << " Sets mode to ARCHIVE\n" << "\n" << " [ -sweep ? ] set single sweep number\n" << " or minimum - see '-sweep_max'\n" << "\n" << " [ -sweep_max ? ] set max sweep number\n" << " use '-sweep' for setting minimum\n" << "\n" << " [ -trim_sur ] trim surveillance sweeps to 360 degrees\n" << " Remove extra rays in each surveillance sweep\n" << "\n" << " [ -to_float32 ] convert all fields to 32-bit floats\n" << " [ -to_int32 ] convert all fields to 16-bit signed integers\n" << " [ -to_int16 ] convert all fields to 16-bit signed integers\n" << " [ -to_in08 ] convert all fields to 8-bit signed integers\n" << "\n" << " [ -uf ] convert to universal format\n" << "\n" << " [ -v, -verbose ] print verbose debug messages\n" << "\n" << " [ -vv, -extra ] print extra verbose debug messages\n" << "\n" << " [ -write_other ] option to write other fields unchanged.\n" << " Default is that if -fields is used, only the specified fields\n" << " will be written in the output files.\n" << "\n" << endl; out << "NOTE: You do not need to use the params option (see below).\n" << " If no params are specified, you deal with the whole file.\n" << endl; Params::usage(out); }
[ "dixon@ucar.edu" ]
dixon@ucar.edu
8ed4bdf83ad5671cebf9b4072a3d1dd40fbcd409
c58bed4b1a7d21417f85f2bb7ad825c9de97c3b6
/SRM 542/WorkingRabbits.cpp
cfde403a25a05ea0685f774c0a0391e579342634
[]
no_license
vlad2901/topcoder
0aa759007ed24b2185664294da4c67af8fbea418
97856c3dd2a5b8ee875cfda7dc3b6f93d142e10b
refs/heads/master
2021-01-20T02:47:47.757151
2012-05-23T11:33:15
2012-05-23T11:33:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
690
cpp
#include <vector> #include <list> #include <map> #include <set> #include <deque> #include <stack> #include <bitset> #include <algorithm> #include <functional> #include <numeric> #include <utility> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cmath> #include <cstdlib> #include <ctime> using namespace std; class WorkingRabbits { public: double getEfficiency(vector <string> profit) { int n = profit.size(); double sum = 0; for(int i=0;i<n;++i) { for(int j=0;j<i;++j) { sum += profit[i][j]-'0'; } } return 2*sum / (n*(n-1)); } }; // Powered by FileEdit // Powered by TZTester 1.01 [25-Feb-2003] // Powered by CodeProcessor
[ "vlad.berindei@gmail.com" ]
vlad.berindei@gmail.com
83ccefde0779bb1f0755bd50380bb21428a54f9a
771cc29cd1263dc999f57cad23cc49cc35d43d99
/abstractbeatinterval.cpp
bbcafa0f1019f0588da120c0f4427ddcc54bdce2
[ "Artistic-2.0" ]
permissive
BadassBaal/cock-heroine
6e1eecd92b3726187e6665bcaaeafb1510ffcdad
e5da101c97e5a35447c32a9c46da5a4e657ea4b9
refs/heads/master
2023-06-20T10:18:01.104375
2021-07-20T09:33:09
2021-07-20T09:33:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,995
cpp
#include "abstractbeatinterval.h" #include "helperfunctions.h" #include <QDebug> #include <float.h> #include "config.h" #include "globals.h" AbstractBeatInterval::AbstractBeatInterval() { } AbstractBeatInterval::~AbstractBeatInterval() { } bool AbstractBeatInterval::matchesThisInterval(int otherInterval) const { return isWithinXPercentOf(getLength(),otherInterval,BeatAnalysis::Configuration::maxPercentAcceptableBeatError); } bool AbstractBeatInterval::matchesThisInterval(AbstractBeatInterval &otherInterval) const { return matchesThisInterval(otherInterval.getLength()); } bool AbstractBeatInterval::matchesThisInterval(BeatValue & otherValue) const { return matchesThisInterval(roundToInt(otherValue.getLength())); } void AbstractBeatInterval::calculateValue() const { if (beatValues.size() == 0) { qDebug() << "Error: Trying to calculate value of interval before beat values are initialised!"; value = 0; return; } if (BeatAnalysis::Configuration::tempoEstablished == false) { qDebug() << "Error: Trying to calculate value of interval before tempo is calculated!"; value = 0; return; } int i = 0; float valueDifference = 100.0; for (i = 0; i < beatValues.size(); ++i) { if (beatValues.at(i).active && percentageDifferenceBetween(beatValues.at(i).value() * BeatAnalysis::Configuration::tempoInterval(),getLength()) < valueDifference) { valueDifference = percentageDifferenceBetween(beatValues.at(i).value() * BeatAnalysis::Configuration::tempoInterval(),getLength()); value = &beatValues.at(i); } } } float AbstractBeatInterval::deviationFromNearestKnownBeatValue() const { if ( ! value ) calculateValue(); if ( ! value ) return FLT_MAX; return percentageDifferenceBetween(value->getLength(),getLength()); } float AbstractBeatInterval::absoluteDifferenceFromNearestKnownBeatValue() const { if ( ! value ) calculateValue(); if ( ! value ) return FLT_MAX; return absoluteDifferenceBetween(value->getLength(), getLength()); } bool AbstractBeatInterval::isKnownBeatValue() const { bool acceptableProportion = (deviationFromNearestKnownBeatValue() <= BeatAnalysis::Configuration::maxPercentAcceptableBeatError); if (!acceptableProportion) return false; //return early as access to 'value->' below may NPE in this case float absoluteDifference = absoluteDifferenceFromNearestKnownBeatValue(); float partialBeatLength = BeatAnalysis::Configuration::tempoInterval() / (BeatAnalysis::Configuration::allowHalfBeatsInBreaks ? 4.0 : 2.0); bool acceptableError = absoluteDifference <= partialBeatLength; return acceptableError; // && acceptableProportion (we wouldn't be here otherwise) } BeatValue const * AbstractBeatInterval::getValue() const { if (isKnownBeatValue()) return value; else return NULL; }
[ "megamasha@gmail.com" ]
megamasha@gmail.com
a9c88b54495ab22f7d4a70215fb49b334c5ca420
147576df33595ae4fc7cd02567b273ba63ed3b30
/lab11.3B/lab_11_3_B.cpp
7d70e70cb1cdb2e4cc063091672bbe5cf24ce572
[]
no_license
sasha-1337/lab11.3B
14306a7f5e38375cf180802dff81aff53197c807
c29e2d0755ba2af7e43099c52dd9f3b9d280b819
refs/heads/master
2023-02-02T02:45:50.134146
2020-12-14T11:01:39
2020-12-14T11:01:39
321,308,729
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
7,893
cpp
#include <iostream> #include <iomanip> #include <string> #include <Windows.h> #include <fstream> using namespace std; enum Specialty { PROGRAMMER, ENGINEER, PHYSICIAN }; string specStr[] = { "КН", "ІК", "ФЛ" }; struct Student { char prizv[64]; int kurs; Specialty spec; int physics; int math; int inform; union { int inform; int NumericalMethods; int pedagogy; }; }; void Create(char* fname); void Print(char* fname); int fRead(fstream& f, const int i); char SRead(fstream& f, const int i); int TRead(fstream& f, const int i); void fChange(fstream& f, const int i, const int j); void sortBin(char* fname); int main() { SetConsoleCP(1251); SetConsoleOutputCP(1251); char fname[61]; double MinAve = 0.0; int countPhysics = 0; int countMathematics = 0; int countInformatics = 0; int choice; do { cout << endl << endl; cout << "Оберіть номер команди:" << endl; cout << "[1] - Створити список студентів" << endl; cout << "[2] - Вивести список на екран" << endl; cout << "[3] - Фізично впорядкувати файл" << endl << endl; cout << " [0] - Вийти із програми" << endl << endl; cout << "Введіть номер команди: "; cin >> choice; cout << endl << endl << endl; switch (choice) { case 1: cin.get(); cin.sync(); cout << "Введіть ім'я файлу: "; cin.getline(fname, sizeof(fname)); Create(fname); break; case 2: cin.get(); cin.sync(); cout << "Введіть ім'я файлу: "; cin.getline(fname, sizeof(fname)); Print(fname); break; case 3: cin.get(); cin.sync(); cout << "Введіть ім'я файлу: "; cin.getline(fname, sizeof(fname)); sortBin(fname); break; default: cout << "Ви ввели неправильну команду" << endl; break; } } while (choice != 0); } void Create(char* fname) { ofstream f(fname, ios::binary | ios::trunc); if (!f) { cerr << "Неможливо відкрити файл '" << fname << "'" << endl; exit(1); } Student s; int spec; char ch; int i = 0; do { cout << endl; cout << "Студент № " << i + 1 << ":" << endl; ++i; cin.get(); cin.sync(); cout << "Прізвище: "; cin.getline( s.prizv, sizeof(s.prizv)); do { cout << "Курс: "; cin >> s.kurs; } while (!(s.kurs > 0)); do { cout << "Спеціальність (0 - КН, 1 - ІК, 2 - ФЛ): "; cin >> spec; s.spec = (Specialty)spec; } while (!(spec >= 0 && spec <= 2)); cout << "Бал із фізики: "; cin >> s.physics; cout << "Бал із математики: "; cin >> s.math; switch (s.spec) { case PROGRAMMER: cout << "Бал із інформатики: "; cin >> s.inform; break; case ENGINEER: cout << "Бал із чисельних методів: "; cin >> s.NumericalMethods; break; case PHYSICIAN: cout << "Бал із педагогіки: "; cin >> s.pedagogy; break; } cout << endl; if (!f.write((char*)&s, sizeof(Student))) { cout << " Error of writing " << endl; } cout << "Хочете додати ще одного студента? (Y/N): "; cin >> ch; } while (ch == 'Y' || ch == 'y'); } void Print(char* fname) { ifstream f(fname, ios::binary | ios::in); if (!f) { cerr << "Неможливо відкрити файл" << endl; exit(1); } Student s; int i = 0; cout << "============================================================================================================" << endl; cout << "| № | Прізвище | Курс | Спеціальність | Фізика | Математика | Інформатика | Чисельні методи | Педагогіка |" << endl; cout << "------------------------------------------------------------------------------------------------------------" << endl; while (f.read((char*)&s, sizeof(Student))) { cout << "| " << setw(2) << right << i + 1 << "| " << setw(9) << right << s.prizv << "| " << setw(5) << right << s.kurs << "| " << setw(14) << right << specStr[s.spec]; switch (s.spec) { case 0: cout << "|" << setw(8) << setprecision(2) << fixed << s.physics << "|" << s.math << setw(12) << right << "|" << s.inform << setw(13) << "|" << setw(18) << "|" << setw(15) << setprecision(2) << " |" << endl; break; case 1: cout << "|" << setw(8) << setprecision(2) << fixed << s.physics << "|" << s.math << setw(12) << right << "|" << setw(14) << "|" << s.NumericalMethods << setw(17) << "|" << setw(15) << "|" << endl; break; case 2: cout << "|" << setw(8) << setprecision(2) << fixed << s.physics << "|" << s.math << setw(12) << right << "|" << setw(14) << "|" << setw(18) << "|" << s.pedagogy << setw(14) << "|" << endl; break; } cout << "------------------------------------------------------------------------------------------------------------" << endl; i++; } cout << endl; } void sortBin(char* fname) { fstream f(fname, ios::binary | ios::in | ios::out); if (!f) { cerr << "Неможливо відкрити файл" << endl; exit(1); } f.seekg(0 * (long)sizeof(Student), ios::end); int size = f.tellg() / (sizeof(Student)); f.seekg(0, ios::beg); for (int i0 = 1; i0 < size; i0++) for (int i1 = 0; i1 < size - i0; i1++) { int specialty1 = fRead(f, i1); int specialty2 = fRead(f, i1 + 1); char prizv1 = SRead(f, i1); char prizv2 = SRead(f, i1 + 1); int kurs1 = TRead(f, i1); int kurs2 = TRead(f, i1 + 1); if ((specialty1 > specialty2) || (specialty1 == specialty2 && prizv1 < prizv2) || (specialty1 == specialty2 && prizv1 == prizv2 && kurs1 > kurs2)) fChange(f, i1, i1 + 1); } f.seekp(0, ios::end); } int fRead(fstream& f, const int i) { Student student; f.seekg(i * 1.*(long)sizeof(Student)); f.read((char*)&student, sizeof(Student)); int specialty = student.spec; return specialty; } char SRead(fstream& f, const int i) { Student student; f.seekg(i * 1.*(long)sizeof(Student)); f.read((char*)&student, sizeof(Student)); char prizv[64]; strcpy_s(prizv, sizeof(prizv), student.prizv); return *prizv; } int TRead(fstream& f, const int i) { Student student; f.seekg(i * 1.*(long)sizeof(Student)); f.read((char*)&student, sizeof(Student)); int kurs = student.kurs; return kurs; } void fChange(fstream& f, const int i, const int j) { Student si, sj, temp; f.seekg(i * 1.*(long)sizeof(Student)); f.read((char*)&si, sizeof(Student)); temp = si; f.seekg(j * 1.*(long)sizeof(Student)); f.read((char*)&sj, sizeof(Student)); f.seekp(i * 1.*(long)sizeof(Student)); f.write((char*)&sj, sizeof(Student)); f.seekp(j * 1.*(long)sizeof(Student)); f.write((char*)&temp, sizeof(Student)); }
[ "kolymbia97@gmail.com" ]
kolymbia97@gmail.com
c3e600b97fdb8c7357df69bc432788c7fcbae104
267bdf2bf6873ee1840784173de9bac70adef426
/Advanced level/1038.Recover the Smallest Number.cpp
c2d22ce36be2cb97ec94cb26bcc6e9e51350a215
[]
no_license
Im4lish/PAT
48f14b728a5b34c026c22863a1c2a3585c3c2e81
d8d681bb1ebc54900882ba873386b2033076b711
refs/heads/master
2021-08-31T11:34:50.558329
2017-12-21T07:12:19
2017-12-21T07:12:19
111,079,617
0
0
null
null
null
null
UTF-8
C++
false
false
480
cpp
#include<iostream> #include<vector> #include<string> #include<algorithm> using namespace std; bool cmp(string a,string b) { return a+b < b+a; } int main() { int n; cin>>n; vector<string> vec(n); for(int i=0;i<n;++i) { cin>>vec[i]; } sort(vec.begin(),vec.end(),cmp); string ans; for(int i=0;i<n;++i) { ans += vec[i]; } while(ans.size() != 0 && ans[0] == '0') { ans.erase(ans.begin()); } if(ans.size() == 0) { cout<<0; } else { cout<<ans; } return 0; }
[ "zhaojiandong1995@gmail.com" ]
zhaojiandong1995@gmail.com
152bf52eaf6597c561f6e9dbcd29fbc155c9fa3b
af9e3a456879e0d202a9a7901f0df94e4e865ad3
/src/Definitions/ContinueStatement.cc
6aaeefcfcf36ccd7c6e10d0f6e6a3290d12a24ad
[]
no_license
adisarip/DecafCompiler
532661ddb5c2be304e056ef346f7886c3234d8fc
93c323f8ab5e4b346c76a90c205908f1391c06ea
refs/heads/master
2020-04-08T14:52:37.117298
2018-11-28T06:39:31
2018-11-28T06:39:31
159,455,353
0
0
null
null
null
null
UTF-8
C++
false
false
217
cc
#include "ContinueStatement.hh" using namespace std; ContinueStatement::ContinueStatement() { mStmtType = Statement::NON_RETURNING; } void ContinueStatement::accept(Visitor& vParm) { vParm.visit(*this); }
[ "aditya.saripalli@students.iiit.ac.in" ]
aditya.saripalli@students.iiit.ac.in
3b65241b1468ae0ebb7b51b92ebdf1db9cef00aa
6c400d91d92a8e70a3711f81262fae5a00b9a6c4
/evpp/inner_pre.cc
7cb0ee8a1970e45553f33755d541ac0da73ecb5e
[ "BSD-3-Clause" ]
permissive
sighttviewliu/evpp
86e90d80b1ff700de74711c073b2c5776b99716a
7d76122ccbcfcb1d36140d6a8e4bd13a45a4c59a
refs/heads/master
2021-01-20T01:56:36.450143
2017-04-24T02:43:59
2017-04-24T02:43:59
89,346,415
1
0
null
2017-04-25T10:08:57
2017-04-25T10:08:57
null
UTF-8
C++
false
false
2,374
cc
#include "evpp/inner_pre.h" #include "evpp/libevent_headers.h" #ifdef H_OS_WINDOWS #pragma comment(lib, "event.lib") #if EVENT__NUMERIC_VERSION >= 0x02010500 #pragma comment(lib, "event_core.lib") #pragma comment(lib, "event_extra.lib") #endif #pragma comment(lib,"Ws2_32.lib") #pragma comment(lib,"libglog_static.lib") #endif #ifndef H_OS_WINDOWS #include <signal.h> #endif #include <map> #include <thread> #include <mutex> namespace evpp { namespace { struct OnStartup { OnStartup() { #ifndef H_OS_WINDOWS if (signal(SIGPIPE, SIG_IGN) == SIG_ERR) { LOG_ERROR << "SIGPIPE set failed."; exit(-1); } LOG_INFO << "ignore SIGPIPE"; #endif } ~OnStartup() { } } __s_onstartup; } #ifdef H_DEBUG_MODE static std::map<struct event*, std::thread::id> evmap; static std::mutex mutex; #endif int EventAdd(struct event* ev, const struct timeval* timeout) { #ifdef H_DEBUG_MODE { std::lock_guard<std::mutex> guard(mutex); if (evmap.find(ev) == evmap.end()) { auto id = std::this_thread::get_id(); evmap[ev] = id; } else { LOG_ERROR << "Event " << ev << " fd=" << ev->ev_fd << " event_add twice!"; assert("event_add twice"); } } LOG_DEBUG << "event_add ev=" << ev << " fd=" << ev->ev_fd << " user_ptr=" << ev->ev_arg << " tid=" << std::this_thread::get_id(); #endif return event_add(ev, timeout); } int EventDel(struct event* ev) { #ifdef H_DEBUG_MODE { std::lock_guard<std::mutex> guard(mutex); auto it = evmap.find(ev); if (it == evmap.end()) { LOG_ERROR << "Event " << ev << " fd=" << ev->ev_fd << " not exist in event loop, maybe event_del twice."; assert("event_del twice"); } else { auto id = std::this_thread::get_id(); if (id != it->second) { LOG_ERROR << "Event " << ev << " fd=" << ev->ev_fd << " deleted in different thread."; assert(it->second == id); } evmap.erase(it); } } LOG_DEBUG << "event_del ev=" << ev << " fd=" << ev->ev_fd << " user_ptr=" << ev->ev_arg << " tid=" << std::this_thread::get_id(); #endif return event_del(ev); } int GetActiveEventCount() { #ifdef H_DEBUG_MODE return evmap.size(); #else return 0; #endif } }
[ "zieckey@gmail.com" ]
zieckey@gmail.com
78a1afda36dc2098f548fe29bf69b437d2eda214
c507645952553f2a7e93c14ec19ff3246feca49b
/src/GBuffer.h
15c5adcd551edf4477831c0f64f98e609b76a656
[]
no_license
LeifNode/KinectProject
33a6fc002b7a513245ce0202829c55b3365f0b86
68b9fe0279dbf672670ae2b6ed92a0656dc5732d
refs/heads/master
2021-03-12T23:19:26.096556
2015-01-13T23:57:41
2015-01-13T23:57:41
20,317,533
0
0
null
null
null
null
UTF-8
C++
false
false
820
h
#pragma once #include "d3dStd.h" #include "Texture.h" class GBuffer { friend class D3DRenderer; public: GBuffer(); ~GBuffer(); void bindRenderTargets(); void bindTextures(); void bindSampler(); void clearRenderTargets(); private: void Initialize(int width, int height); void DeInit(); void OnResize(int width, int height); private: Texture* mpDiffuseTexture; Texture* mpDepthStencilTexture; Texture* mpNormalTexture; Texture* mpSpecularTexture; Texture* mpEmissiveTexture; ID3D11DepthStencilView* mpDepthStencilTargetView; ID3D11RenderTargetView* mpDiffuseTargetView; ID3D11RenderTargetView* mpNormalTargetView; ID3D11RenderTargetView* mpSpecularTargetView; ID3D11RenderTargetView* mpEmissiveTargetView; ID3D11DepthStencilState* mpDepthStencilState; ID3D11SamplerState* mpSamplerState; };
[ "LErkenbrach@gmail.com" ]
LErkenbrach@gmail.com
25d8f955812312a79c724e4f04c70c2e49d72a79
5e2bef5a3f06fc33d37ddee00b9b9f647e9ba05e
/c_how_to_program/lessons/18.14/Date.cpp
195f747bb0c9db2e22cb871c3535a1d9fbab35f4
[]
no_license
xoptov/learning_c_and_cpp
29c4ea111cdf1f4891c81facc8916f7efbdececa
a70c116fe07cd9b763dc69916a28d1a213e5bee6
refs/heads/master
2020-06-26T08:12:40.721234
2019-09-17T06:01:00
2019-09-17T06:01:00
199,580,694
0
0
null
null
null
null
UTF-8
C++
false
false
994
cpp
#include <iostream> using std::cout; using std::endl; #include "Date.h" Date::Date(int mn, int dy, int yr) { if (mn > 0 && mn <= 12) month = mn; else { month = 1; cout << "Invalid month (" << mn << ") set to 1." << endl; } year = yr; day = checkDay(dy); cout << "Date object constructor for date "; print(); cout << endl; } void Date::print() const { cout << month << '/' << day << '/' << year; } Date::~Date() { cout << "Date object destructor for date "; print(); cout << endl; } int Date::checkDay(int testDay) const { static const int daysPerMonth[13] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; if (testDay > 0 && testDay <= daysPerMonth[month]) return testDay; if (month == 2 && testDay == 29 && (year % 400 == 0 || (year % 4 == 0 && year % 100 != 0))) return testDay; cout << "Invalid day (" << testDay << ") set to 1.\n"; return 1; }
[ "xoptov@mail.ru" ]
xoptov@mail.ru
ab326a54ade7413729bb4fab3f9365e92c9bb5cf
d816c4d9a1bd19183f737c003cded1bb2126564c
/Package Delivery System/FedEx.cpp
a73d613e6eb9e3150f488ff7505ce218e9d85903
[]
no_license
jzeng1/OOPProjects
794f132c440714bae1ffbe930c0ac49fea2ac8d6
05c046f2668c96d35f3c49905ab664ba4d4c58be
refs/heads/master
2022-11-11T09:55:16.179895
2020-06-21T19:15:27
2020-06-21T19:15:27
273,966,491
0
0
null
null
null
null
UTF-8
C++
false
false
1,249
cpp
/***************************************** ** File: FedEx.cpp ** Project: Delivery, Spring 2018 ** Author: Jason Zeng ** Date: 4/23/2018 ** Section: 22 ** E-mail: Jzeng1@umbc.edu ** ** This program is the derived class which inherits from ** the Carrier class to implement methods how FedEx would ** be a function. ** ***********************************************/ #include "FedEx.h" // Constructor // Preconditions: None // Postconditions: None FedEx::FedEx(){ } // Destructor // Preconditions: An allocated object in memory // Postconditions: Deallocates the memory FedEx::~FedEx(){ } // deliver() - performs the actions of delivering as a FedEx object // Preconditions: mail present in m_storage // Postconditions: outputs data and returns a status # (0 - fail, 1 - success) int FedEx::deliver(){ int checkVector = m_storage.size(); //checks to see if m_storage is not empty so that it can make a delivery if(checkVector > 0){ return 1; } return 0; } ostream& FedEx::print(ostream &theOutput) const{ theOutput << "************************" << endl; theOutput << "FEDEX Trucks Contents:" << endl; theOutput << endl; theOutput << "-----------------------" << endl; return theOutput; }
[ "noreply@github.com" ]
jzeng1.noreply@github.com
f78564f7b26a4e5dd87b5e51d3242175f05f43cf
c6b44ea783689299d27b9b4339c490dab75ebee0
/include/fr/cards/poker_deck_factory.hpp
1fb2e2fbb8c4462283c3b1c568aa640fcdf9f107
[ "Apache-2.0" ]
permissive
FlyingRhenquest/cards
8dd55f0c6ac32344c0a7a5a1118731692b31aea9
43fd4126171baaa71d04f0bdbc26ff998d46aee8
refs/heads/master
2020-09-03T03:41:15.071659
2019-11-03T23:00:26
2019-11-03T23:00:26
219,377,377
0
0
null
null
null
null
UTF-8
C++
false
false
2,247
hpp
/** * Copyright 2019 Bruce Ide * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Creates a poker deck. */ #include "deck.hpp" #include <climits> #include <tuple> #include <vector> #ifndef _HPP_FR_POKER_DECK_FACTORY #define _HPP_FR_POKER_DECK_FACTORY namespace fr { namespace cards { class poker_deck_factory { public: // Shifts for suites const int hearts_shift = 0; const int spades_shift = 16; const int diamonds_shift = 32; const int clubs_shift = 48; // Masks for suites const uint64_t hearts_mask = USHRT_MAX << hearts_shift; const uint64_t spades_mask = USHRT_MAX << spades_shift; const uint64_t diamonds_mask = USHRT_MAX << diamonds_shift; const uint64_t clubs_mask = USHRT_MAX << clubs_shift; static deck get() { deck retval; std::vector<std::string> suites{"Hearts", "Spades", "Diamonds", "Clubs"}; std::vector<std::tuple<std::string, std::uint16_t>> values = { {"Two", 2}, {"Three", 2 << 1}, {"Four", 2 << 2}, {"Five", 2 << 3}, {"Six", 2 << 4}, {"Seven", 2 << 5}, {"Eight", 2 << 6}, {"Nine", 2 << 7}, {"Ten", 2 << 8}, {"Jack", 2 << 9}, {"Queen", 2 << 10}, {"King", 2 << 11}, // Ace can be high or low for straights, so we'll set the low bit too. {"Ace", (2 << 12) + 1} }; int shift_val = 0; for (auto suite : suites) { for (auto [short_name, short_id] : values) { std::string long_name(short_name); long_name.append(" of "); long_name.append(suite); std::uint64_t long_id = short_id << shift_val; retval.add(card(long_id, short_id, long_name)); } shift_val += 16; } return retval; } }; } } #endif
[ "FlyingRhenquest@gmail.com" ]
FlyingRhenquest@gmail.com
bd72843887c3b62108300bbae589207949ab7cd6
3cf73d4ec1e9bd0cfeebb0de3775e5553530efe2
/USER-OMP/angle_cosine_squared_omp.cpp
e8eaff6b2a70dcb07d5aea400a2649722a9538f9
[]
no_license
TJFord/sard
49766cb2f72610ae60319e9ed73b712f0c05e66a
6697819f47d5e28b60d36183a65b5b95a725b6b1
refs/heads/master
2016-09-06T09:58:00.641931
2014-06-28T02:57:51
2014-06-28T02:57:51
10,278,164
1
0
null
null
null
null
UTF-8
C++
false
false
4,558
cpp
/* ---------------------------------------------------------------------- LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator http://lammps.sandia.gov, Sandia National Laboratories Steve Plimpton, sjplimp@sandia.gov Copyright (2003) Sandia Corporation. Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain rights in this software. This software is distributed under the GNU General Public License. See the README file in the top-level LAMMPS directory. ------------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- Contributing author: Axel Kohlmeyer (Temple U) ------------------------------------------------------------------------- */ #include "angle_cosine_squared_omp.h" #include "atom.h" #include "comm.h" #include "force.h" #include "neighbor.h" #include "domain.h" #include "math_const.h" #include <math.h> #include "suffix.h" using namespace LAMMPS_NS; using namespace MathConst; #define SMALL 0.001 /* ---------------------------------------------------------------------- */ AngleCosineSquaredOMP::AngleCosineSquaredOMP(class LAMMPS *lmp) : AngleCosineSquared(lmp), ThrOMP(lmp,THR_ANGLE) { suffix_flag |= Suffix::OMP; } /* ---------------------------------------------------------------------- */ void AngleCosineSquaredOMP::compute(int eflag, int vflag) { if (eflag || vflag) { ev_setup(eflag,vflag); } else evflag = 0; const int nall = atom->nlocal + atom->nghost; const int nthreads = comm->nthreads; const int inum = neighbor->nanglelist; #if defined(_OPENMP) #pragma omp parallel default(none) shared(eflag,vflag) #endif { int ifrom, ito, tid; loop_setup_thr(ifrom, ito, tid, inum, nthreads); ThrData *thr = fix->get_thr(tid); ev_setup_thr(eflag, vflag, nall, eatom, vatom, thr); if (evflag) { if (eflag) { if (force->newton_bond) eval<1,1,1>(ifrom, ito, thr); else eval<1,1,0>(ifrom, ito, thr); } else { if (force->newton_bond) eval<1,0,1>(ifrom, ito, thr); else eval<1,0,0>(ifrom, ito, thr); } } else { if (force->newton_bond) eval<0,0,1>(ifrom, ito, thr); else eval<0,0,0>(ifrom, ito, thr); } reduce_thr(this, eflag, vflag, thr); } // end of omp parallel region } template <int EVFLAG, int EFLAG, int NEWTON_BOND> void AngleCosineSquaredOMP::eval(int nfrom, int nto, ThrData * const thr) { int i1,i2,i3,n,type; double delx1,dely1,delz1,delx2,dely2,delz2; double eangle,f1[3],f3[3]; double dcostheta,tk; double rsq1,rsq2,r1,r2,c,a,a11,a12,a22; const double * const * const x = atom->x; double * const * const f = thr->get_f(); const int * const * const anglelist = neighbor->anglelist; const int nlocal = atom->nlocal; for (n = nfrom; n < nto; n++) { i1 = anglelist[n][0]; i2 = anglelist[n][1]; i3 = anglelist[n][2]; type = anglelist[n][3]; // 1st bond delx1 = x[i1][0] - x[i2][0]; dely1 = x[i1][1] - x[i2][1]; delz1 = x[i1][2] - x[i2][2]; rsq1 = delx1*delx1 + dely1*dely1 + delz1*delz1; r1 = sqrt(rsq1); // 2nd bond delx2 = x[i3][0] - x[i2][0]; dely2 = x[i3][1] - x[i2][1]; delz2 = x[i3][2] - x[i2][2]; rsq2 = delx2*delx2 + dely2*dely2 + delz2*delz2; r2 = sqrt(rsq2); // angle (cos and sin) c = delx1*delx2 + dely1*dely2 + delz1*delz2; c /= r1*r2; if (c > 1.0) c = 1.0; if (c < -1.0) c = -1.0; // force & energy dcostheta = c - cos(theta0[type]); tk = k[type] * dcostheta; if (EFLAG) eangle = tk*dcostheta; a = 2.0 * tk; a11 = a*c / rsq1; a12 = -a / (r1*r2); a22 = a*c / rsq2; f1[0] = a11*delx1 + a12*delx2; f1[1] = a11*dely1 + a12*dely2; f1[2] = a11*delz1 + a12*delz2; f3[0] = a22*delx2 + a12*delx1; f3[1] = a22*dely2 + a12*dely1; f3[2] = a22*delz2 + a12*delz1; // apply force to each of 3 atoms if (NEWTON_BOND || i1 < nlocal) { f[i1][0] += f1[0]; f[i1][1] += f1[1]; f[i1][2] += f1[2]; } if (NEWTON_BOND || i2 < nlocal) { f[i2][0] -= f1[0] + f3[0]; f[i2][1] -= f1[1] + f3[1]; f[i2][2] -= f1[2] + f3[2]; } if (NEWTON_BOND || i3 < nlocal) { f[i3][0] += f3[0]; f[i3][1] += f3[1]; f[i3][2] += f3[2]; } if (EVFLAG) ev_tally_thr(this,i1,i2,i3,nlocal,NEWTON_BOND,eangle,f1,f3, delx1,dely1,delz1,delx2,dely2,delz2,thr); } }
[ "tan.jifu@gmail.com" ]
tan.jifu@gmail.com
32dc0f7ab88baab09bbedd89324135cca9745268
700dc494ce3461890dbc21451dbddca7f5ceded8
/First and Follow - Q5/q5.cpp
1417c0a5056bdab19a01151d58f6ab28b0563ec9
[]
no_license
mauwazahmed/compilerDesignLab
fb618bbb21e562270c9564df3503a2952d617cde
55d3e0ca3291b79af678c642bbd26cb48eabad73
refs/heads/main
2023-05-08T01:00:46.921304
2021-04-07T10:44:28
2021-04-07T10:44:28
369,991,700
1
0
null
2021-05-23T07:47:06
2021-05-23T07:47:05
null
UTF-8
C++
false
false
4,144
cpp
#include <bits/stdc++.h> using namespace std; set<char> ss; bool dfs(char i, char org, char last, map<char, vector<vector<char>>> &mp) { bool rtake = false; for (auto r : mp[i]) { bool take = true; for (auto s : r) { if (s == i) break; if (!take) break; if (!(s >= 'A' && s <= 'Z') && s != '#') { ss.insert(s); break; } else if (s == '#') { if (org == i || i == last) ss.insert(s); rtake = true; break; } else { take = dfs(s, org, r[r.size() - 1], mp); rtake |= take; } } } return rtake; } int main() { int i, j; ifstream fin("input.txt"); string num; vector<int> fs; vector<vector<int>> a; map<char, vector<vector<char>>> mp; char start; bool flag = 0; while (getline(fin, num)) { if (flag == 0) start = num[0], flag = 1; vector<char> temp; char s = num[0]; for (i = 3; i < num.size(); i++) { if (num[i] == '|') { mp[s].push_back(temp); temp.clear(); } else temp.push_back(num[i]); } mp[s].push_back(temp); } map<char, set<char>> fmp; for (auto q : mp) { ss.clear(); dfs(q.first, q.first, q.first, mp); for (auto g : ss) fmp[q.first].insert(g); } cout << '\n'; cout << "Firsts: " << '\n'; for (auto q : fmp) { string ans = ""; ans += q.first; ans += " = "; for (char r : q.second) { ans += r; ans += ", "; } ans.pop_back(); cout << ans << '\n'; } map<char, set<char>> gmp; gmp[start].insert('$'); int count = 10; while (count--) { for (auto q : mp) { for (auto r : q.second) { for (i = 0; i < r.size() - 1; i++) { if (r[i] >= 'A' && r[i] <= 'Z') { if (!(r[i + 1] >= 'A' && r[i + 1] <= 'Z')) gmp[r[i]].insert(r[i + 1]); else { char temp = r[i + 1]; int j = i + 1; while (temp >= 'A' && temp <= 'Z') { if (*fmp[temp].begin() == '#') { for (auto g : fmp[temp]) { if (g == '#') continue; gmp[r[i]].insert(g); } j++; if (j < r.size()) { temp = r[j]; if (!(temp >= 'A' && temp <= 'Z')) { gmp[r[i]].insert(temp); break; } } else { for (auto g : gmp[q.first]) gmp[r[i]].insert(g); break; } } else { for (auto g : fmp[temp]) { gmp[r[i]].insert(g); } break; } } } } } if (r[r.size() - 1] >= 'A' && r[r.size() - 1] <= 'Z') { for (auto g : gmp[q.first]) gmp[r[i]].insert(g); } } } } cout << '\n'; cout << "Follows: " << '\n'; for (auto q : gmp) { string ans = ""; ans += q.first; ans += " = "; for (char r : q.second) { ans += r; ans += ", "; } ans.pop_back(); cout << ans << '\n'; } return 0; }
[ "thatazimjaved@gmail.com" ]
thatazimjaved@gmail.com
40eda8466c0f9ceb0f3d1cca8c843248a701bf9d
449ae14862d9803277babe446f7f030fe9b0f15e
/p2/tags/RELEASE_0_6/python/p2/p2core/val_time.cpp
6314c7c794b6ba47494f7ae35598668bf5288b35
[]
no_license
declarativitydotnet/declarativity
863ea58bed1c0efc57573d75b73e0006eca3f280
75096fb78264c517cd00e8486467c010038434cb
refs/heads/master
2021-01-10T11:58:00.700630
2015-12-08T17:44:39
2015-12-08T17:44:39
47,607,520
9
3
null
null
null
null
UTF-8
C++
false
false
415
cpp
#include <val_time.h> #include <boost/python.hpp> using namespace boost::python; ValuePtr (*mk_ptime)(boost::posix_time::ptime) = &Val_Time::mk; ValuePtr (*mk_timespec)(struct timespec) = &Val_Time::mk; void export_val_time() { class_<Val_Time, bases<Value>, boost::shared_ptr<Val_Time> > ("Val_Time", no_init) .def("mk", mk_ptime) .def("mk", mk_timespec) .staticmethod("mk") ; }
[ "(no author)" ]
(no author)
f30461dcc74a1e7761e388187a8e9833c1f421dc
ba384da5689a4764fa9651b9a4eb7b33e4c2ab8a
/clovertrail/amc/modem-audio-manager/ModemAudioManagerInstance.h
39a35f2e04dc1e549e18cde05787fd0b3530197e
[]
no_license
locng/android_hardware_intel
0da734d160e941d755e709696b9409470466e04c
bc7b3b1b9786c758344443111ce6f3e870258413
refs/heads/master
2021-01-21T07:14:56.549271
2015-03-05T15:10:48
2015-03-05T15:14:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,083
h
/* ModemAudioManagerInstance.h ** ** Copyright 2011 Intel Corporation ** ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** distributed under the License is distributed on an "AS IS" BASIS, ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ** See the License for the specific language governing permissions and ** limitations under the License. */ #pragma once #include "ModemAudioManager.h" #include "DualSimModemAudioManager.h" #include "AudioATModemTypes.h" using namespace std; class CModemAudioManagerInstance { public: // Kind of factory to create either ATModemManager or DualSimATModemManager static CModemAudioManager* get(); static CModemAudioManager* create(IModemStatusNotifier *observer); private: static CModemAudioManager* _pModemAudioManager; };
[ "angel666.ib@gmail.com" ]
angel666.ib@gmail.com
c2b411f276fb406114ad06406b6df2d5f6d036e2
4fc5393b60bc17bc639021ed165cb27ec4e17e31
/Interfacing Ultrasonic sensor and DC motor using L293D and Arduino Uno on Tinkercad.cpp
bd4b703e2cfd65773d3d9f98013361938e34f2da
[]
no_license
kckartik17/Tinkercad-codes
7998867fd04e17b060df8d69dbd68bff21bd16ef
9ec448ed01e2626e79c6c58e2d4616d1708b65a1
refs/heads/master
2022-09-05T21:37:09.857695
2020-05-31T13:58:54
2020-05-31T13:58:54
268,290,386
1
0
null
null
null
null
UTF-8
C++
false
false
1,054
cpp
# define input_1 10 # define input_2 9 # define pwm A0 int cm = 0; long readUltrasonicDistance(int triggerPin, int echoPin) { pinMode(triggerPin, OUTPUT); // Clear the trigger digitalWrite(triggerPin, LOW); delayMicroseconds(2); // Sets the trigger pin to HIGH state for 10 microseconds digitalWrite(triggerPin, HIGH); delayMicroseconds(10); digitalWrite(triggerPin, LOW); pinMode(echoPin, INPUT); // Reads the echo pin, and returns the sound wave travel time in microseconds return pulseIn(echoPin, HIGH); } void setup() { Serial.begin(9600); pinMode(input_1,OUTPUT); pinMode(input_2,OUTPUT); pinMode(pwm,OUTPUT); } void loop() { cm = 0.01723 * readUltrasonicDistance(7, 7); if(cm<20){ digitalWrite(input_1,HIGH); digitalWrite(input_2,LOW); analogWrite(pwm,100); }else if(cm>19 && cm<=35){ digitalWrite(input_1,LOW); digitalWrite(input_2,LOW); }else{ digitalWrite(input_1,LOW); digitalWrite(input_2,HIGH); analogWrite(pwm,100); } delay(100); // Wait for 100 millisecond(s) }
[ "noreply@github.com" ]
kckartik17.noreply@github.com
50b50a52ccc0697c6f92c154e83915d4a125c56a
45ca4ef13e50719548db781333a8cf1794cdac6d
/NCSG/NCSG.cpp
60cb35e5fa4f4c81c95938292e6476969702e9c6
[]
no_license
JackJinWang/NCSG
d9f6b32d82f69bed94c6ac1ef1c9c6a0e64e8bb1
99a27edb3d8fb39ac5a523cd704543128f5d75c6
refs/heads/master
2021-07-21T06:21:16.941884
2017-10-31T03:11:54
2017-10-31T03:11:54
108,935,306
2
0
null
null
null
null
GB18030
C++
false
false
21,972
cpp
#include"NCSG.h" #include<iostream> #include<limits.h> using namespace std; const int NOSUCCESSOR = INT_MAX; NCSG::NCSG(int dimension, int number_character, vector<int **>st) { this->dimension = dimension; this->number_character = number_character; this->st = st; } void NCSG::getDominant() { // vector<int *> k_th_dominant; // int index = 0; //DM表序号 int *source_point = new int[dimension]; for (int i = 0; i < dimension; i++) { source_point[i] = 0; } DM dm(index,source_point,dimension); this->V.push_back(dm); //加入到边集合 // k_th_dominant.push_back(source_point); //加入(0,。。。0)点 // dominants.push_back(k_th_dominant); // st_temp[i][j][k] i表示第几个序列 j表示序列第几个字符 k表示序列的第几列 // vector<int *> first_th_dominant; for (int i = 0; i < number_character; i++) { int *point = new int[dimension]; for (int j = 0; j < dimension; j++) point[j] = st[j][i][0]; index++; DM dm(index, point, dimension); this->V.push_back(dm); //加入到边集合 getAllDominant(point); // first_th_dominant.push_back(point); } // dominants.push_back(first_th_dominant); } void NCSG::getAllDominant(int *inpoint) { if (!haveSuccessor(inpoint)) //无后继终止递归 return; for (int i = 0; i < number_character; i++) { int *point = new int[dimension]; for (int j = 0; j < dimension; j++) { int number = inpoint[j]; point[j] = st[j][i][number]; } if (!isInDM(point)&&isSuccessor(point)) { index++; DM dm(index, point, dimension); this->V.push_back(dm); //加入到边集合 // cout <<"输出位置"<< index<<endl; getAllDominant(point); //递归求解 } } } void NCSG::buildNCSG() { ncsgindex = 0; int size = V.size()+1; //加入汇点(无穷点) number_dominant = size; E = new int*[size]; for (int i = 0; i < size; i++) E[i] = new int[size]; //初始化E矩阵 for (int i = 0; i < size; i++) { for (int j = 0; j < size; j++) { E[i][j] = 0; } } //构造d0与d1; int *source_point = new int[dimension]; for (int i = 0; i < dimension; i++) { source_point[i] = 0; } V.clear(); DM dm(ncsgindex, source_point, dimension); this->V.push_back(dm); //加入到边集合 for (int i = 0; i < number_character; i++) { int *point = new int[dimension]; for (int j = 0; j < dimension; j++) point[j] = st[j][i][0]; ncsgindex++; E[0][ncsgindex] = 1; DM dm(ncsgindex, point, dimension); this->V.push_back(dm); buildAllNCSG(point, ncsgindex); // first_th_dominant.push_back(point); } } void NCSG::buildAllNCSG(int *inpoint,int inindex) { if (!haveSuccessor(inpoint) && isSuccessor(inpoint)) //无后继终止递归,//如果不存在后嵇点与汇点相连 { E[inindex][number_dominant - 1] = 1; return; } for (int i = 0; i < number_character; i++) { int *point = new int[dimension]; for (int j = 0; j < dimension; j++) { int number = inpoint[j]; point[j] = st[j][i][number]; } //如果不存在加入点 if (!isInDM(point) && isSuccessor(point)) { ncsgindex++; E[inindex][ncsgindex] = 1; DM dm(ncsgindex, point, dimension); this->V.push_back(dm); //加入到边集合 buildAllNCSG(point, ncsgindex); //递归求解 }else if (isInDM(point) && isSuccessor(point)) { //如果存在边相连 /* cout << "******************" << endl; cout << "已存在" << endl; cout << "前驱点" << endl; for (int j = 0; j < dimension; j++) { cout<<inpoint[j]<<" "; } cout << endl; cout << "后继点" << endl; for (int j = 0; j < dimension; j++) { cout << point[j] << " "; } this->show(); cout <<"******************"<<endl; */ //找到存在点的序号 int exitnumber = getPointIndex(point); E[inindex][exitnumber] = 1; // buildAllNCSG(point, ncsgindex); //递归求解 } } } void NCSG::forwardTopSort() { int levelnum = -1; //初始化矩阵 vector<int> dominatindex; //将dominant序列放入 k_level_forward = new int[number_dominant]; for (int i = 0; i < number_dominant; i++) { dominatindex.push_back(i); } int **tempE; tempE = new int*[number_dominant]; topsort = new int*[number_dominant]; for (int i = 0; i < number_dominant; i++) { topsort[i] = new int[number_dominant]; tempE[i] = new int[number_dominant]; } for (int i = 0; i < number_dominant; i++) { for (int j = 0; j < number_dominant; j++) { tempE[i][j] = E[i][j]; topsort[i][j] = E[i][j]; } } //不断删除入度为0的点 //计算入度放入indegeree while (dominatindex.size() > 0) { vector<int> k_level; //存放index; //计算入度 int flag = 0; //退出时删除点 for (int i = 0; i < dominatindex.size(); i++) { int count = dominatindex[i]; int sum = 0; //计算入度 for (int j = 0; j < number_dominant; j++) { sum = sum + tempE[j][count]; } //入度为0则存入级别 if (sum == 0) { k_level_forward[count] = levelnum + 1; k_level.push_back(count); } } k_dominants.push_back(k_level); levelnum++; //删除入度为0点 for (int i = 0; i < k_level.size(); i++) { int count = k_level[i]; vector <int>::iterator Iter; Iter = dominatindex.begin(); while (Iter != dominatindex.end()) { if (count == *Iter) { dominatindex.erase(Iter); Iter = dominatindex.begin(); //如果删除点与前向点有关系则需构建图 vector<int> record; for (int i = 0; i < number_dominant; i++) { if (E[i][count] == 1) record.push_back(i); } for (int i = 0; i < record.size(); i++) { for (int j = i + 1; j < record.size(); j++) { int number1 = record[i]; int number2 = record[j]; if (E[number1][number2] == 1) { topsort[number1][count] = 0; } if (E[number2][number1] == 1) { topsort[number2][count] = 0; } } } break; } else ++Iter; } //更改矩阵删除边 for (int j = 0; j < number_dominant; j++) { tempE[count][j] = 0; } } } MAX_LEVEL = levelnum; //跨级别边删除 for (int i = 0; i < number_dominant; i++) { for (int j = 0; j < number_dominant; j++) { if ((topsort[i][j] == 1) && (j != number_dominant - 1) && ((k_level_forward[j] - k_level_forward[i])>1)) topsort[i][j] = 0; } } int number = 0; for (int i = 0; i < number_dominant; i++) { number = 0; for (int j = 0; j < number_dominant; j++) { if (topsort[i][j] == 1) break; else number++; } if (number == number_dominant) for (int j = 0; j < number_dominant; j++) { topsort[i][j] = E[i][j]; } } for (int i = 0; i < number_dominant; i++) { delete[] tempE[i]; } delete[] tempE; } void NCSG::backTopSort() { backsort = new int*[number_dominant]; for (int i = 0; i < number_dominant; i++) { backsort[i] = new int[number_dominant]; } //拓扑矩阵赋值 for (int i = 0; i < number_dominant; i++) { for (int j = 0; j < number_dominant; j++) { backsort[i][j] = topsort[i][j]; } } //拓扑矩阵反向求路径 for (int i = 0; i < number_dominant; i++) { for (int j = 0; j < i; j++) { int temp = backsort[i][j]; backsort[i][j] = backsort[j][i]; backsort[j][i] = temp; } } //后向拓扑排序 int levelnum = -1; k_level_backward = new int[number_dominant]; //初始化矩阵 vector<int> dominatindex; //将dominant序列放入 for (int i = 0; i < number_dominant; i++) { dominatindex.push_back(i); } int **tempE; tempE = new int*[number_dominant]; for (int i = 0; i < number_dominant; i++) { tempE[i] = new int[number_dominant]; } for (int i = 0; i < number_dominant; i++) { for (int j = 0; j < number_dominant; j++) { tempE[i][j] = backsort[i][j]; } } //不断删除入度为0的点 //计算入度放入indegeree while (dominatindex.size() > 0) { vector<int> k_level; //存放index; //计算入度 int flag = 0; //退出时删除点 for (int i = 0; i < dominatindex.size(); i++) { int count = dominatindex[i]; int sum = 0; //计算入度 for (int j = 0; j < number_dominant; j++) { sum = sum + tempE[j][count]; } //入度为0则存入级别 if (sum == 0) { k_level.push_back(count); k_level_backward[count] = levelnum + 1; } } k_dominants_back.push_back(k_level); levelnum++; //删除入度为0点 for (int i = 0; i < k_level.size(); i++) { int count = k_level[i]; vector <int>::iterator Iter; Iter = dominatindex.begin(); while (Iter != dominatindex.end()) { if (count == *Iter) { dominatindex.erase(Iter); Iter = dominatindex.begin(); //如果删除点与前向点有关系则需构建图 vector<int> record; for (int i = 0; i < number_dominant; i++) { if (E[i][count] == 1) record.push_back(i); } for (int i = 0; i < record.size(); i++) { for (int j = i + 1; j < record.size(); j++) { int number1 = record[i]; int number2 = record[j]; if (E[number1][number2] == 1) { topsort[number1][count] = 0; } if (E[number2][number1] == 1) { topsort[number2][count] = 0; } } } break; } else ++Iter; } //更改矩阵删除边 for (int j = 0; j < number_dominant; j++) { tempE[count][j] = 0; } } } //判断前向后巷相加不为最大层级删除 for (int i = 0; i < number_dominant; i++) { if ((k_level_backward[i] + k_level_forward[i]) != MAX_LEVEL) { delete_point_back.push_back(i); } } //构造后巷图 for (int i = 0; i < delete_point_back.size(); i++) { for (int j = 0; j < number_dominant; j++) { backsort[j][delete_point_back[i]] = 0; backsort[delete_point_back[i]][j] = 0; } } for (int i = 0; i < number_dominant; i++) { delete[] tempE[i]; } delete[] tempE; } void NCSG::getPath() { //拓扑矩阵反向求路径 for (int i = 0; i < number_dominant; i++) { for (int j = 0; j < i; j++) { int temp = backsort[i][j]; backsort[i][j] = backsort[j][i]; backsort[j][i] = temp; } } state_isstack = new int[number_dominant]; for (int i = 0; i < number_dominant; i++) { state_isstack[i] = 0; } // state_isstack[0] = 1; // stack.push_back(0); // searchPath(0); search(); } void NCSG::setString(string *T,int number) { this->T = new string[number]; for (int i = 0; i < number; i++) { this->T[i] = T[i]; } } void NCSG::search() { int **tempE; tempE = new int*[number_dominant]; for (int i = 0; i < number_dominant; i++) { tempE[i] = new int[number_dominant]; } for (int i = 0; i < number_dominant; i++) { for (int j = 0; j < number_dominant; j++) { tempE[i][j] = 0; } } stack.push_back(0); state_isstack[0] = 1; while(!stack.empty()) { int elem = stack[stack.size()-1];//获得栈顶元素 if (elem == number_dominant - 1)//找到了一条路径 { // path = Traverse(mystack); // if (stack.size() == MAX_LEVEL + 1) // { for (int i = 0; i < stack.size(); i++) { singlePath.push_back(stack[i]); if (stack[i] == 0) cout << 0 << "->"; else if (stack[i] == number_dominant - 1) cout << "终点" << "->"; else { int show_number = (V[stack[i]].getPoint())[0]; char show = T[0][show_number - 1]; cout << show << "(" << stack[i] << ")" << "->"; } } cout << endl; allPath.push_back(singlePath); // } state_isstack[elem] = 0; for (int i = 0; i < number_dominant; i++) { if ((backsort[elem][i] == 1) && (state_isstack[i] == 0)) { tempE[elem][i] = 0; } if ((backsort[i][elem] == 1) && (state_isstack[i] == 0)) { tempE[i][elem] = 0; } } // UpdateArcStatus();//更新ArcStatus[][],使得所有两个端点都不在栈内的边的状态为0 stack.pop_back();//移除栈顶元素 } else { int i = 0; for (; i < number_dominant; i++) { if( (state_isstack[i] == 0) && (tempE[elem][i] == 0 )&& (backsort[elem][i]==1)) { state_isstack[i] = 1; tempE[elem][i] = 1; stack.push_back(i);//入栈 break; } } if (i == number_dominant)//该节点没有符合要求的后续节点 { state_isstack[elem] = 0; for (int i = 0; i < number_dominant; i++) { if ((backsort[elem][i] == 1) && (state_isstack[i] == 0)) { tempE[elem][i] = 0; } if ((backsort[i][elem] == 1) && (state_isstack[i] == 0)) { tempE[i][elem] = 0; } } // UpdateArcStaus();////更新ArcStatus[][],使得所有两个端点都不在栈内的边的状为0 stack.pop_back();//出栈 } } } for (int i = 0; i < number_dominant; i++) { delete[] tempE[i]; } delete[] tempE; } void NCSG::searchPath(int precursor) { if (stack.size() == 0) return; if (precursor == number_dominant - 1) { if (stack[0] == 0) { for (int i = 0; i < stack.size(); i++) { if (stack[i] ==0) cout << 0 << "->"; else if (stack[i]==number_dominant -1 ) cout << "终点" << "->"; else { int show_number = (V[stack[i]].getPoint())[0]; char show = T[0][show_number - 1]; cout << show << "->"; } } cout << endl; } state_isstack[stack[stack.size()-1]] = 0; int top_first = stack[stack.size() - 1]; stack.pop_back(); while (stack.size()>0) { int top = stack[stack.size()-1]; int flag = 0; for (int i = 0; i < number_dominant; i++) { if ((backsort[top][i] == 1) && (i != top_first) && (state_isstack[i] == 0)) { stack.push_back(i); state_isstack[i] = 1; searchPath(i); break; } flag++; } if (flag == number_dominant) { top_first = stack[stack.size() - 1]; if (stack.size() > 1) { int top_second = stack[stack.size() - 2]; int i; for (i = 0; i < number_dominant; i++) { if ((backsort[top_second][i] == 1) && (state_isstack[i] == 0) && (i != top_first)) { state_isstack[top_first] = 1; break; } } if (i == number_dominant) state_isstack[top] = 0; } stack.pop_back(); } } return; } for (int i = 0; i < number_dominant; i++) { if ((backsort[precursor][i] == 1) && (state_isstack[i])==0) { state_isstack[i] = 1; stack.push_back(i); searchPath(i); } } } void NCSG::getAllPath(int precursor) { vector<int> path; int **tempBcak;//用以标记走过的路径 tempBcak = new int*[number_dominant]; for (int i = 0; i < number_dominant; i++) { tempBcak[i] = new int[number_dominant]; } for (int i = 0; i < number_dominant; i++) { for (int j = 0; j < number_dominant; j++) { tempBcak[i][j] = 0; } } //拓扑矩阵反向求路径 for (int i = 0; i < number_dominant; i++) { for (int j = 0; j < i; j++) { int temp = backsort[i][j]; backsort[i][j] = backsort[j][i]; backsort[j][i] = temp; } } int *outdegree; //计算出度表 outdegree = new int[number_dominant]; for (int i = 0; i < number_dominant; i++) { int sum = 0; for (int j = 0; j < number_dominant; j++) { sum = sum + backsort[i][j]; outdegree[i] = sum; } } int flag = 0; for (int j = 0; j < number_dominant; j++) { if ((backsort[precursor][j] == 1) && (tempBcak[precursor][j])==0) { path.push_back(j); if (outdegree[precursor]>1) { tempBcak[precursor][j] == 1; } outdegree[precursor] = outdegree[precursor] - 1; getAllPath(j); } else flag++; } if (flag == number_dominant) { for (int i = 0; i < path.size(); i++) { cout << path[i] << "->"; } cout << endl; while (path.size()>0) { } return; } } int NCSG::getPointIndex(int *point) { int size = V.size(); int flag = 0; for (int i = 0; i < size; i++) { flag = 0; for (int j = 0; j < dimension; j++) { if ((V[i].getPoint())[j] == point[j]) flag++; } if (flag == dimension) { /* cout << V[i].getIndex()<<":"<<endl; for (int f = 0; f < dimension; f++) { cout << (V[i].getPoint())[f] << " "; } cout << endl; cout << "传入点:" << endl; for (int f = 0; f < dimension; f++) { cout << point[f] << " "; } cout << endl; */ return V[i].getIndex(); } } return INT_MAX; } bool NCSG::isSuccessor(int *point) { int flag = 0; for (int i = 0; i < dimension; i++) { if (point[i] == NOSUCCESSOR) return false; } return true; } //判断是否有后继点 bool NCSG::haveSuccessor(int *point) { // vector<int*> successor; int flag = 0; bool remember;//是否是后继点 是存储 不是 for (int i = 0; i < number_character; i++) { remember = true; int *temp_point; // cout << "i:" << i << endl; for (int j = 0; j < dimension; j++) { temp_point = new int[dimension]; int number = point[j]; temp_point[j] = st[j][i][number]; if (temp_point[j] == NOSUCCESSOR) { remember = false; flag++; break; } // cout << temp_point[j] << " "; } cout << endl; // if (remember) // successor.push_back(temp_point); } if (flag == number_character) return false; else return true; } bool NCSG::isInDM(int *point) { DM temp_dm; int flag = 0; for (int i = 0; i < V.size(); i++) { flag = 0; temp_dm = V[i]; for (int j = 0; j < dimension; j++) { if (point[j] == (temp_dm.getPoint())[j]) flag++; } if (flag == dimension) return true; } return false; } void NCSG::show() { cout << "********************分层结果****************" << endl; int number = k_dominants.size(); for (int i = 0; i < number; i++) { cout << i << "-th" << endl; int queuenumber = k_dominants[i].size(); for (int j = 0; j < queuenumber; j++) { cout << k_dominants[i][j]<< " "; cout << endl; } } cout << "********************DM索引表结果****************" << endl; cout << "DM" << endl; for (int i = 0; i < V.size(); i++) { cout << V[i].getIndex()<<","; for (int j = 0; j < dimension; j++) { cout << (V[i].getPoint())[j] << " "; } cout << endl; } cout << "********************NCSG图****************" << endl; cout << "NCSG" << endl; int size = V.size() + 1; //加入汇点(无穷点) //初始化E矩阵 cout << 0 << ":"; for (int j = 0; j < size; j++) { if (j>10) cout << j<<" "; else cout << j << " "; } cout << endl; int sum = 0; for (int i = 0; i < size; i++) { cout << i << ":"; for (int j = 0; j < size; j++) { sum = sum + E[i][j]; cout <<E[i][j] <<" "; } cout << endl; } cout << "边的总数为" << sum<<endl; sum = 0; cout << "********************前向拓扑排序结果及图****************" << endl; cout << "forwordsortNCSG" << endl; //初始化E矩阵 cout << 0 << ":"; for (int j = 0; j < size; j++) { if (j>10) cout << j << " "; else cout << j << " "; } cout << endl; for (int i = 0; i < size; i++) { cout << i << ":"; for (int j = 0; j < size; j++) { sum = sum + topsort[i][j]; cout << topsort[i][j] << " "; } cout << endl; } cout << "边的总数为" << sum << endl; sum = 0; cout << "********************后向拓扑排序结果及图****************" << endl; cout << "backsortNCSG" << endl; //初始化E矩阵 cout << 0 << ":"; int flag = 0; for (int j = 0; j < size; j++) { flag = 0; for (int i = 0; i < delete_point_back.size(); i++) { if (delete_point_back[i] == j) flag = 1; } if (flag == 1) continue; if (j>10) cout << j << " "; else cout << j << " "; } cout << endl; for (int i = 0; i < size; i++) { flag = 0; for (int k = 0; k < delete_point_back.size(); k++) { if (delete_point_back[k] == i) flag = 1; } if (flag == 1) continue; cout << i << ":"; for (int j = 0; j < size; j++) { flag = 0; for (int k = 0; k < delete_point_back.size(); k++) { if (delete_point_back[k] == j) flag = 1; } if (flag == 1) continue; sum = sum + backsort[i][j]; cout << backsort[i][j] << " "; } cout << endl; } cout << "边的总数为" << sum << endl; cout << "********************前向拓扑排序每点的级别****************" << endl; cout << "前向级别" << endl; for (int i = 0; i < number_dominant; i++) { cout << k_level_forward[i]<<" "; } cout << endl; cout << "********************后向拓扑排序每点级别****************" << endl; cout << "后向级别" << endl; for (int i = 0; i < number_dominant; i++) { cout << k_level_backward[i] << " "; } cout << endl; cout << "********************后向拓扑排序删除的点****************" << endl; cout << "后序删除的点" << endl; for (int i = 0; i < delete_point_back.size(); i++) { cout << delete_point_back[i] << " "; } } NCSG::~NCSG() { if (T!=nullptr) { delete[]T; } if (k_level_forward != nullptr) { delete[]T; } if (k_level_backward != nullptr) { delete[]T; } if (state_isstack != nullptr) { delete[]state_isstack; } if (topsort != nullptr) { for (int i = 0; i < number_dominant; i++) { delete[] topsort[i]; } delete[] topsort; } if (E != nullptr) { for (int i = 0; i < number_dominant; i++) { delete[] E[i]; } delete[] E; } if (backsort != nullptr) { for (int i = 0; i < number_dominant; i++) { delete[] backsort[i]; } delete[] backsort; } //消除内存vector中new的空间 for (int i = 0; i < st.size(); i++) { int **temp = st[i]; int number = T[i].size(); for (int j = 0; j<number_character; j++) { delete[number]temp[j]; temp[j] = NULL; } delete[number_character]temp; temp = NULL; } st.clear(); }
[ "wang2695685@163.com" ]
wang2695685@163.com
34fbcc3282b399cb82755d911b0f646498c544ad
aa0c1578db1ded2c310747bd95953bd8334542bd
/project/src/ARM_project.cpp
b3bb7622be3449a9cf5bd8d2d6f6bc6856d0465f
[]
no_license
LPoeppel/Helsinki_ARM_MCUXpresso
1bc31d77f463648e239b1e1f8dfab541ab20ad60
36e494eadd52f901749f1ae1dc6229ec8b17c4fa
refs/heads/master
2023-05-31T12:01:41.507056
2021-07-12T16:29:12
2021-07-12T16:29:12
204,646,859
0
0
null
null
null
null
UTF-8
C++
false
false
2,723
cpp
/* =============================================================================== Name : main.c Author : Version : project Copyright : $(copyright) Description : main definition =============================================================================== */ #if defined (__USE_LPCOPEN) #if defined(NO_BOARD_LIB) #include "chip.h" #else #include "board.h" #endif #endif #include <cr_section_macros.h> // TODO: insert other include files here #include "FreeRTOS.h" #include "task.h" #include "semphr.h" #include "ITM_write.h" #include "user_vcom.h" // TODO: insert other definitions and declarations here #include "config.h" #include "functions.h" // // Private functions // QueueHandle_t xQueueCommands = NULL; TaskHandle_t xTaskMain = NULL; TaskHandle_t xTaskRead = NULL; //Tasks static void vMainTask(void *pvParameters){ vTaskDelay(100); ITM_write("online MainTask\r\n"); unsigned char ok[] = "OK\n"; while(1){ ulTaskNotifyTake(pdTRUE, portMAX_DELAY); command_struct type = parse(xQueueCommands); if(type.type != Z0){ run(type); ITM_write("OK\r\n"); //xSemaphoreGive(mutex); // xTaskNotifyGive(xTaskRead); USB_send(ok, 3); }else{ ITM_write("FAIL\n\r"); vTaskSuspend(NULL); } }//while(1) } static void vReadTask( void *pvParameters ){ vTaskDelay(100); ITM_write("online ReadTask\r\n"); char buffer[64]; while(1){ // ulTaskNotifyTake(pdTRUE, portMAX_DELAY); USB_receive((uint8_t *)buffer, 64); if(!isNotEmpty(buffer)){ vTaskDelay(10); }else{ xQueueSendToBack(xQueueCommands, buffer, 10); xTaskNotifyGive(xTaskMain); } }//while(1) } // the following is required if runtime statistics are to be collected extern "C" { void vConfigureTimerForRunTimeStats( void ) { Chip_SCT_Init(LPC_SCTSMALL1); LPC_SCTSMALL1->CONFIG = SCT_CONFIG_32BIT_COUNTER; LPC_SCTSMALL1->CTRL_U = SCT_CTRL_PRE_L(255) | SCT_CTRL_CLRCTR_L; // set prescaler to 256 (255 + 1), and start timer } } // // @brief project, plotter // @return Nothing, function should not exit // int main(void) { prvSetupHardware(); xQueueCommands = xQueueCreate(5, sizeof(char)*64); xTaskCreate(vReadTask, "vTaskRead", configMINIMAL_STACK_SIZE + 512, NULL, (tskIDLE_PRIORITY + 1UL), &xTaskRead); xTaskCreate(vMainTask, "vTaskMain", configMINIMAL_STACK_SIZE + 1024, NULL, (tskIDLE_PRIORITY + 1UL), &xTaskMain); xTaskCreate(cdc_task, "CDC", configMINIMAL_STACK_SIZE, NULL, (tskIDLE_PRIORITY + 1UL), (TaskHandle_t *) NULL); // Start the scheduler vTaskStartScheduler(); // Should never arrive here return 1; }
[ "noreply@github.com" ]
LPoeppel.noreply@github.com
af3af35f7b15bcdc231d8db595e45d2bb1ae7eb1
124f415dea0a7d4ec2e8ae1ce11194b89ddd9e77
/Projects/Project5/main.cpp
e5a03f54b64389bdab713740bcdd6081d7a678e4
[]
no_license
GauteHolen/Fys3150_MyCode
9fc076b27e2e13741d6e3e46d224ce96aee969a2
a83c16d5739ea2e32f21afd20a3cd4a50661438d
refs/heads/master
2023-02-01T14:26:26.434510
2020-12-17T22:54:09
2020-12-17T22:54:09
289,979,434
0
0
null
null
null
null
UTF-8
C++
false
false
3,825
cpp
#include "./cpp_codes/RK_solver.hpp" #include "./cpp_codes/MC_solver.hpp" #include <omp.h> int main(int argc, char const *argv[]){ /*==================== Input parameters ======================*/ string mode = argv[1]; string filename = argv[2]; double a = atof(argv[3]); double b = atof(argv[4]); double c = atof(argv[5]); int S_0 = atoi(argv[6]); int I_0 = atoi(argv[7]); int R_0 = atoi(argv[8]); double t_0 = atof(argv[9]); double t_n = atof(argv[10]); double n_steps = atof(argv[11]); double N = S_0 + R_0 + I_0; double d = atof(argv[12]); double dI = atof(argv[13]); double e = atof(argv[14]); double f = atof(argv[15]); double w = atof(argv[16]); double A = atof(argv[17]); double f_BULK = atof(argv[18]); double bulk_stock = atoi(argv[19]); /*------------------------------------------------------------ /*==================== Runge-Kutta solver ======================*/ cout<<"Starting Runge-Kutta solver..."<<endl; RK_solver solver; solver.init_constants(a,b,c,d,dI,e,f,w,A); solver.init_population(N,S_0,I_0,R_0); if(d+dI+e+f+A==0){ //Simple case with only a,b and c cout<<"Runge-Kutta solver with no optional parameters"<<endl; solver.expected_values(); solver.solve(t_0,t_n,n_steps, &RK_solver::susceptible, &RK_solver::infected, &RK_solver::recovering); } else if(d+dI+e>0 && f+A == 0){ //Only vital parameters cout<<"Runge-Kutta solver with only option: vital"<<endl; solver.solve(t_0,t_n,n_steps, &RK_solver::vitalS, &RK_solver::vitalI, &RK_solver::vitalR); } else if(f>0 && d+dI+e+A == 0){ cout<<"Runge-Kutta solver with only opetion: vaccination"<<endl; solver.solve(t_0,t_n,n_steps, &RK_solver::vaccineS, &RK_solver::vaccineI, &RK_solver::vaccineR); } else if(A>0 && d+dI+e+f == 0){ cout<<"Runge-Kutta solver with only seasonal variations"<<endl; solver.solve(t_0,t_n,n_steps, &RK_solver::seasonalS, &RK_solver::seasonalI, &RK_solver::seasonalR); } else{ //Cover all parameters cout<<"Runge-Kutta solver more than one optional parameter group"<<endl; solver.solve(t_0,t_n,n_steps, &RK_solver::allS, &RK_solver::allI, &RK_solver::allR); } solver.print_runtime(); solver.write_to_file(filename); cout<<"Runge-Kutta solver DONE"<<endl; /*------------------------------------------------------------ /*==================== Monte Carlo solver ======================*/ cout<<"Starting Monte-Carlo solver..."<<endl; if(mode=="multiple"){ int n_runs = atoi(argv[20]); MC_solver mc_multiple; cout<<"Multiple run mode"<<endl; double start_time = mc_multiple.init_multiple_runs(filename); { #pragma omp parallel for for (int i = 0; i < n_runs; i++) { MC_solver *mc_solver = new MC_solver; mc_solver->init_constants(a,b,c,d,dI,e,f,w,A); mc_solver->init_population(N,S_0,I_0,R_0); mc_solver->run(t_0,t_n,mode,i+1); mc_solver->write_multiple_runs(filename); delete mc_solver; } } mc_multiple.multiple_run_time(filename,start_time); } else { MC_solver mc_solver; mc_solver.init_constants(a,b,c,d,dI,e,f,w,A); mc_solver.init_population(N,S_0,I_0,R_0); if(mode=="BULK"){ mc_solver.init_bulkvacc(f_BULK, bulk_stock); } mc_solver.run(t_0,t_n,mode,1); mc_solver.write_to_file(filename); mc_solver.print_runtime(); } cout<<"Monte-Carlo solver DONE"<<endl; }
[ "gaute.ah@gmail.com" ]
gaute.ah@gmail.com
15abb55b0ea3a9f5093c8099348f2bd8ebcbd3ae
4d906ccba5092b22d252c779b5474f15c0418024
/coordinateStack.cpp
3a103fd67d0c1bf2076743648c0b39f4936b7913
[]
no_license
EgeBerkYurtkoruyan/coordinateStack
52660735fd6594766318aef97fe23f8dcd7389f8
bb7db0fd76a22bce6e53b8b323d7e9922c44f630
refs/heads/main
2023-03-10T03:03:34.682400
2021-02-21T14:50:19
2021-02-21T14:50:19
340,925,624
0
0
null
null
null
null
UTF-8
C++
false
false
1,398
cpp
// // coordinateStack.cpp // // Created by Ege Berk Yurtkoruyan on 22.03.2020. // Copyright © 2020 Ege Berk Yurtkoruyan. All rights reserved. // #include "coordinateStack.hpp" // THE PART BELOW IS THE CONSTRUCTOR FOR STACK CLASS. stack_coords::stack_coords(){ top = NULL; } // THE PART BELOW IS THE PUSH FUNCTION. THIS FUNCTION ADDS THE REFERANCE VALUE ON TOP OF THE STACK. void stack_coords::push(int x , int y){ node_stack* ptr; ptr = new node_stack(x, y); if(isEmpty()) top = ptr; else{ ptr->next = top; top = ptr; } } // THE PART BELOW IS POP FUNCTION. THIS FUNCTION DELETES THE TOP ELEMENT OF THE STACK WHILE CHANGING THE REFERANCE VALUES TO THE DELETED ELEMENT'S VALUES. void stack_coords::pop(int & x, int & y){ if(isEmpty()){ std::cout << "Stack is empty" << std::endl; }else{ node_stack* temp = top; x = temp->x; y = temp->y; top = top->next; delete temp; } } // THE PART BELOW IS THE .isEmpty() FUNCTION. THIS FUNCTION RETURNS TRUE IF THE STACK IS EMPTY AND RETURNS FALSE OTHERWISE. bool stack_coords::isEmpty(){ if(top == NULL) return true; else return false; } stack_coords::~stack_coords(){ int a, b; while(top != NULL){ pop(a, b); } delete top; }
[ "noreply@github.com" ]
EgeBerkYurtkoruyan.noreply@github.com
cb17c0dae1dafcefdd38e4e05f41b8803b566568
84a557805488ebd5fedcef318d4af5f308d4bb70
/engine/InputSystem.hpp
6a06cdaae601ac2979388381d767aded5f5cf544
[ "CC-BY-4.0" ]
permissive
GenBrg/MagicCastlevania
42e3e49b25d60e240bce335d755650f2fee1f6c1
76ed248d4f0362ea92d29a159a2027d5b16c8a7b
refs/heads/main
2023-01-30T07:44:33.987324
2020-12-12T03:41:39
2020-12-12T03:41:39
307,784,734
3
0
null
null
null
null
UTF-8
C++
false
false
781
hpp
#pragma once #include "Singleton.hpp" #include <SDL.h> #include <unordered_map> #include <string> #include <functional> class InputSystem; /** * Input system that maps each key code to action. * @author Jiasheng Zhou */ class InputSystem : public Singleton<InputSystem> { public: struct KeyState { uint8_t downs = 0; uint8_t pressed = 0; bool released = false; void Clear(); }; void Register(SDL_Keycode keycode, const std::function<void(KeyState&, float)>& action); void Unregister(SDL_Keycode keycode); bool OnKeyEvent(const SDL_Event& evt); void Update(float elapsed); void ClearKeyStates(); private: std::unordered_map<SDL_Keycode, std::function<void(KeyState&, float)>> input_action_map_; std::unordered_map<SDL_Keycode, KeyState> key_states_; };
[ "2322168080@qq.com" ]
2322168080@qq.com
7699d23982f8f7b322f6bd421ac92d4727d6c1fa
1c9d04a9352e6d86480f9e0947f930db042d8e80
/src/plugins/ros2/navigator_thread.h
1ff59cd62233a641e45af6a9f22e51340a1ee896
[]
no_license
fawkesrobotics/fawkes
2c9de0cdb1dfcc951806434fe08458de5a670c8a
ad8adc34f9c73ace1e6a6517624f7c7089f62832
refs/heads/master
2023-08-31T01:36:15.690865
2023-07-04T17:05:55
2023-07-04T17:05:55
1,030,824
62
26
null
2023-07-04T17:05:57
2010-10-28T04:22:55
C++
UTF-8
C++
false
false
4,410
h
/*************************************************************************** * navigator_thread.h - Robotino ROS2 Navigator Thread * * Created: Sat June 09 15:13:27 2012 * Copyright 2012 Sebastian Reuter ****************************************************************************/ /* This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * Read the full text in the LICENSE.GPL file in the doc directory. */ #ifndef _ROS2_NAVIGATOR_THREAD_H_ #define _ROS2_NAVIGATOR_THREAD_H_ #include <aspect/blackboard.h> #include <aspect/blocked_timing.h> #include <aspect/clock.h> #include <aspect/configurable.h> #include <aspect/logging.h> #include <aspect/tf.h> #include <core/threading/thread.h> #include <interfaces/NavigatorInterface.h> #include <interfaces/Position3DInterface.h> #include <plugins/ros2/aspect/ros2.h> #include <geometry_msgs/msg/pose_stamped.hpp> #include <nav2_msgs/action/navigate_to_pose.hpp> #include <rclcpp/rclcpp.hpp> #include <rclcpp_action/rclcpp_action.hpp> //#include <tf2/types.h> #include <tf/types.h> #include <utils/math/angle.h> #include <math.h> #include <unistd.h> namespace fawkes { class NavigatorInterface; } class ROS2NavigatorThread : public fawkes::Thread, public fawkes::ClockAspect, // public fawkes::BlockedTimingAspect, public fawkes::LoggingAspect, public fawkes::BlackBoardAspect, public fawkes::ConfigurableAspect, public fawkes::ROS2Aspect, public fawkes::TransformAspect { public: ROS2NavigatorThread(std::string &cfg_prefix); virtual void init(); virtual void finalize(); virtual void loop(); /** Stub to see name in backtrace for easier debugging. @see Thread::run() */ protected: virtual void run() { Thread::run(); } private: void send_goal(); void stop_goals(); void load_config(); // bool set_dynreconf_value(const std::string &path, const float value); private: using NavigateToPose = nav2_msgs::action::NavigateToPose; using GoalHandleNav2 = rclcpp_action::ClientGoalHandle<NavigateToPose>; typedef rclcpp_action::Client<NavigateToPose>::SharedPtr Nav2Client; // rclcpp_action::Client<NavigateToPose>::SharedPtr client_ptr_; void transform_to_fixed_frame(); fawkes::NavigatorInterface *nav_if_; fawkes::Position3DInterface *pose_if_; Nav2Client ac_; NavigateToPose::Goal goal_; std::shared_future<GoalHandleNav2::SharedPtr> future_goal_handle_; bool connected_history_; rclcpp::Clock ros_clock_; rclcpp_action::ClientGoalHandle<NavigateToPose>::WrappedResult result_; fawkes::Time *ac_init_checktime_; std::string cfg_prefix_; // // ROS2 dynamic reconfigure parts // dynamic_reconfigure::ReconfigureRequest dynreconf_srv_req; // dynamic_reconfigure::ReconfigureResponse dynreconf_srv_resp; // dynamic_reconfigure::DoubleParameter dynreconf_double_param; // dynamic_reconfigure::Config dynreconf_conf; // std::string cfg_dynreconf_path_; // std::string cfg_dynreconf_trans_vel_name_; // std::string cfg_dynreconf_rot_vel_name_; std::string cfg_fixed_frame_; float cfg_ori_tolerance_; float cfg_trans_tolerance_; rclcpp::Parameter param_max_vel; rclcpp::Parameter param_max_rot; geometry_msgs::msg::PoseStamped base_position; float goal_position_x; float goal_position_y; float goal_position_yaw; float goal_tolerance_trans; float goal_tolerance_yaw; }; #endif /* ROS2_NAVIGATOR_THREAD_H__ */
[ "viehmann@kbsg.rwth-aachen.de" ]
viehmann@kbsg.rwth-aachen.de
d3d633c2758301140ad80d4d9c34083725dad951
367fba5df552aef1ee9aa6add6bb512b781bc6d4
/3rdParty/nodejs/8.0.0/source/src/node_win32_etw_provider-inl.h
9e3f088ff485db5650d1d7977c75191e2f7ce19a
[ "ICU", "NTP", "ISC", "LicenseRef-scancode-openssl", "Artistic-2.0", "LicenseRef-scancode-public-domain", "BSD-2-Clause", "NAIST-2003", "BSD-3-Clause", "Zlib", "LicenseRef-scancode-unknown-license-reference", "MIT", "LicenseRef-scancode-unicode", "LicenseRef-scancode-free-unknown" ]
permissive
hamoriakos/ApertusVR
2d3e5736b26404198b222d24388bb3c1c162ee69
14303ab54963e52409ed376cdafae5c43004074b
refs/heads/master
2021-09-16T00:13:48.980732
2017-06-28T18:23:14
2017-06-28T18:23:14
105,749,913
0
1
MIT
2018-06-13T13:54:38
2017-10-04T09:11:13
C++
UTF-8
C++
false
false
12,094
h
// Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to permit // persons to whom the Software is furnished to do so, subject to the // following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // USE OR OTHER DEALINGS IN THE SOFTWARE. #ifndef SRC_NODE_WIN32_ETW_PROVIDER_INL_H_ #define SRC_NODE_WIN32_ETW_PROVIDER_INL_H_ #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS #include "node_win32_etw_provider.h" #include "node_etw_provider.h" #if defined(_WIN64) # define ETW_WRITE_INTPTR_DATA ETW_WRITE_INT64_DATA #else # define ETW_WRITE_INTPTR_DATA ETW_WRITE_INT32_DATA #endif namespace node { // From node_win32_etw_provider.cc extern REGHANDLE node_provider; extern EventWriteFunc event_write; extern int events_enabled; #define ETW_WRITE_STRING_DATA(data_descriptor, data) \ EventDataDescCreate(data_descriptor, \ data, \ (strlen(data) + 1) * sizeof(*data)); #define ETW_WRITE_INT32_DATA(data_descriptor, data) \ EventDataDescCreate(data_descriptor, data, sizeof(int32_t)); #define ETW_WRITE_INT64_DATA(data_descriptor, data) \ EventDataDescCreate(data_descriptor, data, sizeof(int64_t)); #define ETW_WRITE_ADDRESS_DATA(data_descriptor, data) \ EventDataDescCreate(data_descriptor, data, sizeof(intptr_t)); #define ETW_WRITE_INT16_DATA(data_descriptor, data) \ EventDataDescCreate(data_descriptor, data, sizeof(int16_t)); #define ETW_WRITE_WSTRING_DATA_LENGTH(data_descriptor, data, data_len_bytes) \ EventDataDescCreate(data_descriptor, \ data, \ data_len_bytes); #define ETW_WRITE_NET_CONNECTION(descriptors, conn) \ ETW_WRITE_INT32_DATA(descriptors, &conn->fd); \ ETW_WRITE_INT32_DATA(descriptors + 1, &conn->port); \ ETW_WRITE_STRING_DATA(descriptors + 2, conn->remote); \ ETW_WRITE_INT32_DATA(descriptors + 3, &conn->buffered); #define ETW_WRITE_HTTP_SERVER_REQUEST(descriptors, req) \ ETW_WRITE_STRING_DATA(descriptors, req->url); \ ETW_WRITE_STRING_DATA(descriptors + 1, req->method); \ ETW_WRITE_STRING_DATA(descriptors + 2, req->forwardedFor); #define ETW_WRITE_HTTP_CLIENT_REQUEST(descriptors, req) \ ETW_WRITE_STRING_DATA(descriptors, req->url); \ ETW_WRITE_STRING_DATA(descriptors + 1, req->method); #define ETW_WRITE_GC(descriptors, type, flags) \ ETW_WRITE_INT32_DATA(descriptors, &type); \ ETW_WRITE_INT32_DATA(descriptors + 1, &flags); #define ETW_WRITE_V8ADDRESSCHANGE(descriptors, addr1, addr2) \ ETW_WRITE_ADDRESS_DATA(descriptors, &addr1); \ ETW_WRITE_ADDRESS_DATA(descriptors + 1, &addr2); #define ETW_WRITE_JSMETHOD_LOADUNLOAD(descriptors, \ context, \ startAddr, \ size, \ id, \ flags, \ rangeId, \ sourceId, \ line, \ col, \ name, \ name_len_bytes) \ ETW_WRITE_ADDRESS_DATA(descriptors, &context); \ ETW_WRITE_ADDRESS_DATA(descriptors + 1, &startAddr); \ ETW_WRITE_INT64_DATA(descriptors + 2, &size); \ ETW_WRITE_INTPTR_DATA(descriptors + 3, &id); \ ETW_WRITE_INT16_DATA(descriptors + 4, &flags); \ ETW_WRITE_INT16_DATA(descriptors + 5, &rangeId); \ ETW_WRITE_INT64_DATA(descriptors + 6, &sourceId); \ ETW_WRITE_INT32_DATA(descriptors + 7, &line); \ ETW_WRITE_INT32_DATA(descriptors + 8, &col); \ ETW_WRITE_WSTRING_DATA_LENGTH(descriptors + 9, name, name_len_bytes); #define ETW_WRITE_EVENT(eventDescriptor, dataDescriptors) \ DWORD status = event_write(node_provider, \ &eventDescriptor, \ sizeof(dataDescriptors) / \ sizeof(*dataDescriptors), \ dataDescriptors); \ CHECK_EQ(status, ERROR_SUCCESS); #define ETW_WRITE_EMPTY_EVENT(eventDescriptor) \ DWORD status = event_write(node_provider, \ &eventDescriptor, \ 0, \ NULL); \ CHECK_EQ(status, ERROR_SUCCESS); void NODE_HTTP_SERVER_REQUEST(node_dtrace_http_server_request_t* req, node_dtrace_connection_t* conn, const char *remote, int port, const char *method, const char *url, int fd) { EVENT_DATA_DESCRIPTOR descriptors[7]; ETW_WRITE_HTTP_SERVER_REQUEST(descriptors, req); ETW_WRITE_NET_CONNECTION(descriptors + 3, conn); ETW_WRITE_EVENT(NODE_HTTP_SERVER_REQUEST_EVENT, descriptors); } void NODE_HTTP_SERVER_RESPONSE(node_dtrace_connection_t* conn, const char *remote, int port, int fd) { EVENT_DATA_DESCRIPTOR descriptors[4]; ETW_WRITE_NET_CONNECTION(descriptors, conn); ETW_WRITE_EVENT(NODE_HTTP_SERVER_RESPONSE_EVENT, descriptors); } void NODE_HTTP_CLIENT_REQUEST(node_dtrace_http_client_request_t* req, node_dtrace_connection_t* conn, const char *remote, int port, const char *method, const char *url, int fd) { EVENT_DATA_DESCRIPTOR descriptors[6]; ETW_WRITE_HTTP_CLIENT_REQUEST(descriptors, req); ETW_WRITE_NET_CONNECTION(descriptors + 2, conn); ETW_WRITE_EVENT(NODE_HTTP_CLIENT_REQUEST_EVENT, descriptors); } void NODE_HTTP_CLIENT_RESPONSE(node_dtrace_connection_t* conn, const char *remote, int port, int fd) { EVENT_DATA_DESCRIPTOR descriptors[4]; ETW_WRITE_NET_CONNECTION(descriptors, conn); ETW_WRITE_EVENT(NODE_HTTP_CLIENT_RESPONSE_EVENT, descriptors); } void NODE_NET_SERVER_CONNECTION(node_dtrace_connection_t* conn, const char *remote, int port, int fd) { EVENT_DATA_DESCRIPTOR descriptors[4]; ETW_WRITE_NET_CONNECTION(descriptors, conn); ETW_WRITE_EVENT(NODE_NET_SERVER_CONNECTION_EVENT, descriptors); } void NODE_NET_STREAM_END(node_dtrace_connection_t* conn, const char *remote, int port, int fd) { EVENT_DATA_DESCRIPTOR descriptors[4]; ETW_WRITE_NET_CONNECTION(descriptors, conn); ETW_WRITE_EVENT(NODE_NET_STREAM_END_EVENT, descriptors); } void NODE_GC_START(v8::GCType type, v8::GCCallbackFlags flags, v8::Isolate* isolate) { if (events_enabled > 0) { EVENT_DATA_DESCRIPTOR descriptors[2]; ETW_WRITE_GC(descriptors, type, flags); ETW_WRITE_EVENT(NODE_GC_START_EVENT, descriptors); } } void NODE_GC_DONE(v8::GCType type, v8::GCCallbackFlags flags, v8::Isolate* isolate) { if (events_enabled > 0) { EVENT_DATA_DESCRIPTOR descriptors[2]; ETW_WRITE_GC(descriptors, type, flags); ETW_WRITE_EVENT(NODE_GC_DONE_EVENT, descriptors); } } void NODE_V8SYMBOL_REMOVE(const void* addr1, const void* addr2) { if (events_enabled > 0) { EVENT_DATA_DESCRIPTOR descriptors[2]; ETW_WRITE_V8ADDRESSCHANGE(descriptors, addr1, addr2); ETW_WRITE_EVENT(NODE_V8SYMBOL_REMOVE_EVENT, descriptors); } } void NODE_V8SYMBOL_MOVE(const void* addr1, const void* addr2) { if (events_enabled > 0) { EVENT_DATA_DESCRIPTOR descriptors[2]; ETW_WRITE_V8ADDRESSCHANGE(descriptors, addr1, addr2); ETW_WRITE_EVENT(NODE_V8SYMBOL_MOVE_EVENT, descriptors); } } void NODE_V8SYMBOL_RESET() { if (events_enabled > 0) { ETW_WRITE_EMPTY_EVENT(NODE_V8SYMBOL_RESET_EVENT); } } #define SETSYMBUF(s) \ wcscpy(symbuf, s); \ symbol_len = arraysize(s) - 1; void NODE_V8SYMBOL_ADD(LPCSTR symbol, int symbol_len, const void* addr1, int len) { if (events_enabled > 0) { wchar_t symbuf[128]; if (symbol == nullptr) { SETSYMBUF(L"nullptr"); } else { symbol_len = MultiByteToWideChar(CP_ACP, 0, symbol, symbol_len, symbuf, 128); if (symbol_len == 0) { SETSYMBUF(L"Invalid"); } else { if (symbol_len > 127) { symbol_len = 127; } symbuf[symbol_len] = L'\0'; } } void* context = nullptr; INT64 size = (INT64)len; INT_PTR id = (INT_PTR)addr1; INT16 flags = 0; INT16 rangeid = 1; INT32 col = 1; INT32 line = 1; INT64 sourceid = 0; EVENT_DATA_DESCRIPTOR descriptors[10]; ETW_WRITE_JSMETHOD_LOADUNLOAD(descriptors, context, addr1, size, id, flags, rangeid, sourceid, line, col, symbuf, (symbol_len + 1) * sizeof(symbuf[0])); ETW_WRITE_EVENT(MethodLoad, descriptors); } } #undef SETSYMBUF bool NODE_HTTP_SERVER_REQUEST_ENABLED() { return events_enabled > 0; } bool NODE_HTTP_SERVER_RESPONSE_ENABLED() { return events_enabled > 0; } bool NODE_HTTP_CLIENT_REQUEST_ENABLED() { return events_enabled > 0; } bool NODE_HTTP_CLIENT_RESPONSE_ENABLED() { return events_enabled > 0; } bool NODE_NET_SERVER_CONNECTION_ENABLED() { return events_enabled > 0; } bool NODE_NET_STREAM_END_ENABLED() { return events_enabled > 0; } bool NODE_V8SYMBOL_ENABLED() { return events_enabled > 0; } } // namespace node #endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS #endif // SRC_NODE_WIN32_ETW_PROVIDER_INL_H_
[ "akos.hamori@sztaki.mta.hu" ]
akos.hamori@sztaki.mta.hu
85ea641036f247161babd9817c22cafdd0e124f5
23de84139576dca7e4d768e6e3d43efdaa0e9d4a
/Source/JHNET/NetworkModule/NetworkTool.cpp
81af36f37cbdc851981e0314b4f3a3821b21b0ab
[]
no_license
LJH960101/FlockingGame
0c8d1948cc9222252d1ef40440ff255fffe9cc53
e9873d20b249c93bcf5a016323a17c9f4bc9c46a
refs/heads/master
2020-05-26T03:04:55.492065
2019-05-26T06:40:00
2019-05-26T06:40:00
188,084,778
1
0
null
null
null
null
UTF-8
C++
false
false
1,590
cpp
#include "NetworkTool.h" #include "Serializer.h" #include <memory> using namespace std; using namespace NetworkTool; using namespace MySerializer; int NetworkTool::Send(SOCKET sock, const char * buf, int len, int flags) { shared_ptr<char[]> newBuf(new char[len + sizeof(int)]); int intLen = IntSerialize(newBuf.get(), len); memcpy(newBuf.get() + intLen, buf, len); return SendWithoutLen(sock, newBuf.get(), len + intLen, flags); } int NetworkTool::SendWithoutLen(SOCKET sock, const char* buf, int len, int flags) { return send(sock, buf, len, flags); } int NetworkTool::SendTo(SOCKET sock, const char* buf, const int& len, sockaddr* addr, const int& addrLen) { shared_ptr<char[]> newBuf(new char[len + sizeof(int)]); int intLen = IntSerialize(newBuf.get(), len); memcpy(newBuf.get() + intLen, buf, len); return SendToWithoutLen(sock, newBuf.get(), len + intLen, addr, addrLen, 0); } int NetworkTool::SendToWithoutLen(SOCKET sock, const char* buf, const int& len, sockaddr* addr, const int& addrLen, int flags) { return sendto(sock, buf, len, flags, addr, addrLen); } bool NetworkTool::IsBigEndian() { static bool onInit = false; static bool isBigEndian = false; if (!onInit) { onInit = true; unsigned int x = 0x76543210; char *c = (char*)&x; if (*c == 0x10) { isBigEndian = false; } else { isBigEndian = true; } } return isBigEndian; } FString NetworkTool::UINT64ToFString(const UINT64 val) { return FString::Printf(TEXT("%llu"), val); } UINT64 NetworkTool::FStringToUINT64(const FString val) { return FCString::Strtoui64(*val, NULL, 10); }
[ "ljh960101@gmail.com" ]
ljh960101@gmail.com
d78d33d110b36480bc5c3b7481c85fecf40127ad
c6c40693351fe52746d1d8146fe78df97a4091f5
/Q_005_Longest_Palindromic_Substring.cpp
0becdb835404e1681db920829d4ce6828c83d2e6
[]
no_license
tzurml/leetcode
bcd5d2b6b4b5d1410c5006c52e7f89c1515f232f
554dd0a654f1b9a5253f0e272648487d283d39dd
refs/heads/master
2023-02-12T08:08:49.869424
2020-12-30T10:05:31
2020-12-30T10:05:31
285,565,660
1
0
null
null
null
null
UTF-8
C++
false
false
1,029
cpp
// // Created by tzur on 8/10/2020. // //Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. // //Example 1: // //Input: "babad" //Output: "bab" //Note: "aba" is also a valid answer. //Example 2: // //Input: "cbbd" //Output: "bb" class Solution { public: string longestPalindrome(string s) { if(s.size() <= 1){return s;} int len = s.size(); int maxstr = 0; int max = 1; for(int i = 0 ; i < len ; i++) { int j = i; int k = i; while(j+1 < len && s[j] == s[j+1]) { j++; } while(k - 1 >= 0 && j+1 < len && s[k-1] == s[j+1]) { k--; j++; } if( j - k + 1 > max) { max = j - k + 1; maxstr = k; } } return s.substr(maxstr,max); } };
[ "noreply@github.com" ]
tzurml.noreply@github.com
71abd807e170c8e7522e1493ca882dcf2140c1f7
aa4bdcdf47e15ec43b073e602ca15e7e8dc916b0
/treap.cpp
79ea5d5295d0bff75960a0b54ee7f6610b774cec
[]
no_license
newpolaris/algorithm
dbd51d036f4f892702403200919efb872aa92ec6
70e7fdc96811da7cda681cb96d7b5041d7932c76
refs/heads/master
2021-01-12T17:16:36.359070
2019-11-24T17:29:34
2019-11-24T17:29:34
71,535,310
0
0
null
null
null
null
UTF-8
C++
false
false
4,555
cpp
#include <iostream> #include <string> #include <vector> #include <random> #include <memory> #include "print_binary_tree.hpp" using namespace std; /* * note : rand is fast enough * speed up * comment - just 2x fast http://stackoverflow.com/a/3747462 * inline int fastrand() { g_seed = (214013*g_seed+2531011); return (g_seed>>16)&0x7FFF; } */ typedef int KeyType; // 트립의 한 노드를 저장한다. struct Node { // 이 노드의 우선 순위, 이 노드를 루트로 하는 서브트리의 크기 int priority, size; // 노드에 저장된 원소 KeyType key; Node *left, *right; // 생성자에서 난수 우선 순위를 생성하고, size 와 left/right를 초기화 한다. Node(KeyType key) : priority(rand()), left(nullptr), right(nullptr), key(move(key)), size(1) {} ~Node() { delete left; left = nullptr; delete right; right = nullptr; } void setLeft(Node* l) { left = l; calcSize(); } void setRight(Node* r) { right = r; calcSize(); } // element 갱신 void calcSize() { size = 1; if (left) size += left->size; if (right) size += right->size; } }; typedef pair<Node*, Node*> NodePair; // root 를 루트로 하는 트립을 key미만의 값과 이상의 값을 갖는 // 두개의 트립으로 분리한다 NodePair split(Node* root, KeyType key) { if (!root) return { nullptr, nullptr }; // 이상(같은 키 포함) 일 경우 왼쪽을 쪼갠다 if (key <= root->key) { auto pair = split(root->left, key); root->setLeft(pair.second); return { pair.first, root }; } else { auto pair = split(root->right, key); root->setRight(pair.first); return { root, pair.second }; } } Node* insert(Node* root, Node* node) { if (!root) return node; // node가 루트를 대체해야 한다. 해당 서브 트리를 반으로 잘라 // 각각 자손으로 한다 if (root->priority < node->priority) { auto pair = split(root, node->key); node->setLeft(pair.first); node->setRight(pair.second); return node; } else if (node->key < root->key) { root->setLeft(insert(root->left, node)); // 같은 키 일 경우 오른쪽 } else { root->setRight(insert(root->right, node)); } return root; } // a 와 b가 두개의 트립이고, key 값이 max(a) < min(b) 일 떄 이 둘을 합친다. Node* merge(Node* a, Node* b) { if (!a) return b; if (!b) return a; // left rotate if (a->priority < b->priority) { b->setLeft(merge(a, b->left)); return b; // right rotate } else { a->setRight(merge(a->right, b)); return a; } } // root를 루트로 하는 트립에서 key를 지우고 결과 트립의 루트를 반환한다 Node* erase(Node* root, KeyType key) { if (!root) return root; if (root->key == key) { auto node = merge(root->left, root->right); root->left = nullptr; root->right = nullptr; delete root; return node; } else { if (key < root->key) root->setLeft(erase(root->left, key)); else root->setRight(erase(root->right, key)); } return root; } Node* kth(Node* root, int k) { int leftSize = 0; if (root->left != nullptr) leftSize = root->left->size; if (k <= leftSize) return kth(root->left, k); if (k == leftSize + 1) return root; return kth(root->right, k - leftSize - 1); } // key 미만을 가지는 node 의 수를 반환한다 int countLessThan(Node* root, KeyType key) { if (root == NULL) return 0; if (root->key >= key) return countLessThan(root->left, key); int ls = (root->left ? root->left->size : 0); return ls + 1 + countLessThan(root->right, key); } // print_binary_tree 를 위한 출력 stream std::ostream& operator<<(std::ostream& strm, const Node& node) { return strm << node.key << "," << node.size; } int main() { Node* root = nullptr; root = insert(root, new Node(10)); root = insert(root, new Node(15)); root = insert(root, new Node(3)); print_ascii_tree(root); root = erase(root, 3); print_ascii_tree(root); root = erase(root, 15); print_ascii_tree(root); root = erase(root, 10); root = insert(root, new Node(10)); root = insert(root, new Node(1)); root = insert(root, new Node(10)); root = insert(root, new Node(1)); root = insert(root, new Node(10)); root = insert(root, new Node(1)); root = insert(root, new Node(10)); root = insert(root, new Node(10)); root = insert(root, new Node(10)); root = insert(root, new Node(10)); root = insert(root, new Node(1)); root = insert(root, new Node(1)); root = insert(root, new Node(1)); root = insert(root, new Node(1)); print_ascii_tree(root); delete root; root = nullptr; return 0; }
[ "newpolaris@gmail.com" ]
newpolaris@gmail.com
644867459bbdc766411cc836cacb6675f95776db
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_5662291475300352_1/C++/pwahs/c.cpp
146b16b18a98638c9e519e27f8d3bd370b2bcef4
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
C++
false
false
2,174
cpp
#include <vector> #include <list> #include <map> #include <set> #include <queue> #include <deque> #include <stack> #include <bitset> #include <algorithm> #include <functional> #include <numeric> #include <utility> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cmath> #include <cstdlib> #include <ctime> using namespace std; #define all(x) (x).begin(),(x).end() #define rep(i,n) for(int (i)=0;(i)<(n);(i)++) #define dbg(args...) {debug,args; cerr << endl;} #define mp make_pair #define mt(a,b,c) mp(a,mp(b,c)) #define P1(a) (a).first #define P2(a) (a).second #define T1(a) (a).first #define T2(a) (a).second.first #define T3(a) (a).second.second #define INF 1e20 #define EPS 1e-8 typedef long long ll; typedef pair<int,int> pii; typedef pair<int,pii> tiii; class debu{ public: template<class someClass> debu & operator,(someClass arg){ cerr << arg << " "; return *this; } } debug; void init(){ cout << setprecision(8)<< fixed; } int solve(int testnr){ int N; cin >> N; vector<int> D(N), H(N), M(N); vector<int> d, m; for(int i=0;i<N;i++){ cin >> D[i] >> H[i] >> M[i]; for(int j=0;j<H[i];j++) { d.push_back(D[i]); m.push_back(M[i] + j); } } vector< pair<double, int> > times; double longest = 0; for (int i=0;i<d.size();i++){ double time = m[i] / 360.0 * (360.0 - d[i]); times.push_back(make_pair(time, i)); longest = max(longest, time); } sort(times.begin(), times.end()); int best = times.size(); for (int infront = 0; infront < times.size(); infront++) { int take_over = times.size() - 1 - infront; double arrive_at_goal = times[infront].first; for (int i=0;i < infront;i++){ double first_arrival = times[i].first; take_over += (((int)(arrive_at_goal - first_arrival + 1e-6)) / m[times[i].second]); } best = min(best, take_over); } return best; } int main(){ init(); int T; cin >> T; for(int i=1;i<=T;i++){ cout << "Case #" << i << ": " << solve(i) << "\n"; } return 0; }
[ "eewestman@gmail.com" ]
eewestman@gmail.com
4e174e00894b9142e7b14c157ad7e824094f5508
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/CMake/CMake-gumtree/Kitware_CMake_old_new_new_log_456.cpp
1f2fb319235e471b7b91ea231d4697619a9fcb89
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
65
cpp
YY_FATAL_ERROR( "cmFortran_yyset_column called with no buffer" );
[ "993273596@qq.com" ]
993273596@qq.com
e0969d4e00a7957848d023180d9823f10cca6d82
c2d7badcc2490b88e91a634d79c687ab9374dbf1
/cocos/2d/CCComponentContainer.h
56221ce1db4e85628a8bcf16c0b05a79e3332780
[]
no_license
SBKarr/stappler-cocos2d-x
48217b18adc1f54e8d5e22b5c9e7f9977f626382
24389838ec7613ae25e0417c25682600133c4ec7
refs/heads/master
2020-07-05T09:37:37.156758
2017-03-09T16:27:37
2017-03-12T17:08:34
67,418,239
1
0
null
null
null
null
UTF-8
C++
false
false
2,358
h
/**************************************************************************** Copyright (c) 2013-2014 Chukong Technologies Inc. http://www.cocos2d-x.org Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ****************************************************************************/ #ifndef __CC_FRAMEWORK_COMCONTAINER_H__ #define __CC_FRAMEWORK_COMCONTAINER_H__ #include "base/CCVector.h" #include "math/Mat4.h" #include <string> #include <vector> NS_CC_BEGIN class Component; class Node; class Renderer; class CC_DLL ComponentContainer { protected: /** * @js ctor */ ComponentContainer(Node *pNode); public: /** * @js NA * @lua NA */ virtual ~ComponentContainer(void); virtual bool add(Component *com); virtual bool remove(Component *com); virtual void removeAll(); virtual void onVisit(Renderer *renderer, const Mat4& parentTransform, uint32_t parentFlags, const std::vector<int> &); virtual void onEnter(); virtual void onEnterTransitionDidFinish(); virtual void onExitTransitionDidStart(); virtual void onExit(); virtual void onContentSizeDirty(); virtual void onTransformDirty(); virtual void onReorderChildDirty(); public: bool isEmpty() const; private: Vector<Component *> _components; Node *_owner; friend class Node; }; NS_CC_END #endif // __FUNDATION__CCCOMPONENT_H__
[ "sbkarr@stappler.org" ]
sbkarr@stappler.org
10837893bd5e94256749146986ea42cf452df956
21b3889b6a94b0a6ccf1677866c32d69c20b3452
/MercutioEngine/meMessage.h
6753b8da6c04655bed62fe2657425dd97dcb933e
[]
no_license
waskerdu/Mercutio-Engine
b38b7c2dc0fd61cae29bcc999a9de63403ce1de8
28e9c3022283f899535e9fb8d1eca3371345b23b
refs/heads/master
2020-03-30T15:27:36.022721
2018-11-11T20:57:29
2018-11-11T20:57:29
151,364,283
0
0
null
null
null
null
UTF-8
C++
false
false
231
h
#pragma once #include <string> struct Message { std::string name = ""; float val = 0; Message(){} Message(std::string name) { this->name = name; } Message(std::string name, float val) { this->name = name; this->val = val; } };
[ "rileywestonmiller@outlook.com" ]
rileywestonmiller@outlook.com
67513628e011561712dfa165d2b252f866ca7731
022debae1ce006014899cf2db313845dca625d7a
/项目/格子机2.0/wine_grid2018_11_10/temp/1toast.cpp
816979a93c9b73808c9ba0b521ef1574dc23179c
[]
no_license
isliulin/PythonDemoRepository
5e3c73e4ba363e84ccd476d93d9eab33759ea665
7f0d4e34373ba9254dd1a03c7e3b25656ca1632f
refs/heads/master
2023-03-18T16:25:43.666794
2019-03-15T17:20:13
2019-03-15T17:20:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
479
cpp
#include "toast.h" Toast::Toast(QWidget *parent) : QLabel(parent) { this->hide(); this->setWindowFlags(Qt::FramelessWindowHint|Qt::WindowStaysOnTopHint); //this->setAttribute(Qt::WA_DeleteOnClose,true); this->setAlignment(Qt::AlignCenter); this->setObjectName("Toast"); // label->setScaledContents(true); //自动和文本一样的高度 // LabelName->setWordWrap(true); // LabelName->setAlignment(Qt::AlignTop); } Toast *Toast::pToast = NULL;
[ "2640340412@qq.com" ]
2640340412@qq.com
f4275bf998bef323747bdab8c99f3859bfac6c1c
ac41d2ccb549dc09ed34e5c0f4da403509abb5c3
/lib/mtl4/boost/numeric/mtl/matrix/operators.hpp
aaf155b5377cd29154981f6a49ae8bddc0d22131
[ "MIT", "MTLL" ]
permissive
spraetor/amdis2
c65b530dabd087d922d616bfaf9d53f4c8d5e3c4
53c45c81a65752a8fafbb54f9ae6724a86639dcd
refs/heads/master
2020-12-24T15:51:03.069002
2016-03-06T14:42:53
2016-03-06T14:42:53
39,136,073
2
0
null
null
null
null
UTF-8
C++
false
false
4,036
hpp
// Software License for MTL // // Copyright (c) 2007 The Trustees of Indiana University. // 2008 Dresden University of Technology and the Trustees of Indiana University. // 2010 SimuNova UG (haftungsbeschränkt), www.simunova.com. // All rights reserved. // Authors: Peter Gottschling and Andrew Lumsdaine // // This file is part of the Matrix Template Library // // See also license.mtl.txt in the distribution. #ifndef MTL_MATRIX_OPERATORS_INCLUDE #define MTL_MATRIX_OPERATORS_INCLUDE #include <boost/utility/enable_if.hpp> #include <boost/mpl/and.hpp> #include <boost/numeric/mtl/utility/ashape.hpp> #include <boost/numeric/mtl/utility/is_multi_vector_expr.hpp> #include <boost/numeric/mtl/utility/static_assert.hpp> #include <boost/numeric/mtl/matrix/all_mat_expr.hpp> #include <boost/numeric/mtl/mtl_fwd.hpp> namespace mtl { namespace matrix { template <typename E1, typename E2> inline mat_mat_plus_expr<E1, E2> operator+ (const mat_expr<E1>& e1, const mat_expr<E2>& e2) { // do not add matrices with inconsistent value types MTL_STATIC_ASSERT((boost::is_same<typename ashape::ashape<E1>::type, typename ashape::ashape<E2>::type>::value), "Matrices have not consistent algebraic shape (i.e. nested types)."); return mat_mat_plus_expr<E1, E2>(static_cast<const E1&>(e1), static_cast<const E2&>(e2)); } // if enabled it has priority over previous functions because that performs upcast template <typename E1, typename E2> typename boost::enable_if_c<mtl::traits::is_multi_vector_expr<E1>::value && mtl::traits::is_multi_vector_expr<E2>::value, mv_mv_plus_expr<E1, E2> >::type inline operator+(const E1& e1, const E2& e2) { return mv_mv_plus_expr<E1, E2>(e1, e2); } // Specialization for multi_vector // template <typename V1, typename V2> // inline mv_mv_plus_expr<multi_vector<V1>, multi_vector<V2> > // operator+(const multi_vector<V1>& m1, const multi_vector<V2>& m2) // { // return mv_mv_plus_expr<multi_vector<V1>, multi_vector<V2> >(m1, m2); // } #if 0 // Planned for future optimizations on sums of dense matrix expressions template <typename E1, typename E2> inline dmat_dmat_plus_expr<E1, E2> operator+ (const dmat_expr<E1>& e1, const dmat_expr<E2>& e2) { // do not add matrices with inconsistent value types MTL_STATIC_ASSERT((boost::is_same<typename ashape::ashape<E1>::type, typename ashape::ashape<E2>::type>::value), "Matrices have not consistent algebraic shape (i.e. nested types)."); return dmat_dmat_plus_expr<E1, E2>(static_cast<const E1&>(e1), static_cast<const E2&>(e2)); } #endif template <typename E1, typename E2> inline mat_mat_minus_expr<E1, E2> operator- (const mat_expr<E1>& e1, const mat_expr<E2>& e2) { // do not add matrices with inconsistent value types MTL_STATIC_ASSERT((boost::is_same<typename ashape::ashape<E1>::type, typename ashape::ashape<E2>::type>::value), "Matrices have not consistent algebraic shape (i.e. nested types)."); return mat_mat_minus_expr<E1, E2>(static_cast<const E1&>(e1), static_cast<const E2&>(e2)); } // if enabled it has priority over previous functions because that performs upcast template <typename E1, typename E2> typename boost::enable_if_c<mtl::traits::is_multi_vector_expr<E1>::value && mtl::traits::is_multi_vector_expr<E2>::value, mv_mv_minus_expr<E1, E2> >::type inline operator-(const E1& e1, const E2& e2) { return mv_mv_minus_expr<E1, E2>(e1, e2); } template <typename E1, typename E2> inline mat_mat_ele_times_expr<E1, E2> ele_prod(const mat_expr<E1>& e1, const mat_expr<E2>& e2) { // do not multiply matrices element-wise with inconsistent value types MTL_STATIC_ASSERT((boost::is_same<typename ashape::ashape<E1>::type, typename ashape::ashape<E2>::type>::value), "Matrices do not have consistent algebraic shape (i.e. nested types)."); return mat_mat_ele_times_expr<E1, E2>(static_cast<const E1&>(e1), static_cast<const E2&>(e2)); } }} // namespace mtl::matrix #endif // MTL_MATRIX_OPERATORS_INCLUDE
[ "simon.praetorius@tu-dresden.de" ]
simon.praetorius@tu-dresden.de
d63739138d3d5ac1fd53d572ee56a2bc972e8d5e
8584afff21c31c843f520bd28587a741e6ffd402
/GoogleCodeJam/2008/Round1A/a.cpp
5a5a0db46da866c72d4c3e60cae399f72cc5ffcc
[]
no_license
YuanzhongLi/CompetitiveProgramming
237e900f1c906c16cbbe3dd09104a1b7ad53862b
f9a72d507d4dda082a344eb19de22f1011dcee5a
refs/heads/master
2021-11-20T18:35:35.412146
2021-08-25T11:39:32
2021-08-25T11:39:32
249,442,987
0
0
null
null
null
null
UTF-8
C++
false
false
1,759
cpp
#include <bits/stdc++.h> using namespace std; #define rep(i,s,n) for (int i = (int)s; i < (int)n; i++) #define ll long long #define pb push_back #define eb emplace_back #define All(x) x.begin(), x.end() #define Range(x, i, j) x.begin() + i, x.begin() + j #define lbidx(x, y) lower_bound(x.begin(), x.end(), y) - x.begin() #define ubidx(x, y) upper_bound(x.begin(), x.end(), y) - x.begin() #define llbidx(x, y, z) lower_bound(x.begin(), x.end(), z) - lower_bound(x.begin(), x.end(), y) // 二要素間の距離 #define deg2rad(deg) ((((double)deg)/((double)360)*2*M_PI)) #define rad2deg(rad) ((((double)rad)/(double)2/M_PI)*(double)360) #define Find(set, element) set.find(element) != set.end() #define Decimal(x) printf("%.10f\n", x) // 小数点を10桁まで表示 // debug用 #define PrintVec(x) for (auto elementPrintVec: x) { cout << elementPrintVec << " "; } cout << endl; typedef pair<int, int> PI; typedef pair<ll, ll> PLL; int POWINT(int x, int n) { int ret = 1; rep(i, 0, n) ret *= x; return ret; }; ll POWLL(int x, int n) { ll ret = 1; rep(i, 0, n) ret *= x; return ret; }; template<class T> inline bool chmax(T &a, T b) { if(a < b) { a = b; return true; } return false; }; template<class T> inline bool chmin(T &a, T b) { if(a > b) { a = b; return true; } return false; }; int main() { ios::sync_with_stdio(false); cin.tie(0); int T; cin >> T; int n; rep(t, 0, T) { cin >> n; vector<ll> a(n), b(n); rep(i, 0, n) { cin >> a[i]; } rep(i, 0, n) { cin >> b[i]; } sort(All(a)); sort(All(b)); reverse(All(b)); ll ans = 0; rep(i, 0, n) { ans += (a[i] * b[i]); } printf("Case #%d: %lld\n", t+1, ans); } return 0; };
[ "liyuanzhongutokyos1@gmail.com" ]
liyuanzhongutokyos1@gmail.com
22c15c55056a1cb07e8ea0727bf30f22985464bf
32cd83e08737002c3c7bc815c65f2c94b5ac6966
/D02/ex02/Fixed.cpp
a7a1764032f582911f6a8abecde2de34cb0bc40c
[]
no_license
tirrorex/Cpp
4d9be9f94bf24a0ecb5a825e77fd044b80e08327
8e0a02897d4ed5d3780714dad2491150862e2fba
refs/heads/master
2021-01-20T19:53:11.418429
2016-05-27T14:57:21
2016-05-27T14:57:21
59,841,750
0
1
null
null
null
null
UTF-8
C++
false
false
2,900
cpp
#include "Fixed.hpp" #include <iostream> #include <string> #include <cmath> const int Fixed::_bit = 8; Fixed::Fixed( void ) : _fixValue( 0 ) { //std::cout << "Default Constructor called" << std::endl; return; } Fixed::Fixed( int const n ) : _fixValue( n << _bit ) { //std::cout << "Int Constructor called" << std::endl; return; } Fixed::Fixed( float const n ) : _fixValue((int)roundf(n * (1 << _bit))) { //std::cout << "Float Constructor called" << std::endl; return; } Fixed::Fixed( Fixed const & src ) { //std::cout << "Copy Constructor called" << std::endl; *this = src; return; } Fixed::~Fixed( void ) { //std::cout << "Destructor Called" << std::endl; return; } int Fixed::getRawBits( void ) const { return this->_fixValue; } void Fixed::setRawBits( int const raw ) { this->_fixValue = raw; } float Fixed::toFloat( void ) const { return (((float)this->_fixValue) / (1 << _bit)); } int Fixed::toInt( void ) const { return this->_fixValue >> _bit; } bool Fixed::operator>( Fixed const &rhs ) { return this->getRawBits() > rhs.getRawBits(); } bool Fixed::operator<( Fixed const &rhs ) { return this->getRawBits() < rhs.getRawBits(); } bool Fixed::operator>=( Fixed const &rhs ) { return this->getRawBits() >= rhs.getRawBits(); } bool Fixed::operator<=( Fixed const &rhs ) { return this->getRawBits() <= rhs.getRawBits(); } bool Fixed::operator==( Fixed const &rhs ) { return this->getRawBits() == rhs.getRawBits(); } bool Fixed::operator!=( Fixed const &rhs ) { return this->getRawBits() != rhs.getRawBits(); } Fixed Fixed::operator+( Fixed const & rhs ) { return Fixed( this->toFloat() + rhs.toFloat() ); } Fixed Fixed::operator-( Fixed const & rhs ) { return Fixed( this->toFloat() - rhs.toFloat() ); } Fixed Fixed::operator*( Fixed const & rhs ) { return Fixed( this->toFloat() * rhs.toFloat() ); } Fixed Fixed::operator/( Fixed const & rhs ) { return Fixed( this->toFloat() / rhs.toFloat() ); } Fixed Fixed::operator++( void ) { Fixed ret(*this); this->_fixValue += 1; return *this; } Fixed Fixed::operator--( void ) { this->_fixValue -= 1; return *this; } Fixed Fixed::operator++( int ) { Fixed ret(*this); this->_fixValue += 1; return ret; } Fixed Fixed::operator--( int ) { Fixed ret(*this); this->_fixValue -= 1; return ret; } Fixed & Fixed::min( Fixed & rhs1, Fixed & rhs2 ) { return rhs1.getRawBits() > rhs2.getRawBits() ? rhs2: rhs1; } Fixed & Fixed::max( Fixed & rhs1, Fixed & rhs2 ) { return rhs1.getRawBits() > rhs2.getRawBits() ? rhs1: rhs2; } const Fixed & Fixed::min( Fixed const & rhs1, Fixed const & rhs2 ) { return rhs1.getRawBits() > rhs2.getRawBits() ? rhs2: rhs1; } const Fixed & Fixed::max( Fixed const & rhs1, Fixed const & rhs2 ) { return rhs1.getRawBits() > rhs2.getRawBits() ? rhs1: rhs2; } std::ostream & operator<<( std::ostream & o, Fixed const & i ) { o << i.toFloat(); return o; }
[ "thibaut.noah@gmail.com" ]
thibaut.noah@gmail.com
44da2e331fdc7fdad863f63945ea45a9b84b5a19
b2ac71ecae7b4b9a7d72b20c8582e79195e81e4a
/Classes/webview/CaeWebView.cpp
a2dc88ef31b311b254b6d5756be4f6b1eeb99278
[]
no_license
liyonghelpme/jumpCode
54a10e231f0c1bae08b4a1a82c31a43d77e83c1b
a38f186e2acb2c119701ee06d3e8b0d76a54d00b
refs/heads/master
2021-01-02T09:38:29.371709
2013-06-12T10:14:36
2013-06-12T10:14:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
649
cpp
#include "CaeWebView.h" NS_CC_EXT_BEGIN CaeWebView::CaeWebView(){ } CaeWebView::~CaeWebView(){ } void CaeWebView::webViewDidFinishLoad(){ } void CaeWebView::closeWebView(){ this->removeFromParentAndCleanup(true); #if(CC_TARGET_PLATFORM==CC_PLATFORM_IOS) [impl closeWebView]; #elif(CC_TARGET_PLATFORM==CC_PLATFORM_ANDROID) #endif } // only do normal set here bool CaeWebView::init(){ if(!!CCLayer::init()){ return false; } #if(CC_TARGET_PLATFORM==CC_PLATFORM_IOS) impl = [[CaeWebView_iosImpl alloc] init]; [impl addWebView:this withUrl:"http://www.baidu.com"]; #elif(CC_TARGET_PLATFORM==CC_PLATFORM_ANDROID) #endif } NS_CC_EXT_END
[ "liyonghelpme@gmail.com" ]
liyonghelpme@gmail.com
bd10c45de006eeecbf6138796d804fb2c73a41f0
605ab4d843af2959764d9fb78f626421e9ec1520
/src/process/im_convolve_rank.cpp
0f559d5344391bf5b050620fb8a30c1a8aa67733
[ "MIT" ]
permissive
svn2github/imtoolkit-im
f9941a0338d943e5f2c05937b4d9f14405c07423
aafc283f50ed9e3b1ee73e6ca09a7b9ccfafd31d
refs/heads/master
2021-07-05T11:43:14.348372
2019-01-07T18:03:32
2019-01-07T18:03:32
103,318,180
1
1
null
null
null
null
UTF-8
C++
false
false
27,726
cpp
/** \file * \brief Rank Convolution Operations * * See Copyright Notice in im_lib.h */ #include <im.h> #include <im_util.h> #include <im_math.h> #include "im_process_counter.h" #include "im_process_loc.h" #include <stdlib.h> #include <stdio.h> #include <memory.h> #include <string.h> #include <math.h> template <class T, class DT> static int DoConvolveRankFunc(T *map, DT* new_map, int width, int height, int kw, int kh, T (*func)(T* value, int count, int center), int counter) { int tcount = IM_MAX_THREADS; T* value = new T[kw*kh*tcount]; int kh2 = kh/2; int kw2 = kw/2; int kh1 = -kh2; int kw1 = -kw2; if (kh%2==0) kh2--; // if not odd decrease 1 if (kw%2==0) kw2--; IM_INT_PROCESSING; #ifdef _OPENMP #pragma omp parallel for if (IM_OMP_MINHEIGHT(height)) #endif for(int j = 0; j < height; j++) { #ifdef _OPENMP #pragma omp flush (processing) #endif IM_BEGIN_PROCESSING; int new_offset = j * width; int toffset = IM_THREAD_NUM*(kw*kh); for(int i = 0; i < width; i++) { int v = 0; int c = 0; for(int y = kh1; y <= kh2; y++) { if ((j + y < 0) || // pass the bottom border (j + y >= height)) // pass the top border continue; int offset = (j + y) * width; for(int x = kw1; x <= kw2; x++) { if ((i + x < 0) || // pass the left border (i + x >= width)) // pass the right border continue; if (x == 0 && y == 0) c = v; value[toffset + v] = map[offset + (i + x)]; v++; } } new_map[new_offset + i] = (DT)func(value + toffset, v, c); } IM_COUNT_PROCESSING; #ifdef _OPENMP #pragma omp flush (processing) #endif IM_END_PROCESSING; } delete[] value; return processing; } static int compare_imFloat(const void *elem1, const void *elem2) { float* v1 = (float*)elem1; float* v2 = (float*)elem2; if (*v1 < *v2) return -1; if (*v1 > *v2) return 1; return 0; } static int compare_imDouble(const void *elem1, const void *elem2) { double* v1 = (double*)elem1; double* v2 = (double*)elem2; if (*v1 < *v2) return -1; if (*v1 > *v2) return 1; return 0; } static int compare_imInt(const void *elem1, const void *elem2) { int* v1 = (int*)elem1; int* v2 = (int*)elem2; if (*v1 < *v2) return -1; if (*v1 > *v2) return 1; return 0; } static int compare_imShort(const void *elem1, const void *elem2) { short* v1 = (short*)elem1; short* v2 = (short*)elem2; if (*v1 < *v2) return -1; if (*v1 > *v2) return 1; return 0; } static int compare_imUShort(const void *elem1, const void *elem2) { imushort* v1 = (imushort*)elem1; imushort* v2 = (imushort*)elem2; if (*v1 < *v2) return -1; if (*v1 > *v2) return 1; return 0; } static int compare_imByte(const void *elem1, const void *elem2) { imbyte* v1 = (imbyte*)elem1; imbyte* v2 = (imbyte*)elem2; if (*v1 < *v2) return -1; if (*v1 > *v2) return 1; return 0; } static imbyte median_op_byte(imbyte* value, int count, int center) { (void)center; qsort(value, count, sizeof(imbyte), compare_imByte); return value[count/2]; } static short median_op_short(short* value, int count, int center) { (void)center; qsort(value, count, sizeof(short), compare_imShort); return value[count/2]; } static imushort median_op_ushort(imushort* value, int count, int center) { (void)center; qsort(value, count, sizeof(imushort), compare_imUShort); return value[count/2]; } static int median_op_int(int* value, int count, int center) { (void)center; qsort(value, count, sizeof(int), compare_imInt); return value[count/2]; } static float median_op_float(float* value, int count, int center) { (void)center; qsort(value, count, sizeof(float), compare_imFloat); return value[count/2]; } static double median_op_double(double* value, int count, int center) { (void)center; qsort(value, count, sizeof(double), compare_imDouble); return value[count / 2]; } int imProcessMedianConvolve(const imImage* src_image, imImage* dst_image, int ks) { int i, ret = 0; int counter; counter = imProcessCounterBegin("MedianConvolve"); imCounterTotal(counter, src_image->depth*src_image->height, "Processing..."); for (i = 0; i < src_image->depth; i++) { switch(src_image->data_type) { case IM_BYTE: ret = DoConvolveRankFunc((imbyte*)src_image->data[i], (imbyte*)dst_image->data[i], src_image->width, src_image->height, ks, ks, median_op_byte, counter); break; case IM_SHORT: ret = DoConvolveRankFunc((short*)src_image->data[i], (short*)dst_image->data[i], src_image->width, src_image->height, ks, ks, median_op_short, counter); break; case IM_USHORT: ret = DoConvolveRankFunc((imushort*)src_image->data[i], (imushort*)dst_image->data[i], src_image->width, src_image->height, ks, ks, median_op_ushort, counter); break; case IM_INT: ret = DoConvolveRankFunc((int*)src_image->data[i], (int*)dst_image->data[i], src_image->width, src_image->height, ks, ks, median_op_int, counter); break; case IM_FLOAT: ret = DoConvolveRankFunc((float*)src_image->data[i], (float*)dst_image->data[i], src_image->width, src_image->height, ks, ks, median_op_float, counter); break; case IM_DOUBLE: ret = DoConvolveRankFunc((double*)src_image->data[i], (double*)dst_image->data[i], src_image->width, src_image->height, ks, ks, median_op_double, counter); break; } if (!ret) break; } imProcessCounterEnd(counter); return ret; } static imbyte range_op_byte(imbyte* value, int count, int center) { imbyte min, max; (void)center; imMinMax(value, count, min, max); return max-min; } static short range_op_short(short* value, int count, int center) { short min, max; (void)center; imMinMax(value, count, min, max); return max-min; } static imushort range_op_ushort(imushort* value, int count, int center) { imushort min, max; (void)center; imMinMax(value, count, min, max); return max-min; } static int range_op_int(int* value, int count, int center) { int min, max; (void)center; imMinMax(value, count, min, max); return max-min; } static float range_op_float(float* value, int count, int center) { float min, max; (void)center; imMinMax(value, count, min, max); return max-min; } static double range_op_double(double* value, int count, int center) { double min, max; (void)center; imMinMax(value, count, min, max); return max - min; } int imProcessRangeConvolve(const imImage* src_image, imImage* dst_image, int ks) { int i, ret = 0; int counter; counter = imProcessCounterBegin("RangeConvolve"); imCounterTotal(counter, src_image->depth*src_image->height, "Processing..."); for (i = 0; i < src_image->depth; i++) { switch(src_image->data_type) { case IM_BYTE: ret = DoConvolveRankFunc((imbyte*)src_image->data[i], (imbyte*)dst_image->data[i], src_image->width, src_image->height, ks, ks, range_op_byte, counter); break; case IM_SHORT: ret = DoConvolveRankFunc((short*)src_image->data[i], (short*)dst_image->data[i], src_image->width, src_image->height, ks, ks, range_op_short, counter); break; case IM_USHORT: ret = DoConvolveRankFunc((imushort*)src_image->data[i], (imushort*)dst_image->data[i], src_image->width, src_image->height, ks, ks, range_op_ushort, counter); break; case IM_INT: ret = DoConvolveRankFunc((int*)src_image->data[i], (int*)dst_image->data[i], src_image->width, src_image->height, ks, ks, range_op_int, counter); break; case IM_FLOAT: ret = DoConvolveRankFunc((float*)src_image->data[i], (float*)dst_image->data[i], src_image->width, src_image->height, ks, ks, range_op_float, counter); break; case IM_DOUBLE: ret = DoConvolveRankFunc((double*)src_image->data[i], (double*)dst_image->data[i], src_image->width, src_image->height, ks, ks, range_op_double, counter); break; } if (!ret) break; } imProcessCounterEnd(counter); return ret; } /* Local variable threshold by the method of Bernsen. Description: If the difference between the largest and the smallest pixel value within the 'dx'*'dy' window is greater than or equal to 'cmin' (local contrast threshold), the average of the two values is used as threshold. Pixels in homogenous areas (difference below 'cmin') are assumed to be below the threshold. Reference: Bernsen, J: "Dynamic thresholding of grey-level images" Proc. of the 8th ICPR, Paris, Oct 1986, 1251-1255. Author: Oivind Due Trier Copyright 1990, Blab, UiO Image processing lab, Department of Informatics University of Oslo */ static int thresAux = 0; static imbyte contrast_thres_op_byte(imbyte* value, int count, int center) { int c, t; imbyte v = value[center], min, max; imMinMax(value, count, min, max); c = max-min; if (c < thresAux) return 0; else { t = ((int)max + (int)min) / 2; if (v >= t) return 1; else return 0; } } static imushort contrast_thres_op_ushort(imushort* value, int count, int center) { int c, t; imushort v = value[center], min, max; imMinMax(value, count, min, max); c = max-min; if (c < thresAux) return 0; else { t = ((int)max + (int)min) / 2; if (v >= t) return 1; else return 0; } } static short contrast_thres_op_short(short* value, int count, int center) { int c, t; short v = value[center], min, max; imMinMax(value, count, min, max); c = max-min; if (c < thresAux) return 0; else { t = ((int)max + (int)min) / 2; if (v >= t) return 1; else return 0; } } static int contrast_thres_op_int(int* value, int count, int center) { int c, t; int v = value[center], min, max; imMinMax(value, count, min, max); c = max-min; if (c < thresAux) return 0; else { t = ((int)max + (int)min) / 2; if (v >= t) return 1; else return 0; } } int imProcessRangeContrastThreshold(const imImage* src_image, imImage* dst_image, int ks, int min_range) { int ret = 0; int counter = imProcessCounterBegin("RangeContrastThreshold"); imCounterTotal(counter, src_image->depth*src_image->height, "Processing..."); thresAux = min_range; switch(src_image->data_type) { case IM_BYTE: ret = DoConvolveRankFunc((imbyte*)src_image->data[0], (imbyte*)dst_image->data[0], src_image->width, src_image->height, ks, ks, contrast_thres_op_byte, counter); break; case IM_SHORT: ret = DoConvolveRankFunc((short*)src_image->data[0], (imbyte*)dst_image->data[0], src_image->width, src_image->height, ks, ks, contrast_thres_op_short, counter); break; case IM_USHORT: ret = DoConvolveRankFunc((imushort*)src_image->data[0], (imbyte*)dst_image->data[0], src_image->width, src_image->height, ks, ks, contrast_thres_op_ushort, counter); break; case IM_INT: ret = DoConvolveRankFunc((int*)src_image->data[0], (imbyte*)dst_image->data[0], src_image->width, src_image->height, ks, ks, contrast_thres_op_int, counter); break; } imProcessCounterEnd(counter); return ret; } static imbyte max_thres_op_byte(imbyte* value, int count, int center) { imbyte v = value[center], min, max; if (v < thresAux) return 0; imMinMax(value, count, min, max); if (v < max) return 0; return 1; } static short max_thres_op_short(short* value, int count, int center) { short v = value[center], min, max; if (v < thresAux) return 0; imMinMax(value, count, min, max); if (v < max) return 0; return 1; } static imushort max_thres_op_ushort(imushort* value, int count, int center) { imushort v = value[center], min, max; if (v < thresAux) return 0; imMinMax(value, count, min, max); if (v < max) return 0; return 1; } static int max_thres_op_int(int* value, int count, int center) { int v = value[center], min, max; if (v < thresAux) return 0; imMinMax(value, count, min, max); if (v < max) return 0; return 1; } int imProcessLocalMaxThreshold(const imImage* src_image, imImage* dst_image, int ks, int min_thres) { int ret = 0; int counter = imProcessCounterBegin("LocalMaxThreshold"); imCounterTotal(counter, src_image->depth*src_image->height, "Processing..."); thresAux = min_thres; switch(src_image->data_type) { case IM_BYTE: ret = DoConvolveRankFunc((imbyte*)src_image->data[0], (imbyte*)dst_image->data[0], src_image->width, src_image->height, ks, ks, max_thres_op_byte, counter); break; case IM_SHORT: ret = DoConvolveRankFunc((short*)src_image->data[0], (imbyte*)dst_image->data[0], src_image->width, src_image->height, ks, ks, max_thres_op_short, counter); break; case IM_USHORT: ret = DoConvolveRankFunc((imushort*)src_image->data[0], (imbyte*)dst_image->data[0], src_image->width, src_image->height, ks, ks, max_thres_op_ushort, counter); break; case IM_INT: ret = DoConvolveRankFunc((int*)src_image->data[0], (imbyte*)dst_image->data[0], src_image->width, src_image->height, ks, ks, max_thres_op_int, counter); break; } imProcessCounterEnd(counter); return ret; } static imbyte rank_closest_op_byte(imbyte* value, int count, int center) { imbyte v = value[center]; imbyte min, max; imMinMax(value, count, min, max); if (v - min < max - v) return min; else return max; } static imushort rank_closest_op_ushort(imushort* value, int count, int center) { imushort v = value[center]; imushort min, max; imMinMax(value, count, min, max); if (v - min < max - v) return min; else return max; } static short rank_closest_op_short(short* value, int count, int center) { short v = value[center]; short min, max; imMinMax(value, count, min, max); if (v - min < max - v) return min; else return max; } static int rank_closest_op_int(int* value, int count, int center) { int v = value[center]; int min, max; imMinMax(value, count, min, max); if (v - min < max - v) return min; else return max; } static float rank_closest_op_float(float* value, int count, int center) { float v = value[center]; float min, max; imMinMax(value, count, min, max); if (v - min < max - v) return min; else return max; } static double rank_closest_op_double(double* value, int count, int center) { double v = value[center]; double min, max; imMinMax(value, count, min, max); if (v - min < max - v) return min; else return max; } int imProcessRankClosestConvolve(const imImage* src_image, imImage* dst_image, int ks) { int i, ret = 0; int counter; counter = imProcessCounterBegin("RankClosestConvolve"); imCounterTotal(counter, src_image->depth*src_image->height, "Processing..."); for (i = 0; i < src_image->depth; i++) { switch(src_image->data_type) { case IM_BYTE: ret = DoConvolveRankFunc((imbyte*)src_image->data[i], (imbyte*)dst_image->data[i], src_image->width, src_image->height, ks, ks, rank_closest_op_byte, counter); break; case IM_SHORT: ret = DoConvolveRankFunc((short*)src_image->data[i], (short*)dst_image->data[i], src_image->width, src_image->height, ks, ks, rank_closest_op_short, counter); break; case IM_USHORT: ret = DoConvolveRankFunc((imushort*)src_image->data[i], (imushort*)dst_image->data[i], src_image->width, src_image->height, ks, ks, rank_closest_op_ushort, counter); break; case IM_INT: ret = DoConvolveRankFunc((int*)src_image->data[i], (int*)dst_image->data[i], src_image->width, src_image->height, ks, ks, rank_closest_op_int, counter); break; case IM_FLOAT: ret = DoConvolveRankFunc((float*)src_image->data[i], (float*)dst_image->data[i], src_image->width, src_image->height, ks, ks, rank_closest_op_float, counter); break; case IM_DOUBLE: ret = DoConvolveRankFunc((double*)src_image->data[i], (double*)dst_image->data[i], src_image->width, src_image->height, ks, ks, rank_closest_op_double, counter); break; } if (!ret) break; } imProcessCounterEnd(counter); return ret; } static imbyte rank_max_op_byte(imbyte* value, int count, int center) { imbyte min, max; (void)center; imMinMax(value, count, min, max); return max; } static imushort rank_max_op_ushort(imushort* value, int count, int center) { imushort min, max; (void)center; imMinMax(value, count, min, max); return max; } static short rank_max_op_short(short* value, int count, int center) { short min, max; (void)center; imMinMax(value, count, min, max); return max; } static int rank_max_op_int(int* value, int count, int center) { int min, max; (void)center; imMinMax(value, count, min, max); return max; } static float rank_max_op_float(float* value, int count, int center) { float min, max; (void)center; imMinMax(value, count, min, max); return max; } static double rank_max_op_double(double* value, int count, int center) { double min, max; (void)center; imMinMax(value, count, min, max); return max; } int imProcessRankMaxConvolve(const imImage* src_image, imImage* dst_image, int ks) { int i, ret = 0; int counter; counter = imProcessCounterBegin("RankMaxConvolve"); imCounterTotal(counter, src_image->depth*src_image->height, "Processing..."); for (i = 0; i < src_image->depth; i++) { switch(src_image->data_type) { case IM_BYTE: ret = DoConvolveRankFunc((imbyte*)src_image->data[i], (imbyte*)dst_image->data[i], src_image->width, src_image->height, ks, ks, rank_max_op_byte, counter); break; case IM_SHORT: ret = DoConvolveRankFunc((short*)src_image->data[i], (short*)dst_image->data[i], src_image->width, src_image->height, ks, ks, rank_max_op_short, counter); break; case IM_USHORT: ret = DoConvolveRankFunc((imushort*)src_image->data[i], (imushort*)dst_image->data[i], src_image->width, src_image->height, ks, ks, rank_max_op_ushort, counter); break; case IM_INT: ret = DoConvolveRankFunc((int*)src_image->data[i], (int*)dst_image->data[i], src_image->width, src_image->height, ks, ks, rank_max_op_int, counter); break; case IM_FLOAT: ret = DoConvolveRankFunc((float*)src_image->data[i], (float*)dst_image->data[i], src_image->width, src_image->height, ks, ks, rank_max_op_float, counter); break; case IM_DOUBLE: ret = DoConvolveRankFunc((double*)src_image->data[i], (double*)dst_image->data[i], src_image->width, src_image->height, ks, ks, rank_max_op_double, counter); break; } if (!ret) break; } imProcessCounterEnd(counter); return ret; } static imbyte rank_min_op_byte(imbyte* value, int count, int center) { imbyte min, max; (void)center; imMinMax(value, count, min, max); return min; } static imushort rank_min_op_ushort(imushort* value, int count, int center) { imushort min, max; (void)center; imMinMax(value, count, min, max); return min; } static short rank_min_op_short(short* value, int count, int center) { short min, max; (void)center; imMinMax(value, count, min, max); return min; } static int rank_min_op_int(int* value, int count, int center) { int min, max; (void)center; imMinMax(value, count, min, max); return min; } static float rank_min_op_float(float* value, int count, int center) { float min, max; (void)center; imMinMax(value, count, min, max); return min; } static double rank_min_op_double(double* value, int count, int center) { double min, max; (void)center; imMinMax(value, count, min, max); return min; } int imProcessRankMinConvolve(const imImage* src_image, imImage* dst_image, int ks) { int i, ret = 0; int counter; counter = imProcessCounterBegin("RankMinConvolve"); imCounterTotal(counter, src_image->depth*src_image->height, "Processing..."); for (i = 0; i < src_image->depth; i++) { switch(src_image->data_type) { case IM_BYTE: ret = DoConvolveRankFunc((imbyte*)src_image->data[i], (imbyte*)dst_image->data[i], src_image->width, src_image->height, ks, ks, rank_min_op_byte, counter); break; case IM_SHORT: ret = DoConvolveRankFunc((short*)src_image->data[i], (short*)dst_image->data[i], src_image->width, src_image->height, ks, ks, rank_min_op_short, counter); break; case IM_USHORT: ret = DoConvolveRankFunc((imushort*)src_image->data[i], (imushort*)dst_image->data[i], src_image->width, src_image->height, ks, ks, rank_min_op_ushort, counter); break; case IM_INT: ret = DoConvolveRankFunc((int*)src_image->data[i], (int*)dst_image->data[i], src_image->width, src_image->height, ks, ks, rank_min_op_int, counter); break; case IM_FLOAT: ret = DoConvolveRankFunc((float*)src_image->data[i], (float*)dst_image->data[i], src_image->width, src_image->height, ks, ks, rank_min_op_float, counter); break; case IM_DOUBLE: ret = DoConvolveRankFunc((double*)src_image->data[i], (double*)dst_image->data[i], src_image->width, src_image->height, ks, ks, rank_min_op_double, counter); break; } if (!ret) break; } imProcessCounterEnd(counter); return ret; }
[ "scuri@af3c9e47-74de-4ca0-9433-524f997074d0" ]
scuri@af3c9e47-74de-4ca0-9433-524f997074d0
c6dfe0f12986f040b7f134dcf78fbbf676333692
9c434860e19c54936a9c4626779690a98025b022
/include/physics/CollisionData.hpp
29546c37233ff0dba55036b38625a270a8442a76
[]
no_license
lihaisa/kabanero
2ddf8fbfbd7e774211037cde373a3e00108a899f
7b6cb99118f9acd0f373c7ecc6e6a1a0db29da2f
refs/heads/master
2021-01-11T11:33:31.464529
2016-12-18T21:25:43
2016-12-18T21:25:43
79,952,386
0
0
null
null
null
null
UTF-8
C++
false
false
596
hpp
#pragma once #include "minebombers/attachments/CollisionMaterialAttachment.hpp" #include <string> #include <memory> class CollisionData { public: CollisionData(std::string path, std::shared_ptr<CollisionMaterialAttachment> materialAttachment) : _path(path), _materialAttachment(materialAttachment) {} auto path() -> std::string { return _path; } auto collisionMaterialAttachment() -> std::shared_ptr<CollisionMaterialAttachment> { return _materialAttachment; } private: std::string _path; std::shared_ptr<CollisionMaterialAttachment> _materialAttachment; };
[ "pesola.toni@gmail.com" ]
pesola.toni@gmail.com
c0de1c6a04e639f15c36ddcb1cf7930bff9cb84b
8dc84558f0058d90dfc4955e905dab1b22d12c08
/ios/chrome/browser/ui/overlays/overlay_queue_manager_observer.h
58ef15048f9138a0a08f7ccf83646b6d3bf224cd
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
meniossin/src
42a95cc6c4a9c71d43d62bc4311224ca1fd61e03
44f73f7e76119e5ab415d4593ac66485e65d700a
refs/heads/master
2022-12-16T20:17:03.747113
2020-09-03T10:43:12
2020-09-03T10:43:12
263,710,168
1
0
BSD-3-Clause
2020-05-13T18:20:09
2020-05-13T18:20:08
null
UTF-8
C++
false
false
1,145
h
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef IOS_CHROME_BROWSER_UI_OVERLAYS_OVERLAY_QUEUE_MANAGER_OBSERVER_H_ #define IOS_CHROME_BROWSER_UI_OVERLAYS_OVERLAY_QUEUE_MANAGER_OBSERVER_H_ #include "base/macros.h" class OverlayQueue; class OverlayQueueManager; // Observer class for OverlayQueueManager. class OverlayQueueManagerObserver { public: OverlayQueueManagerObserver() = default; virtual ~OverlayQueueManagerObserver() = default; // Called when an OverlayQueueManager creates |queue|. virtual void OverlayQueueManagerDidAddQueue(OverlayQueueManager* manager, OverlayQueue* queue) {} // Called when an OverlayQueueManager is about to remove |queue|. virtual void OverlayQueueManagerWillRemoveQueue(OverlayQueueManager* manager, OverlayQueue* queue) {} private: DISALLOW_COPY_AND_ASSIGN(OverlayQueueManagerObserver); }; #endif // IOS_CHROME_BROWSER_UI_OVERLAYS_OVERLAY_QUEUE_MANAGER_OBSERVER_H_
[ "arnaud@geometry.ee" ]
arnaud@geometry.ee
aeb61a18bad2f2d6442dd36bf35957b3766a96dd
2dc7792f8bbfe207f2b54f8cae08cbd29049c2ac
/RedneckEngine/Plane.h
b4b739166e8499227b67a5f10aa5dda56697cbc6
[ "MIT" ]
permissive
TheHolyBell/RedneckEngine
135ff9e8625668ef3ceec9f2fa23b45ef02937f1
3534b24de3ef5336bec9f7b04c31cbb4a5b8cc6e
refs/heads/master
2022-06-26T00:52:07.620860
2020-05-02T16:59:50
2020-05-02T16:59:50
234,753,834
0
0
null
null
null
null
UTF-8
C++
false
false
2,401
h
#pragma once #include <optional> #include "Vertex.h" #include "IndexedTriangleList.h" #include <DirectXMath.h> #include "Math.h" #include <array> class Plane { public: static IndexedTriangleList MakeTesselatedTextured(Dvtx::VertexLayout layout, int divisions_x, int divisions_y) { namespace dx = DirectX; assert(divisions_x >= 1); assert(divisions_y >= 1); constexpr float width = 2.0f; constexpr float height = 2.0f; const int nVertices_x = divisions_x + 1; const int nVertices_y = divisions_y + 1; Dvtx::VertexBuffer vb{ std::move(layout) }; { const float side_x = width / 2.0f; const float side_y = height / 2.0f; const float divisionSize_x = width / float(divisions_x); const float divisionSize_y = height / float(divisions_y); const float divisionSize_x_tc = 1.0f / float(divisions_x); const float divisionSize_y_tc = 1.0f / float(divisions_y); for (int y = 0, i = 0; y < nVertices_y; y++) { const float y_pos = float(y) * divisionSize_y - 1.0f; const float y_pos_tc = 1.0f - float(y) * divisionSize_y_tc; for (int x = 0; x < nVertices_x; x++, i++) { const float x_pos = float(x) * divisionSize_x - 1.0f; const float x_pos_tc = float(x) * divisionSize_x_tc; vb.EmplaceBack( dx::XMFLOAT3{ x_pos,y_pos,0.0f }, dx::XMFLOAT3{ 0.0f,0.0f,-1.0f }, dx::XMFLOAT2{ x_pos_tc,y_pos_tc } ); } } } std::vector<unsigned short> indices; indices.reserve(Math::sq(divisions_x * divisions_y) * 6); { const auto vxy2i = [nVertices_x](size_t x, size_t y) { return (unsigned short)(y * nVertices_x + x); }; for (size_t y = 0; y < divisions_y; y++) { for (size_t x = 0; x < divisions_x; x++) { const std::array<unsigned short, 4> indexArray = { vxy2i(x,y),vxy2i(x + 1,y),vxy2i(x,y + 1),vxy2i(x + 1,y + 1) }; indices.push_back(indexArray[0]); indices.push_back(indexArray[2]); indices.push_back(indexArray[1]); indices.push_back(indexArray[1]); indices.push_back(indexArray[2]); indices.push_back(indexArray[3]); } } } return{ std::move(vb),std::move(indices) }; } static IndexedTriangleList Make() { using Dvtx::VertexLayout; VertexLayout vl; vl.Append(VertexLayout::Position3D); vl.Append(VertexLayout::Normal); vl.Append(VertexLayout::Texture2D); return MakeTesselatedTextured(std::move(vl), 1, 1); } };
[ "kamalzubairow@gmail.com" ]
kamalzubairow@gmail.com
fcdae6432bcec04670dd6c00aa07ef5661fb5118
77bcbea313082bdd089ec0f312891eb26ea93c0d
/hotheater1/constant/ellipse/polyMesh/owner
dbc3285eb46a08af9a4a0523e937a2efeec71df5
[]
no_license
zachery-style/prolate_home
5db0d4483a864eb6cd569e16613ff3e9bc439c72
86f5cfd83cc27333982c37dd085861f226985f10
refs/heads/main
2023-04-08T15:23:34.483706
2021-04-20T17:24:41
2021-04-20T17:24:41
359,894,523
0
0
null
null
null
null
UTF-8
C++
false
false
99,170
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v2012 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class labelList; note "nPoints:8920 nCells:6041 nFaces:20943 nInternalFaces:17049"; location "constant/ellipse/polyMesh"; object owner; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 20943 ( 0 0 0 0 0 1 1 1 1 1 2 2 2 2 2 2 3 3 3 3 3 4 4 4 4 4 5 5 5 5 5 5 6 6 6 6 6 7 7 7 7 7 7 8 8 8 8 8 8 9 9 9 9 10 10 10 10 10 10 11 11 11 11 11 11 12 12 12 12 12 12 13 13 13 13 13 13 14 14 14 14 14 15 15 15 16 16 16 16 17 17 17 17 17 17 18 18 18 19 19 19 19 19 19 20 20 20 20 20 20 20 20 20 21 21 21 21 21 21 22 22 22 22 22 22 22 22 22 22 22 22 23 23 23 23 23 23 23 23 23 24 24 24 24 24 24 25 25 25 25 25 25 26 26 26 26 26 26 27 27 27 27 27 27 28 28 28 28 28 28 29 29 29 29 29 29 29 29 29 29 29 29 30 30 30 30 30 30 31 31 31 31 31 31 32 32 32 32 32 32 33 33 33 34 34 34 34 34 34 35 35 35 35 35 35 36 36 36 36 36 36 36 36 36 37 37 37 37 37 38 38 38 38 38 38 39 39 39 39 39 39 40 40 40 40 40 40 41 41 41 41 41 41 41 41 41 41 41 41 42 42 42 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 44 44 44 44 44 44 45 45 45 45 45 45 46 46 46 46 46 46 47 47 47 47 47 47 47 47 47 47 47 47 48 48 48 48 48 48 49 49 49 49 49 49 50 50 50 50 50 50 51 51 51 51 51 51 51 51 51 51 51 51 52 52 52 52 52 52 53 53 53 53 53 53 53 53 53 53 53 53 53 53 53 54 54 54 55 55 55 55 55 55 55 55 55 55 55 55 56 56 56 56 56 56 56 56 56 57 57 57 57 57 57 58 58 58 58 58 58 59 59 59 59 59 59 59 59 59 59 59 59 59 59 59 60 60 60 61 61 61 62 62 62 63 63 63 63 64 64 64 64 64 64 64 64 64 64 64 64 65 65 65 65 65 65 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 67 67 67 67 67 67 68 68 68 68 68 68 69 69 69 69 69 70 70 70 70 70 70 71 71 71 71 71 71 72 72 72 72 72 72 73 73 73 73 73 73 73 73 73 73 73 73 73 73 73 74 74 74 74 74 74 75 75 75 75 75 75 76 76 76 76 76 76 77 77 77 77 77 77 77 77 77 78 78 78 78 78 78 79 79 79 79 79 79 80 80 80 80 80 80 81 81 81 81 81 82 82 82 82 82 82 83 83 83 83 83 83 84 84 84 84 84 84 85 85 85 85 85 85 86 86 86 86 86 86 87 87 87 87 87 87 88 88 88 88 88 88 89 89 89 89 89 89 89 89 89 90 90 90 90 90 91 91 91 91 91 91 91 91 91 91 91 91 92 92 92 92 92 92 93 93 93 93 93 93 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 95 95 95 95 95 95 95 95 95 96 96 96 96 96 96 97 97 97 97 97 97 98 98 98 98 98 98 99 99 99 99 99 99 99 99 99 100 100 100 100 100 100 101 101 101 101 101 101 101 101 101 102 102 102 102 102 103 103 103 103 103 103 103 103 103 104 104 104 104 104 104 105 105 105 105 105 105 106 106 106 106 106 106 106 106 106 106 106 106 107 107 107 107 107 107 107 107 107 107 107 107 107 107 107 108 108 108 108 108 108 109 109 109 109 109 109 110 110 110 110 110 110 111 111 111 111 111 112 112 112 112 112 112 113 113 113 113 113 113 114 114 114 114 115 115 115 115 115 115 116 116 116 116 116 116 116 116 116 116 116 116 116 116 116 117 117 117 117 117 117 118 118 118 118 118 118 119 119 119 119 119 119 119 119 119 120 120 120 120 120 120 120 120 120 120 120 120 121 121 121 121 121 121 122 122 122 122 122 122 123 123 123 123 123 123 123 123 123 124 124 124 124 124 124 124 124 124 124 124 124 125 125 125 125 125 126 126 126 126 126 126 126 126 126 126 126 126 127 127 127 127 127 127 127 127 127 128 128 128 128 128 128 128 128 128 128 128 128 129 129 129 129 130 130 130 130 130 131 131 131 131 131 131 131 131 131 132 132 132 132 132 132 132 132 132 133 133 133 133 133 133 134 134 134 134 134 134 135 135 135 135 135 135 135 135 135 136 136 136 136 136 136 136 136 136 137 137 137 137 137 137 138 138 138 138 138 138 139 139 139 139 139 139 139 139 139 140 140 140 140 140 140 140 140 140 140 140 140 140 140 140 141 141 141 141 141 141 142 142 142 142 142 142 143 143 143 143 143 143 143 143 143 144 144 144 144 144 144 145 145 145 145 145 145 146 146 146 146 146 146 147 147 147 147 147 147 148 148 148 148 148 149 149 149 149 149 149 150 150 150 150 150 151 151 151 151 152 152 152 152 152 153 153 153 154 154 154 154 155 155 155 155 155 156 156 156 156 157 157 157 157 157 158 158 158 158 159 159 159 160 160 160 160 161 161 161 162 162 162 162 162 163 163 164 164 164 165 165 165 165 166 166 166 166 167 167 167 167 168 168 168 169 169 169 169 169 170 170 171 171 171 172 172 172 172 173 173 173 173 174 174 174 175 175 175 176 176 176 176 176 176 177 177 177 177 177 177 178 178 178 178 178 179 179 179 179 179 180 180 180 180 180 180 181 181 182 182 183 183 183 183 184 184 184 184 184 185 185 185 185 185 185 186 186 186 187 187 187 187 188 188 188 189 189 189 189 190 190 190 190 191 191 191 191 192 192 192 192 192 193 193 193 193 194 194 195 195 195 195 195 196 196 196 197 197 197 198 198 198 198 199 199 199 200 200 200 201 201 201 201 201 202 202 203 203 203 204 204 204 205 205 205 206 206 206 206 206 207 207 207 208 208 208 209 209 210 210 210 210 210 211 211 212 212 213 213 213 213 213 214 214 214 214 214 215 215 215 215 215 215 216 216 216 216 216 216 217 217 217 217 217 217 217 217 217 217 217 217 217 217 217 218 218 219 219 219 219 219 220 220 220 220 221 221 221 221 221 221 222 222 222 222 222 222 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 224 224 224 225 225 225 226 226 226 226 226 227 227 227 227 227 227 227 227 227 227 227 227 228 228 228 228 228 228 228 229 229 229 229 229 229 229 230 230 230 230 230 230 230 231 231 231 232 232 232 233 233 233 233 233 234 234 234 234 235 235 235 235 235 235 235 235 235 235 235 236 236 236 236 236 236 237 237 237 237 237 237 237 237 237 237 237 238 238 238 239 239 239 240 240 240 240 240 241 241 241 241 241 241 242 242 242 242 242 242 242 243 243 243 243 243 243 243 244 244 244 244 244 244 244 245 245 245 246 246 246 246 247 247 247 247 247 248 248 248 248 248 248 248 248 248 248 248 248 248 249 249 249 249 249 249 249 250 250 250 250 250 250 250 250 250 250 250 251 251 251 251 251 251 251 252 252 252 253 253 253 254 254 254 254 254 255 255 255 255 255 255 256 256 256 256 256 256 256 257 257 257 257 257 257 257 258 258 258 258 258 258 258 259 259 260 260 260 260 260 261 261 261 261 261 262 262 262 262 262 263 263 263 263 264 264 264 264 265 265 265 266 266 266 266 266 266 267 267 267 267 268 268 268 268 268 269 269 269 270 271 271 271 272 272 272 273 273 273 273 274 274 275 275 275 275 275 275 275 276 276 276 276 276 276 276 277 277 277 277 277 277 277 278 278 278 278 278 279 279 279 279 279 280 280 280 280 280 281 281 281 281 281 282 282 282 282 282 282 282 283 283 283 283 283 283 283 283 283 283 284 284 284 284 284 284 284 285 285 285 285 285 286 286 286 286 286 287 287 287 287 287 288 288 288 288 288 289 289 289 289 289 289 290 290 290 290 290 290 291 291 291 291 291 291 291 292 292 292 293 293 293 293 294 294 294 294 295 295 295 295 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 298 298 298 298 298 299 299 299 299 299 300 300 300 300 300 301 301 301 301 301 301 302 302 302 302 302 302 303 303 303 303 303 303 303 304 304 304 305 305 305 305 306 306 306 306 307 307 307 307 307 308 308 308 308 308 308 308 308 308 309 309 309 309 309 309 310 310 310 310 310 310 310 310 310 310 311 311 311 312 312 312 312 313 313 313 313 314 314 314 314 314 315 315 315 315 315 315 315 315 315 315 316 316 316 316 316 317 317 317 317 317 317 317 317 317 317 317 318 318 318 318 319 319 319 319 319 320 320 320 320 320 320 321 321 321 321 321 321 322 322 322 322 322 322 322 323 323 323 324 324 324 324 325 325 325 325 326 326 326 326 326 327 327 327 327 327 327 328 328 328 328 328 328 328 329 329 329 329 329 329 329 329 329 329 330 330 330 330 331 331 331 331 332 332 332 332 332 333 333 333 333 333 334 334 334 335 335 335 336 336 337 337 337 337 338 338 338 338 339 339 339 340 340 340 340 341 341 341 342 342 342 343 343 343 343 344 344 344 345 345 345 346 346 347 347 347 347 348 348 349 349 349 350 350 350 350 351 351 352 352 352 353 353 353 354 354 354 355 356 356 356 357 357 357 358 358 358 359 359 359 360 360 360 361 361 362 362 363 363 363 363 364 364 365 365 366 366 366 367 368 368 368 369 369 369 369 370 370 370 371 371 371 372 372 372 373 373 373 374 374 374 375 375 375 375 376 376 377 377 377 377 378 378 379 379 379 379 380 381 381 382 382 382 383 383 384 384 384 384 384 385 386 386 387 387 387 387 387 387 388 388 388 388 388 389 389 389 389 390 390 391 392 392 392 393 393 393 393 393 394 394 394 394 394 395 395 395 396 396 398 398 399 399 399 399 399 400 400 401 401 401 401 402 404 404 405 405 405 405 405 406 406 406 406 407 407 408 408 409 410 410 410 410 411 411 411 411 412 413 414 415 415 415 415 416 416 416 417 417 417 418 418 418 418 419 419 419 420 420 421 421 421 421 422 422 422 423 423 423 424 424 424 425 425 425 425 426 426 427 427 428 428 428 429 429 430 430 431 431 431 431 432 432 433 433 434 434 434 434 435 435 436 436 437 437 437 438 438 439 439 439 440 440 440 441 442 442 442 443 443 443 443 444 444 444 445 445 446 446 446 446 447 447 448 448 449 449 449 450 450 451 451 452 452 452 453 453 453 453 454 454 454 454 455 455 455 456 456 456 456 457 457 458 458 458 458 459 459 459 459 460 460 460 460 460 461 461 462 462 462 463 463 464 464 465 465 465 465 466 466 466 468 468 468 468 468 468 469 469 470 470 470 470 470 471 471 471 471 471 472 472 473 473 473 473 473 473 474 474 475 475 475 475 475 476 476 476 476 477 477 477 477 477 478 478 478 479 479 479 479 479 480 480 480 480 480 481 481 481 481 481 481 482 483 483 483 483 483 484 484 484 484 485 485 485 486 486 486 486 487 487 487 488 488 488 488 488 489 489 489 489 490 490 490 491 491 491 492 492 492 493 493 493 494 494 494 494 494 495 495 495 495 495 495 495 495 495 495 495 495 495 495 496 496 496 496 496 496 497 497 497 498 498 498 498 498 499 499 499 499 499 500 500 500 500 501 501 502 502 502 502 503 503 503 503 504 504 504 505 505 505 505 506 506 506 506 507 507 508 508 509 509 509 510 510 510 510 510 510 510 510 510 511 511 511 511 511 512 512 512 512 512 512 512 512 512 512 513 513 513 513 513 513 514 514 514 515 515 515 515 516 516 516 516 517 517 517 517 517 518 518 518 518 519 519 519 520 520 520 521 521 521 521 521 522 522 522 522 523 523 523 524 524 524 525 525 525 526 526 526 526 526 526 526 526 526 527 527 527 527 527 528 528 528 528 528 528 528 528 528 528 529 529 529 529 529 529 530 530 531 531 531 532 532 533 533 533 534 534 534 534 535 535 535 535 536 536 536 536 536 537 537 537 537 537 538 538 538 538 539 539 539 539 540 540 540 540 541 541 541 541 542 542 543 543 544 544 544 545 545 545 545 545 545 545 545 545 546 546 546 546 546 547 547 547 547 547 547 547 547 547 547 547 547 547 548 548 548 548 548 549 550 550 550 550 551 551 551 552 552 552 552 552 553 553 553 554 554 554 554 554 554 554 554 554 554 554 554 554 554 555 555 555 555 555 556 556 556 556 556 556 556 556 556 556 556 557 557 557 558 558 558 559 559 559 559 559 560 560 560 560 560 560 561 561 561 561 561 561 561 562 562 562 562 562 562 562 563 563 563 563 563 563 563 564 564 564 565 565 565 566 566 566 566 566 567 567 567 567 567 567 568 568 568 568 568 568 568 568 568 568 569 569 569 569 569 569 569 570 570 570 570 570 570 570 570 570 570 571 571 572 572 572 573 573 573 574 574 574 574 574 575 575 575 576 576 576 576 576 577 577 577 578 578 578 578 578 579 579 579 580 580 580 580 580 580 580 580 580 580 580 581 581 581 581 581 582 582 582 582 582 582 582 582 582 582 582 583 583 583 584 584 584 585 585 585 585 585 586 586 586 586 586 586 587 587 587 587 587 587 587 588 588 588 588 588 588 588 589 589 589 589 589 589 589 590 590 590 591 591 591 592 592 592 592 592 592 593 593 593 593 593 593 593 593 593 593 593 593 593 594 594 594 594 594 594 594 594 594 594 595 595 595 595 595 595 596 596 596 597 597 597 597 597 598 598 598 598 598 599 599 599 599 599 599 600 600 600 601 601 601 601 601 602 602 602 603 603 603 603 603 603 603 603 603 603 603 604 604 604 604 604 605 605 605 605 605 605 605 605 605 605 605 606 606 606 607 607 607 608 608 608 608 608 609 609 609 609 609 609 610 610 610 610 610 610 610 611 611 611 611 611 611 611 612 612 612 612 612 612 612 613 613 613 614 614 614 614 614 614 614 614 614 615 615 615 615 615 616 616 616 616 616 616 616 616 616 616 616 616 616 617 617 617 617 617 617 618 618 618 619 619 620 620 620 620 620 621 621 621 621 621 621 622 622 622 623 623 623 623 623 624 624 624 625 625 625 625 625 625 625 625 625 625 625 626 626 626 626 626 627 627 627 627 627 627 627 627 627 627 627 627 627 627 628 628 628 629 629 629 630 630 630 630 630 630 631 631 631 631 631 631 631 631 631 631 631 631 631 632 632 632 632 632 632 632 632 632 632 632 632 632 633 633 633 633 633 633 634 634 634 635 635 635 636 636 636 636 636 637 637 637 637 637 638 638 638 638 639 640 640 640 641 641 641 641 641 642 642 642 642 642 643 643 643 643 643 643 644 644 644 645 645 645 645 645 646 646 646 646 646 647 647 647 647 647 647 648 648 648 649 649 650 650 650 651 651 651 652 652 652 652 652 653 653 653 654 654 654 654 654 655 655 655 656 656 657 657 658 659 659 659 659 659 659 660 660 660 661 661 661 662 662 662 662 662 663 663 664 664 664 664 664 665 665 665 665 665 666 666 666 666 666 666 666 666 666 666 666 666 666 666 666 667 667 667 668 668 668 668 668 668 668 668 668 668 668 668 668 668 668 669 669 669 669 669 670 670 670 670 670 670 670 670 670 670 670 670 671 671 671 671 671 671 671 671 671 671 671 671 671 672 672 672 673 673 673 673 673 673 673 673 673 673 674 674 674 675 675 675 676 676 676 676 676 677 677 678 678 678 678 678 679 679 679 679 679 680 680 680 681 681 681 681 681 681 682 682 682 682 683 683 683 683 684 684 684 684 684 684 685 685 685 686 686 686 686 686 686 687 687 687 688 688 688 689 689 689 689 689 689 689 689 689 689 689 689 689 689 690 690 690 691 691 691 691 691 691 691 691 691 691 691 691 691 691 692 692 692 692 692 693 693 693 693 693 693 693 694 694 694 694 694 694 695 695 695 695 695 696 696 696 697 697 697 698 698 698 698 699 699 699 700 700 700 701 701 701 701 702 702 702 702 703 703 703 703 703 703 704 704 705 705 705 705 705 706 706 706 706 706 707 707 707 707 707 707 708 708 708 708 708 708 708 708 708 709 709 709 709 709 709 709 709 709 709 709 709 710 710 710 711 711 711 711 711 711 711 711 711 711 711 711 712 712 712 713 713 713 713 713 713 714 714 714 715 715 715 715 716 716 716 716 717 717 717 717 717 717 718 718 718 719 719 719 719 719 720 720 720 720 720 721 721 721 721 721 722 722 722 722 722 722 722 722 722 722 722 722 722 722 722 723 723 724 724 724 724 724 724 724 724 725 725 725 726 726 726 726 726 727 727 727 728 728 728 729 729 729 730 730 730 731 731 731 731 732 732 732 732 732 732 733 733 733 734 734 734 734 734 735 735 735 735 735 735 735 735 735 735 735 735 736 736 736 737 737 737 737 737 737 737 737 737 737 738 738 738 739 739 739 739 739 739 739 740 740 740 740 740 741 741 741 741 741 741 741 742 742 742 742 743 743 743 743 743 743 744 744 744 744 744 745 745 745 745 746 746 746 746 746 746 746 746 746 746 746 746 746 746 747 747 747 747 747 747 747 748 748 748 748 748 748 749 749 750 750 750 751 751 751 751 752 752 753 753 753 753 754 754 754 754 755 755 755 755 755 755 756 756 756 756 756 756 757 757 757 758 758 758 758 758 758 758 759 759 759 760 760 760 760 760 760 760 761 761 761 761 761 761 761 761 761 761 761 761 761 761 762 762 762 763 763 763 764 764 764 764 764 764 764 764 764 764 764 764 765 765 765 766 766 766 766 766 766 767 767 767 767 767 768 768 768 768 768 768 768 769 769 769 769 769 770 770 771 771 771 772 772 772 772 772 773 773 773 773 773 774 774 774 774 774 774 775 775 775 775 776 776 776 776 776 776 776 776 776 776 776 776 776 777 777 777 777 778 778 778 778 778 778 779 779 779 780 780 780 780 780 781 781 781 781 781 782 782 782 782 782 782 783 783 783 784 784 784 784 785 785 785 785 785 785 786 786 786 787 787 787 787 787 788 788 788 788 788 789 789 789 789 789 789 790 790 790 790 791 791 791 791 792 792 792 792 792 792 792 793 793 793 793 793 793 794 794 794 794 794 794 794 794 794 794 794 794 794 794 795 795 795 795 795 796 796 797 797 797 798 798 798 798 798 799 799 799 799 799 800 800 800 800 800 800 801 801 801 802 802 802 802 803 803 803 804 804 804 804 804 804 805 805 805 806 806 806 807 807 807 807 807 808 808 808 808 808 809 809 809 809 809 809 809 809 809 809 809 809 809 810 810 810 811 811 811 811 812 812 812 812 812 812 812 812 812 812 813 813 813 813 814 814 814 814 814 814 814 814 814 814 814 814 815 815 815 815 815 815 815 815 815 816 816 816 816 817 817 817 818 818 818 818 818 818 819 819 819 819 819 819 820 820 820 820 820 820 820 820 820 820 820 820 820 820 820 821 821 821 821 822 822 822 823 823 823 823 823 823 824 824 824 824 824 825 825 825 825 825 826 827 827 827 828 828 828 829 829 829 829 829 830 830 831 831 832 832 833 833 833 833 833 834 834 834 835 835 835 835 835 835 835 835 835 835 835 835 835 835 835 836 836 836 837 837 837 837 837 837 837 838 838 838 838 838 839 839 839 839 839 840 840 840 840 840 840 840 840 840 840 840 840 840 840 841 841 841 841 841 841 841 841 841 841 841 842 842 843 843 843 843 843 843 843 843 843 844 844 844 845 845 845 845 845 846 846 846 846 846 846 846 846 846 846 846 846 846 847 847 847 847 847 847 848 848 848 849 849 850 850 850 850 850 851 851 851 852 852 853 853 853 853 853 854 854 854 854 855 855 855 855 855 855 856 856 856 856 857 857 857 857 858 858 858 858 858 858 859 859 859 859 860 860 860 861 861 861 861 861 861 861 861 861 862 862 862 863 863 863 863 863 863 863 864 864 864 865 865 865 865 865 865 865 865 865 865 865 865 865 866 866 866 866 866 867 867 867 867 867 867 867 867 867 867 868 868 868 868 869 869 869 869 870 870 870 870 870 870 871 871 871 872 872 872 872 872 873 873 873 873 874 874 874 874 874 874 875 875 875 875 876 876 876 876 877 877 877 877 877 877 878 878 878 879 879 879 880 880 880 880 880 880 880 880 880 880 880 880 880 880 881 881 881 881 881 882 882 882 883 883 883 883 883 883 884 884 884 884 885 885 885 885 886 886 886 886 886 887 887 887 887 888 888 888 889 889 889 889 889 889 890 890 890 891 891 891 891 891 891 891 892 892 892 893 893 893 893 893 893 893 893 893 893 893 893 893 894 894 894 894 894 895 895 895 895 895 895 895 895 895 895 896 896 896 896 896 896 896 896 896 896 896 896 897 897 897 897 897 897 898 898 898 898 898 899 899 899 899 899 899 899 900 900 900 900 900 900 901 901 901 901 901 901 901 902 902 902 902 902 902 903 903 904 904 905 905 905 906 906 907 907 907 907 907 908 908 908 909 909 909 909 909 910 910 910 910 910 910 911 911 911 911 911 911 911 911 911 911 911 911 912 912 912 913 913 913 914 914 914 914 914 914 915 915 915 915 916 916 916 916 916 916 917 917 917 918 918 918 918 918 918 919 919 919 919 920 920 920 920 920 920 920 920 920 921 921 921 921 921 922 922 922 922 922 922 922 922 922 922 922 922 922 923 923 923 924 925 925 925 926 926 926 926 926 927 927 927 927 928 928 928 928 928 928 929 929 929 930 930 930 930 930 930 931 931 931 931 932 932 932 933 933 933 933 933 933 934 934 934 934 934 934 934 934 934 934 934 934 935 935 936 936 936 937 937 937 937 938 938 938 938 939 939 939 939 939 939 940 940 940 941 941 941 941 941 942 942 942 942 942 943 943 943 943 943 943 944 944 944 944 945 945 945 945 946 946 946 946 947 947 947 948 948 948 948 948 949 949 949 949 949 950 950 950 950 950 950 951 951 951 951 952 952 952 952 952 952 952 952 952 952 952 952 953 953 953 953 954 954 954 954 954 954 954 954 954 954 954 954 954 955 955 955 955 955 955 956 956 956 956 956 956 957 958 958 958 959 959 959 959 959 960 960 960 960 960 961 961 961 961 961 961 962 963 963 963 963 964 964 964 964 965 965 965 966 966 966 967 967 967 967 968 968 968 968 968 969 969 969 970 970 970 970 970 970 970 970 970 970 970 971 971 971 971 971 971 971 971 971 971 971 972 972 972 972 973 973 973 973 973 973 973 973 973 973 973 973 973 973 973 973 973 974 974 974 975 975 975 975 975 976 976 976 976 977 977 977 978 978 979 979 979 979 980 980 980 980 980 981 981 981 982 982 982 982 982 983 983 983 983 983 984 984 984 985 985 986 986 986 986 986 987 988 988 989 990 991 992 992 992 992 992 993 993 994 994 994 995 995 995 995 995 996 997 998 998 998 998 998 999 999 999 999 1000 1000 1000 1000 1001 1001 1001 1001 1001 1001 1002 1002 1002 1002 1003 1003 1003 1003 1004 1004 1004 1004 1005 1005 1005 1005 1005 1005 1006 1006 1007 1007 1007 1008 1008 1008 1009 1009 1009 1010 1010 1010 1010 1010 1011 1011 1011 1012 1012 1012 1012 1012 1012 1012 1012 1012 1012 1012 1012 1012 1013 1013 1013 1013 1013 1013 1013 1013 1013 1013 1013 1013 1013 1014 1014 1014 1014 1014 1014 1014 1015 1015 1015 1015 1016 1016 1016 1016 1017 1017 1017 1017 1017 1018 1018 1018 1018 1019 1019 1019 1019 1019 1019 1019 1019 1019 1020 1020 1020 1020 1020 1020 1021 1021 1021 1022 1022 1022 1022 1023 1023 1023 1024 1025 1025 1025 1025 1025 1026 1026 1026 1026 1026 1026 1026 1026 1026 1026 1026 1026 1026 1027 1027 1027 1027 1028 1028 1028 1028 1028 1028 1028 1028 1028 1028 1028 1029 1029 1029 1029 1030 1030 1030 1030 1030 1030 1031 1031 1031 1031 1031 1031 1032 1032 1032 1032 1032 1032 1033 1033 1033 1033 1033 1033 1034 1034 1034 1035 1035 1035 1035 1035 1036 1036 1036 1036 1037 1037 1037 1037 1037 1038 1038 1038 1038 1039 1039 1039 1039 1039 1039 1039 1039 1039 1040 1040 1040 1040 1040 1040 1041 1041 1041 1042 1042 1042 1042 1042 1043 1043 1043 1044 1044 1044 1045 1045 1045 1045 1045 1046 1046 1046 1046 1046 1046 1046 1046 1046 1046 1047 1047 1047 1047 1047 1047 1047 1047 1047 1047 1047 1047 1047 1048 1048 1048 1048 1048 1049 1049 1049 1050 1050 1050 1051 1051 1051 1052 1052 1052 1052 1053 1053 1053 1053 1053 1053 1053 1053 1053 1054 1054 1054 1054 1054 1054 1055 1055 1055 1056 1056 1056 1056 1057 1058 1058 1058 1059 1059 1060 1060 1060 1061 1061 1062 1062 1063 1063 1063 1064 1064 1064 1064 1064 1064 1064 1064 1064 1064 1064 1065 1065 1065 1065 1066 1066 1066 1067 1067 1067 1067 1068 1068 1069 1069 1069 1069 1069 1070 1070 1070 1070 1071 1071 1071 1071 1072 1072 1073 1073 1074 1074 1075 1076 1076 1077 1077 1077 1078 1078 1079 1079 1080 1081 1081 1081 1082 1082 1082 1082 1082 1083 1083 1083 1083 1084 1084 1084 1084 1084 1085 1085 1085 1086 1086 1087 1087 1088 1088 1089 1089 1089 1089 1089 1089 1089 1089 1089 1089 1089 1089 1090 1090 1090 1090 1090 1090 1090 1090 1090 1091 1091 1091 1091 1091 1091 1092 1092 1092 1093 1093 1093 1094 1094 1094 1094 1095 1095 1095 1096 1096 1097 1097 1097 1097 1097 1098 1098 1098 1098 1098 1098 1098 1098 1098 1098 1099 1099 1099 1099 1100 1100 1100 1100 1100 1100 1100 1100 1100 1100 1101 1101 1101 1102 1102 1102 1102 1103 1103 1103 1103 1104 1104 1104 1104 1105 1105 1105 1105 1105 1106 1106 1106 1107 1107 1108 1108 1108 1109 1109 1109 1109 1109 1110 1110 1110 1110 1110 1110 1110 1110 1110 1110 1110 1110 1110 1111 1111 1111 1111 1112 1112 1112 1112 1112 1112 1113 1113 1113 1113 1114 1114 1114 1115 1115 1115 1115 1115 1115 1115 1115 1115 1115 1115 1115 1116 1116 1116 1116 1116 1116 1116 1116 1116 1116 1116 1116 1116 1116 1116 1117 1117 1117 1117 1117 1117 1118 1118 1118 1119 1119 1119 1120 1120 1120 1121 1121 1122 1122 1122 1123 1123 1123 1124 1124 1124 1125 1125 1125 1125 1126 1126 1126 1126 1127 1127 1127 1127 1127 1127 1128 1128 1128 1128 1129 1129 1129 1129 1130 1130 1130 1130 1132 1132 1132 1133 1133 1134 1135 1136 1136 1137 1137 1138 1138 1138 1139 1140 1140 1140 1140 1141 1141 1141 1142 1142 1143 1143 1143 1144 1144 1144 1145 1145 1146 1146 1146 1147 1147 1148 1148 1149 1149 1150 1150 1150 1151 1152 1152 1153 1153 1154 1155 1156 1157 1157 1157 1157 1158 1158 1159 1159 1160 1160 1160 1161 1162 1162 1163 1163 1163 1164 1164 1165 1165 1166 1166 1166 1167 1168 1168 1168 1168 1169 1169 1169 1170 1170 1170 1170 1170 1171 1171 1172 1172 1172 1173 1173 1173 1174 1174 1175 1175 1175 1175 1175 1176 1177 1177 1178 1178 1178 1178 1178 1179 1179 1179 1179 1180 1180 1181 1181 1181 1181 1183 1183 1184 1184 1185 1185 1187 1189 1189 1189 1190 1191 1191 1192 1193 1193 1193 1193 1193 1194 1194 1194 1194 1194 1195 1195 1196 1196 1196 1196 1196 1197 1197 1198 1198 1198 1199 1200 1200 1200 1200 1201 1201 1201 1201 1201 1202 1202 1202 1202 1203 1203 1204 1204 1206 1206 1206 1206 1206 1207 1207 1207 1207 1207 1208 1208 1208 1209 1209 1209 1210 1211 1211 1211 1211 1212 1212 1212 1212 1212 1213 1213 1214 1214 1215 1215 1216 1218 1218 1218 1219 1219 1220 1221 1221 1222 1223 1223 1224 1224 1224 1225 1226 1226 1227 1227 1228 1228 1229 1230 1230 1230 1231 1231 1231 1232 1233 1233 1234 1234 1235 1236 1237 1237 1237 1238 1238 1238 1238 1239 1239 1239 1240 1240 1241 1241 1242 1242 1242 1243 1243 1243 1243 1244 1244 1245 1245 1245 1246 1247 1247 1247 1247 1248 1248 1249 1249 1249 1249 1250 1250 1250 1250 1250 1251 1251 1252 1252 1252 1253 1253 1253 1254 1254 1255 1255 1255 1255 1256 1256 1256 1256 1257 1257 1258 1258 1259 1259 1259 1260 1260 1260 1261 1262 1262 1263 1263 1263 1263 1264 1265 1266 1266 1266 1266 1266 1267 1267 1267 1267 1268 1268 1268 1268 1269 1269 1269 1269 1270 1270 1271 1271 1272 1272 1273 1273 1273 1274 1274 1274 1275 1275 1275 1276 1276 1277 1280 1280 1280 1281 1281 1282 1282 1282 1282 1283 1283 1283 1283 1284 1284 1285 1285 1286 1286 1287 1287 1287 1287 1288 1288 1288 1289 1290 1290 1291 1291 1291 1292 1292 1292 1293 1294 1294 1295 1295 1295 1295 1296 1297 1298 1298 1298 1298 1298 1299 1299 1300 1300 1300 1300 1300 1301 1301 1301 1301 1301 1302 1302 1303 1304 1304 1304 1305 1305 1305 1306 1306 1306 1307 1307 1307 1308 1308 1309 1312 1312 1312 1313 1313 1313 1313 1314 1314 1314 1315 1315 1315 1316 1317 1319 1319 1320 1320 1320 1320 1321 1321 1322 1322 1322 1323 1323 1323 1325 1325 1326 1326 1327 1327 1327 1327 1328 1328 1329 1329 1329 1330 1330 1330 1332 1332 1333 1333 1333 1334 1334 1334 1335 1336 1336 1337 1337 1337 1337 1338 1339 1340 1340 1341 1341 1341 1341 1342 1342 1343 1343 1343 1344 1344 1344 1346 1346 1347 1347 1348 1348 1348 1349 1349 1350 1350 1350 1350 1351 1351 1351 1351 1352 1352 1353 1353 1354 1354 1354 1354 1355 1355 1355 1356 1356 1357 1357 1357 1357 1359 1359 1360 1361 1361 1361 1362 1362 1362 1363 1363 1363 1364 1364 1365 1368 1368 1368 1369 1369 1369 1369 1370 1370 1371 1371 1371 1372 1372 1372 1372 1373 1374 1374 1375 1375 1375 1375 1376 1376 1376 1376 1377 1377 1377 1378 1378 1378 1378 1379 1379 1379 1379 1380 1380 1381 1381 1382 1382 1382 1383 1383 1383 1383 1384 1384 1385 1385 1385 1386 1386 1386 1386 1387 1388 1388 1389 1389 1389 1389 1390 1391 1391 1392 1392 1393 1393 1393 1393 1394 1394 1395 1395 1395 1395 1396 1396 1396 1396 1397 1397 1398 1398 1399 1399 1399 1399 1400 1401 1402 1402 1403 1404 1404 1404 1405 1405 1405 1406 1407 1407 1408 1408 1408 1409 1410 1410 1410 1410 1411 1411 1411 1411 1412 1413 1413 1413 1414 1415 1416 1416 1416 1417 1417 1417 1417 1418 1418 1419 1419 1420 1420 1420 1421 1423 1423 1423 1424 1425 1426 1426 1427 1428 1428 1428 1429 1429 1430 1430 1430 1431 1431 1431 1431 1432 1432 1432 1433 1433 1434 1434 1436 1437 1437 1437 1439 1439 1440 1441 1441 1442 1442 1442 1442 1442 1443 1443 1444 1444 1445 1446 1446 1448 1448 1448 1449 1449 1449 1449 1449 1450 1451 1451 1452 1454 1455 1457 1457 1457 1459 1460 1460 1460 1460 1461 1461 1461 1461 1462 1462 1462 1463 1463 1463 1463 1464 1464 1464 1464 1465 1465 1466 1466 1467 1467 1467 1467 1468 1468 1468 1468 1469 1469 1469 1470 1470 1470 1470 1471 1471 1471 1471 1472 1472 1473 1473 1474 1474 1474 1475 1475 1475 1475 1476 1476 1477 1477 1477 1478 1478 1478 1478 1479 1480 1480 1481 1481 1481 1481 1482 1482 1482 1482 1483 1483 1483 1484 1484 1484 1484 1485 1485 1485 1485 1486 1486 1487 1487 1488 1488 1488 1488 1489 1489 1489 1489 1490 1490 1490 1491 1491 1492 1494 1495 1495 1495 1496 1496 1497 1497 1498 1498 1498 1498 1499 1499 1500 1500 1500 1501 1501 1501 1501 1502 1503 1503 1504 1504 1505 1505 1506 1506 1506 1507 1507 1507 1508 1509 1509 1510 1510 1510 1510 1511 1512 1513 1513 1513 1514 1514 1514 1514 1515 1515 1515 1516 1516 1516 1516 1517 1517 1517 1518 1519 1519 1520 1520 1520 1521 1521 1521 1521 1522 1522 1523 1523 1523 1524 1524 1524 1524 1525 1526 1526 1527 1527 1527 1527 1528 1528 1528 1529 1529 1529 1530 1530 1530 1530 1530 1532 1532 1533 1533 1534 1534 1534 1534 1535 1536 1537 1537 1538 1538 1538 1538 1539 1539 1540 1540 1540 1541 1541 1541 1543 1543 1544 1544 1544 1545 1545 1545 1547 1547 1548 1548 1548 1549 1549 1549 1550 1551 1551 1552 1552 1552 1552 1553 1554 1555 1555 1555 1555 1556 1556 1556 1556 1557 1557 1557 1558 1558 1558 1558 1559 1559 1559 1559 1560 1560 1561 1561 1562 1562 1562 1563 1563 1563 1563 1564 1564 1564 1565 1565 1565 1565 1566 1566 1566 1567 1568 1568 1569 1569 1569 1569 1570 1570 1570 1570 1571 1571 1571 1572 1572 1572 1572 1573 1573 1573 1573 1574 1574 1575 1575 1576 1576 1576 1577 1577 1577 1578 1579 1579 1580 1580 1580 1580 1581 1582 1583 1583 1583 1584 1584 1585 1585 1586 1586 1587 1587 1588 1589 1590 1591 1591 1591 1592 1592 1592 1593 1593 1594 1594 1594 1594 1595 1595 1595 1596 1596 1596 1596 1597 1597 1597 1598 1598 1598 1599 1599 1599 1600 1600 1600 1601 1601 1602 1602 1603 1603 1603 1604 1604 1605 1605 1605 1605 1606 1606 1606 1606 1607 1607 1607 1607 1608 1608 1609 1609 1609 1610 1610 1610 1611 1611 1612 1612 1612 1613 1613 1613 1614 1614 1614 1615 1615 1616 1616 1616 1616 1617 1618 1618 1619 1619 1619 1619 1620 1620 1620 1621 1621 1621 1621 1622 1622 1622 1623 1623 1624 1624 1624 1624 1625 1625 1625 1625 1625 1626 1626 1626 1627 1627 1628 1628 1628 1629 1629 1629 1629 1629 1630 1630 1630 1630 1631 1631 1631 1632 1632 1632 1633 1633 1633 1633 1633 1634 1634 1634 1635 1635 1635 1636 1636 1637 1637 1637 1637 1637 1638 1638 1638 1638 1638 1639 1639 1639 1639 1639 1640 1640 1640 1640 1641 1641 1641 1642 1642 1643 1643 1644 1644 1644 1644 1645 1645 1645 1646 1646 1646 1646 1646 1646 1647 1647 1647 1647 1648 1648 1648 1648 1649 1649 1650 1650 1650 1651 1651 1652 1652 1652 1652 1652 1653 1653 1653 1653 1653 1654 1654 1654 1654 1654 1655 1655 1655 1655 1656 1656 1656 1657 1657 1658 1658 1659 1659 1659 1659 1659 1660 1660 1660 1660 1661 1661 1661 1661 1662 1662 1662 1662 1663 1664 1664 1665 1665 1666 1666 1666 1666 1666 1667 1667 1667 1668 1668 1668 1668 1669 1669 1669 1670 1670 1671 1671 1671 1671 1671 1672 1672 1672 1672 1673 1673 1673 1673 1674 1674 1674 1674 1675 1675 1676 1676 1677 1677 1678 1678 1678 1679 1679 1679 1679 1679 1680 1680 1681 1681 1681 1682 1682 1682 1682 1683 1683 1683 1684 1684 1684 1685 1685 1685 1685 1685 1686 1686 1687 1687 1687 1687 1687 1688 1688 1688 1689 1689 1689 1690 1690 1690 1691 1691 1691 1691 1691 1692 1692 1693 1693 1694 1694 1694 1694 1695 1695 1695 1696 1696 1697 1697 1697 1698 1698 1698 1698 1699 1699 1700 1701 1701 1701 1702 1702 1702 1703 1703 1703 1704 1704 1704 1705 1705 1705 1705 1705 1705 1705 1705 1705 1705 1705 1705 1706 1706 1706 1706 1706 1706 1706 1706 1706 1706 1706 1706 1707 1707 1707 1707 1707 1708 1708 1708 1708 1708 1708 1708 1708 1708 1708 1708 1708 1709 1709 1709 1710 1710 1710 1710 1710 1711 1711 1712 1712 1712 1712 1712 1712 1712 1712 1712 1712 1712 1713 1713 1713 1713 1713 1714 1714 1714 1714 1714 1714 1714 1714 1715 1715 1716 1716 1716 1716 1716 1717 1717 1717 1718 1718 1718 1718 1718 1719 1719 1719 1719 1719 1719 1720 1720 1720 1721 1721 1721 1721 1722 1722 1722 1722 1723 1724 1724 1725 1725 1726 1726 1726 1726 1726 1726 1727 1727 1727 1727 1727 1728 1728 1728 1729 1729 1729 1730 1730 1730 1731 1731 1731 1732 1732 1733 1733 1733 1733 1733 1733 1733 1733 1734 1734 1735 1735 1735 1735 1735 1735 1735 1735 1736 1736 1737 1737 1737 1737 1737 1738 1738 1738 1739 1739 1739 1739 1739 1740 1740 1740 1740 1740 1740 1741 1741 1741 1741 1742 1742 1742 1742 1743 1743 1743 1743 1744 1744 1745 1745 1745 1746 1746 1747 1747 1747 1747 1747 1747 1747 1747 1748 1748 1748 1749 1749 1749 1749 1749 1749 1749 1749 1750 1750 1750 1751 1751 1751 1751 1751 1752 1752 1752 1752 1753 1753 1753 1753 1753 1754 1754 1754 1754 1754 1754 1755 1755 1755 1755 1756 1756 1756 1756 1757 1757 1757 1757 1758 1758 1759 1759 1759 1760 1760 1761 1761 1761 1761 1761 1762 1762 1763 1763 1763 1764 1764 1764 1764 1764 1764 1764 1764 1764 1764 1764 1765 1765 1765 1765 1765 1765 1766 1766 1766 1767 1767 1767 1768 1768 1768 1768 1768 1769 1769 1769 1770 1770 1770 1770 1770 1770 1770 1770 1771 1771 1771 1771 1771 1772 1772 1772 1773 1773 1773 1773 1774 1774 1774 1774 1775 1776 1776 1777 1777 1778 1778 1778 1778 1778 1779 1779 1779 1779 1780 1780 1780 1780 1781 1781 1781 1781 1782 1782 1783 1783 1784 1784 1785 1785 1785 1785 1786 1786 1786 1786 1786 1787 1787 1788 1788 1788 1789 1789 1789 1789 1790 1790 1791 1791 1792 1792 1792 1792 1792 1792 1792 1792 1793 1793 1793 1794 1794 1794 1794 1794 1795 1795 1796 1796 1796 1796 1796 1797 1797 1798 1798 1798 1798 1798 1798 1799 1799 1799 1800 1800 1800 1800 1800 1800 1800 1800 1801 1801 1801 1801 1802 1802 1802 1803 1803 1803 1803 1804 1804 1804 1804 1804 1805 1805 1805 1806 1806 1807 1807 1807 1807 1807 1807 1807 1807 1808 1808 1808 1809 1809 1809 1809 1809 1810 1810 1810 1811 1811 1811 1811 1811 1811 1812 1812 1812 1813 1813 1813 1813 1813 1813 1813 1813 1813 1813 1813 1814 1814 1814 1814 1814 1814 1815 1815 1815 1816 1816 1816 1817 1817 1817 1817 1817 1818 1818 1818 1819 1819 1819 1819 1819 1819 1819 1819 1819 1819 1819 1820 1820 1820 1820 1820 1821 1821 1821 1821 1822 1822 1822 1822 1823 1823 1823 1823 1825 1825 1825 1826 1826 1827 1827 1827 1827 1828 1828 1828 1829 1829 1830 1830 1830 1830 1830 1830 1830 1830 1831 1831 1831 1832 1832 1832 1832 1832 1833 1833 1833 1834 1834 1834 1834 1834 1834 1835 1835 1835 1836 1836 1836 1836 1837 1837 1838 1838 1838 1838 1839 1839 1839 1840 1840 1840 1840 1840 1841 1841 1841 1841 1841 1841 1841 1841 1841 1841 1841 1842 1842 1842 1842 1842 1843 1843 1843 1843 1843 1844 1844 1844 1845 1845 1845 1845 1845 1846 1846 1847 1847 1847 1847 1847 1847 1847 1847 1847 1847 1847 1847 1848 1848 1848 1848 1848 1848 1848 1848 1849 1849 1849 1850 1850 1850 1851 1851 1851 1851 1851 1851 1852 1852 1853 1853 1853 1853 1853 1853 1853 1853 1853 1853 1853 1854 1854 1854 1854 1854 1854 1855 1855 1855 1855 1855 1856 1856 1856 1856 1857 1857 1857 1857 1858 1858 1859 1859 1859 1860 1860 1861 1861 1861 1861 1862 1862 1863 1863 1863 1864 1864 1865 1865 1866 1866 1866 1866 1867 1867 1867 1867 1868 1868 1869 1869 1870 1870 1870 1871 1871 1871 1872 1872 1873 1873 1873 1873 1874 1874 1874 1874 1875 1875 1875 1876 1876 1877 1877 1877 1878 1878 1878 1879 1879 1880 1880 1880 1880 1880 1881 1881 1881 1882 1882 1882 1883 1883 1883 1883 1883 1883 1883 1883 1883 1884 1884 1884 1884 1884 1884 1884 1884 1884 1884 1884 1884 1885 1885 1885 1885 1885 1886 1886 1886 1886 1886 1887 1887 1888 1888 1888 1888 1888 1889 1889 1889 1889 1889 1890 1890 1890 1890 1890 1890 1890 1890 1890 1890 1891 1891 1891 1891 1891 1892 1892 1892 1892 1892 1892 1892 1893 1893 1893 1893 1893 1894 1894 1894 1894 1895 1895 1895 1895 1895 1896 1896 1896 1896 1897 1897 1898 1898 1899 1899 1900 1900 1900 1900 1900 1901 1901 1901 1902 1902 1902 1902 1902 1903 1903 1903 1904 1904 1904 1904 1904 1904 1904 1905 1905 1905 1906 1906 1906 1906 1906 1906 1906 1907 1907 1907 1907 1907 1907 1908 1908 1908 1908 1908 1909 1909 1909 1909 1910 1910 1910 1910 1911 1911 1911 1912 1912 1912 1913 1913 1914 1914 1915 1915 1915 1915 1915 1916 1916 1916 1917 1917 1917 1918 1918 1918 1918 1918 1918 1919 1919 1919 1919 1919 1919 1919 1919 1919 1919 1919 1919 1920 1920 1921 1921 1921 1921 1921 1922 1922 1922 1923 1923 1923 1923 1923 1924 1924 1924 1925 1925 1925 1925 1925 1925 1925 1926 1926 1926 1927 1927 1927 1927 1927 1927 1927 1928 1928 1928 1928 1928 1928 1929 1929 1929 1929 1929 1930 1930 1930 1930 1931 1931 1931 1931 1932 1932 1932 1933 1933 1933 1934 1934 1935 1935 1935 1935 1935 1936 1936 1936 1936 1936 1937 1937 1937 1938 1938 1938 1939 1939 1939 1940 1940 1941 1941 1942 1942 1942 1943 1943 1943 1943 1943 1943 1943 1943 1944 1944 1945 1945 1945 1945 1945 1946 1946 1947 1947 1947 1947 1947 1948 1948 1948 1949 1949 1949 1949 1949 1949 1949 1950 1950 1950 1951 1951 1951 1951 1951 1951 1951 1951 1951 1951 1952 1952 1952 1952 1952 1953 1953 1953 1954 1954 1954 1954 1954 1955 1955 1955 1955 1955 1956 1956 1956 1956 1957 1957 1957 1957 1958 1958 1959 1959 1959 1960 1960 1961 1961 1961 1961 1961 1962 1962 1962 1962 1963 1963 1963 1963 1963 1964 1964 1964 1964 1965 1965 1966 1966 1967 1967 1967 1968 1968 1968 1969 1969 1969 1969 1970 1970 1970 1970 1971 1971 1971 1971 1972 1972 1973 1973 1974 1974 1975 1975 1975 1975 1976 1976 1976 1976 1977 1977 1977 1978 1978 1978 1979 1979 1979 1980 1980 1980 1980 1980 1981 1981 1981 1981 1982 1982 1982 1982 1982 1983 1983 1983 1984 1984 1984 1984 1984 1984 1984 1985 1985 1985 1985 1986 1986 1986 1986 1986 1987 1987 1987 1988 1989 1989 1990 1990 1990 1990 1990 1991 1991 1991 1992 1992 1992 1992 1992 1992 1992 1992 1993 1993 1994 1994 1994 1994 1994 1994 1994 1994 1995 1995 1996 1996 1996 1996 1996 1997 1997 1997 1998 1998 1998 1998 1998 1998 1998 1998 1998 1998 1999 1999 1999 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2001 2001 2001 2001 2001 2001 2001 2001 2002 2002 2002 2003 2003 2003 2003 2003 2003 2004 2004 2004 2004 2004 2005 2005 2005 2005 2006 2006 2006 2006 2007 2007 2007 2008 2008 2008 2009 2009 2010 2010 2010 2010 2010 2011 2011 2011 2011 2011 2012 2012 2012 2013 2013 2013 2014 2014 2015 2015 2015 2015 2015 2016 2016 2016 2017 2017 2017 2017 2017 2017 2017 2017 2018 2018 2019 2019 2019 2019 2019 2019 2019 2019 2020 2020 2020 2020 2020 2021 2021 2021 2022 2022 2022 2022 2023 2023 2024 2024 2024 2024 2024 2025 2025 2025 2025 2025 2026 2026 2026 2027 2027 2027 2028 2028 2029 2029 2029 2029 2029 2030 2030 2031 2031 2031 2031 2031 2031 2031 2031 2032 2032 2032 2032 2032 2033 2033 2033 2033 2033 2033 2033 2033 2033 2033 2034 2034 2034 2034 2035 2035 2035 2035 2035 2035 2036 2036 2037 2037 2037 2037 2037 2037 2037 2037 2037 2037 2038 2038 2038 2038 2038 2038 2039 2039 2039 2039 2039 2039 2039 2039 2039 2039 2039 2040 2040 2040 2040 2040 2040 2040 2040 2040 2040 2041 2041 2041 2042 2042 2042 2042 2042 2043 2043 2044 2044 2045 2045 2046 2046 2046 2047 2047 2047 2047 2048 2049 2049 2049 2049 2050 2050 2050 2051 2051 2051 2051 2051 2052 2052 2052 2053 2054 2054 2054 2054 2054 2054 2055 2055 2055 2055 2055 2056 2056 2056 2056 2056 2057 2057 2058 2058 2058 2059 2059 2060 2061 2061 2061 2061 2061 2061 2062 2062 2062 2062 2063 2063 2063 2063 2064 2064 2064 2064 2064 2065 2065 2066 2066 2066 2067 2067 2067 2068 2068 2068 2068 2068 2069 2069 2070 2070 2071 2071 2071 2072 2072 2072 2073 2073 2073 2074 2074 2074 2075 2075 2075 2075 2075 2076 2076 2076 2077 2077 2078 2078 2079 2079 2079 2079 2079 2080 2080 2080 2080 2081 2081 2081 2081 2081 2082 2082 2082 2083 2083 2084 2084 2085 2086 2086 2086 2087 2087 2087 2087 2087 2088 2088 2088 2089 2089 2090 2090 2091 2091 2091 2091 2092 2092 2092 2093 2094 2094 2094 2094 2095 2095 2095 2095 2095 2096 2096 2096 2097 2097 2097 2098 2099 2099 2100 2100 2100 2100 2101 2101 2101 2101 2102 2102 2102 2102 2102 2103 2103 2103 2103 2104 2104 2104 2105 2106 2106 2107 2107 2108 2108 2108 2109 2109 2110 2110 2110 2110 2110 2110 2111 2111 2111 2111 2112 2112 2112 2112 2113 2113 2113 2113 2114 2114 2115 2115 2115 2116 2117 2117 2117 2118 2118 2118 2118 2118 2119 2119 2119 2120 2121 2122 2122 2122 2122 2122 2123 2123 2123 2124 2124 2124 2125 2125 2126 2126 2126 2126 2126 2127 2127 2127 2127 2127 2128 2128 2128 2128 2129 2129 2129 2130 2131 2132 2132 2132 2133 2133 2133 2134 2134 2134 2135 2135 2136 2136 2137 2137 2138 2138 2139 2139 2139 2140 2140 2141 2141 2142 2142 2142 2142 2143 2143 2144 2144 2145 2145 2145 2146 2147 2147 2147 2148 2148 2149 2149 2149 2150 2150 2150 2151 2151 2151 2152 2152 2153 2153 2153 2153 2154 2154 2155 2155 2156 2156 2156 2156 2157 2157 2158 2158 2158 2159 2159 2159 2160 2161 2161 2162 2162 2163 2164 2165 2165 2166 2167 2167 2168 2168 2169 2169 2170 2170 2171 2171 2171 2172 2172 2173 2173 2174 2174 2174 2175 2175 2176 2176 2177 2177 2178 2179 2179 2179 2179 2180 2180 2181 2181 2181 2181 2182 2182 2183 2183 2183 2183 2184 2184 2184 2184 2185 2185 2185 2185 2186 2187 2188 2189 2189 2190 2190 2191 2191 2192 2192 2193 2193 2193 2194 2194 2195 2195 2195 2196 2196 2196 2197 2197 2198 2198 2198 2198 2200 2200 2201 2202 2202 2203 2203 2203 2203 2204 2205 2206 2206 2206 2207 2207 2207 2208 2208 2208 2208 2209 2209 2209 2210 2211 2212 2212 2212 2213 2213 2214 2214 2215 2215 2215 2216 2216 2217 2217 2217 2217 2218 2218 2219 2219 2220 2220 2221 2221 2221 2221 2221 2222 2222 2222 2222 2223 2223 2223 2223 2224 2225 2226 2226 2226 2227 2227 2227 2227 2228 2228 2228 2229 2229 2230 2230 2230 2230 2232 2232 2233 2234 2234 2235 2235 2235 2236 2236 2237 2237 2237 2238 2238 2240 2241 2241 2241 2242 2242 2242 2242 2243 2244 2244 2245 2245 2246 2246 2247 2247 2247 2247 2247 2248 2248 2249 2249 2249 2250 2250 2250 2251 2252 2253 2253 2254 2254 2254 2254 2255 2255 2256 2256 2257 2257 2257 2257 2259 2260 2261 2261 2261 2261 2262 2262 2262 2262 2263 2263 2263 2264 2264 2264 2264 2266 2266 2267 2268 2269 2270 2271 2271 2272 2272 2273 2273 2273 2274 2274 2275 2275 2276 2277 2277 2278 2278 2279 2279 2280 2280 2280 2280 2281 2281 2282 2282 2282 2283 2283 2283 2285 2285 2286 2286 2286 2286 2287 2287 2288 2288 2289 2289 2290 2290 2291 2291 2291 2291 2292 2293 2293 2294 2294 2295 2295 2296 2296 2297 2298 2299 2299 2300 2301 2301 2301 2302 2302 2302 2302 2303 2304 2304 2305 2305 2305 2305 2305 2306 2306 2306 2307 2307 2307 2308 2308 2308 2308 2309 2310 2310 2311 2311 2312 2312 2312 2313 2313 2313 2313 2314 2314 2314 2315 2315 2315 2316 2317 2319 2320 2321 2321 2321 2322 2323 2324 2324 2325 2325 2325 2326 2326 2326 2328 2329 2329 2330 2330 2331 2331 2333 2333 2334 2334 2334 2334 2335 2335 2335 2336 2337 2337 2338 2338 2339 2339 2339 2340 2340 2341 2342 2343 2343 2344 2345 2345 2346 2346 2346 2347 2347 2347 2347 2348 2349 2349 2350 2350 2351 2352 2352 2352 2352 2353 2353 2354 2355 2355 2355 2356 2356 2356 2356 2357 2358 2359 2359 2360 2360 2360 2361 2362 2363 2363 2363 2363 2364 2364 2365 2365 2366 2366 2367 2367 2368 2368 2368 2368 2369 2369 2370 2370 2370 2371 2371 2371 2372 2373 2373 2374 2374 2374 2374 2375 2376 2377 2378 2378 2378 2378 2379 2379 2379 2380 2381 2381 2382 2382 2382 2383 2383 2384 2384 2384 2385 2386 2386 2387 2387 2388 2389 2389 2389 2390 2391 2391 2392 2392 2392 2392 2393 2393 2393 2394 2394 2394 2394 2394 2395 2395 2395 2395 2396 2397 2398 2398 2399 2399 2400 2400 2400 2401 2402 2403 2403 2404 2404 2404 2405 2405 2405 2406 2406 2406 2407 2408 2408 2409 2410 2410 2410 2410 2411 2411 2412 2412 2413 2413 2414 2414 2414 2414 2415 2415 2415 2416 2416 2417 2418 2418 2419 2419 2419 2420 2420 2421 2421 2421 2421 2421 2422 2422 2423 2423 2424 2424 2424 2425 2426 2426 2427 2427 2428 2429 2429 2429 2430 2430 2432 2433 2433 2434 2434 2435 2435 2435 2435 2436 2436 2437 2437 2437 2438 2438 2438 2438 2438 2440 2441 2441 2442 2442 2442 2443 2443 2444 2444 2444 2445 2445 2445 2445 2447 2448 2450 2450 2451 2451 2452 2452 2452 2452 2453 2453 2454 2454 2454 2455 2457 2458 2458 2458 2459 2459 2460 2460 2460 2461 2461 2461 2462 2462 2462 2463 2463 2463 2463 2465 2466 2467 2467 2467 2467 2468 2468 2469 2469 2469 2470 2470 2470 2470 2472 2473 2473 2474 2474 2474 2475 2475 2475 2476 2476 2476 2477 2477 2477 2477 2479 2480 2481 2481 2481 2481 2482 2482 2483 2483 2483 2483 2484 2484 2484 2485 2487 2487 2488 2488 2488 2489 2489 2489 2490 2490 2491 2491 2491 2492 2492 2493 2493 2493 2494 2495 2495 2495 2496 2496 2496 2496 2497 2497 2498 2498 2498 2499 2499 2499 2499 2500 2501 2501 2502 2503 2504 2504 2504 2505 2505 2505 2506 2507 2508 2508 2508 2508 2509 2509 2509 2509 2510 2510 2510 2511 2512 2512 2512 2513 2513 2513 2514 2514 2515 2515 2515 2515 2515 2516 2517 2517 2518 2518 2518 2518 2519 2519 2520 2520 2520 2521 2521 2521 2522 2523 2523 2523 2523 2524 2524 2525 2525 2525 2525 2526 2526 2526 2527 2529 2529 2530 2530 2530 2530 2530 2531 2531 2531 2532 2532 2532 2533 2534 2535 2535 2536 2536 2536 2537 2537 2537 2538 2538 2538 2539 2539 2539 2539 2541 2542 2543 2543 2543 2543 2544 2544 2545 2545 2546 2546 2546 2548 2549 2550 2550 2550 2550 2550 2551 2551 2551 2552 2552 2552 2553 2553 2554 2554 2555 2556 2557 2557 2558 2558 2558 2558 2559 2559 2559 2560 2560 2561 2563 2564 2564 2564 2564 2565 2565 2565 2566 2566 2566 2567 2567 2567 2568 2569 2570 2571 2571 2571 2571 2572 2572 2573 2573 2573 2574 2574 2574 2574 2574 2576 2576 2577 2577 2578 2578 2579 2580 2580 2580 2580 2581 2581 2581 2582 2582 2582 2582 2582 2583 2583 2583 2583 2584 2585 2586 2586 2586 2587 2587 2588 2589 2589 2590 2590 2590 2591 2591 2591 2591 2592 2592 2592 2593 2594 2595 2595 2596 2596 2597 2597 2597 2597 2597 2598 2598 2599 2599 2600 2600 2600 2601 2601 2601 2601 2602 2602 2602 2603 2604 2605 2605 2605 2605 2606 2606 2607 2607 2607 2608 2608 2609 2611 2612 2612 2612 2612 2612 2613 2613 2613 2614 2614 2614 2615 2616 2617 2617 2618 2618 2618 2619 2619 2619 2620 2620 2620 2621 2621 2621 2621 2623 2624 2625 2625 2625 2625 2626 2626 2626 2627 2627 2627 2628 2628 2628 2629 2630 2631 2632 2632 2632 2632 2633 2633 2634 2634 2634 2635 2635 2636 2638 2639 2639 2639 2640 2640 2640 2641 2641 2641 2642 2642 2642 2642 2644 2645 2646 2646 2646 2646 2647 2648 2648 2648 2649 2650 2651 2651 2651 2651 2652 2652 2653 2653 2654 2654 2657 2658 2658 2659 2660 2660 2660 2660 2661 2661 2662 2662 2662 2662 2662 2663 2663 2663 2663 2664 2665 2666 2666 2667 2667 2669 2669 2669 2670 2671 2672 2672 2673 2673 2674 2674 2674 2674 2674 2675 2675 2676 2676 2677 2677 2677 2678 2678 2678 2678 2679 2679 2679 2680 2681 2682 2682 2682 2682 2683 2683 2684 2684 2684 2685 2685 2686 2688 2689 2689 2689 2689 2690 2690 2690 2691 2692 2692 2693 2693 2693 2694 2694 2694 2695 2695 2696 2696 2696 2696 2698 2699 2700 2700 2700 2700 2701 2701 2702 2702 2702 2703 2703 2704 2706 2707 2707 2707 2707 2708 2708 2709 2709 2709 2710 2710 2711 2713 2714 2714 2714 2714 2715 2715 2716 2716 2717 2717 2717 2717 2717 2719 2719 2720 2720 2721 2721 2722 2723 2723 2723 2723 2724 2724 2724 2724 2725 2725 2726 2727 2727 2727 2728 2728 2728 2728 2728 2729 2729 2729 2729 2730 2730 2730 2730 2730 2731 2731 2731 2731 2731 2732 2732 2733 2734 2734 2734 2735 2736 2736 2737 2738 2738 2739 2739 2740 2740 2740 2740 2740 2741 2741 2742 2742 2743 2743 2743 2743 2744 2745 2746 2746 2746 2746 2747 2747 2747 2748 2749 2749 2750 2750 2751 2751 2751 2752 2752 2752 2752 2753 2753 2754 2755 2755 2755 2755 2755 2756 2756 2756 2757 2757 2757 2757 2758 2758 2758 2759 2759 2760 2761 2761 2762 2762 2762 2762 2763 2763 2763 2764 2764 2765 2765 2765 2765 2767 2767 2768 2769 2769 2769 2769 2770 2770 2770 2770 2771 2771 2771 2771 2772 2772 2772 2773 2773 2774 2775 2776 2776 2776 2777 2777 2778 2779 2779 2779 2780 2780 2781 2782 2783 2783 2783 2783 2783 2784 2784 2784 2784 2785 2785 2785 2785 2786 2786 2786 2786 2787 2787 2788 2788 2789 2789 2790 2790 2790 2790 2790 2791 2791 2791 2792 2792 2792 2793 2793 2793 2793 2794 2795 2795 2796 2796 2797 2797 2797 2798 2798 2799 2799 2799 2799 2800 2800 2800 2800 2802 2803 2804 2804 2805 2805 2806 2806 2806 2810 2811 2811 2812 2812 2812 2813 2814 2814 2814 2814 2815 2815 2815 2816 2817 2817 2817 2818 2818 2818 2818 2819 2819 2819 2820 2820 2821 2821 2821 2821 2823 2823 2824 2825 2825 2825 2825 2826 2826 2827 2827 2828 2828 2828 2829 2829 2830 2830 2830 2830 2832 2833 2833 2833 2834 2834 2835 2835 2835 2836 2836 2836 2837 2839 2839 2840 2840 2840 2842 2843 2843 2844 2845 2847 2847 2847 2848 2848 2848 2849 2849 2849 2850 2850 2851 2852 2852 2852 2853 2853 2854 2854 2855 2855 2855 2855 2856 2856 2856 2857 2858 2858 2859 2859 2859 2859 2859 2860 2860 2861 2861 2861 2861 2862 2862 2862 2862 2863 2864 2865 2865 2865 2866 2866 2866 2867 2867 2868 2868 2868 2868 2869 2869 2869 2870 2871 2871 2872 2872 2873 2873 2874 2875 2875 2875 2876 2876 2876 2877 2878 2879 2879 2879 2880 2880 2881 2882 2882 2882 2882 2883 2883 2884 2885 2885 2886 2886 2887 2888 2888 2888 2889 2889 2889 2890 2891 2892 2892 2892 2893 2893 2893 2894 2894 2894 2895 2895 2895 2895 2895 2897 2897 2898 2898 2899 2899 2899 2899 2900 2901 2902 2902 2902 2902 2902 2903 2903 2903 2903 2904 2904 2904 2904 2905 2906 2907 2907 2907 2908 2908 2908 2909 2909 2910 2910 2911 2911 2911 2911 2912 2912 2913 2913 2913 2914 2914 2914 2914 2916 2917 2917 2918 2918 2919 2919 2919 2919 2920 2920 2921 2921 2921 2922 2922 2922 2922 2924 2925 2925 2926 2926 2926 2927 2927 2927 2927 2927 2928 2928 2929 2929 2930 2930 2931 2931 2931 2931 2931 2932 2932 2933 2933 2934 2934 2934 2936 2937 2937 2938 2938 2939 2939 2940 2940 2940 2940 2940 2941 2941 2942 2942 2942 2942 2943 2943 2943 2943 2944 2945 2946 2946 2946 2947 2947 2947 2948 2948 2948 2950 2950 2951 2951 2951 2951 2952 2952 2952 2953 2953 2953 2954 2954 2954 2954 2954 2956 2956 2957 2957 2958 2958 2959 2959 2959 2959 2960 2961 2962 2962 2962 2962 2963 2963 2964 2964 2964 2965 2965 2965 2966 2966 2966 2967 2968 2969 2969 2969 2970 2970 2970 2970 2971 2971 2972 2972 2972 2972 2974 2975 2975 2976 2976 2976 2976 2977 2977 2978 2978 2979 2979 2979 2981 2982 2983 2983 2983 2984 2985 2985 2985 2985 2985 2986 2986 2987 2987 2988 2988 2988 2990 2991 2991 2992 2992 2993 2993 2994 2994 2994 2994 2994 2995 2995 2996 2996 2996 2997 2997 2997 2998 2999 3000 3000 3001 3001 3001 3002 3002 3002 3004 3004 3005 3005 3005 3005 3006 3006 3006 3007 3007 3007 3008 3008 3008 3008 3008 3010 3010 3011 3011 3012 3012 3013 3013 3013 3013 3014 3015 3016 3016 3016 3017 3017 3017 3017 3018 3018 3018 3018 3019 3020 3020 3020 3021 3021 3022 3022 3023 3023 3023 3023 3024 3024 3024 3025 3025 3025 3025 3027 3028 3028 3029 3029 3029 3029 3030 3030 3031 3031 3031 3032 3032 3032 3032 3034 3035 3035 3036 3036 3036 3036 3036 3037 3037 3038 3038 3039 3039 3039 3040 3040 3040 3041 3041 3041 3042 3042 3042 3042 3044 3045 3046 3046 3047 3048 3048 3048 3048 3049 3049 3050 3050 3051 3051 3051 3053 3054 3055 3055 3055 3055 3055 3056 3056 3057 3057 3057 3058 3058 3058 3059 3060 3061 3061 3062 3062 3062 3063 3063 3063 3065 3065 3066 3066 3066 3066 3067 3067 3067 3068 3068 3068 3069 3069 3069 3069 3069 3071 3071 3072 3072 3073 3073 3074 3074 3074 3074 3076 3077 3077 3077 3078 3078 3078 3078 3078 3079 3079 3080 3080 3080 3081 3082 3083 3083 3084 3084 3084 3084 3084 3085 3085 3085 3086 3086 3086 3087 3088 3089 3089 3090 3090 3090 3090 3091 3091 3091 3092 3092 3093 3094 3094 3095 3095 3095 3096 3096 3096 3097 3097 3097 3098 3098 3098 3098 3100 3101 3102 3102 3102 3102 3103 3103 3103 3104 3104 3104 3104 3106 3106 3107 3108 3108 3108 3108 3109 3109 3110 3110 3110 3111 3111 3111 3113 3114 3115 3116 3116 3116 3117 3117 3117 3118 3118 3118 3119 3119 3119 3119 3121 3122 3123 3123 3123 3123 3124 3124 3125 3125 3125 3125 3126 3126 3127 3127 3127 3128 3128 3128 3129 3130 3130 3130 3130 3131 3131 3132 3132 3132 3133 3133 3133 3133 3135 3136 3136 3137 3137 3137 3137 3138 3138 3139 3139 3140 3140 3140 3142 3143 3144 3144 3145 3145 3145 3146 3146 3147 3147 3147 3148 3148 3149 3149 3150 3150 3150 3152 3153 3154 3154 3154 3155 3155 3155 3155 3156 3157 3158 3158 3158 3159 3159 3159 3160 3160 3160 3161 3161 3161 3162 3162 3163 3163 3163 3163 3163 3164 3164 3165 3165 3166 3166 3166 3167 3167 3168 3168 3168 3168 3168 3169 3169 3170 3170 3171 3171 3171 3172 3172 3172 3173 3173 3173 3174 3174 3174 3174 3176 3177 3178 3178 3178 3178 3178 3179 3179 3179 3180 3180 3180 3181 3181 3181 3181 3182 3183 3183 3184 3184 3185 3185 3185 3185 3186 3186 3187 3187 3187 3188 3188 3188 3188 3190 3191 3191 3192 3192 3192 3192 3193 3193 3193 3194 3194 3194 3194 3194 3195 3195 3195 3195 3196 3196 3197 3198 3198 3199 3199 3200 3200 3200 3201 3201 3202 3202 3204 3204 3204 3204 3204 3205 3205 3206 3206 3206 3207 3207 3207 3208 3209 3210 3210 3211 3211 3211 3211 3212 3212 3213 3213 3213 3214 3214 3214 3214 3216 3217 3217 3218 3218 3218 3218 3219 3219 3220 3220 3220 3221 3221 3221 3221 3223 3224 3224 3225 3225 3225 3226 3226 3226 3227 3227 3227 3228 3228 3228 3229 3229 3229 3229 3231 3232 3233 3233 3233 3233 3233 3234 3234 3234 3235 3235 3236 3236 3237 3237 3238 3238 3238 3238 3238 3238 3239 3239 3239 3240 3240 3240 3241 3241 3241 3242 3242 3243 3243 3244 3244 3245 3245 3245 3246 3246 3248 3248 3249 3249 3249 3249 3250 3250 3251 3251 3251 3252 3252 3252 3252 3255 3255 3256 3256 3256 3257 3258 3258 3258 3258 3258 3259 3259 3260 3260 3261 3261 3261 3261 3261 3262 3262 3263 3263 3263 3264 3264 3264 3265 3266 3267 3267 3268 3268 3268 3269 3269 3270 3270 3270 3270 3271 3271 3272 3272 3272 3273 3273 3273 3273 3275 3276 3276 3277 3277 3277 3277 3278 3278 3278 3279 3280 3280 3281 3281 3281 3281 3282 3282 3283 3283 3283 3284 3284 3284 3284 3286 3287 3287 3288 3288 3288 3289 3289 3289 3289 3289 3290 3290 3291 3291 3292 3293 3293 3294 3294 3295 3295 3295 3296 3296 3297 3297 3297 3297 3297 3298 3298 3298 3299 3299 3299 3299 3300 3300 3300 3301 3301 3302 3303 3303 3304 3304 3305 3305 3305 3307 3308 3308 3308 3309 3309 3309 3310 3310 3310 3311 3311 3311 3314 3315 3315 3315 3315 3315 3316 3316 3317 3317 3317 3318 3318 3318 3319 3320 3321 3321 3322 3322 3322 3323 3323 3324 3324 3324 3324 3325 3325 3326 3326 3326 3327 3327 3327 3327 3329 3330 3330 3331 3331 3331 3331 3332 3332 3332 3333 3334 3334 3335 3335 3335 3336 3336 3336 3336 3336 3337 3337 3338 3338 3339 3339 3339 3339 3340 3340 3340 3341 3341 3341 3341 3342 3342 3342 3342 3343 3344 3345 3345 3346 3346 3346 3346 3346 3347 3347 3347 3348 3348 3348 3349 3349 3349 3349 3350 3351 3351 3352 3352 3353 3353 3353 3353 3353 3354 3354 3355 3355 3355 3355 3356 3356 3356 3357 3358 3359 3359 3359 3360 3360 3360 3360 3361 3361 3361 3362 3362 3362 3362 3362 3363 3363 3363 3363 3364 3365 3366 3366 3367 3367 3368 3368 3368 3369 3371 3371 3371 3371 3371 3372 3372 3373 3373 3373 3374 3374 3374 3375 3376 3377 3377 3378 3378 3378 3379 3379 3380 3380 3380 3380 3381 3381 3382 3382 3382 3383 3383 3383 3383 3385 3386 3386 3387 3387 3387 3387 3388 3388 3388 3389 3390 3390 3391 3391 3391 3391 3392 3392 3393 3393 3393 3394 3394 3394 3394 3396 3397 3397 3398 3398 3398 3399 3399 3399 3399 3399 3400 3400 3401 3401 3402 3402 3402 3403 3403 3403 3404 3404 3404 3405 3405 3405 3405 3407 3408 3409 3409 3410 3411 3412 3412 3412 3412 3413 3413 3413 3414 3414 3414 3414 3416 3416 3417 3418 3418 3418 3418 3419 3420 3420 3420 3420 3421 3422 3422 3422 3423 3423 3423 3423 3423 3424 3424 3424 3425 3425 3425 3425 3426 3426 3426 3426 3427 3428 3429 3429 3429 3430 3431 3432 3432 3432 3432 3432 3433 3433 3434 3434 3434 3434 3435 3435 3435 3435 3437 3438 3438 3438 3439 3439 3439 3439 3440 3440 3441 3441 3442 3442 3443 3443 3444 3444 3444 3445 3445 3445 3446 3447 3447 3448 3448 3448 3448 3449 3449 3450 3450 3450 3451 3451 3451 3451 3453 3454 3454 3455 3456 3456 3457 3457 3457 3458 3459 3459 3460 3460 3460 3462 3463 3463 3463 3463 3463 3464 3464 3464 3465 3465 3466 3466 3466 3466 3467 3468 3468 3469 3469 3470 3470 3470 3471 3471 3472 3472 3473 3473 3473 3474 3474 3474 3475 3476 3477 3477 3478 3478 3478 3480 3481 3481 3482 3482 3482 3483 3484 3484 3484 3485 3485 3485 3485 3486 3487 3487 3488 3488 3488 3489 3490 3490 3492 3493 3493 3494 3494 3495 3495 3495 3495 3495 3496 3496 3497 3498 3498 3498 3499 3500 3500 3501 3501 3501 3501 3502 3503 3503 3504 3504 3504 3505 3505 3506 3507 3507 3508 3508 3508 3508 3509 3510 3511 3511 3511 3511 3512 3512 3512 3512 3513 3513 3514 3514 3514 3514 3515 3516 3516 3517 3518 3519 3519 3519 3519 3519 3520 3520 3521 3521 3521 3521 3522 3522 3522 3522 3523 3524 3525 3525 3525 3526 3526 3527 3527 3527 3529 3530 3530 3530 3531 3532 3532 3533 3533 3533 3534 3534 3535 3535 3535 3536 3536 3536 3536 3537 3537 3537 3537 3538 3538 3538 3539 3540 3542 3542 3542 3542 3542 3543 3543 3544 3544 3544 3545 3545 3545 3546 3547 3548 3548 3549 3549 3549 3549 3550 3550 3550 3551 3552 3553 3553 3554 3554 3554 3554 3555 3555 3555 3556 3556 3556 3556 3556 3558 3558 3559 3560 3560 3560 3561 3561 3561 3561 3562 3562 3563 3564 3564 3564 3564 3565 3565 3565 3566 3566 3566 3567 3567 3567 3568 3569 3570 3571 3571 3571 3571 3571 3572 3572 3572 3573 3573 3574 3574 3575 3575 3575 3575 3576 3576 3576 3576 3577 3578 3578 3578 3579 3579 3579 3579 3579 3579 3580 3580 3580 3581 3581 3582 3582 3582 3583 3583 3584 3584 3585 3586 3586 3588 3588 3588 3588 3588 3589 3589 3589 3589 3590 3590 3590 3591 3591 3591 3591 3592 3593 3593 3593 3594 3595 3596 3597 3598 3598 3599 3599 3599 3599 3600 3600 3601 3601 3601 3602 3603 3603 3603 3603 3604 3604 3605 3605 3606 3606 3606 3608 3609 3610 3610 3610 3610 3611 3611 3611 3611 3612 3612 3612 3613 3613 3613 3613 3614 3615 3615 3616 3617 3617 3617 3617 3618 3618 3619 3620 3621 3621 3621 3621 3621 3622 3622 3623 3623 3623 3624 3624 3624 3625 3626 3627 3627 3628 3628 3628 3629 3629 3629 3631 3631 3632 3632 3632 3632 3632 3633 3633 3634 3634 3635 3635 3635 3636 3637 3638 3639 3639 3641 3641 3641 3641 3642 3642 3642 3643 3643 3643 3644 3644 3644 3644 3646 3646 3647 3648 3649 3650 3650 3650 3650 3650 3651 3651 3652 3652 3652 3653 3653 3653 3654 3655 3656 3656 3657 3657 3657 3658 3659 3659 3660 3660 3660 3660 3661 3661 3662 3662 3662 3663 3663 3663 3663 3665 3666 3666 3667 3667 3667 3667 3668 3668 3668 3669 3669 3669 3669 3669 3671 3671 3672 3673 3673 3674 3674 3674 3675 3675 3675 3676 3676 3676 3677 3677 3677 3677 3679 3681 3681 3681 3681 3682 3682 3683 3684 3685 3685 3685 3685 3685 3686 3686 3687 3687 3687 3688 3688 3688 3689 3690 3691 3691 3692 3692 3692 3693 3693 3693 3695 3696 3696 3696 3696 3696 3697 3697 3698 3698 3699 3699 3699 3700 3701 3702 3703 3703 3705 3705 3705 3705 3706 3706 3706 3707 3707 3707 3708 3708 3708 3708 3710 3711 3713 3713 3713 3713 3714 3714 3715 3715 3716 3716 3716 3718 3719 3720 3720 3720 3720 3721 3721 3721 3722 3723 3723 3724 3724 3724 3724 3724 3725 3725 3725 3726 3726 3726 3727 3727 3727 3727 3728 3729 3729 3730 3730 3731 3731 3731 3731 3732 3732 3732 3733 3733 3733 3733 3733 3735 3735 3736 3736 3737 3739 3739 3739 3739 3740 3740 3741 3741 3742 3742 3742 3744 3745 3746 3746 3746 3746 3747 3747 3748 3748 3749 3749 3749 3751 3752 3753 3753 3753 3754 3754 3754 3754 3755 3755 3755 3755 3756 3757 3759 3759 3760 3761 3761 3762 3762 3762 3762 3763 3763 3764 3764 3764 3765 3766 3766 3766 3766 3767 3767 3768 3768 3769 3769 3769 3771 3772 3773 3773 3773 3773 3774 3774 3774 3774 3775 3775 3775 3775 3776 3776 3776 3777 3778 3778 3779 3780 3780 3780 3781 3781 3781 3783 3783 3784 3784 3784 3785 3785 3785 3787 3787 3788 3788 3788 3789 3789 3790 3791 3791 3791 3792 3792 3792 3792 3793 3793 3793 3794 3795 3795 3795 3796 3796 3796 3796 3797 3797 3798 3798 3798 3799 3799 3799 3799 3801 3802 3802 3803 3803 3803 3804 3804 3805 3805 3806 3806 3806 3807 3807 3808 3808 3808 3808 3809 3810 3811 3811 3811 3811 3811 3812 3812 3812 3812 3813 3813 3813 3814 3814 3814 3814 3815 3816 3816 3816 3817 3817 3818 3818 3818 3818 3818 3819 3819 3819 3819 3819 3820 3820 3820 3820 3821 3821 3821 3821 3822 3822 3823 3823 3823 3824 3824 3825 3825 3825 3826 3826 3826 3827 3827 3828 3828 3828 3828 3830 3831 3832 3834 3836 3836 3836 3836 3836 3837 3837 3838 3838 3838 3839 3839 3839 3840 3841 3842 3842 3843 3844 3844 3844 3844 3845 3845 3846 3846 3846 3847 3847 3847 3847 3849 3850 3850 3851 3851 3851 3851 3851 3852 3852 3852 3852 3853 3853 3853 3855 3855 3856 3857 3857 3857 3858 3858 3858 3859 3859 3859 3860 3860 3860 3862 3864 3864 3864 3864 3864 3865 3865 3866 3866 3867 3867 3867 3868 3869 3871 3871 3871 3871 3872 3872 3872 3872 3873 3874 3874 3874 3875 3875 3875 3875 3876 3877 3877 3877 3877 3878 3879 3879 3879 3880 3880 3880 3880 3880 3880 3881 3881 3881 3881 3882 3882 3882 3882 3883 3883 3883 3883 3884 3884 3885 3885 3885 3886 3886 3886 3887 3887 3888 3890 3890 3890 3890 3890 3891 3891 3892 3892 3892 3893 3893 3893 3894 3895 3896 3896 3897 3897 3897 3897 3898 3898 3898 3899 3900 3900 3901 3901 3901 3901 3902 3902 3902 3903 3903 3903 3903 3904 3904 3904 3904 3905 3906 3907 3907 3908 3908 3908 3908 3909 3909 3910 3910 3911 3911 3911 3911 3913 3914 3914 3915 3915 3916 3916 3917 3917 3917 3918 3918 3918 3919 3919 3919 3920 3920 3920 3920 3922 3923 3924 3924 3925 3925 3927 3928 3928 3928 3928 3929 3929 3930 3930 3931 3931 3931 3933 3935 3935 3935 3935 3936 3936 3937 3937 3938 3938 3938 3939 3940 3943 3944 3944 3944 3945 3945 3945 3946 3947 3947 3947 3947 3947 3948 3948 3948 3949 3949 3949 3949 3950 3950 3950 3951 3951 3952 3953 3953 3954 3954 3954 3954 3955 3955 3955 3956 3957 3957 3958 3958 3958 3958 3959 3959 3960 3960 3960 3961 3961 3961 3961 3963 3964 3964 3965 3965 3965 3966 3967 3967 3967 3967 3968 3968 3969 3969 3969 3970 3970 3970 3970 3972 3973 3973 3974 3974 3975 3975 3976 3976 3976 3977 3977 3977 3978 3978 3978 3979 3979 3979 3979 3981 3982 3983 3983 3983 3983 3983 3984 3984 3984 3985 3985 3985 3986 3986 3986 3987 3988 3988 3989 3989 3990 3990 3990 3990 3990 3991 3991 3991 3991 3991 3992 3992 3992 3992 3993 3993 3993 3993 3994 3994 3995 3995 3995 3996 3996 3997 3997 3997 3997 3998 3998 3999 3999 4000 4000 4000 4000 4000 4002 4002 4003 4003 4004 4006 4006 4006 4006 4006 4007 4007 4008 4008 4008 4009 4009 4009 4010 4011 4012 4012 4013 4013 4013 4013 4014 4014 4014 4015 4016 4017 4017 4017 4017 4018 4018 4019 4019 4019 4020 4020 4020 4020 4022 4023 4023 4024 4024 4024 4025 4026 4026 4026 4026 4027 4027 4028 4028 4028 4029 4029 4029 4029 4031 4032 4033 4034 4034 4034 4035 4035 4035 4036 4036 4036 4037 4037 4037 4039 4041 4041 4041 4041 4041 4042 4042 4042 4043 4043 4044 4044 4045 4045 4045 4045 4045 4045 4046 4046 4046 4047 4047 4048 4048 4048 4049 4049 4050 4050 4051 4052 4054 4054 4054 4054 4054 4054 4055 4055 4055 4055 4056 4056 4056 4056 4057 4057 4057 4058 4058 4058 4059 4059 4060 4061 4062 4064 4064 4064 4065 4065 4065 4065 4066 4066 4066 4066 4067 4070 4070 4070 4070 4070 4071 4071 4072 4072 4072 4073 4073 4073 4074 4075 4076 4076 4077 4077 4077 4078 4078 4079 4080 4080 4080 4081 4081 4083 4084 4084 4084 4085 4085 4085 4086 4087 4087 4087 4089 4089 4090 4090 4091 4092 4092 4093 4094 4094 4095 4095 4095 4095 4096 4096 4097 4097 4097 4097 4098 4098 4098 4098 4099 4100 4100 4100 4101 4101 4101 4102 4102 4102 4103 4104 4104 4105 4105 4105 4105 4106 4107 4108 4108 4108 4109 4109 4109 4110 4110 4110 4110 4110 4111 4111 4111 4112 4112 4113 4113 4114 4114 4114 4114 4114 4114 4115 4115 4115 4115 4115 4116 4116 4116 4116 4116 4117 4117 4118 4118 4118 4119 4119 4120 4120 4120 4121 4121 4121 4122 4122 4123 4123 4123 4124 4124 4124 4124 4124 4125 4125 4125 4125 4126 4126 4127 4127 4127 4128 4129 4129 4133 4134 4135 4135 4136 4137 4137 4137 4138 4139 4140 4140 4140 4141 4141 4141 4142 4142 4142 4143 4143 4143 4143 4145 4146 4147 4147 4148 4148 4148 4149 4149 4150 4150 4150 4150 4151 4151 4152 4152 4152 4153 4153 4153 4154 4156 4157 4157 4158 4158 4158 4159 4159 4159 4159 4160 4160 4161 4162 4163 4165 4166 4166 4166 4167 4167 4167 4168 4168 4168 4168 4170 4171 4172 4172 4172 4172 4172 4173 4173 4174 4174 4174 4175 4175 4175 4176 4177 4178 4178 4179 4179 4179 4179 4179 4180 4180 4181 4181 4181 4181 4182 4182 4182 4182 4183 4184 4185 4185 4185 4186 4186 4187 4187 4187 4188 4188 4188 4190 4190 4191 4191 4191 4192 4192 4192 4194 4194 4195 4195 4195 4196 4196 4196 4196 4196 4197 4197 4198 4198 4199 4199 4200 4200 4200 4200 4200 4201 4201 4202 4202 4202 4203 4203 4204 4206 4207 4207 4207 4207 4207 4208 4208 4208 4209 4209 4209 4209 4210 4210 4210 4210 4210 4211 4212 4213 4213 4213 4214 4214 4214 4214 4215 4215 4217 4218 4219 4219 4219 4219 4220 4220 4220 4220 4221 4222 4222 4222 4223 4224 4224 4225 4226 4226 4227 4228 4231 4231 4231 4231 4231 4232 4232 4233 4233 4233 4233 4234 4234 4234 4234 4235 4237 4237 4237 4238 4238 4238 4239 4240 4240 4240 4241 4242 4243 4243 4244 4244 4245 4245 4246 4246 4247 4247 4248 4248 4248 4249 4249 4249 4249 4249 4250 4250 4251 4251 4252 4252 4252 4252 4252 4252 4253 4253 4253 4254 4254 4254 4255 4255 4255 4256 4256 4257 4257 4258 4258 4259 4259 4259 4259 4260 4260 4260 4261 4261 4262 4262 4262 4262 4264 4264 4265 4266 4266 4266 4266 4267 4267 4267 4268 4268 4269 4269 4269 4269 4271 4271 4272 4273 4273 4273 4274 4274 4274 4274 4275 4275 4275 4276 4276 4276 4277 4278 4280 4280 4280 4280 4280 4281 4281 4282 4282 4283 4283 4283 4284 4285 4286 4287 4287 4287 4287 4288 4288 4288 4289 4290 4290 4291 4291 4291 4291 4292 4292 4292 4293 4293 4294 4294 4294 4294 4296 4296 4298 4298 4298 4299 4299 4299 4299 4300 4300 4301 4302 4302 4303 4303 4303 4304 4305 4305 4307 4308 4309 4309 4310 4311 4311 4311 4312 4313 4313 4313 4314 4315 4315 4315 4315 4316 4316 4316 4317 4317 4318 4318 4318 4318 4320 4320 4321 4322 4322 4322 4323 4323 4323 4323 4324 4324 4324 4324 4325 4326 4326 4326 4327 4327 4327 4327 4328 4328 4328 4329 4329 4329 4330 4330 4330 4331 4332 4334 4334 4334 4334 4334 4335 4335 4336 4336 4336 4337 4337 4337 4338 4339 4340 4340 4341 4341 4341 4341 4342 4342 4342 4343 4343 4343 4344 4344 4344 4344 4344 4346 4346 4347 4347 4348 4348 4348 4348 4348 4349 4349 4349 4350 4350 4350 4351 4351 4351 4352 4352 4352 4354 4354 4355 4355 4355 4356 4356 4356 4357 4358 4358 4359 4359 4359 4359 4360 4361 4362 4362 4362 4362 4362 4363 4363 4364 4364 4364 4365 4365 4365 4366 4367 4368 4368 4369 4369 4369 4369 4369 4370 4370 4370 4371 4371 4372 4373 4373 4374 4375 4375 4375 4376 4376 4376 4376 4377 4377 4377 4377 4378 4378 4378 4380 4380 4381 4382 4382 4382 4383 4383 4383 4383 4384 4384 4384 4384 4385 4386 4386 4388 4388 4388 4389 4390 4390 4392 4393 4393 4393 4394 4395 4395 4395 4395 4396 4396 4396 4397 4398 4398 4398 4399 4399 4400 4401 4401 4401 4401 4402 4402 4402 4403 4403 4403 4404 4404 4404 4404 4405 4406 4407 4407 4408 4408 4409 4409 4410 4410 4410 4410 4411 4412 4413 4413 4413 4414 4414 4414 4415 4415 4415 4416 4416 4416 4416 4416 4417 4417 4417 4418 4418 4419 4419 4420 4420 4420 4420 4421 4421 4421 4422 4422 4423 4423 4423 4424 4424 4425 4425 4427 4427 4427 4428 4428 4429 4429 4430 4430 4431 4431 4432 4432 4434 4434 4434 4434 4434 4435 4435 4435 4435 4435 4436 4436 4436 4436 4437 4437 4437 4437 4438 4438 4439 4439 4440 4440 4441 4441 4441 4442 4442 4443 4443 4443 4444 4444 4445 4445 4445 4446 4446 4446 4447 4448 4448 4449 4449 4450 4450 4450 4450 4451 4451 4451 4452 4453 4453 4454 4454 4454 4455 4455 4455 4455 4456 4456 4456 4457 4457 4458 4458 4459 4459 4460 4460 4461 4462 4462 4463 4463 4465 4467 4467 4467 4468 4468 4468 4469 4469 4470 4471 4472 4472 4473 4473 4473 4474 4474 4474 4475 4475 4475 4476 4477 4478 4479 4479 4479 4480 4480 4481 4481 4482 4483 4483 4483 4483 4483 4484 4484 4484 4485 4485 4485 4485 4486 4486 4487 4487 4488 4489 4490 4490 4490 4490 4491 4491 4491 4492 4492 4492 4492 4493 4493 4494 4496 4496 4497 4497 4497 4497 4498 4498 4498 4499 4499 4500 4500 4500 4501 4501 4502 4502 4502 4503 4504 4504 4506 4506 4507 4507 4507 4508 4508 4509 4510 4511 4511 4512 4512 4513 4514 4516 4516 4516 4516 4517 4517 4517 4518 4519 4519 4520 4520 4521 4521 4521 4522 4522 4522 4522 4523 4524 4525 4525 4526 4526 4526 4527 4527 4527 4528 4528 4528 4529 4529 4531 4532 4532 4532 4532 4533 4533 4534 4534 4535 4536 4537 4538 4538 4540 4540 4540 4541 4541 4541 4542 4542 4542 4543 4543 4544 4544 4544 4545 4545 4545 4546 4546 4547 4547 4547 4548 4548 4548 4549 4549 4549 4549 4550 4550 4551 4551 4551 4552 4552 4552 4553 4553 4554 4554 4555 4555 4555 4556 4557 4557 4557 4558 4558 4558 4558 4559 4559 4560 4560 4561 4563 4563 4564 4564 4564 4565 4566 4566 4568 4568 4569 4570 4572 4572 4573 4573 4573 4573 4574 4575 4575 4576 4576 4576 4577 4577 4578 4578 4578 4580 4581 4581 4581 4582 4582 4582 4583 4583 4583 4583 4584 4584 4585 4585 4586 4586 4586 4586 4587 4587 4587 4588 4589 4589 4589 4590 4590 4591 4592 4592 4592 4592 4593 4593 4593 4593 4594 4595 4595 4595 4596 4596 4597 4597 4597 4598 4598 4598 4599 4600 4601 4602 4603 4603 4603 4603 4603 4603 4604 4604 4604 4604 4604 4605 4605 4605 4605 4605 4606 4606 4607 4607 4607 4608 4609 4609 4609 4610 4610 4610 4611 4611 4612 4612 4612 4613 4613 4614 4614 4614 4614 4615 4616 4617 4618 4618 4618 4618 4619 4619 4619 4620 4621 4622 4622 4623 4623 4623 4623 4624 4624 4625 4625 4625 4625 4626 4626 4626 4628 4631 4632 4632 4632 4632 4633 4633 4634 4635 4635 4636 4636 4636 4637 4637 4638 4638 4638 4640 4641 4641 4641 4641 4641 4641 4642 4642 4642 4643 4643 4643 4644 4644 4645 4645 4646 4646 4647 4647 4648 4648 4648 4648 4648 4649 4649 4649 4650 4650 4651 4651 4652 4652 4652 4653 4653 4654 4654 4654 4654 4655 4655 4655 4655 4657 4657 4659 4659 4659 4661 4661 4662 4662 4662 4663 4663 4663 4663 4663 4664 4664 4665 4665 4666 4666 4667 4667 4667 4668 4668 4669 4669 4670 4670 4670 4670 4671 4671 4671 4672 4673 4673 4674 4674 4675 4675 4675 4676 4677 4677 4677 4678 4678 4679 4679 4680 4681 4681 4681 4681 4682 4682 4682 4683 4683 4684 4684 4686 4686 4687 4688 4688 4688 4688 4689 4689 4689 4689 4690 4690 4691 4691 4693 4693 4693 4694 4694 4694 4695 4696 4696 4697 4698 4698 4698 4698 4699 4699 4699 4699 4699 4700 4700 4700 4700 4701 4701 4701 4702 4702 4702 4703 4703 4703 4705 4707 4707 4707 4708 4708 4708 4709 4710 4710 4713 4715 4716 4716 4716 4716 4717 4717 4718 4718 4718 4719 4719 4720 4722 4723 4723 4723 4723 4723 4724 4724 4724 4724 4725 4725 4725 4726 4726 4726 4726 4727 4728 4728 4728 4729 4730 4730 4731 4732 4732 4732 4732 4733 4733 4733 4733 4734 4735 4735 4735 4736 4737 4738 4738 4738 4738 4738 4738 4739 4739 4739 4739 4740 4740 4740 4741 4741 4741 4741 4742 4742 4743 4743 4743 4744 4745 4745 4745 4745 4745 4745 4746 4746 4746 4747 4747 4747 4748 4748 4749 4749 4750 4750 4751 4752 4752 4752 4753 4753 4753 4753 4754 4754 4754 4754 4755 4758 4758 4758 4758 4758 4759 4759 4759 4760 4760 4761 4761 4762 4763 4765 4768 4768 4768 4769 4769 4770 4770 4770 4771 4771 4772 4775 4775 4776 4777 4778 4779 4779 4781 4783 4785 4786 4786 4787 4788 4788 4789 4790 4791 4792 4792 4795 4795 4795 4796 4796 4796 4797 4797 4798 4798 4798 4800 4802 4802 4802 4803 4803 4803 4804 4804 4804 4805 4805 4805 4805 4806 4806 4807 4808 4809 4809 4809 4810 4810 4810 4810 4811 4811 4812 4812 4812 4813 4813 4813 4813 4814 4815 4815 4816 4816 4816 4817 4817 4817 4817 4818 4818 4818 4818 4819 4819 4820 4820 4821 4821 4822 4822 4823 4823 4823 4823 4824 4824 4824 4825 4825 4826 4826 4827 4828 4830 4830 4831 4831 4832 4832 4833 4834 4835 4837 4837 4838 4838 4839 4840 4840 4841 4841 4844 4844 4845 4845 4846 4846 4847 4847 4848 4848 4849 4849 4849 4850 4850 4851 4851 4852 4852 4853 4853 4853 4854 4854 4855 4855 4855 4856 4856 4856 4857 4857 4857 4858 4858 4858 4859 4859 4860 4860 4861 4861 4861 4862 4862 4862 4863 4863 4863 4864 4864 4865 4865 4865 4865 4865 4866 4866 4867 4867 4867 4868 4868 4868 4869 4870 4871 4871 4872 4872 4873 4873 4874 4874 4874 4875 4875 4876 4876 4876 4877 4877 4877 4878 4878 4878 4879 4879 4880 4880 4881 4882 4882 4883 4883 4884 4884 4885 4886 4886 4887 4887 4888 4888 4889 4889 4890 4890 4891 4891 4891 4892 4892 4893 4893 4893 4894 4894 4895 4895 4896 4896 4900 4900 4901 4901 4902 4902 4903 4903 4904 4904 4905 4905 4905 4906 4906 4907 4907 4908 4908 4909 4909 4909 4909 4909 4909 4909 4910 4910 4911 4911 4912 4912 4913 4914 4914 4914 4914 4915 4915 4916 4916 4916 4917 4917 4918 4920 4921 4921 4921 4921 4922 4922 4923 4923 4923 4924 4924 4925 4927 4928 4928 4929 4929 4930 4930 4931 4931 4931 4931 4931 4932 4933 4933 4934 4935 4935 4936 4936 4937 4937 4938 4938 4939 4940 4940 4941 4942 4942 4942 4943 4943 4943 4944 4944 4944 4945 4945 4946 4947 4947 4948 4949 4949 4950 4950 4951 4951 4951 4952 4952 4953 4953 4954 4954 4955 4955 4956 4956 4957 4957 4958 4958 4959 4959 4960 4961 4961 4962 4963 4963 4963 4963 4964 4964 4964 4964 4965 4965 4965 4966 4966 4966 4966 4967 4968 4968 4969 4970 4970 4971 4971 4971 4972 4973 4973 4973 4974 4975 4975 4977 4977 4977 4978 4978 4979 4979 4980 4980 4980 4981 4981 4982 4982 4983 4984 4984 4985 4985 4986 4986 4987 4987 4988 4989 4989 4990 4991 4991 4992 4992 4993 4994 4994 4995 4996 4997 4997 4997 4997 4997 4997 4998 4998 4998 4999 4999 4999 5000 5000 5000 5001 5001 5002 5005 5005 5005 5005 5006 5006 5006 5006 5007 5007 5007 5008 5008 5009 5009 5010 5012 5012 5012 5013 5013 5014 5014 5015 5015 5019 5019 5019 5020 5020 5020 5021 5021 5022 5022 5022 5024 5026 5026 5026 5027 5027 5028 5028 5029 5029 5029 5030 5030 5031 5033 5033 5034 5034 5035 5036 5036 5036 5037 5037 5037 5038 5039 5040 5040 5040 5041 5041 5041 5042 5042 5043 5043 5043 5045 5047 5047 5047 5048 5048 5048 5049 5049 5049 5050 5050 5052 5054 5054 5054 5055 5055 5056 5056 5056 5057 5057 5057 5060 5061 5061 5061 5061 5062 5062 5063 5063 5063 5064 5064 5064 5064 5066 5067 5067 5068 5068 5068 5069 5069 5070 5070 5070 5071 5071 5071 5074 5075 5075 5075 5075 5076 5076 5077 5077 5077 5078 5078 5079 5081 5082 5082 5082 5083 5083 5084 5084 5084 5085 5085 5085 5088 5089 5089 5089 5089 5090 5090 5091 5091 5091 5092 5092 5093 5095 5096 5096 5096 5097 5097 5098 5098 5099 5099 5103 5103 5103 5104 5104 5105 5105 5106 5106 5110 5110 5110 5111 5111 5111 5111 5112 5112 5112 5113 5113 5113 5114 5115 5117 5117 5117 5118 5118 5118 5119 5120 5120 5121 5121 5121 5121 5122 5123 5124 5124 5125 5125 5125 5126 5126 5127 5127 5127 5128 5128 5130 5131 5131 5132 5132 5132 5133 5133 5134 5134 5134 5135 5135 5137 5138 5138 5139 5139 5140 5141 5141 5142 5142 5145 5145 5146 5146 5146 5147 5147 5148 5148 5148 5149 5149 5151 5152 5152 5152 5153 5153 5153 5154 5155 5155 5156 5156 5156 5156 5157 5158 5159 5159 5160 5160 5161 5162 5162 5163 5163 5166 5166 5167 5167 5167 5168 5168 5169 5169 5169 5170 5170 5172 5173 5173 5173 5174 5174 5174 5174 5175 5175 5176 5176 5176 5177 5177 5177 5177 5178 5179 5179 5180 5180 5181 5181 5181 5182 5183 5183 5184 5184 5184 5186 5187 5187 5187 5188 5188 5188 5188 5189 5189 5190 5190 5190 5191 5191 5191 5191 5192 5193 5193 5194 5194 5194 5195 5195 5195 5196 5197 5197 5198 5198 5198 5198 5199 5200 5201 5201 5201 5202 5202 5202 5203 5203 5203 5204 5204 5204 5204 5205 5205 5206 5207 5208 5208 5209 5209 5210 5211 5211 5212 5212 5215 5215 5216 5216 5216 5217 5218 5218 5219 5219 5219 5221 5222 5222 5222 5223 5223 5223 5224 5224 5224 5225 5225 5225 5225 5226 5226 5227 5228 5229 5229 5230 5230 5230 5230 5231 5231 5232 5232 5232 5233 5233 5233 5235 5235 5236 5236 5237 5237 5237 5237 5238 5238 5239 5239 5239 5240 5240 5240 5242 5242 5243 5243 5243 5244 5244 5244 5245 5246 5246 5247 5247 5247 5247 5248 5249 5250 5250 5251 5251 5251 5252 5252 5253 5253 5253 5254 5254 5256 5257 5257 5258 5258 5258 5259 5260 5260 5261 5261 5261 5263 5264 5264 5264 5265 5265 5265 5266 5266 5266 5267 5267 5267 5267 5268 5268 5269 5270 5271 5271 5272 5272 5272 5273 5274 5274 5275 5275 5275 5277 5278 5278 5279 5279 5279 5280 5281 5281 5282 5282 5282 5284 5285 5285 5286 5286 5287 5288 5288 5289 5289 5292 5292 5292 5293 5293 5294 5295 5295 5296 5296 5296 5297 5299 5299 5299 5300 5300 5300 5301 5301 5302 5302 5302 5304 5306 5306 5307 5307 5308 5308 5309 5310 5311 5313 5313 5314 5314 5315 5316 5316 5317 5317 5320 5320 5320 5320 5321 5321 5322 5322 5323 5323 5323 5325 5326 5327 5327 5327 5328 5328 5328 5329 5329 5330 5330 5330 5332 5334 5334 5334 5335 5335 5336 5336 5337 5337 5341 5341 5342 5342 5342 5343 5343 5344 5344 5344 5345 5345 5347 5348 5348 5349 5349 5350 5351 5351 5352 5352 5355 5355 5356 5356 5356 5357 5357 5358 5359 5359 5359 5360 5361 5362 5362 5362 5363 5363 5363 5364 5364 5364 5365 5365 5365 5365 5367 5368 5369 5369 5370 5370 5371 5372 5372 5373 5373 5376 5376 5377 5377 5377 5377 5378 5378 5379 5379 5379 5381 5382 5383 5383 5383 5384 5384 5385 5385 5386 5386 5390 5390 5390 5391 5391 5391 5392 5392 5393 5393 5393 5395 5397 5397 5397 5397 5398 5398 5399 5399 5399 5400 5400 5401 5403 5404 5404 5404 5405 5405 5406 5406 5407 5407 5411 5411 5411 5412 5412 5412 5413 5413 5414 5414 5414 5416 5418 5418 5418 5418 5419 5419 5420 5420 5421 5421 5421 5423 5424 5425 5425 5425 5426 5426 5426 5427 5427 5428 5428 5428 5430 5432 5432 5432 5433 5433 5434 5434 5435 5435 5439 5439 5439 5439 5440 5440 5441 5441 5442 5442 5442 5444 5445 5446 5446 5446 5447 5447 5448 5448 5449 5449 5453 5453 5453 5454 5454 5455 5455 5456 5456 5460 5460 5460 5461 5461 5462 5462 5463 5463 5467 5467 5467 5468 5468 5468 5469 5469 5470 5470 5470 5472 5474 5474 5474 5475 5475 5476 5476 5477 5477 5481 5481 5481 5482 5482 5483 5483 5484 5484 5488 5488 5489 5489 5490 5491 5491 5492 5492 5495 5495 5495 5496 5496 5497 5497 5497 5498 5498 5498 5501 5502 5502 5502 5503 5503 5504 5504 5505 5505 5509 5509 5509 5510 5510 5511 5511 5511 5512 5512 5512 5515 5516 5516 5517 5517 5517 5518 5518 5519 5519 5523 5523 5523 5524 5524 5525 5525 5525 5526 5526 5526 5529 5530 5530 5531 5531 5531 5532 5532 5533 5533 5537 5537 5537 5538 5538 5539 5539 5539 5540 5540 5540 5543 5544 5544 5544 5545 5545 5545 5546 5546 5546 5547 5547 5547 5547 5549 5550 5551 5551 5551 5551 5552 5552 5552 5553 5553 5553 5554 5554 5554 5555 5556 5557 5558 5558 5558 5558 5559 5559 5560 5560 5561 5561 5561 5563 5564 5565 5565 5565 5566 5566 5566 5567 5567 5567 5568 5568 5568 5568 5570 5571 5572 5572 5572 5573 5573 5574 5574 5575 5575 5579 5579 5579 5580 5580 5581 5581 5582 5582 5586 5586 5586 5587 5587 5588 5588 5588 5589 5589 5589 5592 5593 5593 5593 5594 5594 5595 5595 5595 5596 5596 5596 5599 5600 5600 5600 5601 5601 5601 5602 5602 5603 5603 5603 5605 5607 5607 5607 5608 5608 5609 5609 5610 5610 5614 5614 5614 5615 5615 5616 5616 5617 5617 5621 5621 5621 5622 5622 5623 5623 5623 5624 5624 5624 5627 5628 5628 5628 5629 5629 5630 5630 5631 5631 5635 5635 5635 5636 5636 5637 5637 5638 5638 5638 5639 5639 5640 5642 5642 5643 5643 5644 5645 5645 5646 5646 5649 5649 5649 5650 5650 5651 5651 5651 5652 5652 5652 5655 5656 5656 5656 5657 5657 5658 5658 5659 5659 5663 5663 5664 5664 5664 5665 5665 5666 5666 5666 5667 5667 5669 5670 5670 5671 5671 5672 5673 5673 5673 5674 5674 5674 5675 5676 5677 5677 5677 5678 5678 5679 5679 5680 5680 5684 5684 5684 5685 5685 5686 5686 5687 5687 5691 5691 5691 5692 5692 5693 5693 5694 5694 5698 5698 5698 5699 5699 5700 5700 5701 5701 5705 5705 5705 5706 5706 5707 5707 5708 5708 5712 5712 5712 5713 5713 5714 5714 5715 5715 5719 5719 5719 5720 5720 5721 5721 5722 5722 5726 5726 5726 5726 5727 5727 5728 5728 5728 5729 5729 5729 5729 5731 5732 5732 5733 5733 5733 5733 5734 5734 5734 5735 5735 5735 5736 5736 5736 5737 5738 5739 5740 5740 5740 5741 5741 5742 5742 5743 5743 5747 5747 5748 5748 5748 5749 5749 5750 5750 5750 5751 5751 5753 5754 5754 5755 5755 5755 5756 5757 5757 5758 5758 5758 5760 5761 5761 5761 5762 5762 5763 5763 5764 5764 5768 5768 5769 5769 5770 5771 5771 5772 5772 5775 5775 5775 5776 5776 5777 5777 5778 5778 5782 5782 5782 5783 5783 5784 5784 5785 5785 5789 5789 5789 5790 5790 5791 5791 5792 5792 5796 5796 5796 5797 5797 5798 5798 5799 5799 5803 5803 5803 5804 5804 5805 5805 5806 5806 5810 5810 5810 5811 5811 5812 5812 5813 5813 5817 5817 5818 5818 5819 5820 5820 5821 5821 5824 5824 5824 5825 5825 5826 5826 5827 5827 5831 5831 5831 5832 5832 5832 5833 5833 5834 5834 5834 5836 5838 5838 5838 5839 5839 5840 5840 5841 5841 5845 5845 5845 5846 5846 5847 5847 5848 5848 5852 5852 5852 5852 5853 5853 5854 5854 5854 5855 5855 5856 5858 5859 5859 5859 5860 5860 5861 5861 5861 5862 5862 5862 5865 5866 5866 5866 5867 5867 5868 5868 5869 5869 5873 5873 5873 5873 5874 5874 5875 5875 5875 5876 5876 5877 5879 5880 5880 5880 5881 5881 5882 5882 5882 5883 5883 5883 5886 5887 5887 5888 5888 5889 5889 5890 5891 5892 5894 5894 5894 5895 5895 5896 5896 5897 5897 5901 5901 5901 5902 5902 5903 5903 5904 5904 5904 5905 5905 5906 5908 5908 5909 5909 5910 5910 5911 5912 5913 5915 5915 5916 5916 5917 5918 5918 5919 5919 5922 5922 5922 5923 5923 5924 5924 5925 5925 5929 5929 5930 5930 5931 5931 5932 5933 5934 5936 5936 5936 5937 5937 5938 5938 5939 5939 5943 5943 5944 5944 5945 5946 5946 5947 5947 5950 5950 5950 5951 5951 5952 5952 5952 5953 5953 5953 5956 5957 5957 5957 5958 5958 5959 5959 5960 5960 5964 5964 5964 5965 5965 5966 5966 5967 5967 5971 5971 5972 5972 5973 5973 5974 5975 5976 5978 5978 5979 5979 5980 5980 5981 5982 5983 5985 5985 5986 5986 5987 5987 5988 5989 5990 5992 5992 5993 5993 5994 5994 5995 5996 5997 5999 5999 6000 6000 6001 6001 6002 6003 6004 6006 6006 6007 6007 6008 6008 6009 6010 6011 6013 6013 6014 6014 6015 6015 6016 6017 6018 6020 6020 6021 6021 6022 6022 6023 6024 6025 6027 6027 6028 6028 6029 6030 6030 6031 6032 6034 6034 6035 6035 6036 6037 6037 6038 6039 489 211 1593 1594 0 1 518 519 522 3 4 6 9 9 1634 571 590 1644 1647 1648 1667 1668 14 15 15 15 1683 16 16 18 18 18 1727 1728 1729 33 33 33 37 42 42 42 54 54 54 60 60 60 61 61 61 62 62 62 267 268 182 832 63 63 69 1936 1937 81 90 936 1986 2011 102 2025 962 2042 111 849 993 114 114 864 2072 125 892 2095 2096 129 129 130 924 1076 957 1121 148 1134 188 274 1021 1034 2132 2133 1041 1136 150 151 151 285 1144 152 153 153 153 154 154 155 202 1078 156 156 157 158 158 207 346 1106 1118 211 212 213 218 159 161 219 224 159 159 160 160 161 161 232 162 163 164 164 165 166 166 1155 167 168 168 168 169 170 171 171 172 173 173 174 174 175 175 175 378 379 182 383 384 181 181 181 181 394 395 182 182 186 186 186 406 407 411 412 188 188 189 189 190 191 192 193 194 194 194 195 196 197 198 198 299 200 300 199 200 201 202 202 203 314 1228 318 205 319 204 205 206 207 332 333 492 509 525 208 209 209 209 210 566 1245 469 211 211 212 212 218 218 1286 1288 220 232 259 259 259 1392 663 1393 377 1168 380 1171 1402 1403 806 1408 1415 821 1423 1425 1426 1428 265 265 267 270 271 270 270 849 1446 1453 1454 978 1455 1456 274 274 1545 334 334 1050 1585 335 336 336 339 337 338 1067 342 340 341 341 345 343 344 344 1093 346 346 1101 1102 349 347 348 348 348 1259 1260 1261 1291 1292 1293 502 503 351 504 1319 1152 1320 1154 1321 351 351 1326 350 1340 352 352 355 1342 355 353 354 354 355 358 356 357 361 359 360 360 364 362 363 367 365 365 366 370 368 369 373 371 372 376 374 375 377 380 378 378 380 382 382 385 383 383 385 385 390 391 389 390 391 391 396 397 395 396 397 397 400 403 404 403 403 404 405 407 407 409 409 409 410 412 412 414 414 414 417 415 416 420 418 419 423 421 422 426 424 425 429 427 428 428 432 430 431 436 1506 1507 1508 435 433 434 438 436 437 441 439 440 444 442 443 1537 1538 1539 448 1548 1549 1550 447 445 446 450 448 449 532 533 544 451 551 453 455 552 451 452 453 454 571 455 455 456 456 457 458 459 460 461 590 2164 462 462 463 463 463 466 601 464 465 466 466 608 2176 2177 467 467 467 613 622 623 628 629 639 469 660 2179 474 661 2181 469 667 2192 2193 471 472 472 472 474 677 2206 2214 2217 474 2241 482 482 2273 2277 485 485 487 490 487 491 487 489 2302 704 2329 501 500 1281 500 501 1299 501 1289 1303 2335 2345 2347 515 532 2360 2368 518 519 519 520 522 2377 2379 530 531 531 535 733 532 533 2415 2416 535 538 548 549 549 749 553 752 550 550 571 573 573 765 2514 2515 575 575 576 2531 2532 2572 2573 2574 2578 2587 2613 2614 2647 2648 619 619 619 2690 2715 2716 2717 2721 635 635 2736 638 638 639 639 2752 2777 2780 649 649 649 650 650 653 806 653 653 654 656 656 656 657 657 657 2845 658 658 658 661 677 2847 663 663 2899 680 677 2909 680 680 2948 2959 685 685 685 690 2964 3002 3013 704 3036 3063 3074 721 3085 3086 3091 3092 730 3115 733 733 738 3125 734 749 751 752 753 754 765 765 769 770 3202 3225 3234 3235 3246 777 3257 3258 3278 3289 783 3305 3332 3336 3354 3355 3356 795 796 3370 3388 3399 3410 801 803 803 806 3445 821 826 828 826 826 830 1180 830 830 831 1419 831 3471 831 832 832 1443 834 834 834 3527 849 852 852 854 864 3561 3572 3576 3597 859 864 860 860 860 3618 3629 3657 873 3682 3693 879 882 3721 882 882 3737 886 3759 887 892 888 888 888 903 904 905 905 906 908 908 909 919 923 923 923 3832 924 924 3843 927 3872 3876 3877 3898 3925 946 946 3955 953 3998 3999 4000 957 957 4014 962 962 4062 965 965 965 974 4090 4092 974 978 978 980 981 4132 1451 1452 984 985 985 985 987 987 988 989 990 989 989 993 4134 990 990 991 991 991 993 4163 996 996 997 997 997 4188 4192 1002 1002 4215 1006 1006 1006 4224 1009 1024 4245 1011 1011 1011 4253 4254 4255 1015 1016 1017 4288 1022 4299 4300 1024 1024 1029 4322 4324 4370 4371 4382 4384 4399 4408 1050 1061 4410 4413 4414 4417 4448 4451 4463 1057 1057 1059 1059 1061 1061 1062 1062 1065 1068 1068 1071 1072 1072 1072 1075 1075 1076 4522 1078 1079 1079 1079 1080 1080 1081 1085 1085 1088 1093 4554 4555 4558 4561 4569 1096 4581 4593 1105 4617 4619 1107 1107 1107 4630 4649 1113 1114 1114 1114 1119 1119 1120 1120 4689 1121 4705 4707 1124 1124 4733 1130 1130 4759 4763 4767 1131 1131 1131 4775 4776 1133 1133 1133 1134 1134 4783 1136 1135 1135 1135 1136 1137 1138 1139 1139 4413 4414 1584 4415 1142 1140 1141 1143 1143 4443 4445 1145 1144 1145 1468 4497 4499 4501 1148 1146 1147 1149 1149 1150 1151 1151 1151 1247 1248 1253 1254 1280 1281 1286 1154 1152 1152 1153 1347 1155 1348 1349 1156 1155 1156 1158 1158 1368 1157 1161 1159 1160 1164 1162 1163 1163 1167 1165 1165 1166 1173 1176 1168 1171 1169 1169 1173 1176 1174 1174 1176 1180 1180 1182 1182 1185 1185 1186 1186 1186 1187 1187 1188 1188 1188 1189 1189 1190 1190 1195 1190 1199 1191 1191 1192 1192 1192 1205 1195 1195 1199 1203 1205 1205 1206 1208 1208 1210 1210 1210 1211 1213 1213 1215 1215 1216 1216 1216 1217 1217 1217 1220 1218 1219 1222 1222 1474 1221 1225 1223 1223 1224 1497 1498 1499 1227 1226 1227 1514 1229 1229 1520 1228 1228 1232 1230 1231 1235 1233 1234 1234 1234 1235 1236 1236 1569 1236 1570 1236 1576 1577 1578 1593 2294 2295 2297 1598 1599 1601 2338 2339 2341 2345 1605 1606 1608 2377 2382 2383 2385 1237 1239 1238 1240 1241 1241 2489 1244 1242 1243 1246 1246 2495 1245 2189 2192 1248 1251 1254 1257 1281 1284 1289 1286 1287 1293 1288 1289 1299 1299 1303 1347 1391 1394 1690 1390 1390 1390 1391 1398 1391 2853 1392 1392 1397 1398 1401 1394 1398 1394 1393 1401 1402 1402 1406 1403 1403 1406 1404 1405 1406 1407 1407 1407 2887 1409 1408 1409 1409 1414 3440 1413 1414 1411 1412 1412 1414 1413 1415 1415 1424 3477 1418 1419 1419 1422 1422 1424 1424 3481 1423 1425 1425 1426 1427 1427 1427 1433 1435 1429 1433 1428 1429 1864 1435 1429 1433 1438 1439 1440 3500 1438 1438 1440 1439 1439 1441 1443 1445 1444 1444 1445 1445 1446 1447 1447 1447 3531 1448 1450 1450 1450 1452 1451 1452 1453 1453 1454 1454 1455 1455 4109 1456 1456 1458 1458 1458 1459 1459 4122 1459 4128 1491 1491 1493 1493 1496 1497 1495 1499 1495 1496 1497 1505 1507 1504 1508 1504 1505 1535 1537 1536 1534 1539 1535 1536 1536 1546 1547 1549 1544 1550 1545 1546 1583 1584 1584 4422 1585 1585 4429 1588 4431 1586 1587 1588 4448 4449 1589 1589 4456 4458 4461 4506 4508 4510 4540 4542 4544 1590 1590 4549 4551 4554 4555 4556 4585 4586 4590 4596 4598 4600 2212 2216 2221 2224 2225 1591 1591 1591 1592 1592 2248 2251 1593 1597 1596 2297 2319 2293 2322 1599 1601 2335 2350 2337 2353 1608 2379 2399 2381 2401 2406 2414 2407 2417 1612 1613 1613 1617 1617 1619 1619 1620 2453 1620 2468 2455 2472 1628 1628 1630 1630 1631 2430 1633 1635 2524 1636 1634 1634 2527 2533 1636 1645 2580 1645 2559 1644 2507 2584 1647 1649 1651 1648 1649 1651 1660 1661 1663 1663 2578 2648 2667 2650 2670 1666 1667 1667 1670 1668 2686 1670 1672 1673 1675 1678 1678 1678 1680 2653 1681 2702 1680 1682 1682 1684 1683 1683 2760 1685 1686 1686 1686 1689 2721 2777 2804 2807 2808 2812 2813 2816 2833 2780 2834 2837 2838 1690 1692 2853 1690 1693 1692 1693 2860 1692 1693 1701 1702 2887 1702 1702 1703 1703 2902 2908 2905 2906 1720 1720 1723 1723 1724 1728 1728 1729 1729 1732 1741 1744 3017 3019 1755 1758 1761 1762 1763 3079 1762 1763 1762 3088 1771 1772 1772 1775 1775 1776 1780 1781 1784 1787 1788 3147 1787 1785 1787 1790 1790 3180 1789 1790 3204 3205 3208 3209 3235 1805 1805 1805 3262 3265 3266 3279 1820 1821 1824 1824 1824 1827 1827 1828 3316 1828 3319 1837 1837 3348 1836 1837 1838 1838 1839 3372 1839 3375 1858 3432 3444 3433 3436 3379 3437 3446 1862 1862 3465 1861 3417 3491 1862 1864 1864 1867 1869 1871 1872 1873 1877 1877 1877 1878 3543 1878 3547 1896 1899 3650 3651 3654 3658 3655 1935 1937 1937 1939 3718 1954 1958 1964 1968 1968 1968 1969 1972 1973 3791 3794 1977 1975 1976 3836 3837 3840 3841 3866 3867 3870 1985 1985 1987 1988 1988 1988 2010 2012 2013 2023 3930 2021 2021 2022 3934 2023 2024 2026 2027 2043 2044 4070 2043 2044 2043 2044 2048 2045 2045 2045 2046 2046 2047 4051 2048 2048 3503 4136 4138 2049 2050 2050 2050 2053 2053 2053 3533 4148 4164 2057 2057 2057 2059 2060 2060 2069 2070 2069 3581 2070 4203 2069 2070 2071 2071 2071 2072 2072 2073 3606 4239 4236 2077 2078 2074 2074 2076 2076 2077 2078 2082 2082 2085 2085 2089 2090 2086 2086 2088 2088 2089 2090 4393 3721 4394 3723 4397 4400 2093 3748 4389 2091 2092 2092 3752 2093 2093 2094 2094 2096 2096 2098 2098 2098 2099 2099 2099 4486 4489 4518 2101 2101 2105 2105 4574 2107 2107 2107 2108 2108 2109 2109 2109 3941 4801 4631 4634 4695 4712 2113 2116 2116 2120 2121 2117 2117 2119 2119 2120 2120 4704 2121 2121 2124 2125 4768 2123 2123 2125 4719 2125 2129 2130 2131 2128 2130 2130 2131 2131 4775 4254 4255 4258 4282 4283 4286 2134 2132 2132 2133 2133 4364 4365 4786 4794 4368 4525 4610 4612 4616 4667 4671 4673 2403 2409 2426 2430 2431 2453 2136 2454 2455 2141 2461 2462 2464 2135 2137 2136 2138 2139 2140 2143 2141 2142 2144 2146 2145 2503 2524 2147 2147 2527 2531 2533 2148 2148 2538 2540 2151 2149 2150 2154 2152 2153 2157 2155 2156 2160 2158 2159 2161 2163 2162 2163 2164 2164 2559 2561 2166 2165 2166 2566 2166 2572 2573 2575 2606 2168 2607 2609 2613 2615 2173 2619 2620 2622 2169 2167 2168 2172 2170 2171 2171 2175 2173 2174 2174 2178 2176 2176 2177 2177 2647 2652 2653 2655 2683 2684 2686 2694 2695 2697 2701 2702 2704 2708 2709 2711 2715 2716 2718 2183 2186 2187 2180 2853 2180 2179 2186 2180 2182 2182 2860 2181 2187 2224 2182 2186 2187 2188 2195 2196 2199 2200 2204 2189 2191 2195 2190 2199 2192 2194 2193 2193 2195 2204 2205 2204 2255 2202 2202 2880 2881 2207 2214 2210 2206 2206 2210 2225 2211 2905 2209 2277 2909 2211 2207 2210 2211 2209 2284 2212 2212 2213 2213 2228 2231 2215 2214 2216 2216 2239 2218 2219 2220 2224 2225 2245 2254 2255 2258 2259 2244 2242 2243 2246 2245 2245 2246 2262 2265 2255 2259 2265 2269 2268 2268 2269 2269 2270 2270 2271 2271 2271 2935 2272 2272 2279 2272 2276 2282 2284 2275 2287 2276 2288 2274 2275 2276 2278 2282 2288 2277 2278 2289 2284 2287 2288 2289 2289 2292 2293 2291 2292 2293 2306 2295 2297 2303 2304 2301 2302 2303 2324 2327 2322 2323 2319 2320 2320 2323 2327 2328 2324 2326 2326 2328 2330 2332 2329 2329 2332 2333 2330 2331 2332 2333 2333 3026 2336 2337 2334 2341 2348 2345 2346 2347 2348 2355 2357 2353 2354 2350 2351 2351 2354 2357 2358 2355 2358 3050 2358 2359 2359 2362 2359 2365 2361 2360 2361 2373 2375 2407 2365 2366 2367 2369 2362 2365 2366 2369 2373 2369 2368 2375 2417 2377 2381 2378 2383 2385 2390 2391 2389 2390 2391 2393 2390 2393 2396 2401 2399 2400 2401 2402 2402 3105 2416 2420 2403 2406 2407 2408 2412 2419 2408 2408 2409 2412 2413 2453 2414 2417 2416 2419 2422 2468 2420 2425 2424 2424 2425 2436 2440 2430 2431 2433 2433 2434 2434 2443 2446 2436 2440 2443 2443 2444 2446 2449 2449 2449 3144 2468 2450 2470 3158 2472 2475 2450 2450 2478 2458 2458 2459 2462 2459 2475 2464 2478 2502 2508 2502 2502 2503 2504 2504 2507 2507 2513 2516 2508 2511 2510 2510 2513 2516 2514 2514 2516 2519 2520 2532 2522 2534 2519 2519 2544 3205 2518 3208 2522 2520 2521 2596 3213 3215 2533 2534 2572 2579 2589 2579 2578 2580 2584 2588 2587 2588 2588 2589 2589 2590 2592 2592 2594 3246 3247 2595 2598 2600 2614 2603 2616 2596 2599 2598 2599 2595 2596 2602 2604 2603 2604 2600 2602 2615 2616 2646 2647 2650 2650 2653 2655 2658 2658 2659 2659 2661 2664 2659 2661 2661 2664 2670 2667 2668 2668 2668 2669 2670 2671 2671 2672 2675 2677 2690 2680 2691 2673 2676 2675 2676 2672 2673 2679 2681 2680 2681 2677 2679 2689 2691 2692 2695 2697 2695 2715 2716 2723 2726 2722 2728 2722 2721 2733 2723 2726 2725 2725 2725 2733 2735 2735 2735 2737 3354 2736 2736 2738 2741 2744 2739 2742 2741 2742 2738 2739 2745 2744 2745 2744 2763 2745 3382 2746 2748 2749 2750 2750 2750 2763 2766 2754 2767 2751 2753 2754 2752 2754 2776 2776 2778 2777 2788 2779 2779 2781 2780 2795 2782 2782 2782 2798 2801 2802 2798 2798 2801 2807 2808 2809 2805 2807 2808 2809 2809 3410 2810 2810 3415 2813 3433 2811 2811 2811 3436 2826 3442 2818 2819 2822 2823 2829 2831 2812 2812 2813 2815 2825 2827 2829 2826 2828 2829 2831 2831 2833 2833 2838 2841 2842 2841 2842 3465 2841 2842 2844 3471 2844 2843 2844 3479 2845 2845 2846 2846 2860 2847 2847 2851 2864 2906 2849 2869 2851 2870 2850 2851 2848 2849 2850 2850 2923 2867 2870 2879 2879 2880 2881 2881 2884 2900 2886 2887 2888 2891 2901 3518 2892 2900 2901 2900 2901 2905 2906 2908 2908 2909 2910 2915 2918 2919 2926 2918 2921 2918 2923 2926 2928 2977 2929 2930 2930 2930 2949 2933 2935 2938 2938 2939 2939 2947 2949 2950 2958 2960 2961 2963 2963 2963 2971 2962 3019 2977 2964 2964 2968 2981 2967 2968 2965 2966 2967 2967 2967 3033 2983 2983 2984 2984 2987 2989 2992 2992 2993 2993 3001 3003 3004 3012 3014 3015 3016 3017 3019 3026 3021 3023 3021 3024 3021 3026 3029 3031 3033 3035 3038 3037 3038 3039 3037 3038 3046 3046 3046 3047 3047 3048 3050 3052 3054 3073 3075 3062 3064 3065 3073 3075 3076 3075 3086 3088 3092 3096 3097 3099 3087 3088 3090 3093 3092 3099 3102 3105 3107 3105 3107 3108 3112 3114 3115 3115 3116 3119 3121 3122 3124 3126 3124 3124 3131 3123 3126 3126 3138 3125 3129 3127 3128 3146 3144 3145 3147 3147 3149 3151 3153 3156 3157 3154 3157 3157 3160 3161 3166 3158 3159 3161 3165 3161 3162 3165 3205 3166 3170 3166 3167 3170 3171 3174 3176 3177 3186 3188 3190 3193 3203 3201 3199 3200 3203 3203 3202 3211 3213 3215 3217 3218 3220 3222 3224 3226 3225 3225 3231 3279 3232 3233 3236 3235 3254 3245 3247 3246 3248 3250 3252 3254 3254 3256 3259 3257 3257 3257 3268 3268 3269 3272 3269 3274 3277 3279 3280 3288 3290 3291 3292 3304 3292 3292 3293 3293 3293 3294 3295 3313 3304 3304 3306 3307 3307 3308 3311 3311 3313 3313 3314 3322 3322 3323 3326 3323 3328 3331 3333 3334 3335 3337 3338 3354 3356 3356 3358 3361 3364 3369 3367 3368 3369 3370 3370 3370 3378 3378 3379 3382 3379 3384 3387 3389 3390 3398 3400 3401 3409 3409 3409 3410 3411 3419 3412 3415 3417 3415 3417 3430 3418 3419 3419 3422 3426 3428 3430 3430 3431 3431 3436 3440 3441 3440 3441 3442 3444 3444 3446 3447 3455 3457 3458 3455 3459 3455 3455 3465 3471 3477 3479 3477 3480 3481 3479 3480 3480 3481 3485 3486 3491 3492 3489 3489 3490 3490 3491 3492 3493 3496 3494 3497 3496 3497 3493 3494 3497 3499 3502 3499 3498 3499 3513 3557 3500 3502 3500 3503 3505 3502 3503 3513 3505 3513 3518 3518 3526 3518 3526 3526 3528 3529 3529 3531 3531 3532 3532 3533 3541 3535 3538 3538 3540 3541 3541 3587 3551 3549 3552 3551 3551 3554 3560 3557 3559 3563 3557 3559 3559 3560 3562 3604 3563 3561 3563 3571 3573 3574 3575 3577 3578 3581 3585 3586 3586 3587 3587 3591 3594 3595 3595 3596 3596 3597 3597 3600 3600 3598 3651 3599 3655 3604 3606 3602 3608 3602 3601 3602 3612 3670 3617 3619 3620 3628 3630 3631 3634 3638 3639 3639 3640 3640 3644 3647 3648 3648 3649 3649 3658 3659 3660 3658 3659 3667 3670 3672 3670 3672 3672 3673 3674 3673 3673 3677 3721 3680 3680 3681 3683 3684 3692 3694 3695 3695 3698 3702 3703 3703 3704 3704 3708 3710 3711 3712 3712 3712 3714 3716 3718 3732 3734 3720 3722 3723 3734 3734 3736 3738 3737 3738 3738 3739 3741 3743 3745 3746 3748 3750 3752 3753 3757 3758 3757 3758 3758 3760 3759 3760 3760 3763 3761 3762 3767 3769 3765 3771 3765 3764 3765 3776 3782 3783 3782 3781 3782 3786 3787 3786 3785 3786 3790 3788 3789 3789 3791 3791 3794 3793 3796 3798 3800 3802 3803 3803 3805 3807 3804 3807 3810 3806 3807 3810 3814 3821 3826 3827 3827 3829 3833 3832 3833 3833 3835 3834 3835 3835 3844 3843 3843 3848 3850 3852 3854 3856 3854 3856 3856 3858 3860 3862 3863 3860 3863 3866 3870 3870 3871 3873 3874 3875 3876 3876 3879 3883 3887 3888 3889 3888 3889 3889 3897 3899 3900 3908 3915 3910 3912 3914 3910 3915 3915 3916 3916 3920 3923 3924 3924 3924 3926 3927 3926 3928 3930 3932 3934 3934 3935 3937 3941 3941 3942 3942 3942 3943 3943 3943 3944 3945 3954 3956 3957 3965 3965 3966 3966 3969 3973 3974 3974 3975 3975 3979 3982 3984 3986 3986 3988 3993 3998 3998 3999 3999 4001 4005 4004 4005 4005 4013 4015 4016 4016 4024 4024 4025 4025 4028 4032 4032 4033 4033 4033 4037 4039 4040 4037 4040 4041 4043 4044 4047 4051 4052 4052 4052 4053 4053 4060 4061 4061 4061 4063 4062 4062 4064 4068 4069 4068 4068 4069 4069 4078 4079 4080 4082 4079 4084 4086 4088 4084 4086 4086 4087 4087 4091 4090 4091 4091 4092 4092 4109 4113 4111 4113 4117 4117 4117 4119 4122 4122 4128 4130 4128 4131 4130 4131 4130 4131 4132 4132 4133 4133 4134 4134 4136 4136 4140 4135 4145 4138 4139 4140 4138 4139 4139 4140 4143 4145 4146 4163 4188 4189 4147 4149 4157 4148 4150 4155 4156 4157 4157 4158 4160 4160 4160 4162 4163 4163 4216 4164 4164 4165 4165 4169 4170 4167 4169 4171 4169 4170 4171 4168 4170 4171 4192 4245 4193 4186 4186 4186 4189 4193 4187 4189 4190 4191 4193 4194 4197 4254 4195 4198 4197 4197 4203 4205 4206 4212 4214 4216 4217 4216 4218 4218 4218 4219 4221 4222 4282 4223 4223 4224 4224 4225 4229 4230 4227 4227 4228 4228 4229 4230 4239 4241 4236 4238 4238 4239 4241 4241 4244 4244 4244 4245 4246 4255 4247 4248 4247 4247 4248 4250 4268 4251 4317 4261 4262 4265 4268 4269 4272 4275 4276 4279 4282 4286 4287 4288 4289 4290 4290 4293 4294 4297 4297 4298 4299 4301 4300 4300 4301 4306 4307 4304 4304 4305 4305 4306 4307 4308 4308 4312 4310 4312 4309 4310 4310 4311 4311 4312 4324 4408 4325 4313 4313 4314 4314 4317 4325 4321 4317 4318 4321 4322 4322 4323 4325 4333 4328 4330 4333 4370 4371 4373 4374 4373 4374 4376 4381 4382 4384 4385 4387 4385 4387 4391 4392 4389 4389 4390 4390 4391 4392 4393 4393 4394 4396 4400 4402 4400 4399 4407 4402 4409 4414 4409 4408 4411 4429 4411 4412 4412 4412 4437 4439 4449 4453 4451 4453 4456 4461 4464 4461 4465 4463 4463 4464 4466 4466 4470 4468 4469 4469 4470 4475 4476 4472 4472 4475 4476 4477 4477 4477 4482 4478 4478 4481 4482 4486 4489 4491 4493 4493 4493 4495 4495 4499 4501 4505 4504 4504 4505 4508 4508 4510 4514 4513 4513 4514 4515 4515 4515 4516 4516 4518 4518 4520 4521 4521 4523 4524 4524 4524 4525 4529 4528 4528 4530 4530 4530 4531 4531 4534 4534 4535 4535 4535 4536 4536 4539 4537 4538 4538 4539 4539 4542 4554 4558 4562 4561 4562 4562 4563 4563 4563 4565 4565 4566 4566 4567 4569 4570 4570 4571 4571 4571 4572 4572 4574 4575 4574 4575 4577 4579 4579 4580 4577 4578 4578 4580 4581 4584 4593 4594 4582 4585 4584 4583 4590 4594 4595 4598 4592 4600 4606 4606 4606 4608 4608 4616 4617 4617 4618 4619 4621 4621 4621 4622 4626 4627 4627 4627 4628 4628 4629 4629 4629 4630 4630 4634 4635 4631 4633 4633 4635 4637 4639 4639 4640 4637 4638 4638 4640 4649 4651 4660 4644 4650 4653 4648 4651 4658 4653 4655 4658 4658 4659 4660 4661 4660 4661 4662 4664 4664 4666 4674 4678 4678 4678 4680 4683 4684 4684 4684 4687 4689 4690 4692 4691 4692 4692 4693 4693 4693 4695 4695 4697 4697 4698 4698 4701 4704 4704 4706 4706 4705 4705 4708 4708 4708 4709 4710 4709 4711 4711 4711 4712 4712 4713 4713 4714 4714 4714 4715 4715 4719 4721 4716 4719 4721 4722 4726 4729 4730 4730 4730 4731 4731 4732 4734 4735 4736 4736 4736 4737 4737 4744 4748 4751 4752 4756 4757 4756 4756 4757 4757 4758 4760 4761 4762 4762 4762 4763 4763 4764 4765 4765 4765 4766 4766 4767 4767 4776 4768 4768 4771 4773 4774 4774 4775 4777 4776 4778 4778 4780 4779 4782 4781 4782 4782 4784 4784 4783 4784 4785 4789 4787 4785 4786 4788 4790 4789 4791 4793 4792 4794 4794 ) // ************************************************************************* //
[ "zachery.style@mines.sdsmt.edu" ]
zachery.style@mines.sdsmt.edu
579ab65e4e4fb5048c67567ee5ebdb6e68f33a29
0ca4a1b70fecd20b240534b1a65b843d7f268fcb
/C++/DisplayPanel/weathersettings.h
84a7687fa683155822cad79f01131406dffde17a
[]
no_license
Smart-controller/PC-Panel-Display
da1a87ceaca022d7613cd40cfebfcacb68d1be4d
dfd67219e08236381e35e82c8036ebcd9c0cee18
refs/heads/master
2021-01-21T15:37:22.107466
2015-06-14T06:49:00
2015-06-14T06:49:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
421
h
#ifndef WEATHERSETTINGS_H #define WEATHERSETTINGS_H #include "inifunctions.h" #include <QWidget> namespace Ui { class WeatherSettings; } class WeatherSettings : public QWidget { Q_OBJECT public: explicit WeatherSettings(QWidget *parent = 0); ~WeatherSettings(); IniFunctions ini; private slots: void on_DoneButton_clicked(); private: Ui::WeatherSettings *ui; }; #endif // WEATHERSETTINGS_H
[ "danj.scripter@gmail.com" ]
danj.scripter@gmail.com
acb802374bfbab2a0661558e77388cf5c9c79fb9
0f2b08b31fab269c77d4b14240b8746a3ba17d5e
/onnxruntime/test/providers/cpu/math/cumsum_test.cc
845530c58804fdc97812be881374132f04e7b26a
[ "MIT" ]
permissive
microsoft/onnxruntime
f75aa499496f4d0a07ab68ffa589d06f83b7db1d
5e747071be882efd6b54d7a7421042e68dcd6aff
refs/heads/main
2023-09-04T03:14:50.888927
2023-09-02T07:16:28
2023-09-02T07:16:28
156,939,672
9,912
2,451
MIT
2023-09-14T21:22:46
2018-11-10T02:22:53
C++
UTF-8
C++
false
false
13,944
cc
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "gtest/gtest.h" #include "test/providers/provider_test_utils.h" #include "test/util/include/default_providers.h" #include "core/util/math.h" namespace onnxruntime { namespace test { TEST(CumSumTest, _1DTest) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddInput<float>("x", {5}, {1., 2., 3., 4., 5.}); // Pass in 0D Axis for all OpenVINO tests, and keep one 1D Axis test for coverage. #ifdef USE_OPENVINO test.AddInput<int32_t>("axis", {}, {0}); #else test.AddInput<int32_t>("axis", {1}, {0}); #endif test.AddOutput<float>("y", {5}, {1., 3., 6., 10., 15.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _1DTestFloat16) { if (DefaultCudaExecutionProvider().get() != nullptr) { OpTester test("CumSum", 14, onnxruntime::kOnnxDomain); test.AddInput<MLFloat16>("x", {3}, {MLFloat16(1.0f), MLFloat16(2.0f), MLFloat16(3.0f)}); test.AddInput<int32_t>("axis", {}, {0}); test.AddOutput<MLFloat16>("y", {3}, {MLFloat16(1.0f), MLFloat16(3.0f), MLFloat16(6.0f)}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider, kCpuExecutionProvider}); } } TEST(CumSumTest, _1DTestInvalidAxis) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddInput<float>("x", {5}, {1., 2., 3., 4., 5.}); test.AddInput<int32_t>("axis", {}, {-3}); test.AddOutput<float>("y", {5}, {1., 3., 6., 10., 15.}); test.Run(OpTester::ExpectResult::kExpectFailure, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _1DTestNegAxis) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddInput<float>("x", {5}, {1., 2., 3., 4., 5.}); test.AddInput<int32_t>("axis", {}, {-1}); test.AddOutput<float>("y", {5}, {1., 3., 6., 10., 15.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _1DTestExclusive) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddAttribute<int64_t>("exclusive", 1); test.AddInput<float>("x", {5}, {1., 2., 3., 4., 5.}); test.AddInput<int32_t>("axis", {}, {0}); test.AddOutput<float>("y", {5}, {0., 1., 3., 6., 10.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } // GH13165. TEST(CumSumTest, _1DTestExclusiveAxisHasSingleValue) { { // forward OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddAttribute<int64_t>("exclusive", 1); test.AddInput<float>("x", {1, 2}, {1., 2.}); test.AddInput<int32_t>("axis", {}, {0}); // dim value of axis is 1 test.AddOutput<float>("y", {1, 2}, {0., 0.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } { // reverse OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddAttribute<int64_t>("exclusive", 1); test.AddAttribute<int64_t>("reverse", 1); test.AddInput<float>("x", {1, 2}, {1., 2.}); test.AddInput<int32_t>("axis", {}, {0}); // dim value of axis is 1 test.AddOutput<float>("y", {1, 2}, {0., 0.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } } TEST(CumSumTest, _2DTestAxis0) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddInput<float>("x", {2, 3}, {1., 2., 3., 4., 5., 6.}); test.AddInput<int32_t>("axis", {}, {0}); test.AddOutput<float>("y", {2, 3}, {1., 2., 3., 5., 7., 9.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _2DTestAxis1) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddInput<float>("x", {2, 3}, {1., 2., 3., 4., 5., 6.}); test.AddInput<int32_t>("axis", {}, {1}); test.AddOutput<float>("y", {2, 3}, {1., 3., 6., 4., 9., 15.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _2DTestExclusiveAxis0) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddAttribute<int64_t>("exclusive", 1); test.AddInput<float>("x", {2, 3}, {1., 2., 3., 4., 5., 6.}); test.AddInput<int32_t>("axis", {}, {0}); test.AddOutput<float>("y", {2, 3}, {0., 0., 0., 1., 2., 3}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _2DTestExclusiveAxis1) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddAttribute<int64_t>("exclusive", 1); test.AddInput<float>("x", {2, 3}, {1., 2., 3., 4., 5., 6.}); test.AddInput<int32_t>("axis", {}, {1}); test.AddOutput<float>("y", {2, 3}, {0., 1., 3., 0., 4., 9.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _3DTestAxis0) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddInput<float>("x", {2, 3, 4}, {1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12., 13., 14., 15., 16., 17., 18., 19., 20., 21., 22., 23., 24.}); test.AddInput<int32_t>("axis", {}, {0}); test.AddOutput<float>("y", {2, 3, 4}, {1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12., 14., 16., 18., 20., 22., 24., 26., 28., 30., 32., 34., 36.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _3DTestAxis1) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddInput<float>("x", {2, 3, 4}, {1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12., 13., 14., 15., 16., 17., 18., 19., 20., 21., 22., 23., 24.}); test.AddInput<int32_t>("axis", {}, {1}); test.AddOutput<float>("y", {2, 3, 4}, {1., 2., 3., 4., 6., 8., 10., 12., 15., 18., 21., 24., 13., 14., 15., 16., 30., 32., 34., 36., 51., 54., 57., 60.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _3DTestAxis2) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddInput<float>("x", {2, 3, 4}, {1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12., 13., 14., 15., 16., 17., 18., 19., 20., 21., 22., 23., 24.}); test.AddInput<int32_t>("axis", {}, {2}); test.AddOutput<float>("y", {2, 3, 4}, {1., 3., 6., 10., 5., 11., 18., 26., 9., 19., 30., 42., 13., 27., 42., 58., 17., 35., 54., 74., 21., 43., 66., 90.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _3DTestAxis0Exclusive) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddAttribute<int64_t>("exclusive", 1); test.AddInput<float>("x", {2, 3, 4}, {1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12., 13., 14., 15., 16., 17., 18., 19., 20., 21., 22., 23., 24.}); test.AddInput<int32_t>("axis", {}, {0}); test.AddOutput<float>("y", {2, 3, 4}, {0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _3DTestAxis1Exclusive) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddAttribute<int64_t>("exclusive", 1); test.AddInput<float>("x", {2, 3, 4}, {1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12., 13., 14., 15., 16., 17., 18., 19., 20., 21., 22., 23., 24.}); test.AddInput<int32_t>("axis", {}, {1}); test.AddOutput<float>("y", {2, 3, 4}, {0., 0., 0., 0., 1., 2., 3., 4., 6., 8., 10., 12., 0., 0., 0., 0., 13., 14., 15., 16., 30., 32., 34., 36.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _3DTestAxis2Exclusive) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddAttribute<int64_t>("exclusive", 1); test.AddInput<float>("x", {2, 3, 4}, {1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12., 13., 14., 15., 16., 17., 18., 19., 20., 21., 22., 23., 24.}); test.AddInput<int32_t>("axis", {}, {2}); test.AddOutput<float>("y", {2, 3, 4}, {0., 1., 3., 6., 0., 5., 11., 18., 0., 9., 19., 30., 0., 13., 27., 42., 0., 17., 35., 54., 0., 21., 43., 66.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _1DTestReverse) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddAttribute<int64_t>("reverse", 1); test.AddInput<float>("x", {5}, {1., 2., 3., 4., 5.}); test.AddInput<int32_t>("axis", {}, {0}); test.AddOutput<float>("y", {5}, {15., 14., 12., 9., 5.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _1DTestReverseExclusive) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddAttribute<int64_t>("exclusive", 1); test.AddAttribute<int64_t>("reverse", 1); test.AddInput<float>("x", {5}, {1., 2., 3., 4., 5.}); test.AddInput<int32_t>("axis", {}, {0}); test.AddOutput<float>("y", {5}, {14., 12., 9., 5., 0.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _3DTestAxis0Reverse) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddAttribute<int64_t>("reverse", 1); test.AddInput<float>("x", {2, 3, 4}, {1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12., 13., 14., 15., 16., 17., 18., 19., 20., 21., 22., 23., 24.}); test.AddInput<int32_t>("axis", {}, {0}); test.AddOutput<float>("y", {2, 3, 4}, {14., 16., 18., 20., 22., 24., 26., 28., 30., 32., 34., 36., 13., 14., 15., 16., 17., 18., 19., 20., 21., 22., 23., 24.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _3DTestAxis1Reverse) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddAttribute<int64_t>("reverse", 1); test.AddInput<float>("x", {2, 3, 4}, {1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12., 13., 14., 15., 16., 17., 18., 19., 20., 21., 22., 23., 24.}); test.AddInput<int32_t>("axis", {}, {1}); test.AddOutput<float>("y", {2, 3, 4}, {15., 18., 21., 24., 14., 16., 18., 20., 9., 10., 11., 12., 51., 54., 57., 60., 38., 40., 42., 44., 21., 22., 23., 24.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _3DTestAxis2Reverse) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddAttribute<int64_t>("reverse", 1); test.AddInput<float>("x", {2, 3, 4}, {1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12., 13., 14., 15., 16., 17., 18., 19., 20., 21., 22., 23., 24.}); test.AddInput<int32_t>("axis", {}, {2}); test.AddOutput<float>("y", {2, 3, 4}, {10., 9., 7., 4., 26., 21., 15., 8., 42., 33., 23., 12., 58., 45., 31., 16., 74., 57., 39., 20., 90., 69., 47., 24.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _3DTestAxis0ReverseExclusive) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddAttribute<int64_t>("reverse", 1); test.AddAttribute<int64_t>("exclusive", 1); test.AddInput<float>("x", {2, 3, 4}, {1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12., 13., 14., 15., 16., 17., 18., 19., 20., 21., 22., 23., 24.}); test.AddInput<int32_t>("axis", {}, {0}); test.AddOutput<float>("y", {2, 3, 4}, {13., 14., 15., 16., 17., 18., 19., 20., 21., 22., 23., 24., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _3DTestAxis1ReverseExclusive) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddAttribute<int64_t>("reverse", 1); test.AddAttribute<int64_t>("exclusive", 1); test.AddInput<float>("x", {2, 3, 4}, {1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12., 13., 14., 15., 16., 17., 18., 19., 20., 21., 22., 23., 24.}); test.AddInput<int32_t>("axis", {}, {1}); test.AddOutput<float>("y", {2, 3, 4}, {14., 16., 18., 20., 9., 10., 11., 12., 0., 0., 0., 0., 38., 40., 42., 44., 21., 22., 23., 24., 0., 0., 0., 0.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _3DTestAxis2ReverseExclusive) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddAttribute<int64_t>("reverse", 1); test.AddAttribute<int64_t>("exclusive", 1); test.AddInput<float>("x", {2, 3, 4}, {1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12., 13., 14., 15., 16., 17., 18., 19., 20., 21., 22., 23., 24.}); test.AddInput<int32_t>("axis", {}, {2}); test.AddOutput<float>("y", {2, 3, 4}, {9., 7., 4., 0., 21., 15., 8., 0., 33., 23., 12., 0., 45., 31., 16., 0., 57., 39., 20., 0., 69., 47., 24., 0.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _1DTestInt32) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddInput<int32_t>("x", {5}, {1, 2, 3, 4, 5}); test.AddInput<int32_t>("axis", {}, {0}); test.AddOutput<int32_t>("y", {5}, {1, 3, 6, 10, 15}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _1DTestInt64) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddInput<int64_t>("x", {5}, {1, 2, 3, 4, 5}); test.AddInput<int32_t>("axis", {}, {0}); test.AddOutput<int64_t>("y", {5}, {1, 3, 6, 10, 15}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _1DTestdouble) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddInput<double>("x", {5}, {1., 2., 3., 4., 5.}); test.AddInput<int32_t>("axis", {}, {0}); test.AddOutput<double>("y", {5}, {1., 3., 6., 10., 15.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } TEST(CumSumTest, _1DTestdouble_WithInt64Axis) { OpTester test("CumSum", 11, onnxruntime::kOnnxDomain); test.AddInput<double>("x", {5}, {1., 2., 3., 4., 5.}); test.AddInput<int64_t>("axis", {}, {0}); test.AddOutput<double>("y", {5}, {1., 3., 6., 10., 15.}); test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider}); } } // namespace test } // namespace onnxruntime
[ "noreply@github.com" ]
microsoft.noreply@github.com
15872a7a802d4a773324b89e8740d4663ae06609
9a3b9d80afd88e1fa9a24303877d6e130ce22702
/src/Providers/UNIXProviders/EndpointInArea/UNIX_EndpointInArea_HPUX.hxx
8d82a24fbf885c721fd223c41ecd23d37455d439
[ "MIT" ]
permissive
brunolauze/openpegasus-providers
3244b76d075bc66a77e4ed135893437a66dd769f
f24c56acab2c4c210a8d165bb499cd1b3a12f222
refs/heads/master
2020-04-17T04:27:14.970917
2015-01-04T22:08:09
2015-01-04T22:08:09
19,707,296
0
0
null
null
null
null
UTF-8
C++
false
false
1,812
hxx
//%LICENSE//////////////////////////////////////////////////////////////// // // Licensed to The Open Group (TOG) under one or more contributor license // agreements. Refer to the OpenPegasusNOTICE.txt file distributed with // this work for additional information regarding copyright ownership. // Each contributor licenses this file to you under the OpenPegasus Open // Source License; you may not use this file except in compliance with the // License. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // ////////////////////////////////////////////////////////////////////////// // //%///////////////////////////////////////////////////////////////////////// #ifdef PEGASUS_OS_HPUX #ifndef __UNIX_ENDPOINTINAREA_PRIVATE_H #define __UNIX_ENDPOINTINAREA_PRIVATE_H #endif #endif
[ "brunolauze@msn.com" ]
brunolauze@msn.com
53344d2f14e0db041a2f96d5b90f6594b13f0896
ee797c5b1e2b0fb739b43fe5a8c64bbb6e9a8ee7
/src/rpi_video.cpp
178a45575b29e60689e89a3af72fd8b58f0b91bf
[ "MIT" ]
permissive
GuiPinto/aminogfx-gl
ebb5abe92e2c5cad460276038b4ec8736855e149
6cb0f76ed0f9b7c94f591b0ca5272c18c07b649e
refs/heads/master
2020-04-30T18:38:19.178544
2018-10-04T18:04:05
2018-10-04T18:04:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
52,243
cpp
#include "rpi_video.h" #include "rpi.h" #include "bcm_host.h" #include "interface/vchiq_arm/vchiq_if.h" #include <linux/input.h> #include <dirent.h> #include <stdio.h> #include <semaphore.h> #include <sstream> #define DEBUG_OMX false #define DEBUG_OMX_READ false #define DEBUG_OMX_BUFFER false #define DEBUG_OMX_ERRORS true #define DEBUG_VIDEO_TIMING false /* * Buffers. * * 1) video 1080p@30, display 1080p@60, high bitrate * * - 3 buffers: 27 fps * - 4 buffers: 27 fps * - 8 buffers: 27 fps (no improvement) * * Summary: buffers do not influence playback performance */ #define OMX_EGL_BUFFERS 4 // // AminoOmxVideoPlayer // AminoOmxVideoPlayer::AminoOmxVideoPlayer(AminoTexture *texture, AminoVideo *video): AminoVideoPlayer(texture, video) { //init memory buffers memset(list, 0, sizeof list); memset(tunnel, 0, sizeof tunnel); //semaphore int res = uv_sem_init(&pauseSem, 0); int res2 = uv_sem_init(&textureSem, 0); assert(res == 0); assert(res2 == 0); //egl eglImages = new EGLImageKHR[OMX_EGL_BUFFERS]; eglBuffers = new OMX_BUFFERHEADERTYPE*[OMX_EGL_BUFFERS]; for (int i = 0; i < OMX_EGL_BUFFERS; i++) { eglImages[i] = EGL_NO_IMAGE_KHR; eglBuffers[i] = NULL; if (i > 1) { textureNew.push(i); } } //locks uv_mutex_init(&bufferLock); uv_mutex_init(&destroyLock); } AminoOmxVideoPlayer::~AminoOmxVideoPlayer() { destroyAminoOmxVideoPlayer(); //semaphore uv_sem_destroy(&pauseSem); uv_sem_destroy(&textureSem); //eglImages delete[] eglImages; delete[] eglBuffers; //locks uv_mutex_destroy(&bufferLock); uv_mutex_destroy(&destroyLock); } /** * Initialize the video player. */ void AminoOmxVideoPlayer::init() { //we are on the OpenGL thread if (DEBUG_OMX) { printf("-> init OMX video player\n"); } //stream assert(stream); if (!stream->init()) { lastError = stream->getLastError(); delete stream; stream = NULL; handleInitDone(false); return; } //check format if (!stream->isH264()) { if (!stream->getDemuxer()) { lastError = "unsupported format"; delete stream; stream = NULL; handleInitDone(false); } softwareDecoding = true; threadRunning = true; #ifdef USE_OMX_VCOS_THREAD VCOS_STATUS_T res = vcos_thread_create(&thread, "decoder thread", NULL, &decoderThread, this); assert(res == VCOS_SUCCESS); #else int res = uv_thread_create(&thread, decoderThread, this); assert(res == 0); #endif return; } //create OMX thread threadRunning = true; #ifdef USE_OMX_VCOS_THREAD VCOS_STATUS_T res = vcos_thread_create(&thread, "OMX thread", NULL, &omxThread, this); assert(res == VCOS_SUCCESS); #else int res = uv_thread_create(&thread, omxThread, this); assert(res == 0); #endif } /** * Init video stream (on main stream). */ bool AminoOmxVideoPlayer::initStream() { if (DEBUG_OMX) { printf("-> init stream\n"); } assert(video); assert(!stream); stream = new VideoFileStream(video->getPlaybackSource(), video->getPlaybackOptions()); return stream != NULL; } /** * Destroy placer. */ void AminoOmxVideoPlayer::destroy() { if (destroyed) { return; } //instance destroyAminoOmxVideoPlayer(); //base class AminoVideoPlayer::destroy(); } /** * Destroy OMX player instance. */ void AminoOmxVideoPlayer::destroyAminoOmxVideoPlayer() { //stop playback stopOmx(); //free EGL texture AminoGfxRPi *gfx = static_cast<AminoGfxRPi *>(texture->getEventHandler()); assert(gfx); for (int i = 0; i < OMX_EGL_BUFFERS; i++) { EGLImageKHR eglImage = eglImages[i]; if (eglImage != EGL_NO_IMAGE_KHR) { gfx->destroyEGLImage(eglImage); eglImages[i] = EGL_NO_IMAGE_KHR; } } } /** * Close the stream. */ void AminoOmxVideoPlayer::closeStream() { if (stream) { delete stream; stream = NULL; } } /** * OMX thread. */ void* AminoOmxVideoPlayer::omxThread(void *arg) { AminoOmxVideoPlayer *player = static_cast<AminoOmxVideoPlayer *>(arg); assert(player); //init OMX player->initOmx(); //close stream player->closeStream(); //done player->threadRunning = false; return NULL; } /** * OMX buffer callback. * * Note: egl_render buffer output buffer was filled. */ void AminoOmxVideoPlayer::handleFillBufferDone(void *data, COMPONENT_T *comp) { AminoOmxVideoPlayer *player = static_cast<AminoOmxVideoPlayer *>(data); assert(player); if (DEBUG_OMX_BUFFER) { printf("OMX: handleFillBufferDone() %p\n", comp); } //check state if (player->omxDestroyed) { //Note: last call happens while destroying OMX instance! return; } //fill the next buffer (and write to texture) uv_mutex_lock(&player->bufferLock); //debug //printf("-> filled: %i\n", player->textureFilling); player->textureReady.push(player->textureFilling); if (!player->textureNew.empty()) { //use new player->textureFilling = player->textureNew.front(); player->textureNew.pop(); } else { //stop filling player->textureFilling = -1; //debug //printf("-> buffering paused\n"); } uv_mutex_unlock(&player->bufferLock); player->omxFillNextEglBuffer(); } /** * Get an OMX error as string. */ std::string AminoOmxVideoPlayer::getOmxError(OMX_S32 err) { switch (err) { case OMX_ErrorNone: //No error. return "OMX_ErrorNone"; case OMX_ErrorInsufficientResources: //There were insufficient resources to perform the requested operation. return "OMX_ErrorInsufficientResources"; case OMX_ErrorUndefined: //There was an error, but the cause of the error could not be determined. return "OMX_ErrorUndefined"; case OMX_ErrorInvalidComponentName: //The component name string was not valid. return "OMX_ErrorInvalidComponentName"; case OMX_ErrorComponentNotFound: //No component with the specified name string was found. return "OMX_ErrorComponentNotFound"; case OMX_ErrorInvalidComponent: //The component specified did not have a "OMX_ComponentInit" or "OMX_ComponentDeInit entry point. return "OMX_ErrorInvalidComponent"; case OMX_ErrorBadParameter: //One or more parameters were not valid. return "OMX_ErrorBadParameter"; case OMX_ErrorNotImplemented: //The requested function is not implemented. return "OMX_ErrorNotImplemented"; case OMX_ErrorUnderflow: //The buffer was emptied before the next buffer was ready. return "OMX_ErrorUnderflow"; case OMX_ErrorOverflow: //The buffer was not available when it was needed. return "OMX_ErrorOverflow"; case OMX_ErrorHardware: //The hardware failed to respond as expected. return "OMX_ErrorHardware"; case OMX_ErrorInvalidState: //The component is in the state OMX_StateInvalid. return "OMX_ErrorInvalidState"; case OMX_ErrorStreamCorrupt: //Stream is found to be corrupt. return "OMX_ErrorStreamCorrupt"; case OMX_ErrorPortsNotCompatible: //Ports being connected are not compatible. return "OMX_ErrorPortsNotCompatible"; case OMX_ErrorResourcesLost: //Resources allocated to an idle component have been lost resulting in the component returning to the loaded state. return "OMX_ErrorResourcesLost"; case OMX_ErrorNoMore: //No more indicies can be enumerated. return "OMX_ErrorNoMore"; case OMX_ErrorVersionMismatch: //The component detected a version mismatch. return "OMX_ErrorVersionMismatch"; case OMX_ErrorNotReady: //The component is not ready to return data at this time. return "OMX_ErrorNotReady"; case OMX_ErrorTimeout: //There was a timeout that occurred. return "OMX_ErrorTimeout"; case OMX_ErrorSameState: //This error occurs when trying to transition into the state you are already in. return "OMX_ErrorSameState"; case OMX_ErrorResourcesPreempted: //Resources allocated to an executing or paused component have been preempted, causing the component to return to the idle state. return "OMX_ErrorResourcesPreempted"; case OMX_ErrorPortUnresponsiveDuringAllocation: //A non-supplier port sends this error to the IL client (via the EventHandler callback) during the allocation of buffers (on a transition from the LOADED to the IDLE state or on a port restart) when it deems that it has waited an unusually long time for the supplier to send it an allocated buffer via a UseBuffer call. return "OMX_ErrorPortUnresponsiveDuringAllocation"; case OMX_ErrorPortUnresponsiveDuringDeallocation: //A non-supplier port sends this error to the IL client (via the EventHandler callback) during the deallocation of buffers (on a transition from the IDLE to LOADED state or on a port stop) when it deems that it has waited an unusually long time for the supplier to request the deallocation of a buffer header via a FreeBuffer call. return "OMX_ErrorPortUnresponsiveDuringDeallocation"; case OMX_ErrorPortUnresponsiveDuringStop: //A supplier port sends this error to the IL client (via the EventHandler callback) during the stopping of a port (either on a transition from the IDLE to LOADED state or a port stop) when it deems that it has waited an unusually long time for the non-supplier to return a buffer via an EmptyThisBuffer or FillThisBuffer call. return "OMX_ErrorPortUnresponsiveDuringStop"; case OMX_ErrorIncorrectStateTransition: //Attempting a state transtion that is not allowed. return "OMX_ErrorIncorrectStateTransition"; case OMX_ErrorIncorrectStateOperation: //Attempting a command that is not allowed during the present state. return "OMX_ErrorIncorrectStateOperation"; case OMX_ErrorUnsupportedSetting: //The values encapsulated in the parameter or config structure are not supported. return "OMX_ErrorUnsupportedSetting"; case OMX_ErrorUnsupportedIndex: //The parameter or config indicated by the given index is not supported. return "OMX_ErrorUnsupportedIndex"; case OMX_ErrorBadPortIndex: //The port index supplied is incorrect. return "OMX_ErrorBadPortIndex"; case OMX_ErrorPortUnpopulated: //The port has lost one or more of its buffers and it thus unpopulated. return "OMX_ErrorPortUnpopulated"; case OMX_ErrorComponentSuspended: //Component suspended due to temporary loss of resources. return "OMX_ErrorComponentSuspended"; case OMX_ErrorDynamicResourcesUnavailable: //Component suspended due to an inability to acquire dynamic resources. return "OMX_ErrorDynamicResourcesUnavailable"; case OMX_ErrorMbErrorsInFrame: //When the macroblock error reporting is enabled the component returns new error for every frame that has errors. return "OMX_ErrorMbErrorsInFrame"; case OMX_ErrorFormatNotDetected: //A component reports this error when it cannot parse or determine the format of an input stream. return "OMX_ErrorFormatNotDetected"; case OMX_ErrorContentPipeOpenFailed: //The content open operation failed. return "OMX_ErrorContentPipeOpenFailed"; case OMX_ErrorContentPipeCreationFailed: //The content creation operation failed. return "OMX_ErrorContentPipeCreationFailed"; case OMX_ErrorSeperateTablesUsed: //Separate table information is being used. return "OMX_ErrorSeperateTablesUsed"; case OMX_ErrorTunnelingUnsupported: //Tunneling is unsupported by the component. return "OMX_ErrorTunnelingUnsupported"; //OMX_ErrorKhronosExtensions 0x8F000000 (Reserved region for introducing Khronos Standard Extensions.) //OMX_ErrorVendorStartUnused 0x90000000 (Reserved region for introducing Vendor Extensions) case OMX_ErrorDiskFull: //Disk Full error. return "OMX_ErrorDiskFull"; case OMX_ErrorMaxFileSize: //Max file size is reached. return "OMX_ErrorMaxFileSize"; case OMX_ErrorDrmUnauthorised: //Unauthorised to play a DRM protected file. return "OMX_ErrorDrmUnauthorised"; case OMX_ErrorDrmExpired: //The DRM protected file has expired. return "OMX_ErrorDrmExpired"; case OMX_ErrorDrmGeneral: //Some other DRM library error. return "OMX_ErrorDrmGeneral"; } //unknown error std::stringstream ss; ss << "unknown OMX error: 0x" << std::hex << err; return ss.str(); } /** * IL client reported errors. */ void AminoOmxVideoPlayer::omxErrorHandler(void *userData, COMPONENT_T *comp, OMX_U32 data) { //see http://maemo.org/api_refs/5.0/beta/libomxil-bellagio/_o_m_x___core_8h.html //filter harmless errors OMX_S32 err = data; if (err == OMX_ErrorSameState) { return; } //output std::string error = getOmxError(err); fprintf(stderr, "OMX error: %s\n", error.c_str()); } /** * Initialize OpenMax. */ bool AminoOmxVideoPlayer::initOmx() { int status = 0; COMPONENT_T *video_decode = NULL; COMPONENT_T *clock = NULL; COMPONENT_T *video_scheduler = NULL; if (DEBUG_OMX) { printf("-> init OMX\n"); } //VCOS log statements (Note: VCOS_LOG_CATEGORY has to be defined first) //vcos_log_set_level(VCOS_LOG_CATEGORY, VCOS_LOG_TRACE); //init il client client = ilclient_init(); if (!client) { lastError = "could not initialize ilclient"; status = -1; goto end; } //set error handler if (DEBUG_OMX_ERRORS) { ilclient_set_error_callback(client, omxErrorHandler, this); } //set EOS callback //TODO check if call works as expected //ilclient_set_eos_callback(handle, omxEosHandler, NULL); //init OMX if (OMX_Init() != OMX_ErrorNone) { lastError = "could not initialize OMX"; status = -2; goto end; } //buffer callback ilclient_set_fill_buffer_done_callback(client, handleFillBufferDone, this); //create video_decode (input buffer) if (ilclient_create_component(client, &video_decode, "video_decode", (ILCLIENT_CREATE_FLAGS_T)(ILCLIENT_DISABLE_ALL_PORTS | ILCLIENT_ENABLE_INPUT_BUFFERS)) != 0) { lastError = "video_decode error"; status = -10; goto end; } list[0] = video_decode; //create egl_render (output buffer) if (ilclient_create_component(client, &egl_render, "egl_render", (ILCLIENT_CREATE_FLAGS_T)(ILCLIENT_DISABLE_ALL_PORTS | ILCLIENT_ENABLE_OUTPUT_BUFFERS)) != 0) { lastError = "egl_render error"; status = -11; goto end; } list[1] = egl_render; //create clock if (ilclient_create_component(client, &clock, "clock", (ILCLIENT_CREATE_FLAGS_T)ILCLIENT_DISABLE_ALL_PORTS) != 0) { lastError = "clock error"; status = -12; goto end; } list[2] = clock; //config clock (waiting for start time) OMX_TIME_CONFIG_CLOCKSTATETYPE cstate; memset(&cstate, 0, sizeof cstate); cstate.nSize = sizeof cstate; cstate.nVersion.nVersion = OMX_VERSION; cstate.eState = OMX_TIME_ClockStateWaitingForStartTime; cstate.nWaitMask = OMX_CLOCKPORT0; /* cstate.nOffset.nLowPart = -200 * 1000; //200 ms cstate.nOffset.nHighPart = 0; */ if (OMX_SetParameter(ILC_GET_HANDLE(clock), OMX_IndexConfigTimeClockState, &cstate) != OMX_ErrorNone) { lastError = "could not set clock"; status = -13; goto end; } //HDMI sync (Note: not well documented; seeing no effect, probably not needed) OMX_CONFIG_LATENCYTARGETTYPE lt; memset(&lt, 0, sizeof lt); lt.nSize = sizeof lt; lt.nVersion.nVersion = OMX_VERSION; lt.nPortIndex = OMX_ALL; lt.bEnabled = OMX_TRUE; lt.nFilter = 10; lt.nTarget = 0; lt.nShift = 3; lt.nSpeedFactor = -60; lt.nInterFactor = 100; lt.nAdjCap = 100; /* lt.nPortIndex = OMX_ALL; lt.bEnabled = OMX_TRUE; lt.nFilter = 2; lt.nTarget = 4000; lt.nShift = 3; lt.nSpeedFactor = -135; lt.nInterFactor = 500; lt.nAdjCap = 20; */ if (OMX_SetConfig(ILC_GET_HANDLE(clock), OMX_IndexConfigLatencyTarget, &lt) != OMX_ErrorNone) { lastError = "could not set clock latency"; status = -14; goto end; } //create video_scheduler if (ilclient_create_component(client, &video_scheduler, "video_scheduler", (ILCLIENT_CREATE_FLAGS_T)ILCLIENT_DISABLE_ALL_PORTS) != 0) { lastError = "video_scheduler error"; status = -15; goto end; } list[3] = video_scheduler; //set tunnels (source & sink ports) set_tunnel(tunnel, video_decode, 131, video_scheduler, 10); set_tunnel(tunnel + 1, video_scheduler, 11, egl_render, 220); set_tunnel(tunnel + 2, clock, 80, video_scheduler, 12); //setup clock tunnel first if (ilclient_setup_tunnel(tunnel + 2, 0, 0) != 0) { lastError = "tunnel setup error"; status = -16; goto end; } //video reference clock OMX_TIME_CONFIG_ACTIVEREFCLOCKTYPE arct; memset(&arct, 0, sizeof arct); arct.nSize = sizeof arct; arct.nVersion.nVersion = OMX_VERSION; arct.eClock = OMX_TIME_RefClockVideo; if (OMX_SetConfig(ILC_GET_HANDLE(clock), OMX_IndexConfigTimeActiveRefClock, &arct) != OMX_ErrorNone) { lastError = "could not set reference clock type"; status = -160; goto end; } //set speed setOmxSpeed(1 << 16); //switch clock to executing state ilclient_change_component_state(clock, OMX_StateExecuting); //switch video decoder to idle state ilclient_change_component_state(video_decode, OMX_StateIdle); //video format OMX_VIDEO_PARAM_PORTFORMATTYPE format; memset(&format, 0, sizeof format); format.nSize = sizeof format; format.nVersion.nVersion = OMX_VERSION; format.nPortIndex = 130; //input format.eCompressionFormat = OMX_VIDEO_CodingAVC; //H264 format.xFramerate = getOmxFramerate(); /* * TODO more formats * * - OMX_VIDEO_CodingMPEG4 non-H264 MP4 formats (H263, DivX, ...) * - OMX_VIDEO_CodingMPEG2 needs license * - OMX_VIDEO_CodingTheora Theora */ if (OMX_SetParameter(ILC_GET_HANDLE(video_decode), OMX_IndexParamVideoPortFormat, &format) != OMX_ErrorNone) { lastError = "could not set video format"; status = -17; goto end; } //show video_decode buffer sizes /* printf("video_decode input buffers:\n"); showOmxBufferInfo(video_decode, 130); //buffers=20 minBuffer=1 bufferSize=81920) printf("video_decode output buffers:\n"); showOmxBufferInfo(video_decode, 131); //buffers=1 minBuffer=1 bufferSize=115200 */ //free extra buffers OMX_PARAM_U32TYPE eb; memset(&eb, 0, sizeof eb); eb.nSize = sizeof eb; eb.nVersion.nVersion = OMX_VERSION; eb.nU32 = 0; if (OMX_SetParameter(ILC_GET_HANDLE(video_decode), OMX_IndexParamBrcmExtraBuffers, &eb) != OMX_ErrorNone) { lastError = "could not set extra buffers"; status = -172; goto end; } //create video decode input buffers if (ilclient_enable_port_buffers(video_decode, 130, NULL, NULL, NULL) != 0) { lastError = "video decode port error"; status = -18; goto end; } //frame validation (see https://www.raspberrypi.org/forums/viewtopic.php?f=70&t=15983) OMX_PARAM_BRCMVIDEODECODEERRORCONCEALMENTTYPE ec; memset(&ec, 0, sizeof ec); ec.nSize = sizeof ec; ec.nVersion.nVersion = OMX_VERSION; ec.bStartWithValidFrame = OMX_FALSE; if (OMX_SetParameter(ILC_GET_HANDLE(video_decode), OMX_IndexParamBrcmVideoDecodeErrorConcealment, &ec) != OMX_ErrorNone) { lastError = "error concealment type"; status = -19; goto end; } //NALU (see https://www.khronos.org/registry/OpenMAX-IL/extensions/KHR/OpenMAX_IL_1_1_2_Extension%20NAL%20Unit%20Packaging.pdf) if (stream->hasH264NaluStartCodes()) { if (DEBUG_OMX) { printf("-> set OMX_NaluFormatStartCodes\n"); } OMX_NALSTREAMFORMATTYPE nsft; memset(&nsft, 0, sizeof nsft); nsft.nSize = sizeof nsft; nsft.nVersion.nVersion = OMX_VERSION; nsft.nPortIndex = 130; //input nsft.eNaluFormat = OMX_NaluFormatStartCodes; if (OMX_SetParameter(ILC_GET_HANDLE(video_decode), (OMX_INDEXTYPE)OMX_IndexParamNalStreamFormatSelect, &nsft) != OMX_ErrorNone) { lastError = "NAL selection error"; status = -20; goto end; } } //debug if (DEBUG_OMX) { printf("OMX init done\n"); } //playback status = playOmx(); //done end: //debug if (DEBUG_OMX) { printf("OMX done status: %i\n", status); } //check status if (status != 0) { //add error code std::ostringstream ss; ss << lastError << " (" << status << ")"; lastError = ss.str(); //report error if (!initDone) { handleInitDone(false); } else { if (doStop) { handlePlaybackStopped(); } else { handlePlaybackError(); } } } uv_mutex_lock(&destroyLock); destroyOmx(); uv_mutex_unlock(&destroyLock); if (status == 0) { if (!initDone) { handleInitDone(true); } if (doStop) { handlePlaybackStopped(); } else { handlePlaybackDone(); } } return status == 0; } /** * OMX playback loop. */ int AminoOmxVideoPlayer::playOmx() { if (DEBUG_OMX) { printf("playOmx()\n"); } COMPONENT_T *video_decode = list[0]; COMPONENT_T *video_scheduler = list[3]; //start decoding OMX_BUFFERHEADERTYPE *buf; bool port_settings_changed = false; bool firstPacket = true; int res = 0; ilclient_change_component_state(video_decode, OMX_StateExecuting); /* * Works: * * - Digoo M1Q * - h264 (Main), yuv420p, 1280x960 * - RTSP Bigbuckbunny * - h264 (Constrained Baseline), yuv420p, 320x180 * - Note: playback issues seen on RPi and Mac, other RTSP examples work fine * - M4V * - h264 (Constrained Baseline), yuv420p, 480x270 * - HTTPS * - h264 (Main), yuv420p, 1920x1080 * */ //data loop while ((buf = ilclient_get_input_buffer(video_decode, 130, 1)) != NULL) { if (DEBUG_OMX_READ) { printf("-> got input buffer\n"); } //check stop if (doStop) { break; } //check pause (prevent reading while paused; might not be called) if (doPause) { if (DEBUG_OMX) { printf("pausing OMX thread\n"); } //wait doPause = false; //signal we are waiting uv_sem_wait(&pauseSem); if (doStop) { break; } } //feed data and wait until we get port settings changed unsigned char *dest = buf->pBuffer; //read from file omx_metadata_t omxData; unsigned int data_len = stream->read(dest, buf->nAllocLen, omxData); //check end if (data_len == 0 && stream->endOfStream()) { //check if stream contained video data if (!ready) { //case: no video in stream lastError = "stream without valid video data"; res = -30; break; } //loop if (loop > 0) { loop--; } if (loop == 0) { //end playback if (DEBUG_OMX) { printf("OMX: end playback (EOS)\n"); } break; } if (DEBUG_OMX) { printf("OMX: rewind stream\n"); } if (!stream->rewind()) { //could not rewind -> end playback if (DEBUG_OMX) { printf("-> rewind failed!\n"); } break; } //Note: media time continues handleRewind(); //read next block data_len = stream->read(dest, buf->nAllocLen, omxData); } if (DEBUG_OMX_READ) { printf("OMX: data read %i\n", (int)data_len); } //handle decoder output port settings changes if (!port_settings_changed && ((data_len > 0 && ilclient_remove_event(video_decode, OMX_EventPortSettingsChanged, 131, 0, 0, 1) == 0) || (data_len == 0 && ilclient_wait_for_event(video_decode, OMX_EventPortSettingsChanged, 131, 0, 0, 1, ILCLIENT_EVENT_ERROR | ILCLIENT_PARAMETER_CHANGED, 10000) == 0))) { //process once port_settings_changed = true; if (DEBUG_OMX) { printf("OMX: egl_render setup\n"); } //setup video_scheduler tunnel if (ilclient_setup_tunnel(tunnel, 0, 0) != 0) { lastError = "video tunnel setup error"; res = -31; break; } //debug video_scheduler buffers /* printf("video_scheduler buffers:\n"); showOmxBufferInfo(video_scheduler, 10); //buffers=0 minBuffer=0 bufferSize=3133440 showOmxBufferInfo(video_scheduler, 11); //buffers=1 minBuffer=1 bufferSize=3133440 showOmxBufferInfo(video_scheduler, 12); //buffers=1 minBuffer=1 bufferSize=48 */ //start scheduler ilclient_change_component_state(video_scheduler, OMX_StateExecuting); //now setup tunnel to egl_render if (ilclient_setup_tunnel(tunnel + 1, 0, 1000) != 0) { lastError = "egl_render tunnel setup error"; res = -32; break; } //set egl_render to idle ilclient_change_component_state(egl_render, OMX_StateIdle); //get video size OMX_PARAM_PORTDEFINITIONTYPE portdef; memset(&portdef, 0, sizeof portdef); portdef.nSize = sizeof portdef; portdef.nVersion.nVersion = OMX_VERSION; portdef.nPortIndex = 131; //output buffer if (OMX_GetParameter(ILC_GET_HANDLE(video_decode), OMX_IndexParamPortDefinition, &portdef) != OMX_ErrorNone) { lastError = "could not get video size"; res = -33; break; } videoW = portdef.format.video.nFrameWidth; videoH = portdef.format.video.nFrameHeight; if (DEBUG_OMX) { //Note: buffer count not set. double fps = portdef.format.video.xFramerate / (float)(1 << 16); printf("video: %dx%d@%.2f bitrate=%i minBuffers=%i buffer=%i bufferSize=%i\n", videoW, videoH, fps, (int)portdef.format.video.nBitrate, portdef.nBufferCountMin, portdef.nBufferCountActual, portdef.nBufferSize); } //show egl_render buffer sizes /* printf("egl_render input buffers:\n"); //buffers=0 minBuffer=0 bufferSize=3133440 showOmxBufferInfo(egl_render, 220); printf("egl_render output buffers:\n"); //buffers=1 minBuffer=1 bufferSize=0 showOmxBufferInfo(egl_render, 221); */ //set egl render buffers (max 8; https://github.com/raspberrypi/firmware/issues/718) setOmxBufferCount(egl_render, 221, OMX_EGL_BUFFERS); //do not discard input buffers (needed to get smooth playback) OMX_CONFIG_PORTBOOLEANTYPE dm; memset(&dm, 0, sizeof dm); dm.nSize = sizeof dm; dm.nVersion.nVersion = OMX_VERSION; dm.nPortIndex = 220; //input buffer dm.bEnabled = OMX_FALSE; if (OMX_SetParameter(ILC_GET_HANDLE(egl_render), OMX_IndexParamBrcmVideoEGLRenderDiscardMode, &dm) != OMX_ErrorNone) { lastError = "could not disable discard mode"; res = -330; break; } //switch to renderer thread (switches to playing state) texture->initVideoTexture(); //wait for texture uv_sem_wait(&textureSem); if (!eglImagesReady || doStop) { //failed to create texture handleInitDone(false); break; } //setup OMX texture if (!setupOmxTexture()) { res = -34; break; } //texture ready handleInitDone(true); } if (!data_len) { //read error occured lastError = "IO error"; res = -40; break; } //empty buffer buf->nFilledLen = data_len; buf->nOffset = 0; buf->nFlags = omxData.flags; if (omxData.timeStamp) { //in microseconds buf->nTimeStamp.nLowPart = omxData.timeStamp; buf->nTimeStamp.nHighPart = omxData.timeStamp >> 32; } //debug (Note: in presentation time order) //printf("timestamp: %i %i\n", buf->nTimeStamp.nHighPart, buf->nTimeStamp.nLowPart); if (firstPacket && (omxData.flags & OMX_BUFFERFLAG_CODECCONFIG) != OMX_BUFFERFLAG_CODECCONFIG) { //first packet (contains start time) buf->nFlags |= OMX_BUFFERFLAG_STARTTIME; firstPacket = false; } else { //video packet if (omxData.timeStamp) { //Note: time is always in PTS (DTS not used) //buf->nFlags |= OMX_BUFFERFLAG_TIME_IS_DTS; } else { buf->nFlags |= OMX_BUFFERFLAG_TIME_UNKNOWN; } } if (OMX_EmptyThisBuffer(ILC_GET_HANDLE(video_decode), buf) != OMX_ErrorNone) { lastError = "could not empty buffer"; res = -41; break; } if (DEBUG_OMX_READ) { printf("-> waiting for next input buffer\n"); } } //end of feeding loop (end of stream case) if (DEBUG_OMX) { printf("-> end of OMX data loop\n"); } //send end of stream (if not aborted) if (buf) { buf->nFilledLen = 0; buf->nFlags = OMX_BUFFERFLAG_TIME_UNKNOWN | OMX_BUFFERFLAG_EOS; if (OMX_EmptyThisBuffer(ILC_GET_HANDLE(video_decode), buf) != OMX_ErrorNone) { lastError = "could not empty buffer (2)"; res = -50; } if (DEBUG_OMX) { printf("OMX: decoder EOS\n"); } //wait for EOS from renderer //Note: the following code is not working, getting a timeout after 10 s! //ilclient_wait_for_event(egl_render, OMX_EventBufferFlag, 220, 0, OMX_BUFFERFLAG_EOS, 0, ILCLIENT_BUFFER_FLAG_EOS, 10000); // -> monitor buffer update (last image was successfully shown) while (bufferFilled && !doStop && res == 0) { //wait 100 ms (enough time to show the next frame) bufferFilled = false; usleep(100 * 1000); } if (DEBUG_OMX) { printf("OMX: renderer EOS\n"); } } //need to flush the renderer to allow video_decode to disable its input port if (DEBUG_OMX) { printf("OMX: flushing tunnels\n"); } ilclient_flush_tunnels(tunnel, 0); return res; } /** * Display buffer details on given port of component. */ bool AminoOmxVideoPlayer::showOmxBufferInfo(COMPONENT_T *comp, int port) { OMX_PARAM_PORTDEFINITIONTYPE portdef; memset(&portdef, 0, sizeof portdef); portdef.nSize = sizeof portdef; portdef.nVersion.nVersion = OMX_VERSION; portdef.nPortIndex = port; if (OMX_GetParameter(ILC_GET_HANDLE(comp), OMX_IndexParamPortDefinition, &portdef) != OMX_ErrorNone) { printf("-> Could not get port definition!\n"); return false; } //show printf("-> buffers=%i minBuffer=%i bufferSize=%i\n", portdef.nBufferCountActual, portdef.nBufferCountMin, portdef.nBufferSize); return true; } /** * Set the buffer count. */ bool AminoOmxVideoPlayer::setOmxBufferCount(COMPONENT_T *comp, int port, int count) { OMX_PARAM_PORTDEFINITIONTYPE portdef; memset(&portdef, 0, sizeof portdef); portdef.nSize = sizeof portdef; portdef.nVersion.nVersion = OMX_VERSION; portdef.nPortIndex = port; //get current settings if (OMX_GetParameter(ILC_GET_HANDLE(comp), OMX_IndexParamPortDefinition, &portdef) != OMX_ErrorNone) { printf("-> Could not get port definition!\n"); return false; } //change values portdef.nPortIndex = port; portdef.nBufferCountActual = count; if (OMX_SetParameter(ILC_GET_HANDLE(comp), OMX_IndexParamPortDefinition, &portdef) != OMX_ErrorNone) { printf("-> Could not set port definition!\n"); return false; } return true; } /** * Stops the OMX playback thread (or software decoding). */ void AminoOmxVideoPlayer::stopOmx() { uv_mutex_lock(&destroyLock); if (!omxDestroyed) { if (DEBUG_OMX) { printf("stopping OMX\n"); } doStop = true; if (paused && !doPause) { //resume thread uv_sem_post(&pauseSem); uv_sem_post(&textureSem); } else { doPause = false; } //prevent deadlock COMPONENT_T *video_decode = list[0]; ilclient_stop_input_buffering(video_decode); uv_mutex_unlock(&destroyLock); //wait for thread if (threadRunning) { if (DEBUG_OMX) { printf("waiting for OMX thread to end\n"); } #ifdef USE_OMX_VCOS_THREAD //VCOS vcos_thread_join(&thread, NULL); #else int res = uv_thread_join(&thread); assert(res == 0); #endif } } else { uv_mutex_unlock(&destroyLock); } } /** * Needed OpenGL textures. */ int AminoOmxVideoPlayer::getNeededTextures() { return softwareDecoding ? 1:OMX_EGL_BUFFERS; } /** * Init video texture on OpenGL thread. */ void AminoOmxVideoPlayer::initVideoTexture() { if (DEBUG_VIDEOS) { printf("video: init video texture\n"); } if (!initTexture()) { //stop thread doStop = true; uv_sem_post(&textureSem); //signal error handleInitDone(false); return; } //ready eglImagesReady = true; uv_sem_post(&textureSem); } /** * Setup texture. */ bool AminoOmxVideoPlayer::setupOmxTexture() { //enable the output port and tell egl_render to use the texture as a buffer OMX_HANDLETYPE eglHandle = ILC_GET_HANDLE(egl_render); //Note: OMX_IndexConfigLatencyTarget not supported by egl_render (port 220) //ilclient_enable_port(egl_render, 221); THIS BLOCKS SO CAN'T BE USED if (OMX_SendCommand(eglHandle, OMX_CommandPortEnable, 221, NULL) != OMX_ErrorNone) { lastError = "OMX_CommandPortEnable failed."; return false; } for (int i = 0; i < OMX_EGL_BUFFERS; i++) { //Note: pAppPrivate not used if (OMX_UseEGLImage(eglHandle, &eglBuffers[i], 221, NULL, eglImages[i]) != OMX_ErrorNone) { lastError = "OMX_UseEGLImage failed."; return false; } if (!eglBuffers[i]) { lastError = "could not get buffer"; return false; } } if (DEBUG_OMX) { printf("OMX: egl_render setup done\n"); } //set egl_render to executing ilclient_change_component_state(egl_render, OMX_StateExecuting); if (DEBUG_OMX) { printf("OMX: executing\n"); } //request egl_render to write data to the texture buffer if (!omxFillNextEglBuffer()) { lastError = "OMX_FillThisBuffer failed."; return false; } return true; } /** * Fill the next egl_render buffer. */ bool AminoOmxVideoPlayer::omxFillNextEglBuffer() { if (textureFilling == -1) { return false; } OMX_BUFFERHEADERTYPE *eglBuffer = eglBuffers[textureFilling]; eglBuffer->nFlags = 0; eglBuffer->nFilledLen = 0; if (OMX_FillThisBuffer(ilclient_get_handle(egl_render), eglBuffer) != OMX_ErrorNone) { bufferError = true; printf("OMX_FillThisBuffer failed in callback\n"); return false; } bufferFilled = true; return true; } /** * Init texture (on rendering thread). */ bool AminoOmxVideoPlayer::initTexture() { texture->activeTexture = 0; int textureCount = getNeededTextures(); for (int i = 0; i < textureCount; i++) { GLuint textureId = texture->textureIds[i]; assert(textureId != INVALID_TEXTURE); glBindTexture(GL_TEXTURE_2D, textureId); //size (has to be equal to video dimension!) GLsizei textureW = videoW; GLsizei textureH = videoH; GLvoid *data = NULL; if (softwareDecoding) { data = stream->getDemuxer()->getFrameData(frameId); assert(data); } glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, textureW, textureH, 0,GL_RGBA, GL_UNSIGNED_BYTE, data); //Note: no performance hit seen glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); /* glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); */ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); if (!softwareDecoding) { //create EGL Image AminoGfxRPi *gfx = static_cast<AminoGfxRPi *>(texture->getEventHandler()); EGLImageKHR eglImage = gfx->createEGLImage(textureId); eglImages[i] = eglImage; if (eglImage == EGL_NO_IMAGE_KHR) { lastError = "eglCreateImageKHR failed"; return false; } } } return true; } /** * Update the video texture (on OpenGL thread). * * Displays the next frame once available. */ void AminoOmxVideoPlayer::updateVideoTexture(GLContext *ctx) { uv_mutex_lock(&destroyLock); if (paused || !playing || omxDestroyed) { uv_mutex_unlock(&destroyLock); return; } if (softwareDecoding) { //get current frame int id; GLvoid *data = stream->getDemuxer()->getFrameData(id); if (!data) { uv_mutex_unlock(&destroyLock); return; } if (id == frameId) { //debug //printf("skipping frame\n"); uv_mutex_unlock(&destroyLock); return; } frameId = id; glBindTexture(GL_TEXTURE_2D, texture->getTexture()); GLsizei textureW = videoW; GLsizei textureH = videoH; glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, textureW, textureH, GL_RGB, GL_UNSIGNED_BYTE, data); uv_mutex_unlock(&destroyLock); return; } //hardware decoder uv_mutex_lock(&bufferLock); bool newBuffer = false; //FIXME a few crashes seen in long running instances (sometimes each day) if (!textureReady.empty()) { //new frame available //check media time int nextFrame = textureReady.front(); OMX_BUFFERHEADERTYPE *eglBuffer = eglBuffers[nextFrame]; int64_t timestamp = eglBuffer->nTimeStamp.nLowPart | ((int64_t)eglBuffer->nTimeStamp.nHighPart << 32); double timeSecs = timestamp / 1000000.f; double timeNowSys = getTime() / 1000; double playTime; if (timeStartSys == -1) { //start of playback playTime = 0; timeStartSys = timeNowSys; } else { //ongoing playback playTime = timeNowSys - timeStartSys; } if (timeSecs < mediaTime || (mediaTime > 0 && timeSecs - mediaTime > 3.)) { //rewind or sudden jump detected (for instance 1080p HTTP test case; in other cases no reset occurs) //-> resync time mediaTime = timeSecs; timeStartSys = timeNowSys - mediaTime; playTime = mediaTime; if (DEBUG_VIDEO_TIMING) { printf("-> resync time\n"); } } if (playTime >= timeSecs) { //switch to next frame textureNew.push(textureActive); textureActive = nextFrame; textureReady.pop(); //Note: not necessary //ctx->unbindTexture(); texture->activeTexture = textureActive; //update media time (use frame time, not actual time) mediaTime = timeSecs; //check buffer state if (textureFilling == -1) { //fill next buffer textureFilling = textureNew.front(); textureNew.pop(); newBuffer = true; } //debug if (DEBUG_VIDEO_TIMING) { if (playTime - timeSecs > 0.2) { float diff = playTime - timeSecs; printf("-> frame shown too late (decoder too slow?; %f ms)\n", diff * 1000); } } if (!textureReady.empty()) { int nextFrame2 = textureReady.front(); OMX_BUFFERHEADERTYPE *eglBuffer2 = eglBuffers[nextFrame2]; int64_t timestamp2 = eglBuffer2->nTimeStamp.nLowPart | ((int64_t)eglBuffer2->nTimeStamp.nHighPart << 32); double timeSecs2 = timestamp2 / 1000000.f; if (playTime >= timeSecs2) { if (DEBUG_VIDEO_TIMING) { printf("-> playback queue lag (rendering too slow)\n"); } //drop frame (-> playback no longer smooth) /* textureReady.pop(); textureNew.push(nextFrame2); */ //resync time timeStartSys = timeNowSys - mediaTime; } } if (DEBUG_VIDEO_TIMING) { printf("-> displaying: %i (pos: %f s)\n", textureActive, timeSecs); } } else { //waiting //debug if (DEBUG_VIDEO_TIMING) { printf("-> next frame is ready (wait: %f s)\n", timeSecs - playTime); } } } else { //no new frame //debug //printf("-> underflow\n"); } uv_mutex_unlock(&bufferLock); uv_mutex_unlock(&destroyLock); if (newBuffer) { omxFillNextEglBuffer(); } } /** * Destroy OMX. */ void AminoOmxVideoPlayer::destroyOmx() { if (DEBUG_OMX) { printf("OMX: destroying instance\n"); } omxDestroyed = true; //disable tunnels ilclient_disable_tunnel(tunnel); ilclient_disable_tunnel(tunnel + 1); ilclient_disable_tunnel(tunnel + 2); if (DEBUG_OMX) { printf("-> tunnels disabled\n"); } //free buffers COMPONENT_T *video_decode = list[0]; ilclient_disable_port_buffers(video_decode, 130, NULL, NULL, NULL); //input if (DEBUG_OMX) { printf("-> buffers disabled\n"); } //close tunnels ilclient_teardown_tunnels(tunnel); memset(tunnel, 0, sizeof tunnel); if (DEBUG_OMX) { printf("-> tunnels closed\n"); } //idle state ilclient_state_transition(list, OMX_StateIdle); //Note: blocks forever!!! Anyway, we are not re-using this player instance. //ilclient_state_transition(list, OMX_StateLoaded); for (int i = 0; i < OMX_EGL_BUFFERS; i++) { if (eglBuffers[i]) { OMX_FreeBuffer(ILC_GET_HANDLE(egl_render), 221, eglBuffers[i]); eglBuffers[i] = NULL; } } egl_render = NULL; ilclient_cleanup_components(list); if (DEBUG_OMX) { printf("-> components closed\n"); } //destroy OMX OMX_Deinit(); //Note: decreases instance counter if (client) { ilclient_destroy(client); client = NULL; } if (DEBUG_OMX) { printf("OMX: instance destroyed\n"); } } /** * Get current media time. */ double AminoOmxVideoPlayer::getMediaTime() { if ((!playing && !paused) || !list) { return -1; } return mediaTime; /* //OMX decoder (Note: blocks sometimes) COMPONENT_T *clock = list[2]; OMX_TIME_CONFIG_TIMESTAMPTYPE ts; memset(&ts, 0, sizeof ts); ts.nSize = sizeof ts; ts.nVersion.nVersion = OMX_VERSION; ts.nPortIndex = OMX_ALL; if (OMX_GetConfig(ILC_GET_HANDLE(clock), OMX_IndexConfigTimeCurrentMediaTime, &ts) != OMX_ErrorNone) { return -1; } //microseconds int64_t timestamp = ts.nTimestamp.nLowPart | ((int64_t)ts.nTimestamp.nHighPart << 32); return timestamp / 1000000.f; */ } /** * Get video duration (-1 if unknown). */ double AminoOmxVideoPlayer::getDuration() { if (stream) { return stream->getDuration(); } return -1; } /** * Get the framerate (0 if unknown). */ double AminoOmxVideoPlayer::getFramerate() { if (stream) { return stream->getFramerate(); } return 0; } /** * Get OMX framerate. */ OMX_U32 AminoOmxVideoPlayer::getOmxFramerate() { double framerate = getFramerate(); if (framerate > 0) { return framerate * (1 << 16); } //default: 25 fps return 25 * (1 << 16); } /** * Stop playback. */ void AminoOmxVideoPlayer::stopPlayback() { if (!playing && !paused) { return; } //stop (currently blocking implementation) stopOmx(); } /** * Pause playback. */ bool AminoOmxVideoPlayer::pausePlayback() { if (!playing) { return true; } //pause OMX (stops reading) if (DEBUG_OMX) { printf("pausing OMX\n"); } doPause = true; //signal thread to pause pauseTime = getTime() / 1000; if (!softwareDecoding) { if (!setOmxSpeed(0)) { return false; } } if (DEBUG_OMX) { printf("paused OMX\n"); } //pause stream stream->pause(); if (DEBUG_OMX) { printf("paused stream\n"); } //set state handlePlaybackPaused(); return true; } /** * Resume (stopped) playback. */ bool AminoOmxVideoPlayer::resumePlayback() { if (!paused) { return true; } //change time double resumeTime = getTime() / 1000; timeStartSys += resumeTime - pauseTime; //resume stream stream->resume(); //resume thread if (!doPause) { uv_sem_post(&pauseSem); } else { doPause = false; } //resume OMX if (DEBUG_OMX) { printf("resume OMX\n"); } if (!softwareDecoding) { setOmxSpeed(1 << 16); } //set state handlePlaybackResumed(); return true; } /** * Set OMX playback speed. */ bool AminoOmxVideoPlayer::setOmxSpeed(OMX_S32 speed) { COMPONENT_T *clock = list[2]; OMX_TIME_CONFIG_SCALETYPE st; memset(&st, 0, sizeof st); st.nSize = sizeof st; st.nVersion.nVersion = OMX_VERSION; st.xScale = speed; bool res = OMX_SetConfig(ILC_GET_HANDLE(clock), OMX_IndexConfigTimeScale, &st) == OMX_ErrorNone; if (DEBUG_OMX && !res) { printf("-> could not set OMX time scale!\n"); } return res; } /** * Software decoder. */ void* AminoOmxVideoPlayer::decoderThread(void *arg) { AminoOmxVideoPlayer *player = static_cast<AminoOmxVideoPlayer *>(arg); assert(player); //init demuxer player->initDemuxer(); //close stream player->closeStream(); //done player->threadRunning = false; return NULL; } /** * Software decoding loop. */ void AminoOmxVideoPlayer::initDemuxer() { VideoDemuxer *demuxer = stream->getDemuxer(); assert(demuxer); //set video size videoW = demuxer->width; videoH = demuxer->height; //read first frame double timeStart; READ_FRAME_RESULT res = demuxer->readRGBFrame(timeStart); timeStartSys = getTime() / 1000; if (res == READ_END_OF_VIDEO) { lastError = "empty video"; handleInitDone(false); return; } if (res == READ_ERROR) { lastError = "could not load video stream"; handleInitDone(false); return; } //switch to renderer thread texture->initVideoTexture(); //wait for texture uv_sem_wait(&textureSem); if (!eglImagesReady || doStop) { //failed to create texture handleInitDone(false); return; } //texture ready handleInitDone(true); //playback loop while (true) { //check stop if (doStop) { //end playback handlePlaybackStopped(); return; } //check pause if (doPause) { //wait doPause = false; //signal we are waiting uv_sem_wait(&pauseSem); //next continue; } //next frame double time; int res = demuxer->readRGBFrame(time); double timeSys = getTime() / 1000; if (res == READ_ERROR) { if (DEBUG_VIDEOS) { printf("-> read error\n"); } handlePlaybackError(); return; } if (res == READ_END_OF_VIDEO) { if (DEBUG_VIDEOS) { printf("-> end of video\n"); } if (loop > 0) { loop--; } if (loop == 0) { //end playback handlePlaybackDone(); return; } //rewind if (!demuxer->rewindRGB(timeStart)) { handlePlaybackError(); return; } timeStartSys = getTime() / 1000; timeSys = timeStartSys; time = timeStart; handleRewind(); if (DEBUG_VIDEOS) { printf("-> rewind\n"); } } //correct timing if (!demuxer->realtime) { double timeSleep = (time - timeStart) - (timeSys - timeStartSys); if (timeSleep > 0) { usleep(timeSleep * 1000000); if (DEBUG_VIDEO_TIMING) { printf("sleep: %f ms\n", timeSleep * 1000); } } } //show demuxer->switchRGBFrame(); //update media time mediaTime = getTime() / 1000 - timeStartSys; } }
[ "bratschi@appamics.com" ]
bratschi@appamics.com
505adaa30c9575fe8c90a211b58a467c96840520
ce6d35d356ba5696718abb41aa47da14b1e849a4
/src/qmcDriver/qProbability.h
c7770e4ac9bd615b4c4ec2d6b05d17594a3874c7
[]
no_license
lucaparisi91/qmc
6a59993de84ce69ca52f255efebf2474d9891b22
238e51cdf0df367c78f5e315c52acb0350b6e184
refs/heads/master
2021-01-10T07:39:07.615316
2018-05-02T15:09:45
2018-05-02T15:09:45
47,068,205
0
0
null
null
null
null
UTF-8
C++
false
false
953
h
#include <vector> #include <complex> using namespace std; template<class grad_t,class all_particles_t> double Q_probability(grad_t & drift_force_new,grad_t & drift_force_old,all_particles_t & position,all_particles_t & position2,double delta_tau) { double q=0; for(int i=0;i<drift_force_old.size();i++) { for(int j=0;j<drift_force_old[i].size();j++) { q=q+(drift_force_old[i][j] + drift_force_new[i][j])*( (drift_force_old[i][j] - drift_force_new[i][j])*(1/2.)*delta_tau - (position[i][j].positionNoBC() - position2[i][j].positionNoBC()) ); } } return q; } double Q_probability(vector<complex<double> > &drift_force_new,vector<complex<double> > &drift_force_old,vector<double> &position,vector<double> &position2,double delta_tau); double Q_probability(vector<double> &drift_force_new,vector<double> &drift_force_old,vector<double> &position,vector<double> &position2,double delta_tau);
[ "luca.parisi91@mail.com" ]
luca.parisi91@mail.com
2a27bea0568808b419e5b0d6e8ff84d8a6bdd125
a1dce8306153cc1bedf55e03e41a894328201c81
/src/SDK/RH_PhysicsPickup_parameters.hpp
bc1d1bfc676174e49b4a684268c99a4c183cbffb
[]
no_license
zanzo420/SDK-RadicalHeights
97848bebd47baaa799e6a82546727fb9f829d7f1
0eeacd1418b2ee45c1522babed684baf4daf79a9
refs/heads/master
2020-03-29T22:22:00.257774
2018-04-20T14:11:36
2018-04-20T14:11:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
501
hpp
#pragma once // Radical Heights (ALPHA-1-201356) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "RH_PhysicsPickup_classes.hpp" namespace SDK { //--------------------------------------------------------------------------- //Parameters //--------------------------------------------------------------------------- // Function PhysicsPickup.PhysicsPickup_C.UserConstructionScript struct APhysicsPickup_C_UserConstructionScript_Params { }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "aeonlucid@outlook.com" ]
aeonlucid@outlook.com
cd55d30dc23988d234c44226796fd67d07c30764
c1ff870879152fba2b54eddfb7591ec322eb3061
/plugins/render/ogreRender/3rdParty/ogre/RenderSystems/GL3Plus/include/OgreGL3PlusRenderSystem.h
73111225dd48bf4527c9a7c8d738cb4980696374
[ "LicenseRef-scancode-free-unknown", "MIT" ]
permissive
MTASZTAKI/ApertusVR
1a9809fb7af81c3cd7fb732ed481ebe4ce66fefa
424ec5515ae08780542f33cc4841a8f9a96337b3
refs/heads/0.9
2022-12-11T20:03:42.926813
2019-10-11T09:29:45
2019-10-11T09:29:45
73,708,854
188
55
MIT
2022-12-11T08:53:21
2016-11-14T13:48:00
C++
UTF-8
C++
false
false
21,400
h
/* ----------------------------------------------------------------------------- This source file is part of OGRE (Object-oriented Graphics Rendering Engine) For the latest info, see http://www.ogre3d.org Copyright (c) 2000-2014 Torus Knot Software Ltd Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----------------------------------------------------------------------------- */ #ifndef __GL3PlusRenderSystem_H__ #define __GL3PlusRenderSystem_H__ #include "OgreGL3PlusPrerequisites.h" #include "OgreMaterialManager.h" #include "OgreRenderSystem.h" #include "OgreGLSLShader.h" namespace Ogre { class GL3PlusContext; class GL3PlusSupport; class GL3PlusRTTManager; class GLSLShaderManager; class GLSLShaderFactory; class HardwareBufferManager; /** Implementation of GL 3 as a rendering system. */ class _OgreGL3PlusExport GL3PlusRenderSystem : public RenderSystem { private: /// Rendering loop control bool mStopRendering; typedef OGRE_HashMap<GLenum, GLuint> BindBufferMap; /// View matrix to set world against Matrix4 mViewMatrix; Matrix4 mWorldMatrix; Matrix4 mTextureMatrix; /// Last min & mip filtering options, so we can combine them FilterOptions mMinFilter; FilterOptions mMipFilter; bool mTextureCompareEnabled; /** Used to store the number of mipmaps in the currently bound texture. This is then used to modify the texture unit filtering. */ size_t mTextureMipmapCount; /// What texture coord set each texture unit is using size_t mTextureCoordIndex[OGRE_MAX_TEXTURE_LAYERS]; /// Holds texture type settings for every stage GLenum mTextureTypes[OGRE_MAX_TEXTURE_LAYERS]; GLfloat mLargestSupportedAnisotropy; /// Number of fixed-function texture units unsigned short mFixedFunctionTextureUnits; void initConfigOptions(void); /// Store last colour write state bool mColourWrite[4]; /// Store last depth write state bool mDepthWrite; /// Store last scissor enable state bool mScissorsEnabled; /// Store last stencil mask state uint32 mStencilWriteMask; GLfloat mAutoTextureMatrix[16]; bool mUseAutoTextureMatrix; /// GL support class, used for creating windows etc. GL3PlusSupport *mGLSupport; /* The main GL context - main thread only */ GL3PlusContext *mMainContext; /* The current GL context - main thread only */ GL3PlusContext *mCurrentContext; typedef list<GL3PlusContext*>::type GL3PlusContextList; /// List of background thread contexts GL3PlusContextList mBackgroundContextList; GLSLShaderManager *mShaderManager; GLSLShaderFactory* mGLSLShaderFactory; HardwareBufferManager* mHardwareBufferManager; /** Manager object for creating render textures. Direct render to texture via FBO is preferable to pbuffers, which depend on the GL support used and are generally unwieldy and slow. However, FBO support for stencil buffers is poor. */ GL3PlusRTTManager *mRTTManager; /** These variables are used for caching RenderSystem state. They are cached because OpenGL state changes can be quite expensive, which is especially important on mobile or embedded systems. */ GLenum mActiveTextureUnit; BindBufferMap mActiveBufferMap; /// Check if the GL system has already been initialised bool mGLInitialised; // check if GL 4.3 is supported bool mHasGL43; // check if GL 3.2 is supported bool mHasGL32; // local data members of _render that were moved here to improve performance // (save allocations) vector<GLuint>::type mRenderAttribsBound; vector<GLuint>::type mRenderInstanceAttribsBound; #if OGRE_NO_QUAD_BUFFER_STEREO == 0 /// @copydoc RenderSystem::setDrawBuffer virtual bool setDrawBuffer(ColourBufferType colourBuffer); #endif /** Cache the polygon mode value */ GLenum mPolygonMode; GLint getCombinedMinMipFilter(void) const; GLSLShader* mCurrentVertexShader; GLSLShader* mCurrentFragmentShader; GLSLShader* mCurrentGeometryShader; GLSLShader* mCurrentHullShader; GLSLShader* mCurrentDomainShader; GLSLShader* mCurrentComputeShader; GLint getTextureAddressingMode(TextureUnitState::TextureAddressingMode tam) const; GLenum getBlendMode(SceneBlendFactor ogreBlend) const; bool activateGLTextureUnit(size_t unit); void bindVertexElementToGpu( const VertexElement &elem, HardwareVertexBufferSharedPtr vertexBuffer, const size_t vertexStart, vector<GLuint>::type &attribsBound, vector<GLuint>::type &instanceAttribsBound, bool updateVAO); public: // Default constructor / destructor GL3PlusRenderSystem(); ~GL3PlusRenderSystem(); friend class ShaderGeneratorTechniqueResolverListener; // ---------------------------------- // Overridden RenderSystem functions // ---------------------------------- /** See RenderSystem */ const String& getName(void) const; /** See RenderSystem */ const String& getFriendlyName(void) const; /** See RenderSystem */ ConfigOptionMap& getConfigOptions(void); /** See RenderSystem */ void setConfigOption(const String &name, const String &value); /** See RenderSystem */ String validateConfigOptions(void); /** See RenderSystem */ RenderWindow* _initialise(bool autoCreateWindow, const String& windowTitle = "OGRE Render Window"); /** See RenderSystem */ virtual RenderSystemCapabilities* createRenderSystemCapabilities() const; /** See RenderSystem */ void initialiseFromRenderSystemCapabilities(RenderSystemCapabilities* caps, RenderTarget* primary); /** See RenderSystem */ void reinitialise(void); // Used if settings changed mid-rendering /** See RenderSystem */ void shutdown(void); /** See RenderSystem */ void setAmbientLight(float r, float g, float b) { }; // Not supported /** See RenderSystem */ void setShadingType(ShadeOptions so) { }; // Not supported /** See RenderSystem */ void setLightingEnabled(bool enabled) { }; // Not supported /// @copydoc RenderSystem::_createRenderWindow RenderWindow* _createRenderWindow(const String &name, unsigned int width, unsigned int height, bool fullScreen, const NameValuePairList *miscParams = 0); /// @copydoc RenderSystem::_createRenderWindows bool _createRenderWindows(const RenderWindowDescriptionList& renderWindowDescriptions, RenderWindowList& createdWindows); /// @copydoc RenderSystem::_createDepthBufferFor DepthBuffer* _createDepthBufferFor( RenderTarget *renderTarget ); /// Mimics D3D9RenderSystem::_getDepthStencilFormatFor, if no FBO RTT manager, outputs GL_NONE void _getDepthStencilFormatFor( GLenum internalColourFormat, GLenum *depthFormat, GLenum *stencilFormat ); /// @copydoc RenderSystem::createMultiRenderTarget virtual MultiRenderTarget * createMultiRenderTarget(const String & name); /** See RenderSystem */ void destroyRenderWindow(RenderWindow* pWin); /** See RenderSystem */ String getErrorDescription(long errorNumber) const; /** See RenderSystem */ VertexElementType getColourVertexElementType(void) const; /** See RenderSystem */ void setNormaliseNormals(bool normalise) { }; // Not supported // ----------------------------- // Low-level overridden members // ----------------------------- /** See RenderSystem */ void _useLights(const LightList& lights, unsigned short limit) { }; // Not supported /** See RenderSystem */ bool areFixedFunctionLightsInViewSpace() const { return true; } /** See RenderSystem */ void _setWorldMatrix(const Matrix4 &m); /** See RenderSystem */ void _setViewMatrix(const Matrix4 &m); /** See RenderSystem */ void _setProjectionMatrix(const Matrix4 &m); /** See RenderSystem */ void _setSurfaceParams(const ColourValue &ambient, const ColourValue &diffuse, const ColourValue &specular, const ColourValue &emissive, Real shininess, TrackVertexColourType tracking) {} /** See RenderSystem */ void _setPointParameters(Real size, bool attenuationEnabled, Real constant, Real linear, Real quadratic, Real minSize, Real maxSize); /** See RenderSystem */ void _setPointSpritesEnabled(bool enabled); /** See RenderSystem */ void _setVertexTexture(size_t unit, const TexturePtr &tex); /** See RenderSystem */ void _setGeometryTexture(size_t unit, const TexturePtr &tex); /** See RenderSystem */ void _setComputeTexture(size_t unit, const TexturePtr &tex); /** See RenderSystem */ void _setTesselationHullTexture(size_t unit, const TexturePtr &tex); /** See RenderSystem */ void _setTesselationDomainTexture(size_t unit, const TexturePtr &tex); /** See RenderSystem */ void _setTexture(size_t unit, bool enabled, const TexturePtr &tex); /** See RenderSystem */ void _setTextureCoordSet(size_t stage, size_t index); /** See RenderSystem */ void _setTextureCoordCalculation(size_t stage, TexCoordCalcMethod m, const Frustum* frustum = 0) { }; // Not supported /** See RenderSystem */ void _setTextureBlendMode(size_t stage, const LayerBlendModeEx& bm) { }; // Not supported /** See RenderSystem */ void _setTextureAddressingMode(size_t stage, const TextureUnitState::UVWAddressingMode& uvw); /** See RenderSystem */ void _setTextureBorderColour(size_t stage, const ColourValue& colour); /** See RenderSystem */ void _setTextureMipmapBias(size_t unit, float bias); /** See RenderSystem */ void _setTextureMatrix(size_t stage, const Matrix4& xform) { }; // Not supported /** See RenderSystem */ void _setViewport(Viewport *vp); /** See RenderSystem */ void _beginFrame(void); /** See RenderSystem */ void _endFrame(void); /** See RenderSystem */ void _setCullingMode(CullingMode mode); /** See RenderSystem */ void _setDepthBufferParams(bool depthTest = true, bool depthWrite = true, CompareFunction depthFunction = CMPF_LESS_EQUAL); /** See RenderSystem */ void _setDepthBufferCheckEnabled(bool enabled = true); /** See RenderSystem */ void _setDepthBufferWriteEnabled(bool enabled = true); /** See RenderSystem */ void _setDepthBufferFunction(CompareFunction func = CMPF_LESS_EQUAL); /** See RenderSystem */ void _setDepthBias(float constantBias, float slopeScaleBias); /** See RenderSystem */ void _setColourBufferWriteEnabled(bool red, bool green, bool blue, bool alpha); /** See RenderSystem */ void _setFog(FogMode mode, const ColourValue& colour, Real density, Real start, Real end) {} /** See RenderSystem */ void _convertProjectionMatrix(const Matrix4& matrix, Matrix4& dest, bool forGpuProgram = false); /** See RenderSystem */ void _makeProjectionMatrix(const Radian& fovy, Real aspect, Real nearPlane, Real farPlane, Matrix4& dest, bool forGpuProgram = false); /** See RenderSystem */ void _makeProjectionMatrix(Real left, Real right, Real bottom, Real top, Real nearPlane, Real farPlane, Matrix4& dest, bool forGpuProgram = false); /** See RenderSystem */ void _makeOrthoMatrix(const Radian& fovy, Real aspect, Real nearPlane, Real farPlane, Matrix4& dest, bool forGpuProgram = false); /** See RenderSystem */ void _applyObliqueDepthProjection(Matrix4& matrix, const Plane& plane, bool forGpuProgram); /** See RenderSystem */ void setClipPlane (ushort index, Real A, Real B, Real C, Real D); /** See RenderSystem */ void enableClipPlane (ushort index, bool enable); /** See RenderSystem */ void _setPolygonMode(PolygonMode level); /** See RenderSystem */ void setStencilCheckEnabled(bool enabled); /** See RenderSystem. */ void setStencilBufferParams(CompareFunction func = CMPF_ALWAYS_PASS, uint32 refValue = 0, uint32 compareMask = 0xFFFFFFFF, uint32 writeMask = 0xFFFFFFFF, StencilOperation stencilFailOp = SOP_KEEP, StencilOperation depthFailOp = SOP_KEEP, StencilOperation passOp = SOP_KEEP, bool twoSidedOperation = false, bool readBackAsTexture = false); /** See RenderSystem */ void _setTextureUnitFiltering(size_t unit, FilterType ftype, FilterOptions filter); /** See RenderSystem */ void _setTextureUnitCompareFunction(size_t unit, CompareFunction function); /** See RenderSystem */ void _setTextureUnitCompareEnabled(size_t unit, bool compare); /** See RenderSystem */ void _setTextureLayerAnisotropy(size_t unit, unsigned int maxAnisotropy); /** See RenderSystem */ void setVertexDeclaration(VertexDeclaration* decl) {} /** See RenderSystem */ void setVertexDeclaration(VertexDeclaration* decl, VertexBufferBinding* binding) {} /** See RenderSystem. */ void setVertexBufferBinding(VertexBufferBinding* binding) {} /** See RenderSystem */ void _render(const RenderOperation& op); /** See RenderSystem */ void setScissorTest(bool enabled, size_t left = 0, size_t top = 0, size_t right = 800, size_t bottom = 600); void clearFrameBuffer(unsigned int buffers, const ColourValue& colour = ColourValue::Black, Real depth = 1.0f, unsigned short stencil = 0); HardwareOcclusionQuery* createHardwareOcclusionQuery(void); Real getHorizontalTexelOffset(void) { return 0.0; } // No offset in GL Real getVerticalTexelOffset(void) { return 0.0; } // No offset in GL Real getMinimumDepthInputValue(void) { return -1.0f; } // Range [-1.0f, 1.0f] Real getMaximumDepthInputValue(void) { return 1.0f; } // Range [-1.0f, 1.0f] OGRE_MUTEX(mThreadInitMutex); void registerThread(); void unregisterThread(); void preExtraThreadsStarted(); void postExtraThreadsStarted(); void setClipPlanesImpl(const Ogre::PlaneList& planeList); // ---------------------------------- // GL3PlusRenderSystem specific members // ---------------------------------- /** Returns the main context */ GL3PlusContext* _getMainContext() { return mMainContext; } /** Unregister a render target->context mapping. If the context of target is the current context, change the context to the main context so it can be destroyed safely. @note This is automatically called by the destructor of GL3PlusContext. */ void _unregisterContext(GL3PlusContext *context); /** Switch GL context, dealing with involved internal cached states too */ void _switchContext(GL3PlusContext *context); /** One time initialization for the RenderState of a context. Things that only need to be set once, like the LightingModel can be defined here. */ void _oneTimeContextInitialization(); void initialiseContext(RenderWindow* primary); /** * Set current render target to target, enabling its GL context if needed */ void _setRenderTarget(RenderTarget *target); GLint convertCompareFunction(CompareFunction func) const; GLint convertStencilOp(StencilOperation op, bool invert = false) const; void bindGpuProgram(GpuProgram* prg); void unbindGpuProgram(GpuProgramType gptype); void bindGpuProgramParameters(GpuProgramType gptype, GpuProgramParametersSharedPtr params, uint16 mask); void bindGpuProgramPassIterationParameters(GpuProgramType gptype); /// @copydoc RenderSystem::_setSceneBlending void _setSceneBlending( SceneBlendFactor sourceFactor, SceneBlendFactor destFactor, SceneBlendOperation op ); /// @copydoc RenderSystem::_setSeparateSceneBlending void _setSeparateSceneBlending( SceneBlendFactor sourceFactor, SceneBlendFactor destFactor, SceneBlendFactor sourceFactorAlpha, SceneBlendFactor destFactorAlpha, SceneBlendOperation op, SceneBlendOperation alphaOp ); /// @copydoc RenderSystem::_setAlphaRejectSettings void _setAlphaRejectSettings( CompareFunction func, unsigned char value, bool alphaToCoverage ); /// @copydoc RenderSystem::getDisplayMonitorCount unsigned int getDisplayMonitorCount() const; /// Internal method for anisotropy validation GLfloat _getCurrentAnisotropy(size_t unit); GLenum _getPolygonMode(void) { return mPolygonMode; } void _setSceneBlendingOperation(SceneBlendOperation op); void _setSeparateSceneBlendingOperation(SceneBlendOperation op, SceneBlendOperation alphaOp); /// @copydoc RenderSystem::hasAnisotropicMipMapFilter virtual bool hasAnisotropicMipMapFilter() const { return false; } /// @copydoc RenderSystem::beginProfileEvent virtual void beginProfileEvent( const String &eventName ); /// @copydoc RenderSystem::endProfileEvent virtual void endProfileEvent( void ); /// @copydoc RenderSystem::markProfileEvent virtual void markProfileEvent( const String &eventName ); }; } #endif
[ "peter.kovacs@sztaki.mta.hu" ]
peter.kovacs@sztaki.mta.hu
fed9961ce5830e2de76ee717fdd5a7359b750ed6
20319e3b72920474e45be77f29e175b648daa19f
/NOWY/CStateMachine.h
3b3e765c6a31f60daab9f7a15f5e4f0fb00c23dd
[]
no_license
mad0/SomeNEW
c67e3794a713da2c9048a529e4ad3957f05c14dc
1d48ea04cccc2bf709f173b47d0dad3a67cbbe1f
refs/heads/master
2020-05-21T08:34:18.757733
2019-07-10T12:26:00
2019-07-10T12:26:00
185,984,498
0
0
null
null
null
null
UTF-8
C++
false
false
514
h
#pragma once #include <memory> #include "SFML/Graphics.hpp" #include <map> enum STATES {MENU, PLAY}; class CGameState; class CStateMachine { public: CStateMachine(); ~CStateMachine(); void addState(STATES, std::shared_ptr<CGameState>); void changeState(STATES); std::shared_ptr<CGameState> getState(STATES); void delState(STATES); void input(); void update(); void draw(); STATES sType; private: std::shared_ptr<CGameState> curentState; std::map<STATES, std::shared_ptr<CGameState>> mResources; };
[ "madowaty@gmail.com" ]
madowaty@gmail.com
ce61981b02abd4269d1646858d853d459f6a1061
462c18f5cd1a5e44175584be97e96642b0dc5b08
/implementation/digitProblem.cpp
d382d9d1717cd7bef7e0f3ac4c39a253dace2501
[]
no_license
ShrinathRaje/Data-Structures-and-Algorithms-Practice
40d1153730eae623ff00cb09d7770b5800c01551
1bf61e38c1702a20455f0e7e841467c52fb3a7cc
refs/heads/master
2021-07-06T08:29:35.672609
2020-08-24T17:47:35
2020-08-24T17:47:35
170,354,651
0
0
null
null
null
null
UTF-8
C++
false
false
460
cpp
/* * Digit problem * Date: 27th Nov 2019 * Author: Shrinath bhosale * Problem statement: https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/digit-problem/ */ #include<iostream> using namespace std; int main() { string s; int k; cin >> s >> k; int l = s.size(); for(int i=0, c = 0; i<l && c != k; ++i) { if(s[i] != '9') { s[i] = '9'; ++c; } } cout << s; return 0; }
[ "Shrinathbhosale12@gmail.com" ]
Shrinathbhosale12@gmail.com
b7b454308f9df43d25525c4e6a5992189e0b3067
a8b4d7b9c15cb242c78c34c4b7966f71f35ea9fb
/3rdparty/capo/noncopyable.hpp
cb70a11496ba4f6d5b8462899251fd01200caa00
[ "MIT" ]
permissive
kipade/cpp-ipc
c8d112e14d0d61b49a14e9b843038f06f04a9905
2a2b626210d36e8b483b070523de8561b4d47355
refs/heads/master
2023-05-25T20:50:54.023769
2023-02-11T10:25:23
2023-02-25T08:30:11
249,610,111
0
0
MIT
2020-03-24T04:09:52
2020-03-24T04:09:51
null
UTF-8
C++
false
false
499
hpp
/* The Capo Library Code covered by the MIT License Author: mutouyun (http://orzz.org) */ #pragma once namespace capo { //////////////////////////////////////////////////////////////// class noncopyable { protected: noncopyable(void) = default; ~noncopyable(void) = default; public: noncopyable(const noncopyable&) = delete; noncopyable& operator=(const noncopyable&) = delete; }; //////////////////////////////////////////////////////////////// } // namespace capo
[ "wood.zhang@dji.com" ]
wood.zhang@dji.com
45abd790375460a909767c29fd9b9e71f68a5b42
2cf838b54b556987cfc49f42935f8aa7563ea1f4
/aws-cpp-sdk-securityhub/include/aws/securityhub/model/AwsS3ObjectDetails.h
bfcc471ee83445d0bf18a20f2c7d27c67d380d53
[ "MIT", "Apache-2.0", "JSON" ]
permissive
QPC-database/aws-sdk-cpp
d11e9f0ff6958c64e793c87a49f1e034813dac32
9f83105f7e07fe04380232981ab073c247d6fc85
refs/heads/main
2023-06-14T17:41:04.817304
2021-07-09T20:28:20
2021-07-09T20:28:20
384,714,703
1
0
Apache-2.0
2021-07-10T14:16:41
2021-07-10T14:16:41
null
UTF-8
C++
false
false
14,631
h
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/securityhub/SecurityHub_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SecurityHub { namespace Model { /** * <p>Details about an Amazon S3 object.</p><p><h3>See Also:</h3> <a * href="http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsS3ObjectDetails">AWS * API Reference</a></p> */ class AWS_SECURITYHUB_API AwsS3ObjectDetails { public: AwsS3ObjectDetails(); AwsS3ObjectDetails(Aws::Utils::Json::JsonView jsonValue); AwsS3ObjectDetails& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; /** * <p>Indicates when the object was last modified.</p> <p>Uses the * <code>date-time</code> format specified in <a * href="https://tools.ietf.org/html/rfc3339#section-5.6">RFC 3339 section 5.6, * Internet Date/Time Format</a>. The value cannot contain spaces. For example, * <code>2020-03-22T13:22:13.933Z</code>.</p> */ inline const Aws::String& GetLastModified() const{ return m_lastModified; } /** * <p>Indicates when the object was last modified.</p> <p>Uses the * <code>date-time</code> format specified in <a * href="https://tools.ietf.org/html/rfc3339#section-5.6">RFC 3339 section 5.6, * Internet Date/Time Format</a>. The value cannot contain spaces. For example, * <code>2020-03-22T13:22:13.933Z</code>.</p> */ inline bool LastModifiedHasBeenSet() const { return m_lastModifiedHasBeenSet; } /** * <p>Indicates when the object was last modified.</p> <p>Uses the * <code>date-time</code> format specified in <a * href="https://tools.ietf.org/html/rfc3339#section-5.6">RFC 3339 section 5.6, * Internet Date/Time Format</a>. The value cannot contain spaces. For example, * <code>2020-03-22T13:22:13.933Z</code>.</p> */ inline void SetLastModified(const Aws::String& value) { m_lastModifiedHasBeenSet = true; m_lastModified = value; } /** * <p>Indicates when the object was last modified.</p> <p>Uses the * <code>date-time</code> format specified in <a * href="https://tools.ietf.org/html/rfc3339#section-5.6">RFC 3339 section 5.6, * Internet Date/Time Format</a>. The value cannot contain spaces. For example, * <code>2020-03-22T13:22:13.933Z</code>.</p> */ inline void SetLastModified(Aws::String&& value) { m_lastModifiedHasBeenSet = true; m_lastModified = std::move(value); } /** * <p>Indicates when the object was last modified.</p> <p>Uses the * <code>date-time</code> format specified in <a * href="https://tools.ietf.org/html/rfc3339#section-5.6">RFC 3339 section 5.6, * Internet Date/Time Format</a>. The value cannot contain spaces. For example, * <code>2020-03-22T13:22:13.933Z</code>.</p> */ inline void SetLastModified(const char* value) { m_lastModifiedHasBeenSet = true; m_lastModified.assign(value); } /** * <p>Indicates when the object was last modified.</p> <p>Uses the * <code>date-time</code> format specified in <a * href="https://tools.ietf.org/html/rfc3339#section-5.6">RFC 3339 section 5.6, * Internet Date/Time Format</a>. The value cannot contain spaces. For example, * <code>2020-03-22T13:22:13.933Z</code>.</p> */ inline AwsS3ObjectDetails& WithLastModified(const Aws::String& value) { SetLastModified(value); return *this;} /** * <p>Indicates when the object was last modified.</p> <p>Uses the * <code>date-time</code> format specified in <a * href="https://tools.ietf.org/html/rfc3339#section-5.6">RFC 3339 section 5.6, * Internet Date/Time Format</a>. The value cannot contain spaces. For example, * <code>2020-03-22T13:22:13.933Z</code>.</p> */ inline AwsS3ObjectDetails& WithLastModified(Aws::String&& value) { SetLastModified(std::move(value)); return *this;} /** * <p>Indicates when the object was last modified.</p> <p>Uses the * <code>date-time</code> format specified in <a * href="https://tools.ietf.org/html/rfc3339#section-5.6">RFC 3339 section 5.6, * Internet Date/Time Format</a>. The value cannot contain spaces. For example, * <code>2020-03-22T13:22:13.933Z</code>.</p> */ inline AwsS3ObjectDetails& WithLastModified(const char* value) { SetLastModified(value); return *this;} /** * <p>The opaque identifier assigned by a web server to a specific version of a * resource found at a URL.</p> */ inline const Aws::String& GetETag() const{ return m_eTag; } /** * <p>The opaque identifier assigned by a web server to a specific version of a * resource found at a URL.</p> */ inline bool ETagHasBeenSet() const { return m_eTagHasBeenSet; } /** * <p>The opaque identifier assigned by a web server to a specific version of a * resource found at a URL.</p> */ inline void SetETag(const Aws::String& value) { m_eTagHasBeenSet = true; m_eTag = value; } /** * <p>The opaque identifier assigned by a web server to a specific version of a * resource found at a URL.</p> */ inline void SetETag(Aws::String&& value) { m_eTagHasBeenSet = true; m_eTag = std::move(value); } /** * <p>The opaque identifier assigned by a web server to a specific version of a * resource found at a URL.</p> */ inline void SetETag(const char* value) { m_eTagHasBeenSet = true; m_eTag.assign(value); } /** * <p>The opaque identifier assigned by a web server to a specific version of a * resource found at a URL.</p> */ inline AwsS3ObjectDetails& WithETag(const Aws::String& value) { SetETag(value); return *this;} /** * <p>The opaque identifier assigned by a web server to a specific version of a * resource found at a URL.</p> */ inline AwsS3ObjectDetails& WithETag(Aws::String&& value) { SetETag(std::move(value)); return *this;} /** * <p>The opaque identifier assigned by a web server to a specific version of a * resource found at a URL.</p> */ inline AwsS3ObjectDetails& WithETag(const char* value) { SetETag(value); return *this;} /** * <p>The version of the object.</p> */ inline const Aws::String& GetVersionId() const{ return m_versionId; } /** * <p>The version of the object.</p> */ inline bool VersionIdHasBeenSet() const { return m_versionIdHasBeenSet; } /** * <p>The version of the object.</p> */ inline void SetVersionId(const Aws::String& value) { m_versionIdHasBeenSet = true; m_versionId = value; } /** * <p>The version of the object.</p> */ inline void SetVersionId(Aws::String&& value) { m_versionIdHasBeenSet = true; m_versionId = std::move(value); } /** * <p>The version of the object.</p> */ inline void SetVersionId(const char* value) { m_versionIdHasBeenSet = true; m_versionId.assign(value); } /** * <p>The version of the object.</p> */ inline AwsS3ObjectDetails& WithVersionId(const Aws::String& value) { SetVersionId(value); return *this;} /** * <p>The version of the object.</p> */ inline AwsS3ObjectDetails& WithVersionId(Aws::String&& value) { SetVersionId(std::move(value)); return *this;} /** * <p>The version of the object.</p> */ inline AwsS3ObjectDetails& WithVersionId(const char* value) { SetVersionId(value); return *this;} /** * <p>A standard MIME type describing the format of the object data.</p> */ inline const Aws::String& GetContentType() const{ return m_contentType; } /** * <p>A standard MIME type describing the format of the object data.</p> */ inline bool ContentTypeHasBeenSet() const { return m_contentTypeHasBeenSet; } /** * <p>A standard MIME type describing the format of the object data.</p> */ inline void SetContentType(const Aws::String& value) { m_contentTypeHasBeenSet = true; m_contentType = value; } /** * <p>A standard MIME type describing the format of the object data.</p> */ inline void SetContentType(Aws::String&& value) { m_contentTypeHasBeenSet = true; m_contentType = std::move(value); } /** * <p>A standard MIME type describing the format of the object data.</p> */ inline void SetContentType(const char* value) { m_contentTypeHasBeenSet = true; m_contentType.assign(value); } /** * <p>A standard MIME type describing the format of the object data.</p> */ inline AwsS3ObjectDetails& WithContentType(const Aws::String& value) { SetContentType(value); return *this;} /** * <p>A standard MIME type describing the format of the object data.</p> */ inline AwsS3ObjectDetails& WithContentType(Aws::String&& value) { SetContentType(std::move(value)); return *this;} /** * <p>A standard MIME type describing the format of the object data.</p> */ inline AwsS3ObjectDetails& WithContentType(const char* value) { SetContentType(value); return *this;} /** * <p>If the object is stored using server-side encryption, the value of the * server-side encryption algorithm used when storing this object in Amazon S3.</p> */ inline const Aws::String& GetServerSideEncryption() const{ return m_serverSideEncryption; } /** * <p>If the object is stored using server-side encryption, the value of the * server-side encryption algorithm used when storing this object in Amazon S3.</p> */ inline bool ServerSideEncryptionHasBeenSet() const { return m_serverSideEncryptionHasBeenSet; } /** * <p>If the object is stored using server-side encryption, the value of the * server-side encryption algorithm used when storing this object in Amazon S3.</p> */ inline void SetServerSideEncryption(const Aws::String& value) { m_serverSideEncryptionHasBeenSet = true; m_serverSideEncryption = value; } /** * <p>If the object is stored using server-side encryption, the value of the * server-side encryption algorithm used when storing this object in Amazon S3.</p> */ inline void SetServerSideEncryption(Aws::String&& value) { m_serverSideEncryptionHasBeenSet = true; m_serverSideEncryption = std::move(value); } /** * <p>If the object is stored using server-side encryption, the value of the * server-side encryption algorithm used when storing this object in Amazon S3.</p> */ inline void SetServerSideEncryption(const char* value) { m_serverSideEncryptionHasBeenSet = true; m_serverSideEncryption.assign(value); } /** * <p>If the object is stored using server-side encryption, the value of the * server-side encryption algorithm used when storing this object in Amazon S3.</p> */ inline AwsS3ObjectDetails& WithServerSideEncryption(const Aws::String& value) { SetServerSideEncryption(value); return *this;} /** * <p>If the object is stored using server-side encryption, the value of the * server-side encryption algorithm used when storing this object in Amazon S3.</p> */ inline AwsS3ObjectDetails& WithServerSideEncryption(Aws::String&& value) { SetServerSideEncryption(std::move(value)); return *this;} /** * <p>If the object is stored using server-side encryption, the value of the * server-side encryption algorithm used when storing this object in Amazon S3.</p> */ inline AwsS3ObjectDetails& WithServerSideEncryption(const char* value) { SetServerSideEncryption(value); return *this;} /** * <p>The identifier of the AWS Key Management Service (AWS KMS) symmetric customer * managed customer master key (CMK) that was used for the object.</p> */ inline const Aws::String& GetSSEKMSKeyId() const{ return m_sSEKMSKeyId; } /** * <p>The identifier of the AWS Key Management Service (AWS KMS) symmetric customer * managed customer master key (CMK) that was used for the object.</p> */ inline bool SSEKMSKeyIdHasBeenSet() const { return m_sSEKMSKeyIdHasBeenSet; } /** * <p>The identifier of the AWS Key Management Service (AWS KMS) symmetric customer * managed customer master key (CMK) that was used for the object.</p> */ inline void SetSSEKMSKeyId(const Aws::String& value) { m_sSEKMSKeyIdHasBeenSet = true; m_sSEKMSKeyId = value; } /** * <p>The identifier of the AWS Key Management Service (AWS KMS) symmetric customer * managed customer master key (CMK) that was used for the object.</p> */ inline void SetSSEKMSKeyId(Aws::String&& value) { m_sSEKMSKeyIdHasBeenSet = true; m_sSEKMSKeyId = std::move(value); } /** * <p>The identifier of the AWS Key Management Service (AWS KMS) symmetric customer * managed customer master key (CMK) that was used for the object.</p> */ inline void SetSSEKMSKeyId(const char* value) { m_sSEKMSKeyIdHasBeenSet = true; m_sSEKMSKeyId.assign(value); } /** * <p>The identifier of the AWS Key Management Service (AWS KMS) symmetric customer * managed customer master key (CMK) that was used for the object.</p> */ inline AwsS3ObjectDetails& WithSSEKMSKeyId(const Aws::String& value) { SetSSEKMSKeyId(value); return *this;} /** * <p>The identifier of the AWS Key Management Service (AWS KMS) symmetric customer * managed customer master key (CMK) that was used for the object.</p> */ inline AwsS3ObjectDetails& WithSSEKMSKeyId(Aws::String&& value) { SetSSEKMSKeyId(std::move(value)); return *this;} /** * <p>The identifier of the AWS Key Management Service (AWS KMS) symmetric customer * managed customer master key (CMK) that was used for the object.</p> */ inline AwsS3ObjectDetails& WithSSEKMSKeyId(const char* value) { SetSSEKMSKeyId(value); return *this;} private: Aws::String m_lastModified; bool m_lastModifiedHasBeenSet; Aws::String m_eTag; bool m_eTagHasBeenSet; Aws::String m_versionId; bool m_versionIdHasBeenSet; Aws::String m_contentType; bool m_contentTypeHasBeenSet; Aws::String m_serverSideEncryption; bool m_serverSideEncryptionHasBeenSet; Aws::String m_sSEKMSKeyId; bool m_sSEKMSKeyIdHasBeenSet; }; } // namespace Model } // namespace SecurityHub } // namespace Aws
[ "aws-sdk-cpp-automation@github.com" ]
aws-sdk-cpp-automation@github.com
74a777ccd496970c1ce7c4b83b2c0484d89edf34
9a1315cc4083ce84b605e0c4af8b07a391f74d0c
/libcef/browser/download_manager_delegate.h
272dc4f6472adfad87b1935da3c5fc759c69f547
[]
no_license
hernad/cef3_3
7fcc198a3b05d73a0c03a47f4e46be45af432528
57f67842c121dca0a1e94d44a95c23225653d967
refs/heads/master
2016-09-02T04:35:44.082958
2012-12-25T08:59:01
2012-12-25T08:59:01
7,317,503
1
0
null
null
null
null
UTF-8
C++
false
false
1,756
h
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CEF_LIBCEF_BROWSER_DOWNLOAD_MANAGER_DELEGATE_H_ #define CEF_LIBCEF_BROWSER_DOWNLOAD_MANAGER_DELEGATE_H_ #pragma once #include <set> #include "base/compiler_specific.h" #include "base/memory/weak_ptr.h" #include "content/public/browser/download_item.h" #include "content/public/browser/download_manager.h" #include "content/public/browser/download_manager_delegate.h" class CefDownloadManagerDelegate : public content::DownloadItem::Observer, public content::DownloadManager::Observer, public content::DownloadManagerDelegate { public: explicit CefDownloadManagerDelegate(content::DownloadManager* manager); ~CefDownloadManagerDelegate(); private: // DownloadItem::Observer methods. virtual void OnDownloadUpdated(content::DownloadItem* download) OVERRIDE; virtual void OnDownloadDestroyed(content::DownloadItem* download) OVERRIDE; // DownloadManager::Observer methods. virtual void OnDownloadCreated(content::DownloadManager* manager, content::DownloadItem* item) OVERRIDE; virtual void ManagerGoingDown(content::DownloadManager* manager) OVERRIDE; // DownloadManagerDelegate methods. virtual bool DetermineDownloadTarget( content::DownloadItem* item, const content::DownloadTargetCallback& callback) OVERRIDE; content::DownloadManager* manager_; base::WeakPtrFactory<content::DownloadManager> manager_ptr_factory_; std::set<content::DownloadItem*> observing_; DISALLOW_COPY_AND_ASSIGN(CefDownloadManagerDelegate); }; #endif // CEF_LIBCEF_BROWSER_DOWNLOAD_MANAGER_DELEGATE_H_
[ "hernad@bring.out.ba" ]
hernad@bring.out.ba
2ab94e7c3010aa0a693f5f812de741481cc9abcc
a024e511eed9359afcb02a689ea7d1b0e30305a4
/Matrix-operations/complex-matrices/complex-basics/test-program.cpp
4ac7c87d4dd118edd6e2c014487215e6fe41f49c
[ "MIT" ]
permissive
ankit-dhiman/computational-physics
e25ef50b4bf251539e264e67df2cb895de112aaf
61e9f0150c0e389b3fec6e78cc2bd96dfa1d9f54
refs/heads/master
2022-11-03T03:11:42.510324
2020-06-21T02:58:29
2020-06-21T02:58:29
272,034,314
0
0
null
null
null
null
UTF-8
C++
false
false
1,775
cpp
/* Author : Ankit Dhiman date created : 11 June,2020 */ #include <bits/stdc++.h> #define SIZE 20 using namespace std ; void PrintMatrix(complex<double> Arr[][SIZE], int n) ; void PrintMatrixConj(complex<double> Arr[][SIZE], int n) ; int main() { /* initialize random seed: */ srand (time(NULL)); int a=-10 , b=20 , alpha ,beta ,n ; cout << "\nGive value for size of the matrix , n : \n? " ; cin >> n ; //------------------------------------------------- // INTIALIZE MATRICES A AND TRANSPOSE TO zero //------------------------------------------------- complex<double> matrix_A[SIZE][SIZE]={}; complex<double> matrix_transpose[SIZE][SIZE]={}; complex<double> conjugate_A[SIZE][SIZE]={}; //------------------------------------------------- // INTIALIZING MATRICES A TO SOME RANDOM VALUES //------------------------------------------------- for (int i = 0;i<n;i++){ for(int j=0;j<n;j++){ alpha = a + ( rand() %b ) ; beta = a + ( rand() %b ) ; complex<double> z1(alpha,beta); matrix_A[i][j] = (z1) ; } } cout << "\n matrix (A) = \n \t" ; PrintMatrix(matrix_A,n) ; cout << "\n conjugate(A) = \n\t " ; PrintMatrixConj(matrix_A,n) ; cout << "\n\n" ; return 0 ; } //------------------------------------------------- void PrintMatrix(complex<double> Arr[][SIZE], int n) { for (int i = 0;i<n;i++){ for(int j=0;j<n;j++) { cout <<setw(12)<< Arr[i][j] ; } cout << "\n \t " ; } return; } //------------------------------------------------- void PrintMatrixConj(complex<double> Arr[][SIZE], int n) { for (int i = 0;i<n;i++){ for(int j=0;j<n;j++) { cout <<setw(12)<< conj(Arr[i][j]) ; } cout << "\n \t " ; } return; } //-------------------------------------------------
[ "noreply@github.com" ]
ankit-dhiman.noreply@github.com
bb8d3663aa01acb61b6f268ac47f9567ccb682cb
8973dd51588517ac8755230820e97b8215cadc92
/cores/Cosa/examples/Wireless/CosaWirelessDS18B20/CosaWirelessDS18B20.ino
e99786723051b50b5118ef8be755fe2d80aac951
[ "BSD-3-Clause" ]
permissive
UECIDE/UECIDE_data
3fa6b17113743de7bcb7d3cb8d430637efb494b6
96bf6b15910ec3794bd7c13e5274e5ac03379aa9
refs/heads/master
2016-09-06T17:38:44.223404
2014-02-15T00:48:46
2014-02-15T00:48:46
13,354,806
0
1
null
null
null
null
UTF-8
C++
false
false
4,262
ino
/** * @file CosaWirelessDS18B20.ino * @version 1.0 * * @section License * Copyright (C) 2013, Mikael Patel * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General * Public License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307 USA * * @section Description * Demonstration sending temperature readings from two 1-Wire DS18B20 * devices over the Wireless Interface and devices. * * @section Circuit * Connect RF433/315 Transmitter Data to ATtiny85 D0, connect VCC * GND. Connect 1-Wire digital thermometer to D3 with pullup resistor. * The pullup resistor (4K7) may be connected to D4 to allow active power * control. This sketch supports parasite powered DS18B20 devices. * Connect the DS18B20 VCC to GND. * * @section Measurements * Arduino Mini Pro 16 Mhz (Power LED removed). * Power Idle Sampling Transmitting * LiPo 3.9 V 40 uA 1.3 mA 6 mA (RF433). * FTDI 5,1 V 190 uA 1.5 mA 10 mA (RF433). * * @section Note * This sketch is designed to also run on an ATtiny85 running on the * internal 8 MHz clock. * * This file is part of the Arduino Che Cosa project. */ #include "Cosa/Pins.hh" #include "Cosa/OWI.hh" #include "Cosa/OWI/Driver/DS18B20.hh" #include "Cosa/Power.hh" #include "Cosa/Watchdog.hh" #include "Cosa/RTC.hh" // Configuration; network and device addresses #define NETWORK 0xC05A #if defined(__ARDUINO_TINY__) #define DEVICE 0x30 #else #define DEVICE 0x31 #endif // Select Wireless device driver #define USE_CC1101 // #define USE_NRF24L01P // #define USE_VWI #if defined(USE_CC1101) #include "Cosa/Wireless/Driver/CC1101.hh" CC1101 rf(NETWORK, DEVICE); #elif defined(USE_NRF24L01P) #include "Cosa/Wireless/Driver/NRF24L01P.hh" NRF24L01P rf(NETWORK, DEVICE); #elif defined(USE_VWI) #include "Cosa/Wireless/Driver/VWI.hh" #include "Cosa/Wireless/Driver/VWI/Codec/VirtualWireCodec.hh" VirtualWireCodec codec; #define SPEED 4000 #if defined(__ARDUINO_TINY__) VWI rf(NETWORK, DEVICE, SPEED, Board::D1, Board::D0, &codec); #else VWI rf(NETWORK, DEVICE, SPEED, Board::D7, Board::D8, &codec); #endif #endif // Connect to one-wire device; Assuming there are two sensors OWI owi(Board::D3); DS18B20 indoors(&owi); DS18B20 outdoors(&owi); // Active pullup (pullup resistor connected to this pin) OutputPin pw(Board::D4); void setup() { // Set up watchdog for power down sleep mode Watchdog::begin(128, SLEEP_MODE_PWR_DOWN); RTC::begin(); // Start the wireless device and powerdown rf.begin(); rf.powerdown(); // Connect to the temperature sensors pw.on(); indoors.connect(0); outdoors.connect(1); pw.off(); // Put the hardware in power down Power::all_disable(); } // Message from the device; temperature and voltage reading struct dt_msg_t { uint8_t nr; int16_t indoors; int16_t outdoors; uint16_t battery; }; static const uint8_t DIGITAL_TEMP_TYPE = 0x02; void loop() { // Message sequence number initialization static uint8_t nr = 0; // Make a conversion request and read the temperature (scratchpad) pw.on(); DS18B20::convert_request(&owi, 12, true); indoors.read_scratchpad(); outdoors.read_scratchpad(); pw.off(); // Turn on necessary hardware modules Power::all_enable(); // Initiate the message with measurements dt_msg_t msg; msg.nr = nr++; msg.indoors = indoors.get_temperature(); msg.outdoors = outdoors.get_temperature(); msg.battery = AnalogPin::bandgap(1100); // Broadcast the message and power down after completion rf.broadcast(DIGITAL_TEMP_TYPE, &msg, sizeof(msg)); rf.powerdown(); // Turn off hardware and deep sleep until next sample (period 5 s) Power::all_disable(); SLEEP(5); }
[ "matt@majenko.co.uk" ]
matt@majenko.co.uk
43bb10e4ee9f3d80ed5712ccc58181be3d5b9a75
582aa70acb599c63734caec165f0151acbe6925a
/TratamentoClassesAbstratas/circulo.cpp
73035b1a940f1bb2648a09236193d802cd76edec
[]
no_license
Silvabrunu/DCA1201
903db0981b45c9db79a4d6d4cb79afacfc883411
be9b4946e73cdbf225ca0271e1521cdb5a497359
refs/heads/master
2020-03-28T11:47:48.322187
2018-12-12T02:52:26
2018-12-12T02:52:26
148,247,496
0
0
null
null
null
null
UTF-8
C++
false
false
1,458
cpp
#include "circulo.h" #include "screen.h" #include<iostream> using namespace std; Circulo::Circulo(int _x0, int _y0, int _raio, bool _fillmode,char _brush){ x0 = _x0; y0 = _y0; raio = _raio; fillmode = _fillmode; brush = _brush; } void Circulo::draw(Screen &t){ //Altera o caracter de desenho t.setBrush(brush); int x = 0; int y = raio; int d = 1 - raio; while(y > x){ //Desenha os pontos no 2 octante e nos octantes restantes t.setPixel(x0 + x, y0 + y); t.setPixel(x0 + y, y0 + x); t.setPixel(x0 - y, y0 + x); t.setPixel(x0 - x, y0 + y); t.setPixel(x0 - x, y0 - y); t.setPixel(x0 - y, y0 - x); t.setPixel(x0 + y, y0 - x); t.setPixel(x0 + x, y0 - y); //Verifica se o circulo é preenchido e o desenha totalmente preenchido if(fillmode == 1){ for (int i = x0 - x; i <= x0 + x; i++) { t.setPixel(i, y0 + y); t.setPixel(i, y0 - y); } for (int i = x0 - y; i <= x0 + y; i++) { t.setPixel(i, y0 + x); t.setPixel(i, y0 - x); } } if(d < 0){ d = d + 2*x + 3; x = x + 1; } else{ d = d + 2*(x-y) + 5; x = x + 1; y = y - 1; } } }
[ "bss.santos.bruno@gmail.com" ]
bss.santos.bruno@gmail.com
c6050c5010ea3bc80f290f5cd7f0da98dfa57a60
ad3f34546afba57daf888798ad2d29db0361dcca
/T3000/HexFileParser.cpp
2350ae23e18146b5d491c374010fce5e98e17594
[ "MIT" ]
permissive
temcocontrols/T3000_Building_Automation_System
b7303be5d447cd8d40b1d2424b32b6c7683c2570
5fc9204df43aabfe57ccd1a5183b69940d525e2d
refs/heads/master
2023-08-31T13:37:39.375528
2023-08-29T03:30:48
2023-08-29T03:30:48
6,994,906
66
62
MIT
2023-08-08T12:38:00
2012-12-04T05:29:25
C++
GB18030
C++
false
false
12,831
cpp
#include "StdAfx.h" #include "HexFileParser.h" #include "global_function.h" CHexFileParser::CHexFileParser(void) { m_nHexFileType = HEXFILE_DATA; m_IsRAM=FALSE; } CHexFileParser::~CHexFileParser(void) { } void CHexFileParser::SetFileName(const CString& strFileName) { m_strFileName = strFileName; } ////////////////////////////////////////////////////////////////////////// // 返回int:实际的有效字节 int CHexFileParser::GetHexFileBuffer(char* pBuf, int nLen) { CFile hexFile; //the hex file int nBufLen = 0; if(hexFile.Open(m_strFileName, CFile::modeRead)) { m_nHexFileType = GetHexFileType(hexFile); BOOL bRet = TRUE; if (m_nHexFileType == 0) { CString strTips = _T("Hex file verified okay.");//_T("The Hex File is Normal."); nBufLen = ReadNormalHexFile(hexFile, pBuf, nLen); } else if(m_nHexFileType == 1) { CString strTips = _T("The hex file has a Extend Section Address Record(HEX86)."); nBufLen = ReadExtendHexFile(hexFile, pBuf, nLen); } else if (m_nHexFileType == 2) { CString strTips = _T("The hex file has a Extend Linear Addree Record(HEX86)."); nBufLen = ReadExtLinearHexFile(hexFile, pBuf, nLen); } } if (m_IsRAM) { memcpy(&global_fileInfor,&pBuf[0x8200],sizeof(Bin_Info)); } else { memcpy(&global_fileInfor,&pBuf[0x100],sizeof(Bin_Info)); } if(strlen(global_fileInfor.product_name) > 200) nBufLen = -1; //return NO_VERSION_INFO; char temocolog[6]; memcpy_s(temocolog,5,global_fileInfor.company,5); temocolog[5] = 0; CString Temco_logo; MultiByteToWideChar( CP_ACP, 0, (char *)temocolog, (int)strlen(temocolog)+1, Temco_logo.GetBuffer(MAX_PATH), MAX_PATH ); Temco_logo.ReleaseBuffer(); Temco_logo.MakeUpper(); if(Temco_logo.CompareNoCase(_T("TEMCO")) != 0&&Temco_logo.Find(L"CO2")==-1) { //return NO_VERSION_INFO; nBufLen = -1; } //return READ_SUCCESS; return nBufLen; } BOOL CHexFileParser::Is_RAM_HEXType(){ return m_IsRAM; } // 读第7,8个字符,00为Normal,02为扩展,04为扩展线性 HEXFILE_FORMAT CHexFileParser::GetHexFileType(CFile& hexFile) { int nRet = 0; char chBuf[64] = {0}; hexFile.Read(chBuf, 12); if (chBuf[8] == '0') { } else if (chBuf[8] == '2') { nRet = 1; } else if (chBuf[8] == '4') { nRet = 2; } // reset file pointer hexFile.SeekToBegin(); return (HEXFILE_FORMAT)nRet; } //////////////////////////////////////////////////////////////////////////// // Parameter: // 1, CFile& : hex file preference, to be read // 2, char* : a memory pointer, has been allocate in heep, it's a valid memory space. // 3, int : parameter 2, memory space's size. // return: // int : it's the truely length of the used buffer, also useful byte number after hex file been parsed. int CHexFileParser::ReadNormalHexFile( CFile& hexFile, char* pBuf, int nBufLen) { ASSERT(nBufLen >= 0xFFFF); //CString m_get_data_from_file; int nBufCount = 0; //*****************inspect the file********************* unsigned int nLineNum=0; char a[256]; ZeroMemory(a, 256); //while(NULL!=ar.ReadString(m_get_data_from_file))//循环读取文件,直到文件结束 while(ReadLineFromFile(hexFile, a)) {//get a line from the file,check "crc" for total file #ifdef _DEBUG if (a[8] != '0') { int n = 0; } #endif nLineNum++; //the line number that the wrong hex file; unsigned char get_hex[128]={0}; //get hex data,it is get from the line char UINT i = 0; for( i=0;i<strlen(a); i++) //get a line//去掉第一个 { a[i] = a[i+1]; } int nLen = strlen(a)-2; // 减去回车换行符号 if(strlen(a)%2==0) turn_hex_file_line_to_unsigned_char(a); // turn every char to int else { wchar_t p_c_temp[74]={'\0'}; swprintf_s(p_c_temp,_T("Error: the hex file had error at %d line!"),nLineNum); nBufCount = 0; //close_com(); return 0; } turn_int_to_unsigned_char(a,nLen,get_hex); //turn to hex if(get_hex[3]==1) //for to seektobegin() function,because to end of the file break; unsigned char uctemp2=0; for(int j=0;j<(nLen/2);j++) uctemp2+=get_hex[j]; if(uctemp2%256!=0) { wchar_t p_c_temp[74]={'\0'}; swprintf_s(p_c_temp,_T("Error: the hex file had error at %d line!"),nLineNum); nBufCount = 0; //close_com(); return 0; } if(get_hex[1]==0 && get_hex[2]==0) get_hex[4]=255; //for the 0000 register to write 255 unsigned int ltemp; ltemp=get_hex[1]*256+get_hex[2]; for(int j=0;j<get_hex[0];j++) { pBuf[ltemp+j]=get_hex[4+j];//get the data } if((UINT)nBufCount<(ltemp+get_hex[0])) { nBufCount=ltemp+get_hex[0]-1; } ZeroMemory(a, 256); }//end while hexFile.Close();//close the file return nBufCount; } BOOL CHexFileParser::DoCRC( unsigned char* szBuf, int nLen) { unsigned char uctemp=0; for(int j=0; j < nLen; j++) uctemp+=szBuf[j]; if(uctemp%256!=0) { return FALSE; } return TRUE; } WORD CHexFileParser::GetHighAddrFromFile(const CString& strLine) { WORD dwTemp = 0; char ch[128] = {0}; for (int i = 1; i < strLine.GetLength(); i++) { ch[i-1] = (char)strLine.GetAt(i); } turn_hex_file_line_to_unsigned_char(ch); unsigned char szBuf[64] = {0}; turn_int_to_unsigned_char(ch, strLine.GetLength()-1, szBuf); dwTemp = szBuf[4]*0x100 + szBuf[5]; if (dwTemp>=800) { dwTemp-=0x800; m_IsRAM=TRUE; } return dwTemp; } BOOL CHexFileParser::ReadLineFromFile(CFile& file, char* pBuffer) { //当hex文件中每一行的文件超过了256个字符的时候,我们就认为这个hex文件出现了问题 int linecharnum=0; char c; int nRet = file.Read(&c, 1); while(nRet != 0) { ++linecharnum; *pBuffer++ = c; //TRACE(_T("\n%c"),c); if (c == 0x0d) // 回车 { file.Read(&c, 1); // 读一个换行 *pBuffer++ = c; TRACE(_T("%s"),pBuffer); return TRUE; } if (linecharnum<256) { file.Read(&c, 1); } else { return FALSE; } } //TRACE(_T("%s"),pBuffer); return FALSE; } //////////////////////////////////////////////////////////////////////////// // Parameter: // 1, CFile& : hex file preference, to be read // 2, char* : a memory pointer, has been allocate in heep, it's a valid memory space. // 3, int : parameter 2, memory space's size. // return: // int : it's the truely length of the used buffer, also useful byte number after hex file been parsed. // 读扩展地址记录的hex file-最大512k地址空间 int CHexFileParser::ReadExtendHexFile(CFile& hexFile, char* pBuf, int nBufLen) { //MessageBox(NULL, _T("Sorry, don't suppot Extend Hex File. Please contact software developer."), _T("ISP"), MB_OK); ASSERT(nBufLen >= 0xFFFF); //CString m_get_data_from_file; int nBufCount = 0; //*****************inspect the file********************* unsigned int nLineNum=0; char a[256]; ZeroMemory(a, 256); //while(NULL!=ar.ReadString(m_get_data_from_file))//循环读取文件,直到文件结束 while(ReadLineFromFile(hexFile, a)) {//get a line from the file,check "crc" for total file #ifdef _DEBUG if (a[8] != '0') { int n = 0; } #endif nLineNum++; //the line number that the wrong hex file; unsigned char get_hex[128]={0}; //get hex data,it is get from the line char UINT i = 0; for( i=0;i<strlen(a); i++) //get a line { a[i] = a[i+1]; } int nLen = strlen(a)-2; // 减去回车换行符号 if(strlen(a)%2==0) turn_hex_file_line_to_unsigned_char(a); // turn every char to int else { wchar_t p_c_temp[74]={'\0'}; swprintf_s(p_c_temp,_T("Error: the hex file had error at %d line!"),nLineNum); nBufCount = 0; AfxMessageBox(p_c_temp); //close_com(); return 0; } turn_int_to_unsigned_char(a,nLen,get_hex); //turn to hex if(get_hex[3]==1) //for to seektobegin() function,because to end of the file break; unsigned char uctemp2=0; for(int j=0;j<(nLen/2);j++) uctemp2+=get_hex[j]; if(uctemp2%256!=0) { wchar_t p_c_temp[74]={'\0'}; nBufCount = 0; swprintf_s(p_c_temp,_T("Error: the hex file had error at %d line!"),nLineNum); AfxMessageBox(p_c_temp,MB_OK); //close_com(); return 0; } if(get_hex[1]==0 && get_hex[2]==0) get_hex[4]=255; //for the 0000 register to write 255 unsigned int ltemp; ltemp=get_hex[1]*256+get_hex[2]; for(int j=0;j<get_hex[0];j++) { pBuf[ltemp+j]=get_hex[4+j];//get the data } if((UINT)nBufCount<(ltemp+get_hex[0])) { nBufCount=ltemp+get_hex[0]-1; } ZeroMemory(a, 256); }//end while hexFile.Close();//close the file return nBufCount; } //////////////////////////////////////////////////////////////////////////// // Parameter: // 1, CFile& : hex file preference, to be read // 2, char* : a memory pointer, has been allocate in heep, it's a valid memory space. // 3, int : specify parameter 2, memory space's size. // return: // int : it's the truely length of the used buffer, also useful byte number after hex file been parsed. // 读扩展线性地址记录的hex file-最大32位的地址空间 BOOL CHexFileParser::ReadExtLinearHexFile(CFile& hexfile, char* pBuf, int nBufLen) { //CArchive ar(&m_hex_file,CArchive::load); //ASSERT(nBufLen >= 0xFFFF); /*if (pBuf) { delete[] pBuf; pBuf = NULL; } pBuf = new char[c_nHexFileBufLen];*/ CString strGetData; int nBufCount = 0; //*****************inspect the file********************* unsigned int nLineNumErr=0; DWORD dwHiAddr = 0; // 高位地址 char a[256]; ZeroMemory(a, 256); //while(NULL!=ar.ReadString(strGetData)) //循环读取文件,直到文件结束 while(ReadLineFromFile(hexfile, a)) { // 取得高位地址,可能不止一处扩展 if( a[8] == '4') { CString strTemp(a); dwHiAddr = GetHighAddrFromFile(strTemp); dwHiAddr <<= 16; if( nBufCount != 0) { m_szFlags.push_back(nBufCount); } // do CRC continue; } //get a line from the file,check "crc" for total file nLineNumErr++; //the line number that the wrong hex file; unsigned char get_hex[128]={0};//get hex data,it is get from the line char //the number is (i-1) //int nLen = strGetData.GetLength(); for(UINT i=0; i<strlen(a); i++) // 去掉冒号 { a[i]=a[i+1]; } int nLen = strlen(a)-2; // 不算回车换行的长度 if(strlen(a)%2==0) turn_hex_file_line_to_unsigned_char(a);//turn every char to int else { wchar_t p_c_temp[74]={'\0'}; swprintf_s(p_c_temp,_T("Error: the hex file had error at %d line!"),nLineNumErr); //AddStringToOutPuts(p_c_temp); nBufCount = 0; AfxMessageBox(p_c_temp); //close_com(); goto END; return 0; } turn_int_to_unsigned_char(a,nLen,get_hex);//turn to hex if(get_hex[3]==1) //for to seektobegin() function,because to end of the file break; if(!DoCRC( get_hex, nLen/2)) { wchar_t p_c_temp[74]={'\0'}; swprintf_s(p_c_temp,_T("Error: the hex file had error at %d line!"),nLineNumErr); //AddStringToOutPuts(p_c_temp); nBufCount = 0; AfxMessageBox(p_c_temp, MB_OK); //close_com(); goto END; return 0; } // if(get_hex[1]==0 && get_hex[2]==0) // get_hex[4]=255;//for the 0000 register to write 255 int temp; char temp_buf[32]; if (nLineNumErr==9) { for (int i=0;i<32;i++) { temp_buf[i]=a[i+8]; } for (int i=0;i<20;i++) { temp=temp_buf[2*i]*16+temp_buf[2*i+1]; m_DeviceInfor[i]=temp; } //m_softwareRev = (temp_buf[30] + temp_buf[31]*256)/10.0; //m_ProductModel=m_DeviceInfor[0]; m_softwareRev= ((a[38]*16+a[39]) + (a[40]*16 + a[41])*256)/10.0; m_ProductName.Empty(); for (int i=0;i<10;i++) { CString temp1; temp1.Format(_T("%C"),m_DeviceInfor[5+i]); m_ProductName = m_ProductName + temp1; } } unsigned int ltemp; ltemp=get_hex[1]*256+get_hex[2] + dwHiAddr; // if (m_IsRAM) // { // ltemp-=0x00008000; // } for(int j=0;j<get_hex[0];j++) pBuf[ltemp+j]=get_hex[4+j];//get the data if((UINT)nBufCount<(ltemp+get_hex[0])) nBufCount=ltemp+get_hex[0]; ZeroMemory(a, 256); }//end while m_szFlags.push_back(nBufCount); END: hexfile.Close();//close the file return nBufCount; //return 0 ; } CString CHexFileParser::Get_HexInfor(){ return m_ProductName+_T(" ")+m_ChipName; } HEXFILE_FORMAT CHexFileParser::GetHexFileFormatType() { return m_nHexFileType; } int CHexFileParser::GetExtendHexFileSectionFlag(vector<int>& szFlags) { ASSERT(m_szFlags.size() > 0); szFlags.clear(); szFlags = m_szFlags; return szFlags.size(); } void CHexFileParser::Get_DeviceInfor(UINT &ProductModel,float &SoftwareVersion,CString &ProductName,CString &ChipName,UINT &Chipsize){ ProductModel=m_ProductModel; SoftwareVersion=m_softwareRev; ProductName=m_ProductName; ChipName=m_ChipName; Chipsize=m_ChipSize; }
[ "Alex@temcocontrols.com" ]
Alex@temcocontrols.com
6ee35452f550a1eaf7fb0de59f3ad1a26a025ce5
7e791eccdc4d41ba225a90b3918ba48e356fdd78
/chromium/src/chrome/browser/engagement/site_engagement_metrics.cc
2020022bbceeb1ff45c9fecaf25fd905ff81ca88
[ "BSD-3-Clause" ]
permissive
WiViClass/cef-3.2623
4e22b763a75e90d10ebf9aa3ea9a48a3d9ccd885
17fe881e9e481ef368d9f26e903e00a6b7bdc018
refs/heads/master
2021-01-25T04:38:14.941623
2017-06-09T07:37:43
2017-06-09T07:37:43
93,824,379
2
1
null
null
null
null
UTF-8
C++
false
false
3,161
cc
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/engagement/site_engagement_metrics.h" #include "base/metrics/histogram_macros.h" const char SiteEngagementMetrics::kTotalEngagementHistogram[] = "SiteEngagementService.TotalEngagement"; const char SiteEngagementMetrics::kTotalOriginsHistogram[] = "SiteEngagementService.OriginsEngaged"; const char SiteEngagementMetrics::kMeanEngagementHistogram[] = "SiteEngagementService.MeanEngagement"; const char SiteEngagementMetrics::kMedianEngagementHistogram[] = "SiteEngagementService.MedianEngagement"; const char SiteEngagementMetrics::kEngagementScoreHistogram[] = "SiteEngagementService.EngagementScore"; const char SiteEngagementMetrics::kOriginsWithMaxEngagementHistogram[] = "SiteEngagementService.OriginsWithMaxEngagement"; const char SiteEngagementMetrics::kOriginsWithMaxDailyEngagementHistogram[] = "SiteEngagementService.OriginsWithMaxDailyEngagement"; const char SiteEngagementMetrics::kPercentOriginsWithMaxEngagementHistogram[] = "SiteEngagementService.PercentOriginsWithMaxEngagement"; const char SiteEngagementMetrics::kEngagementTypeHistogram[] = "SiteEngagementService.EngagementType"; const char SiteEngagementMetrics::kDaysSinceLastShortcutLaunchHistogram[] = "SiteEngagementService.DaysSinceLastShortcutLaunch"; void SiteEngagementMetrics::RecordTotalSiteEngagement( double total_engagement) { UMA_HISTOGRAM_COUNTS_10000(kTotalEngagementHistogram, total_engagement); } void SiteEngagementMetrics::RecordTotalOriginsEngaged(int num_origins) { UMA_HISTOGRAM_COUNTS_10000(kTotalOriginsHistogram, num_origins); } void SiteEngagementMetrics::RecordMeanEngagement(double mean_engagement) { UMA_HISTOGRAM_COUNTS_100(kMeanEngagementHistogram, mean_engagement); } void SiteEngagementMetrics::RecordMedianEngagement(double median_engagement) { UMA_HISTOGRAM_COUNTS_100(kMedianEngagementHistogram, median_engagement); } void SiteEngagementMetrics::RecordEngagementScores( std::map<GURL, double> score_map) { for (const auto& value: score_map) { UMA_HISTOGRAM_COUNTS_100(kEngagementScoreHistogram, value.second); } } void SiteEngagementMetrics::RecordOriginsWithMaxEngagement(int total_origins) { UMA_HISTOGRAM_COUNTS_100(kOriginsWithMaxEngagementHistogram, total_origins); } void SiteEngagementMetrics::RecordOriginsWithMaxDailyEngagement( int total_origins) { UMA_HISTOGRAM_COUNTS_100(kOriginsWithMaxDailyEngagementHistogram, total_origins); } void SiteEngagementMetrics::RecordPercentOriginsWithMaxEngagement( double percentage) { UMA_HISTOGRAM_COUNTS_100(kPercentOriginsWithMaxEngagementHistogram, percentage); } void SiteEngagementMetrics::RecordEngagement(EngagementType type) { UMA_HISTOGRAM_ENUMERATION(kEngagementTypeHistogram, type, ENGAGEMENT_LAST); } void SiteEngagementMetrics::RecordDaysSinceLastShortcutLaunch(int days) { UMA_HISTOGRAM_COUNTS_100(kDaysSinceLastShortcutLaunchHistogram, days); }
[ "1480868058@qq.com" ]
1480868058@qq.com
0edd5768e9817dd5f737c6eb3512767f68e94cf6
ac227cc22d5f5364e5d029a2cef83816a6954590
/applications/physbam/physbam-lib/Public_Library/PhysBAM_Solids/PhysBAM_Solids/Fracture/VIRTUAL_NODE.h
f405e469f6417de5c19fec9d64e0fea62f9d4008
[ "BSD-3-Clause" ]
permissive
schinmayee/nimbus
597185bc8bac91a2480466cebc8b337f5d96bd2e
170cd15e24a7a88243a6ea80aabadc0fc0e6e177
refs/heads/master
2020-03-11T11:42:39.262834
2018-04-18T01:28:23
2018-04-18T01:28:23
129,976,755
0
0
BSD-3-Clause
2018-04-17T23:33:23
2018-04-17T23:33:23
null
UTF-8
C++
false
false
1,033
h
//##################################################################### // Copyright 2003-2006, Zhaosheng Bao, Ron Fedkiw, Geoffrey Irving, Neil Molino, Eftychios Sifakis. // This file is part of PhysBAM whose distribution is governed by the license contained in the accompanying file PHYSBAM_COPYRIGHT.txt. //##################################################################### // Class VIRTUAL_NODE //##################################################################### #ifndef __VIRTUAL_NODE__ #define __VIRTUAL_NODE__ #include <PhysBAM_Tools/Arrays/ARRAY.h> namespace PhysBAM{ class VIRTUAL_NODE { public: int index; int corresponding_real_node; ARRAY<int> recipients; VIRTUAL_NODE() {} VIRTUAL_NODE(const int corresponding_real_node_input) :index(0),corresponding_real_node(corresponding_real_node_input) {} bool Is_Received_By(const int node) const {return recipients.Contains(node);} //##################################################################### }; } #endif
[ "quhang@stanford.edu" ]
quhang@stanford.edu