diff --git a/VectoCore/VectoCoreTest/Integration/ADAS/ADASTestsConventional.cs b/VectoCore/VectoCoreTest/Integration/ADAS/ADASTestsConventional.cs index 8d3fd155987bf1eb2c6a9989c72d99f6634e7e05..2ee8043051a105a7fff42d56eb12c9a066a14200 100644 --- a/VectoCore/VectoCoreTest/Integration/ADAS/ADASTestsConventional.cs +++ b/VectoCore/VectoCoreTest/Integration/ADAS/ADASTestsConventional.cs @@ -20,7 +20,10 @@ namespace TUGraz.VectoCore.Tests.Integration.ADAS private const string Group5NoPCC = @"TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_ENG.vecto"; private const string Group5PCC12 = @"TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_ENG_PCC12.vecto"; private const string Group5PCC123 = @"TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_ENG_PCC123.vecto"; - private const string Group5PCC123EcoSS = @"TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_ENG_PCC123EcoSS.vecto"; + private const string Group5PCC123EcoNoEngineStop = @"TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_ENG_PCC123Eco.vecto"; + private const string Group5PCC123EcoEngineStop = @"TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_ENG_PCC123EcoEngineStop.vecto"; + private const string Group5WithEngineStop = @"TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_ENG_WithEngineStop.vecto"; + private const string Group5WithOutEngineStop = @"TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_ENG_WithoutEngineStop.vecto"; private IXMLInputDataReader _xmlInputReader; private IKernel _kernel; @@ -210,9 +213,34 @@ namespace TUGraz.VectoCore.Tests.Integration.ADAS } - - - [ + // FC: Group5NoPCC <= Group5PCC12 <= Group5PCC123 <= Group5PCC123EcoEngineStop + // FC for Group5PCC123EcoNoEngineStop can sometimes be bigger than all others. + [TestCase(Group5WithOutEngineStop, 0, TestName = "G5Eng EcoRoll Without Engine Stop CrestCoast 1"), + TestCase(Group5WithOutEngineStop, 1, TestName = "G5Eng EcoRoll Without Engine Stop CrestCoast 2"), + TestCase(Group5WithOutEngineStop, 2, TestName = "G5Eng EcoRoll Without Engine Stop Case A"), // Case A + TestCase(Group5WithOutEngineStop, 3, TestName = "G5Eng EcoRoll Without Engine Stop Case B"), // Case B + TestCase(Group5WithOutEngineStop, 4, TestName = "G5Eng EcoRoll Without Engine Stop Case C"), // Case C + TestCase(Group5WithOutEngineStop, 5, TestName = "G5Eng EcoRoll Without Engine Stop Case D"), // Case D + TestCase(Group5WithOutEngineStop, 6, TestName = "G5Eng EcoRoll Without Engine Stop Case E"), // Case E + TestCase(Group5WithOutEngineStop, 7, TestName = "G5Eng EcoRoll Without Engine Stop Case F"), // Case F + TestCase(Group5WithOutEngineStop, 8, TestName = "G5Eng EcoRoll Without Engine Stop Case G"), // Case G + TestCase(Group5WithOutEngineStop, 9, TestName = "G5Eng EcoRoll Without Engine Stop Case H"), // Case H + TestCase(Group5WithOutEngineStop, 10, TestName = "G5Eng EcoRoll Without Engine Stop Case I"), // Case I + TestCase(Group5WithOutEngineStop, 11, TestName = "G5Eng EcoRoll Without Engine Stop Case J"), // Case J + + TestCase(Group5WithEngineStop, 0, TestName = "G5Eng EcoRoll With Engine Stop CrestCoast 1"), + TestCase(Group5WithEngineStop, 1, TestName = "G5Eng EcoRoll With Engine Stop CrestCoast 2"), + TestCase(Group5WithEngineStop, 2, TestName = "G5Eng EcoRoll With Engine Stop Case A"), // Case A + TestCase(Group5WithEngineStop, 3, TestName = "G5Eng EcoRoll With Engine Stop Case B"), // Case B + TestCase(Group5WithEngineStop, 4, TestName = "G5Eng EcoRoll With Engine Stop Case C"), // Case C + TestCase(Group5WithEngineStop, 5, TestName = "G5Eng EcoRoll With Engine Stop Case D"), // Case D + TestCase(Group5WithEngineStop, 6, TestName = "G5Eng EcoRoll With Engine Stop Case E"), // Case E + TestCase(Group5WithEngineStop, 7, TestName = "G5Eng EcoRoll With Engine Stop Case F"), // Case F + TestCase(Group5WithEngineStop, 8, TestName = "G5Eng EcoRoll With Engine Stop Case G"), // Case G + TestCase(Group5WithEngineStop, 9, TestName = "G5Eng EcoRoll With Engine Stop Case H"), // Case H + TestCase(Group5WithEngineStop, 10, TestName = "G5Eng EcoRoll With Engine Stop Case I"), // Case I + TestCase(Group5WithEngineStop, 11, TestName = "G5Eng EcoRoll With Engine Stop Case J"), // Case J + TestCase(Group5NoPCC, 0, TestName = "G5Eng NoPCC CrestCoast 1"), TestCase(Group5NoPCC, 1, TestName = "G5Eng NoPCC CrestCoast 2"), TestCase(Group5NoPCC, 2, TestName = "G5Eng NoPCC Case A"), // Case A @@ -226,7 +254,7 @@ namespace TUGraz.VectoCore.Tests.Integration.ADAS TestCase(Group5NoPCC, 10, TestName = "G5Eng NoPCC Case I"), // Case I TestCase(Group5NoPCC, 11, TestName = "G5Eng NoPCC Case J"), // Case J - + // FuelConsumption should always be <= Group5NoPCC TestCase(Group5PCC12, 0, TestName = "G5Eng PCC12 CrestCoast 1"), TestCase(Group5PCC12, 1, TestName = "G5Eng PCC12 CrestCoast 2"), TestCase(Group5PCC12, 2, TestName = "G5Eng PCC12 Case A"), // Case A @@ -240,6 +268,7 @@ namespace TUGraz.VectoCore.Tests.Integration.ADAS TestCase(Group5PCC12, 10, TestName = "G5Eng PCC12 Case I"), // Case I TestCase(Group5PCC12, 11, TestName = "G5Eng PCC12 Case J"), // Case J + // FuelConsumption should always be <= Group5PCC12 TestCase(Group5PCC123, 2, TestName = "G5Eng PCC123 Case A"), // Case A TestCase(Group5PCC123, 3, TestName = "G5Eng PCC123 Case B"), // Case B TestCase(Group5PCC123, 4, TestName = "G5Eng PCC123 Case C"), // Case C @@ -251,16 +280,31 @@ namespace TUGraz.VectoCore.Tests.Integration.ADAS TestCase(Group5PCC123, 10, TestName = "G5Eng PCC123 Case I"), // Case I TestCase(Group5PCC123, 11, TestName = "G5Eng PCC123 Case J"), // Case J - TestCase(Group5PCC123EcoSS, 2, TestName = "G5Eng PCC123-EcoSS Case A"), // Case A - TestCase(Group5PCC123EcoSS, 3, TestName = "G5Eng PCC123-EcoSS Case B"), // Case B - TestCase(Group5PCC123EcoSS, 4, TestName = "G5Eng PCC123-EcoSS Case C"), // Case C - TestCase(Group5PCC123EcoSS, 5, TestName = "G5Eng PCC123-EcoSS Case D"), // Case D - TestCase(Group5PCC123EcoSS, 6, TestName = "G5Eng PCC123-EcoSS Case E"), // Case E - TestCase(Group5PCC123EcoSS, 7, TestName = "G5Eng PCC123-EcoSS Case F"), // Case F - TestCase(Group5PCC123EcoSS, 8, TestName = "G5Eng PCC123-EcoSS Case G"), // Case G - TestCase(Group5PCC123EcoSS, 9, TestName = "G5Eng PCC123-EcoSS Case H"), // Case H - TestCase(Group5PCC123EcoSS, 10, TestName = "G5Eng PCC123-EcoSS Case I"), // Case I - TestCase(Group5PCC123EcoSS, 11, TestName = "G5Eng PCC123-EcoSS Case J"), // Case J + // FuelConsumption can sometimes be greater than Group5PCC123 (because of engine idling) + TestCase(Group5PCC123EcoNoEngineStop, 2, TestName = "G5Eng PCC123-Eco WithoutEngineStop Case A"), // Case A + TestCase(Group5PCC123EcoNoEngineStop, 3, TestName = "G5Eng PCC123-Eco WithoutEngineStop Case B"), // Case B + TestCase(Group5PCC123EcoNoEngineStop, 4, TestName = "G5Eng PCC123-Eco WithoutEngineStop Case C"), // Case C + TestCase(Group5PCC123EcoNoEngineStop, 5, TestName = "G5Eng PCC123-Eco WithoutEngineStop Case D"), // Case D + TestCase(Group5PCC123EcoNoEngineStop, 6, TestName = "G5Eng PCC123-Eco WithoutEngineStop Case E"), // Case E + TestCase(Group5PCC123EcoNoEngineStop, 7, TestName = "G5Eng PCC123-Eco WithoutEngineStop Case F"), // Case F + TestCase(Group5PCC123EcoNoEngineStop, 8, TestName = "G5Eng PCC123-Eco WithoutEngineStop Case G"), // Case G + TestCase(Group5PCC123EcoNoEngineStop, 9, TestName = "G5Eng PCC123-Eco WithoutEngineStop Case H"), // Case H + TestCase(Group5PCC123EcoNoEngineStop, 10, TestName = "G5Eng PCC123-Eco WithoutEngineStop Case I"), // Case I + TestCase(Group5PCC123EcoNoEngineStop, 11, TestName = "G5Eng PCC123-Eco WithoutEngineStop Case J"), // Case J + + // FuelConsumption should always be <= Group5PCC123 + TestCase(Group5PCC123EcoEngineStop, 0, TestName = "G5Eng PCC123-Eco-EngineStop CrestCoast 1"), + TestCase(Group5PCC123EcoEngineStop, 1, TestName = "G5Eng PCC123-Eco-EngineStop CrestCoast 2"), + TestCase(Group5PCC123EcoEngineStop, 2, TestName = "G5Eng PCC123-Eco-EngineStop Case A"), // Case A + TestCase(Group5PCC123EcoEngineStop, 3, TestName = "G5Eng PCC123-Eco-EngineStop Case B"), // Case B + TestCase(Group5PCC123EcoEngineStop, 4, TestName = "G5Eng PCC123-Eco-EngineStop Case C"), // Case C + TestCase(Group5PCC123EcoEngineStop, 5, TestName = "G5Eng PCC123-Eco-EngineStop Case D"), // Case D + TestCase(Group5PCC123EcoEngineStop, 6, TestName = "G5Eng PCC123-Eco-EngineStop Case E"), // Case E + TestCase(Group5PCC123EcoEngineStop, 7, TestName = "G5Eng PCC123-Eco-EngineStop Case F"), // Case F + TestCase(Group5PCC123EcoEngineStop, 8, TestName = "G5Eng PCC123-Eco-EngineStop Case G"), // Case G + TestCase(Group5PCC123EcoEngineStop, 9, TestName = "G5Eng PCC123-Eco-EngineStop Case H"), // Case H + TestCase(Group5PCC123EcoEngineStop, 10, TestName = "G5Eng PCC123-Eco-EngineStop Case I"), // Case I + TestCase(Group5PCC123EcoEngineStop, 11, TestName = "G5Eng PCC123-Eco-EngineStop Case J"), // Case J ] public void TestPCCEngineeringSampleCases(string jobName, int cycleIdx) { diff --git a/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_TractorWithEngineStop.vveh b/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_TractorWithEngineStop.vveh new file mode 100644 index 0000000000000000000000000000000000000000..e23ec86cd1c3a27fee1eb0f8aa8b9f1e7343ffb6 --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_TractorWithEngineStop.vveh @@ -0,0 +1,94 @@ +{ + "Header": { + "CreatedBy": "", + "Date": "2021-08-04T15:43:14.9505960Z", + "AppVersion": "3", + "FileVersion": 8 + }, + "Body": { + "SavedInDeclMode": false, + "VehCat": "Tractor", + "LegislativeClass": "Unknown", + "CurbWeight": 8229.0, + "CurbWeightExtra": 7500.0, + "MassMax": 18.0, + "Loading": 19300.0, + "rdyn": 492.0, + "CdCorrMode": "CdofVdecl", + "CdCorrFile": "", + "AxleConfig": { + "Type": "4x2", + "Axles": [ + { + "Inertia": 14.9, + "Wheels": "315/70 R22.5", + "AxleWeightShare": 0.2, + "TwinTyres": false, + "RRCISO": 0.0055, + "FzISO": 33350.0, + "Type": "VehicleNonDriven" + }, + { + "Inertia": 14.9, + "Wheels": "315/70 R22.5", + "AxleWeightShare": 0.25, + "TwinTyres": true, + "RRCISO": 0.0065, + "FzISO": 33350.0, + "Type": "VehicleDriven" + }, + { + "Inertia": 19.2, + "Wheels": "385/65 R22.5", + "AxleWeightShare": 0.18333, + "TwinTyres": false, + "RRCISO": 0.0055, + "FzISO": 41690.0, + "Type": "VehicleNonDriven" + }, + { + "Inertia": 19.2, + "Wheels": "385/65 R22.5", + "AxleWeightShare": 0.18333, + "TwinTyres": false, + "RRCISO": 0.0055, + "FzISO": 41690.0, + "Type": "VehicleNonDriven" + }, + { + "Inertia": 19.2, + "Wheels": "385/65 R22.5", + "AxleWeightShare": 0.18334, + "TwinTyres": false, + "RRCISO": 0.0055, + "FzISO": 41690.0, + "Type": "VehicleNonDriven" + } + ] + }, + "EngineStopStart": false, + "EcoRoll": "WithEngineStop", + "PredictiveCruiseControl": "None", + "ATEcoRollReleaseLockupClutch": false, + "CdA": 5.3, + "VehicleHeight": 0.0, + "IdlingSpeed": 0.0, + "Retarder": { + "Type": "secondary", + "Ratio": 1.0, + "File": "Default.vrlm" + }, + "Angledrive": { + "Type": "None", + "Ratio": 0.0, + "LossMap": "" + }, + "PTO": { + "Type": "None", + "LossMap": "", + "Cycle": "", + "CycleDriving": "" + }, + "TorqueLimits": {} + } +} \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_TractorWithoutEngineStop.vveh b/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_TractorWithoutEngineStop.vveh new file mode 100644 index 0000000000000000000000000000000000000000..c40bd78b197c3b25e3649ae26fcb26d46946bca6 --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_TractorWithoutEngineStop.vveh @@ -0,0 +1,94 @@ +{ + "Header": { + "CreatedBy": "", + "Date": "2021-08-04T15:43:32.3193775Z", + "AppVersion": "3", + "FileVersion": 8 + }, + "Body": { + "SavedInDeclMode": false, + "VehCat": "Tractor", + "LegislativeClass": "Unknown", + "CurbWeight": 8229.0, + "CurbWeightExtra": 7500.0, + "MassMax": 18.0, + "Loading": 19300.0, + "rdyn": 492.0, + "CdCorrMode": "CdofVdecl", + "CdCorrFile": "", + "AxleConfig": { + "Type": "4x2", + "Axles": [ + { + "Inertia": 14.9, + "Wheels": "315/70 R22.5", + "AxleWeightShare": 0.2, + "TwinTyres": false, + "RRCISO": 0.0055, + "FzISO": 33350.0, + "Type": "VehicleNonDriven" + }, + { + "Inertia": 14.9, + "Wheels": "315/70 R22.5", + "AxleWeightShare": 0.25, + "TwinTyres": true, + "RRCISO": 0.0065, + "FzISO": 33350.0, + "Type": "VehicleDriven" + }, + { + "Inertia": 19.2, + "Wheels": "385/65 R22.5", + "AxleWeightShare": 0.18333, + "TwinTyres": false, + "RRCISO": 0.0055, + "FzISO": 41690.0, + "Type": "VehicleNonDriven" + }, + { + "Inertia": 19.2, + "Wheels": "385/65 R22.5", + "AxleWeightShare": 0.18333, + "TwinTyres": false, + "RRCISO": 0.0055, + "FzISO": 41690.0, + "Type": "VehicleNonDriven" + }, + { + "Inertia": 19.2, + "Wheels": "385/65 R22.5", + "AxleWeightShare": 0.18334, + "TwinTyres": false, + "RRCISO": 0.0055, + "FzISO": 41690.0, + "Type": "VehicleNonDriven" + } + ] + }, + "EngineStopStart": false, + "EcoRoll": "WithoutEngineStop", + "PredictiveCruiseControl": "None", + "ATEcoRollReleaseLockupClutch": false, + "CdA": 5.3, + "VehicleHeight": 0.0, + "IdlingSpeed": 0.0, + "Retarder": { + "Type": "secondary", + "Ratio": 1.0, + "File": "Default.vrlm" + }, + "Angledrive": { + "Type": "None", + "Ratio": 0.0, + "LossMap": "" + }, + "PTO": { + "Type": "None", + "LossMap": "", + "Cycle": "", + "CycleDriving": "" + }, + "TorqueLimits": {} + } +} \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_ENG_CrestCoast2.vmod b/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_ENG_CrestCoast2.vmod deleted file mode 100644 index 7839e8565ab62d1c9488ee5ef18fab2e22ec53a5..0000000000000000000000000000000000000000 --- a/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_ENG_CrestCoast2.vmod +++ /dev/null @@ -1,1067 +0,0 @@ -# VECTO-DEV 0.1.0.1600-RC - 13.08.2019 14:24 -time [s],dt [s],dist [m],v_act [km/h],v_targ [km/h],acc [m/s^2],grad [%],Gear [-],n_eng_avg [1/min],T_eng_fcmap [Nm],Tq_full [Nm],Tq_drag [Nm],P_eng_fcmap [kW],P_eng_full [kW],P_eng_full_stat [kW],P_eng_drag [kW],P_eng_inertia [kW],P_eng_out [kW],P_clutch_loss [kW],P_clutch_out [kW],P_aux [kW],P_gbx_in [kW],P_gbx_loss [kW],P_gbx_inertia [kW],P_ret_in [kW],P_ret_loss [kW],P_angle_in [kW],P_angle_loss [kW],P_axle_in [kW],P_axle_loss [kW],P_brake_in [kW],P_brake_loss [kW],P_wheel_in [kW],P_wheel_inertia [kW],P_trac [kW],P_slope [kW],P_air [kW],P_roll [kW],P_veh_inertia [kW],n_gbx_out_avg [1/min],T_gbx_out [Nm],altitude,P_aux_CYCLE [kW],P_aux_CONSTANTAUX [kW],P_aux_ES [kW],P_WHR_el [kW],P_WHR_el_corr [kW],P_aux_ESS_mech [kW],P_ice_start [kW],FC-Map [g/h],FC-NCVc [g/h],FC-WHTCc [g/h],FC-AAUX [g/h],FC-ESS [g/h],FC-Final_mod [g/h] -0.5000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,0.0000,0.0000,0.0000,0.0000,,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,0.0000,0.0000,0.0000,0.0000,,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -2.3536,0.7071,0.2500,1.2728,70.0000,1.0000,0.0000,3,632.8723,1029.0314,1235.9654,-138.8218,68.1983,81.9127,83.8861,-9.2003,3.3231,57.2772,42.4882,14.7889,7.5980,14.7889,0.9201,0.0000,13.8688,0.0190,,,13.8499,0.4488,13.4011,0.0000,13.4011,0.2988,13.1023,0.0000,0.0003,0.7173,12.3846,18.1161,7310.4842,0.0000,0.0000,5.0000,2.5980,0.0000,0.0000,0.0000,0.0000,12976.4209,12976.4209,12976.4209,12976.4209,12976.4209,12976.4209 -2.9029,0.3916,0.6036,3.2504,70.0000,1.0000,0.0000,3,665.7445,973.6275,1305.5435,-139.6436,67.8780,91.0181,93.6633,-9.7355,0.0000,60.2860,22.4972,37.7888,7.5920,37.7888,2.3506,0.0000,35.4382,0.0484,,,35.3898,1.1643,34.2255,0.0000,34.2255,0.7632,33.4623,0.0000,0.0030,1.8318,31.6275,46.2645,7314.6804,0.0000,0.0000,5.0000,2.5920,0.0000,0.0000,0.0000,0.0000,12877.3575,12877.3575,12877.3575,12877.3575,12877.3575,12877.3575 -3.3086,0.4198,1.1529,4.7109,70.0000,1.0000,0.0000,3,683.7830,1017.5552,1250.7316,-140.0946,72.8626,89.5594,99.2559,-10.0316,3.3186,61.9522,7.1552,54.7970,7.5918,54.7970,3.4116,0.0000,51.3854,0.0702,,,51.3152,1.7070,49.6082,0.0000,49.6082,1.1061,48.5022,0.0000,0.0089,2.6549,45.8384,67.0520,7318.1202,0.0000,0.0000,5.0000,2.5918,0.0000,0.0000,0.0000,0.0000,13900.0664,13900.0664,13900.0664,13900.0664,13900.0664,13900.0664 -3.7370,0.4371,1.9121,6.2533,70.0000,1.0000,0.0000,3,802.8305,1207.6039,1338.8270,-143.1274,101.5259,112.5581,140.2067,-12.0330,20.9550,72.9768,0.0000,72.9768,7.5941,72.9768,4.7379,0.0000,68.2389,0.0932,,,68.1457,2.2863,65.8593,0.0000,65.8593,1.4682,64.3912,0.0000,0.0207,3.5241,60.8464,89.0056,7321.2619,0.0000,0.0000,5.0000,2.5941,0.0000,0.0000,0.0000,0.0000,19190.8873,19190.8873,19190.8873,19190.8873,19190.8873,19190.8873 -4.1799,0.4486,2.8899,7.8475,70.0000,1.0000,0.0000,3,1007.4976,1192.5984,1583.8602,-152.4873,125.8250,167.1050,225.1475,-16.0882,26.2971,91.8938,0.0000,91.8938,7.6340,91.8938,6.2174,0.0000,85.6765,0.1171,,,85.5593,2.8957,82.6637,0.0000,82.6637,1.8425,80.8212,0.0000,0.0406,4.4225,76.3581,111.6960,7324.7933,0.0000,0.0000,5.0000,2.6340,0.0000,0.0000,0.0000,0.0000,23583.0217,23583.0217,23583.0217,23583.0217,23583.0217,23583.0217 -4.6568,0.5053,4.0920,8.5642,70.0000,-0.0997,0.0000,0,1049.5321,-62.0090,1685.1822,-155.2196,-6.8152,185.2129,234.5410,-17.0597,-14.4570,0.0000,0.0000,0.0000,7.6418,0.0000,3.1097,0.0000,-3.1097,0.1279,,,-3.2376,0.3933,-3.6309,0.0000,-3.6309,-0.2005,-3.4304,0.0000,0.0522,4.8264,-8.3091,121.8972,-243.6096,0.0000,0.0000,5.0000,2.6418,0.0000,0.0000,0.0000,0.0000,1660.7845,1660.7845,1660.7845,1660.7845,1660.7845,1660.7845 -5.1620,0.5051,5.2689,8.3873,70.0000,-0.0948,0.0000,0,927.5760,-50.4502,1164.9903,-148.7409,-4.9005,113.1619,190.6496,-14.4480,-12.5132,0.0000,0.0000,0.0000,7.6127,0.0000,2.6478,0.0000,-2.6478,0.1253,,,-2.7731,0.3711,-3.1441,0.0000,-3.1441,-0.1866,-2.9575,0.0000,0.0491,4.7268,-7.7334,119.3800,-211.8000,0.0000,0.0000,5.0000,2.6127,0.0000,0.0000,0.0000,0.0000,1549.9888,1549.9888,1549.9888,1549.9888,1549.9888,1549.9888 -5.6445,0.4599,6.4218,9.0253,70.0000,0.8748,0.0000,4,922.0862,1168.6056,1168.6056,-148.4939,112.8413,112.8413,188.2676,-14.3387,12.4200,92.8101,0.0000,92.8101,7.6112,92.8101,5.8766,0.0000,86.9335,0.1349,,,86.7986,2.9711,83.8275,0.0000,83.8275,1.8538,81.9737,0.0000,0.0615,5.0863,76.8259,128.4610,6462.3010,0.0000,0.0000,5.0000,2.6112,0.0000,0.0000,0.0000,0.0000,21284.4482,21284.4482,21284.4482,21284.4482,21284.4482,21284.4482 -6.1048,0.4608,7.7759,10.5789,70.0000,1.0000,0.0000,4,1060.0408,1373.6424,1638.8480,-155.9027,152.4842,181.9239,236.8894,-17.3063,21.5950,123.2455,0.0000,123.2455,7.6437,123.2455,7.6740,0.0000,115.5716,0.1585,,,115.4131,3.9324,111.4807,0.0000,111.4807,2.4838,108.9969,0.0000,0.0990,5.9619,102.9360,150.5740,7329.4682,0.0000,0.0000,5.0000,2.6437,0.0000,0.0000,0.0000,0.0000,28244.2614,28244.2614,28244.2614,28244.2614,28244.2614,28244.2614 -6.5681,0.4658,9.3604,12.2468,70.0000,1.0000,0.0000,4,1227.1616,1366.3859,1743.1045,-167.9878,175.5916,224.0030,274.2362,-21.5878,24.9996,142.9070,0.0000,142.9070,7.6850,142.9070,9.1508,0.0000,133.7562,0.1839,,,133.5723,4.4773,129.0950,0.0000,129.0950,2.8754,126.2196,0.0000,0.1534,6.9018,119.1644,174.3127,7327.5089,0.0000,0.0000,5.0000,2.6850,0.0000,0.0000,0.0000,0.0000,32425.2297,32425.2297,32425.2297,32425.2297,32425.2297,32425.2297 -7.0358,0.4697,11.1778,13.9305,70.0000,1.0000,0.0000,4,1395.8804,1361.3795,1794.0582,-186.5468,199.0013,262.2487,311.9401,-27.2687,28.4367,162.8274,0.0000,162.8274,7.7373,162.8274,10.7157,0.0000,152.1117,0.2097,,,151.9020,5.0070,146.8950,0.0000,146.8950,3.2707,143.6243,0.0000,0.2256,7.8507,135.5480,198.2785,7325.8561,0.0000,0.0000,5.0000,2.7373,0.0000,0.0000,0.0000,0.0000,36619.7458,36619.7458,36619.7458,36619.7458,36619.7458,36619.7458 -7.5071,0.4728,13.2300,15.6269,70.0000,1.0000,0.0000,4,1565.8618,1358.0260,1749.1586,-211.7673,222.6846,286.8212,321.9128,-34.7249,31.8995,182.9854,0.0000,182.9854,7.7997,182.9854,12.3683,0.0000,170.6171,0.2358,,,170.3813,5.5332,164.8480,0.0000,164.8480,3.6690,161.1791,0.0000,0.3182,8.8067,152.0542,222.4235,7325.0918,0.0000,0.0000,5.0000,2.7997,0.0000,0.0000,0.0000,0.0000,41152.8068,41152.8068,41152.8068,41152.8068,41152.8068,41152.8068 -7.9947,0.5026,15.5186,16.3941,70.0000,-0.0927,0.0000,0,1532.1776,-206.7644,1809.1486,-206.7644,-33.1752,290.2766,320.5547,-33.1752,-40.9625,0.0000,0.0000,0.0000,7.7873,0.0000,4.5228,0.0000,-4.5228,0.2476,,,-4.7704,0.7659,-5.5363,0.0000,-5.5363,-0.3568,-5.1795,0.0000,0.3663,9.2390,-14.7849,233.3426,-185.0914,0.0000,0.0000,5.0000,2.7873,0.0000,0.0000,0.0000,0.0000,0.0008,0.0008,0.0008,0.0008,0.0008,0.0008 -8.4972,0.5024,17.7839,16.2328,70.0000,-0.0856,0.0000,0,1304.7292,-176.5202,1275.7969,-176.5202,-24.1181,174.3133,291.5704,-24.1181,-31.8245,0.0000,0.0000,0.0000,7.7064,0.0000,3.4279,0.0000,-3.4279,0.2451,,,-3.6730,0.6726,-4.3457,0.0000,-4.3457,-0.3263,-4.0194,0.0000,0.3556,9.1481,-13.5231,231.0473,-141.6769,0.0000,0.0000,5.0000,2.7064,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 -8.9886,0.4804,20.0277,16.8130,70.0000,0.7604,0.0000,6,1145.1813,1207.1307,1207.1307,-161.4368,144.7629,144.7629,255.9159,-19.3600,-13.7451,150.8456,0.0000,150.8456,7.6624,150.8456,8.7502,0.0000,142.0953,0.2541,,,141.8413,4.5698,137.2715,0.0000,137.2715,3.0017,134.2698,0.0000,0.3957,9.4751,124.3990,239.3052,5670.2104,0.0000,0.0000,5.0000,2.6624,0.0000,0.0000,0.0000,0.0000,26799.0633,26799.0633,26799.0633,26799.0633,26799.0633,26799.0633 -9.4683,0.4790,22.4542,18.2369,70.0000,0.8888,0.0000,6,1142.1183,1751.8137,1751.8137,-161.2377,209.5210,209.5210,255.2314,-19.2844,12.9251,188.9344,0.0000,188.9344,7.6616,188.9344,10.6318,0.0000,178.3026,0.2762,,,178.0264,5.7179,172.3085,0.0000,172.3085,3.8057,168.5028,0.0000,0.5052,10.2776,157.7201,259.5723,6559.4971,0.0000,0.0000,5.0000,2.6616,0.0000,0.0000,0.0000,0.0000,38867.0927,38867.0927,38867.0927,38867.0927,38867.0927,38867.0927 -9.9471,0.4785,25.0935,19.8566,70.0000,0.9908,0.0000,6,1243.5551,1926.9345,1926.9345,-169.7911,250.9346,250.9346,277.8997,-22.1110,15.6875,227.5576,0.0000,227.5576,7.6896,227.5576,12.6083,0.0000,214.9493,0.3014,,,214.6479,6.7570,207.8909,0.0000,207.8909,4.6191,203.2718,0.0000,0.6521,11.1904,191.4293,282.6261,7262.6481,0.0000,0.0000,5.0000,2.6896,0.0000,0.0000,0.0000,0.0000,47106.9468,47106.9468,47106.9468,47106.9468,47106.9468,47106.9468 -10.4263,0.4800,27.9699,21.5739,70.0000,1.0000,0.0000,6,1351.1066,1940.4553,2001.7844,-181.6217,274.5503,283.2276,301.9344,-25.6972,17.2028,249.6266,0.0000,249.6266,7.7208,249.6266,13.9769,0.0000,235.6497,0.3282,,,235.3215,7.3416,227.9799,0.0000,227.9799,5.0653,222.9147,0.0000,0.8362,12.1582,209.9203,307.0697,7328.2687,0.0000,0.0000,5.0000,2.7208,0.0000,0.0000,0.0000,0.0000,51989.7137,51989.7137,51989.7137,51989.7137,51989.7137,51989.7137 -10.9070,0.4814,31.0863,23.3044,70.0000,1.0000,0.0000,6,1459.4819,1938.6338,1979.3984,-195.9223,296.2942,302.5245,316.7895,-29.9441,18.5827,269.9508,0.0000,269.9508,7.7606,269.9508,15.3088,0.0000,254.6420,0.3554,,,254.2866,7.8694,246.4172,0.0000,246.4172,5.4716,240.9456,0.0000,1.0537,13.1334,226.7585,331.7004,7330.8680,0.0000,0.0000,5.0000,2.7606,0.0000,0.0000,0.0000,0.0000,56348.8368,56348.8368,56348.8368,56348.8368,56348.8368,56348.8368 -11.3891,0.4828,34.4433,25.0306,70.0000,0.9891,0.0000,6,1567.5848,1918.3165,1918.3165,-212.0232,314.9052,314.9052,321.9757,-34.8051,19.7413,287.3636,0.0000,287.3636,7.8003,287.3636,16.5524,0.0000,270.8112,0.3826,,,270.4286,8.3077,262.1209,0.0000,262.1209,5.8127,256.3081,0.0000,1.3054,14.1062,240.8966,356.2693,7258.7134,0.0000,0.0000,5.0000,2.8003,0.0000,0.0000,0.0000,0.0000,60135.6667,60135.6667,60135.6667,60135.6667,60135.6667,60135.6667 -11.8813,0.5015,38.0392,25.8102,70.0000,-0.0886,0.0000,0,1528.0836,-152.0613,1991.6586,-206.1563,-24.3329,318.7063,320.3729,-32.9892,-32.1188,0.0000,0.0000,0.0000,7.7858,0.0000,5.2383,0.0000,-5.2383,0.3950,,,-5.6333,1.1773,-6.8106,0.0000,-6.8106,-0.5369,-6.2737,0.0000,1.4295,14.5456,-22.2488,367.3660,-136.1633,0.0000,0.0000,5.0000,2.7858,0.0000,0.0000,0.0000,0.0000,1213.2783,1213.2783,1213.2783,1213.2783,1213.2783,1213.2783 -12.3828,0.5015,41.6128,25.6531,70.0000,-0.0854,0.0000,0,1341.9889,-144.5789,1321.9727,-180.6188,-20.3181,185.7805,299.8969,-25.3829,-28.0355,0.0000,0.0000,0.0000,7.7175,0.0000,4.5177,0.0000,-4.5177,0.3925,,,-4.9102,1.0731,-5.9833,0.0000,-5.9833,-0.5147,-5.4687,0.0000,1.4035,14.4570,-21.3293,365.1297,-118.1533,0.0000,0.0000,5.0000,2.7175,0.0000,0.0000,0.0000,0.0000,755.7264,755.7264,755.7264,755.7264,755.7264,755.7264 -12.8794,0.4917,45.1650,26.0095,70.0000,0.4899,0.0000,7,1262.5669,1281.4119,1281.4119,-171.8824,169.4228,169.4228,282.1483,-22.7255,3.8683,157.8597,0.0000,157.8597,7.6948,157.8597,9.8706,0.0000,147.9890,0.3982,,,147.5909,4.5055,143.0854,0.0000,143.0854,2.9914,140.0940,0.0000,1.4633,14.6579,123.9728,370.2023,3817.3480,0.0000,0.0000,5.0000,2.6948,0.0000,0.0000,0.0000,0.0000,31236.3840,31236.3840,31236.3840,31236.3840,31236.3840,31236.3840 -13.3695,0.4884,48.8377,27.0721,70.0000,0.7157,0.0000,7,1306.2609,1803.8173,1803.8173,-176.6887,246.7466,246.7466,291.9127,-24.1695,9.1708,229.8689,0.0000,229.8689,7.7068,229.8689,12.9805,0.0000,216.8884,0.4150,,,216.4734,6.4920,209.9814,0.0000,209.9814,4.5490,205.4324,0.0000,1.6505,15.2568,188.5252,385.3277,5374.9881,0.0000,0.0000,5.0000,2.7068,0.0000,0.0000,0.0000,0.0000,46411.2780,46411.2780,46411.2780,46411.2780,46411.2780,46411.2780 -13.8575,0.4877,52.6851,28.4022,70.0000,0.7986,0.0000,7,1370.4403,1987.1942,1987.1942,-183.7484,285.1866,285.1866,306.2550,-26.3701,10.7355,266.7231,0.0000,266.7231,7.7279,266.7231,14.7512,0.0000,251.9719,0.4364,,,251.5355,7.6072,243.9284,0.0000,243.9284,5.3252,238.6032,0.0000,1.9060,16.0064,220.6908,404.2597,5952.0027,0.0000,0.0000,5.0000,2.7279,0.0000,0.0000,0.0000,0.0000,54155.4163,54155.4163,54155.4163,54155.4163,54155.4163,54155.4163 -14.3453,0.4880,56.7272,29.8201,70.0000,0.8162,0.0000,7,1438.8549,2026.1521,2026.1521,-192.8282,305.2936,305.2936,315.5136,-29.0547,11.5205,286.0200,0.0000,286.0200,7.7530,286.0200,15.8505,0.0000,270.1695,0.4600,,,269.7095,8.1557,261.5538,0.0000,261.5538,5.7145,255.8392,0.0000,2.2059,16.8054,236.8279,424.4410,6078.4146,0.0000,0.0000,5.0000,2.7530,0.0000,0.0000,0.0000,0.0000,58084.0725,58084.0725,58084.0725,58084.0725,58084.0725,58084.0725 -14.8336,0.4887,60.9685,31.2427,70.0000,0.8021,0.0000,7,1507.4938,1995.0271,1995.0271,-203.0982,314.9437,314.9437,319.4041,-32.0620,11.8620,295.3035,0.0000,295.3035,7.7783,295.3035,16.5623,0.0000,278.7412,0.4838,,,278.2574,8.3818,269.8756,0.0000,269.8756,5.8839,263.9917,0.0000,2.5367,17.6071,243.8478,444.6884,5985.7238,0.0000,0.0000,5.0000,2.7783,0.0000,0.0000,0.0000,0.0000,59958.6024,59958.6024,59958.6024,59958.6024,59958.6024,59958.6024 -15.3227,0.4895,65.4057,32.6341,70.0000,0.7783,0.0000,7,1574.6301,1942.4564,1942.4564,-213.0696,320.3011,320.3011,322.2262,-35.1341,12.0227,300.4755,0.0000,300.4755,7.8029,300.4755,17.1135,0.0000,283.3620,0.5073,,,282.8547,8.4583,274.3964,0.0000,274.3964,5.9636,268.4328,0.0000,2.8907,18.3912,247.1508,464.4927,5825.5115,0.0000,0.0000,5.0000,2.8029,0.0000,0.0000,0.0000,0.0000,61134.2721,61134.2721,61134.2721,61134.2721,61134.2721,61134.2721 -15.8181,0.5012,70.0335,33.2410,70.0000,-0.0874,0.0000,0,1519.7747,-140.3591,2010.6320,-204.9222,-22.3382,319.9930,319.9930,-32.6135,-30.1210,0.0000,0.0000,0.0000,7.7828,0.0000,5.2454,0.0000,-5.2454,0.5176,,,-5.7629,1.4047,-7.1677,0.0000,-7.1677,-0.6822,-6.4855,0.0000,3.0537,18.7333,-28.2725,473.1312,-105.8684,0.0000,0.0000,5.0000,2.7828,0.0000,0.0000,0.0000,0.0000,1441.2077,1441.2077,1441.2077,1441.2077,1441.2077,1441.2077 -16.3192,0.5012,74.6393,33.0854,70.0000,-0.0851,0.0000,0,1344.3009,-133.5478,1327.8750,-180.8731,-18.8002,186.9314,300.4135,-25.4624,-26.5185,0.0000,0.0000,0.0000,7.7183,0.0000,4.5706,0.0000,-4.5706,0.5149,,,-5.0856,1.3071,-6.3927,0.0000,-6.3927,-0.6609,-5.7318,0.0000,3.0110,18.6456,-27.3884,470.9165,-92.6841,0.0000,0.0000,5.0000,2.7183,0.0000,0.0000,0.0000,0.0000,992.3714,992.3714,992.3714,992.3714,992.3714,992.3714 -16.8174,0.4950,79.2239,33.3389,70.0000,0.3706,0.0000,8,1263.3601,1285.6075,1285.6075,-171.9696,170.0843,170.0843,282.3256,-22.7514,1.8990,160.4903,0.0000,160.4903,7.6950,160.4903,9.9869,0.0000,150.5034,0.5192,,,149.9842,4.9811,145.0031,0.0000,145.0031,2.9011,142.1019,0.0000,3.0811,18.7885,120.2324,474.5249,3028.7166,0.0000,0.0000,5.0000,2.6950,0.0000,0.0000,0.0000,0.0000,31366.7482,31366.7482,31366.7482,31366.7482,31366.7482,31366.7482 -17.3113,0.4928,83.9001,34.1611,70.0000,0.5545,0.0000,8,1288.5015,1810.0941,1810.0941,-174.7352,244.2388,244.2388,287.9439,-23.5773,5.4791,231.0577,0.0000,231.0577,7.7019,231.0577,12.9478,0.0000,218.1099,0.5332,,,217.5767,6.2388,211.3379,0.0000,211.3379,4.4476,206.8903,0.0000,3.3150,19.2518,184.3234,486.2270,4283.5890,0.0000,0.0000,5.0000,2.7019,0.0000,0.0000,0.0000,0.0000,45937.7129,45937.7129,45937.7129,45937.7129,45937.7129,45937.7129 -17.8038,0.4922,88.7130,35.2035,70.0000,0.6214,0.0000,8,1327.8203,1997.2639,1997.2639,-179.0602,277.7176,277.7176,296.7306,-24.8981,6.3275,263.6773,0.0000,263.6773,7.7128,263.6773,14.4313,0.0000,249.2460,0.5511,,,248.6950,7.2271,241.4678,0.0000,241.4678,5.1363,236.3315,0.0000,3.6280,19.8393,212.8642,501.0643,4750.1375,0.0000,0.0000,5.0000,2.7128,0.0000,0.0000,0.0000,0.0000,52673.0227,52673.0227,52673.0227,52673.0227,52673.0227,52673.0227 -18.2959,0.4921,93.6789,36.3256,70.0000,0.6452,0.0000,8,1370.1441,2064.2963,2064.2963,-183.7159,296.1876,296.1876,306.1888,-26.3598,6.7792,281.6806,0.0000,281.6806,7.7278,281.6806,15.3481,0.0000,266.3326,0.5704,,,265.7622,7.7436,258.0186,0.0000,258.0186,5.5029,252.5157,0.0000,3.9861,20.4716,228.0580,517.0355,4918.9824,0.0000,0.0000,5.0000,2.7278,0.0000,0.0000,0.0000,0.0000,56389.7999,56389.7999,56389.7999,56389.7999,56389.7999,56389.7999 -18.7881,0.4923,98.8035,37.4737,70.0000,0.6506,0.0000,8,1413.4494,2079.6749,2079.6749,-189.0174,307.8253,307.8253,313.8159,-27.9776,7.0521,293.0295,0.0000,293.0295,7.7437,293.0295,16.0079,0.0000,277.0216,0.5902,,,276.4314,7.9722,268.4591,0.0000,268.4591,5.7245,262.7346,0.0000,4.3761,21.1187,237.2399,533.3771,4959.6445,0.0000,0.0000,5.0000,2.7437,0.0000,0.0000,0.0000,0.0000,58606.1549,58606.1549,58606.1549,58606.1549,58606.1549,58606.1549 -19.2806,0.4926,104.0882,38.6197,70.0000,0.6422,0.0000,8,1456.6757,2056.6457,2056.6457,-195.5014,313.7263,313.7263,316.6213,-29.8223,7.1737,298.7930,0.0000,298.7930,7.7596,298.7930,16.4487,0.0000,282.3443,0.6101,,,281.7342,8.0271,273.7071,0.0000,273.7071,5.8232,267.8840,0.0000,4.7899,21.7645,241.3295,549.6889,4904.9376,0.0000,0.0000,5.0000,2.7596,0.0000,0.0000,0.0000,0.0000,59700.2187,59700.2187,59700.2187,59700.2187,59700.2187,59700.2187 -19.7734,0.4930,109.5312,39.7476,70.0000,0.6292,0.0000,8,1499.2155,2021.1417,2021.1417,-201.8687,317.3141,317.3141,318.9887,-31.6929,7.2341,302.3048,0.0000,302.3048,7.7752,302.3048,16.8006,0.0000,285.5042,0.6299,,,284.8743,8.0185,276.8559,0.0000,276.8559,5.8722,270.9837,0.0000,5.2218,22.4001,243.3617,565.7417,4819.0971,0.0000,0.0000,5.0000,2.7752,0.0000,0.0000,0.0000,0.0000,60393.0190,60393.0190,60393.0190,60393.0190,60393.0190,60393.0190 -20.2666,0.4933,115.1292,40.8520,70.0000,0.6150,0.0000,8,1540.8741,1982.4556,1982.4556,-208.0560,319.8890,319.8890,320.9288,-33.5719,7.2669,304.8316,0.0000,304.8316,7.7905,304.8316,17.1132,0.0000,287.7183,0.6493,,,287.0691,8.0142,279.0549,0.0000,279.0549,5.8988,273.1561,0.0000,5.6692,23.0225,244.4643,581.4619,4725.1723,0.0000,0.0000,5.0000,2.7905,0.0000,0.0000,0.0000,0.0000,60943.5269,60943.5269,60943.5269,60943.5269,60943.5269,60943.5269 -20.7600,0.4936,120.8790,41.9316,70.0000,0.6004,0.0000,8,1581.5951,1942.9868,1942.9868,-214.1041,321.8057,321.8057,322.4633,-35.4608,7.2820,306.7182,0.0000,306.7182,7.8055,306.7182,17.3996,0.0000,289.3186,0.6684,,,288.6502,8.0036,280.6467,0.0000,280.6467,5.9111,274.7356,0.0000,6.1306,23.6310,244.9740,596.8283,4629.1185,0.0000,0.0000,5.0000,2.8055,0.0000,0.0000,0.0000,0.0000,61432.8466,61432.8466,61432.8466,61432.8466,61432.8466,61432.8466 -21.2538,0.4939,126.7769,42.9858,70.0000,0.5857,0.0000,8,1621.3586,1903.6321,1903.6321,-219.8834,323.2144,323.2144,323.6166,-37.3336,7.2818,308.1125,0.0000,308.1125,7.8201,308.1125,17.6654,0.0000,290.4471,0.6878,,,289.7593,8.0529,281.7064,0.0000,281.7064,5.9109,275.7955,0.0000,6.6046,24.2251,244.9658,611.8334,4533.2041,0.0000,0.0000,5.0000,2.8201,0.0000,0.0000,0.0000,0.0000,61845.9764,61845.9764,61845.9764,61845.9764,61845.9764,61845.9764 -21.7513,0.5009,132.8195,43.4252,70.0000,-0.0903,0.0000,0,1547.9384,-152.2939,1981.6234,-209.1053,-24.6868,321.2206,321.2206,-33.8959,-32.4799,0.0000,0.0000,0.0000,7.7931,0.0000,5.3562,0.0000,-5.3562,0.6961,,,-6.0522,1.7330,-7.7852,0.0000,-7.7852,-0.9204,-6.8648,0.0000,6.8082,24.4727,-38.1456,618.0864,-82.7514,0.0000,0.0000,5.0000,2.7931,0.0000,0.0000,0.0000,0.0000,1274.2009,1274.2009,1274.2009,1274.2009,1274.2009,1274.2009 -22.2522,0.5009,138.8395,43.2641,70.0000,-0.0883,0.0000,0,1362.1649,-145.4726,1333.5219,-182.8381,-20.7510,190.2210,304.4057,-26.0811,-28.4759,0.0000,0.0000,0.0000,7.7249,0.0000,4.6465,0.0000,-4.6465,0.6931,,,-5.3395,1.6263,-6.9659,0.0000,-6.9659,-0.8972,-6.0687,0.0000,6.7327,24.3819,-37.1833,615.7942,-72.0545,0.0000,0.0000,5.0000,2.7249,0.0000,0.0000,0.0000,0.0000,783.5234,783.5234,783.5234,783.5234,783.5234,783.5234 -22.7513,0.4972,144.8373,43.4240,70.0000,0.2676,0.0000,9,1271.7417,1284.9740,1284.9740,-172.8916,171.1283,171.1283,284.1986,-23.0251,0.6613,162.7696,0.0000,162.7696,7.6973,162.7696,10.1204,0.0000,152.6492,0.6961,,,151.9532,4.8807,147.0725,0.0000,147.0725,2.7282,144.3443,0.0000,6.8078,24.4720,113.0645,618.0696,2358.4608,0.0000,0.0000,5.0000,2.6973,0.0000,0.0000,0.0000,0.0000,31552.8464,31552.8464,31552.8464,31552.8464,31552.8464,31552.8464 -23.2478,0.4958,150.9017,44.0313,70.0000,0.4121,0.0000,9,1284.7634,1814.9046,1814.9046,-174.3240,244.1775,244.1775,287.1086,-23.4536,3.1410,233.3356,0.0000,233.3356,7.7009,233.3356,13.0221,0.0000,220.3134,0.7075,,,219.6059,6.8620,212.7439,0.0000,212.7439,4.2606,208.4833,0.0000,7.0977,24.8143,176.5713,626.7138,3356.9359,0.0000,0.0000,5.0000,2.7009,0.0000,0.0000,0.0000,0.0000,45933.6854,45933.6854,45933.6854,45933.6854,45933.6854,45933.6854 -23.7434,0.4954,157.0682,44.8147,70.0000,0.4661,0.0000,9,1307.6226,2005.8515,2005.8515,-176.8385,274.6691,274.6691,292.2170,-24.2152,3.6157,263.3463,0.0000,263.3463,7.7072,263.3463,14.3258,0.0000,249.0205,0.7223,,,248.2982,7.4006,240.8976,0.0000,240.8976,4.9044,235.9932,0.0000,7.4835,25.2558,203.2539,637.8647,3728.0173,0.0000,0.0000,5.0000,2.7072,0.0000,0.0000,0.0000,0.0000,52080.2533,52080.2533,52080.2533,52080.2533,52080.2533,52080.2533 -24.2387,0.4953,163.3502,45.6629,70.0000,0.4852,0.0000,9,1332.3714,2074.6036,2074.6036,-179.5608,289.4603,289.4603,297.7476,-25.0533,3.8352,277.9111,0.0000,277.9111,7.7140,277.9111,15.0215,0.0000,262.8895,0.7385,,,262.1511,7.7028,254.4483,0.0000,254.4483,5.2022,249.2461,0.0000,7.9165,25.7338,215.5958,649.9372,3862.5424,0.0000,0.0000,5.0000,2.7140,0.0000,0.0000,0.0000,0.0000,55116.3633,55116.3633,55116.3633,55116.3633,55116.3633,55116.3633 -24.7340,0.4953,169.7524,46.5340,70.0000,0.4918,0.0000,9,1357.7874,2099.3894,2099.3894,-182.3566,298.5062,298.5062,303.4274,-25.9288,3.9615,286.8214,0.0000,286.8214,7.7233,286.8214,15.4958,0.0000,271.3256,0.7551,,,270.5705,7.8957,262.6747,0.0000,262.6747,5.3736,257.3011,0.0000,8.3783,26.2247,222.6982,662.3353,3911.8683,0.0000,0.0000,5.0000,2.7233,0.0000,0.0000,0.0000,0.0000,56899.3074,56899.3074,56899.3074,56899.3074,56899.3074,56899.3074 -25.2293,0.4954,176.2763,47.4129,70.0000,0.4940,0.0000,9,1383.4333,2108.6097,2108.6097,-185.1777,305.4802,305.4802,309.1586,-26.8272,4.0540,293.6935,0.0000,293.6935,7.7327,293.6935,15.8913,0.0000,277.8023,0.7720,,,277.0302,8.0555,268.9747,0.0000,268.9747,5.4990,263.4758,0.0000,8.8620,26.7200,227.8938,674.8455,3930.9976,0.0000,0.0000,5.0000,2.7327,0.0000,0.0000,0.0000,0.0000,58223.5656,58223.5656,58223.5656,58223.5656,58223.5656,58223.5656 -25.7247,0.4954,182.9226,48.2928,70.0000,0.4928,0.0000,9,1409.1082,2106.1954,2106.1954,-188.3662,310.7933,310.7933,313.5118,-27.7956,4.1192,298.9319,0.0000,298.9319,7.7421,298.9319,16.2232,0.0000,282.7087,0.7891,,,281.9197,8.1882,273.7315,0.0000,273.7315,5.5875,268.1440,0.0000,9.3646,27.2159,231.5635,687.3699,3927.5357,0.0000,0.0000,5.0000,2.7421,0.0000,0.0000,0.0000,0.0000,59210.0242,59210.0242,59210.0242,59210.0242,59210.0242,59210.0242 -26.2202,0.4956,189.6910,49.1670,70.0000,0.4872,0.0000,9,1434.6133,2088.5152,2088.5152,-192.1920,313.7626,313.7626,315.2398,-28.8735,4.1465,301.8645,0.0000,301.8645,7.7515,301.8645,16.4637,0.0000,285.4009,0.8061,,,284.5948,8.2826,276.3121,0.0000,276.3121,5.6245,270.6876,0.0000,9.8823,27.7085,233.0968,699.8114,3894.4458,0.0000,0.0000,5.0000,2.7515,0.0000,0.0000,0.0000,0.0000,59739.6957,59739.6957,59739.6957,59739.6957,59739.6957,59739.6957 -26.7159,0.4957,196.5801,50.0301,70.0000,0.4803,0.0000,9,1459.7992,2065.9127,2065.9127,-195.9699,315.8157,315.8157,316.8084,-29.9579,4.1589,303.8960,0.0000,303.8960,7.7607,303.8960,16.6682,0.0000,287.2278,0.8230,,,286.4048,8.3613,278.0435,0.0000,278.0435,5.6414,272.4021,0.0000,10.4119,28.1949,233.7953,712.0972,3851.7546,0.0000,0.0000,5.0000,2.7607,0.0000,0.0000,0.0000,0.0000,60101.6035,60101.6035,60101.6035,60101.6035,60101.6035,60101.6035 -27.2117,0.4959,203.5883,50.8807,70.0000,0.4729,0.0000,9,1484.6176,2041.9001,2041.9001,-199.6926,317.4517,317.4517,318.2203,-31.0460,4.1644,305.5175,0.0000,305.5175,7.7699,305.5175,16.8561,0.0000,288.6614,0.8397,,,287.8217,8.4440,279.3777,0.0000,279.3777,5.6488,273.7289,0.0000,10.9520,28.6743,234.1026,724.2037,3806.2679,0.0000,0.0000,5.0000,2.7699,0.0000,0.0000,0.0000,0.0000,60411.5358,60411.5358,60411.5358,60411.5358,60411.5358,60411.5358 -27.7076,0.4960,210.7136,51.7182,70.0000,0.4654,0.0000,9,1509.0555,2017.7034,2017.7034,-203.3302,318.8535,318.8535,319.4808,-32.1318,4.1662,306.9084,0.0000,306.9084,7.7788,306.9084,17.0343,0.0000,289.8741,0.8563,,,289.0178,8.5138,280.5040,0.0000,280.5040,5.6512,274.8527,0.0000,11.5018,29.1463,234.2047,736.1247,3760.3596,0.0000,0.0000,5.0000,2.7788,0.0000,0.0000,0.0000,0.0000,60691.2596,60691.2596,60691.2596,60691.2596,60691.2596,60691.2596 -28.2036,0.4961,217.9544,52.5427,70.0000,0.4580,0.0000,9,1533.1131,1993.7318,1993.7318,-206.9033,320.0881,320.0881,320.5957,-33.2178,4.1655,308.1350,0.0000,308.1350,7.7877,308.1350,17.2056,0.0000,290.9293,0.8727,,,290.0566,8.5725,281.4841,0.0000,281.4841,5.6502,275.8339,0.0000,12.0606,29.6110,234.1624,747.8601,3714.8269,0.0000,0.0000,5.0000,2.7877,0.0000,0.0000,0.0000,0.0000,60961.0509,60961.0509,60961.0509,60961.0509,60961.0509,60961.0509 -28.6998,0.4962,225.3088,53.3543,70.0000,0.4507,0.0000,9,1556.7934,1970.0178,1970.0178,-210.4204,321.1661,321.1661,321.5713,-34.3042,4.1622,309.2075,0.0000,309.2075,7.7964,309.2075,17.3702,0.0000,291.8373,0.8890,,,290.9484,8.6275,282.3209,0.0000,282.3209,5.6458,276.6751,0.0000,12.6281,30.0683,233.9787,759.4114,3669.7384,0.0000,0.0000,5.0000,2.7964,0.0000,0.0000,0.0000,0.0000,61223.1179,61223.1179,61223.1179,61223.1179,61223.1179,61223.1179 -29.1961,0.4963,232.7751,54.1530,70.0000,0.4434,0.0000,9,1580.0995,1946.5787,1946.5787,-213.8820,322.0958,322.0958,322.4133,-35.3905,4.1566,310.1342,0.0000,310.1342,7.8049,310.1342,17.5284,0.0000,292.6058,0.9050,,,291.7008,8.6789,283.0219,0.0000,283.0219,5.6381,277.3838,0.0000,13.2037,30.5185,233.6616,770.7802,3625.1314,0.0000,0.0000,5.0000,2.8049,0.0000,0.0000,0.0000,0.0000,61478.0978,61478.0978,61478.0978,61478.0978,61478.0978,61478.0978 -29.6925,0.4965,240.3513,54.9391,70.0000,0.4363,0.0000,9,1603.0348,1923.4255,1923.4255,-217.2884,322.8843,322.8843,323.1275,-36.4761,4.1487,310.9223,0.0000,310.9223,7.8134,310.9223,17.6805,0.0000,293.2417,0.9209,,,292.3208,8.7268,283.5940,0.0000,283.5940,5.6274,277.9666,0.0000,13.7870,30.9614,233.2181,781.9682,3581.0309,0.0000,0.0000,5.0000,2.8134,0.0000,0.0000,0.0000,0.0000,61726.4556,61726.4556,61726.4556,61726.4556,61726.4556,61726.4556 -30.1890,0.4966,248.0359,55.7126,70.0000,0.4292,0.0000,9,1625.6047,1900.5646,1900.5646,-220.4566,323.5387,323.5387,323.7196,-37.5290,4.1393,311.5777,0.0000,311.5777,7.8217,311.5777,17.8267,0.0000,293.7510,0.9366,,,292.8144,8.7328,284.0816,0.0000,284.0816,5.6147,278.4669,0.0000,14.3776,31.3974,232.6919,792.9779,3537.4449,0.0000,0.0000,5.0000,2.8217,0.0000,0.0000,0.0000,0.0000,61921.2145,61921.2145,61921.2145,61921.2145,61921.2145,61921.2145 -30.6856,0.4967,255.8271,56.4738,70.0000,0.4223,0.0000,9,1647.8150,1878.0006,1878.0006,-223.4550,324.0655,324.0655,324.1949,-38.5591,4.1280,312.1077,0.0000,312.1077,7.8298,312.1077,17.9672,0.0000,294.1405,0.9521,,,293.1884,8.7298,284.4586,0.0000,284.4586,5.5994,278.8591,0.0000,14.9749,31.8263,232.0579,803.8122,3494.3920,0.0000,0.0000,5.0000,2.8298,0.0000,0.0000,0.0000,0.0000,62089.4675,62089.4675,62089.4675,62089.4675,62089.4675,62089.4675 -31.1843,0.5008,263.7231,56.7623,70.0000,-0.0988,0.0000,0,1567.6546,-148.8565,1961.3158,-212.0336,-24.4369,321.9782,321.9782,-34.8084,-32.2373,0.0000,0.0000,0.0000,7.8004,0.0000,5.4843,0.0000,-5.4843,0.9580,,,-6.4423,2.2446,-8.6869,0.0000,-8.6869,-1.3166,-7.3703,0.0000,15.2050,31.9889,-54.5642,807.9182,-64.8220,0.0000,0.0000,5.0000,2.8004,0.0000,0.0000,0.0000,0.0000,1416.9762,1416.9762,1416.9762,1416.9762,1416.9762,1416.9762 -31.6851,0.5008,271.5944,56.5856,70.0000,-0.0972,0.0000,0,1385.5878,-142.4627,1349.6454,-185.4147,-20.6711,195.8314,309.6400,-26.9034,-28.4046,0.0000,0.0000,0.0000,7.7335,0.0000,4.7857,0.0000,-4.7857,0.9544,,,-5.7401,2.1187,-7.8589,0.0000,-7.8589,-1.2914,-6.5674,0.0000,15.0634,31.8893,-53.5202,805.4036,-56.7420,0.0000,0.0000,5.0000,2.7335,0.0000,0.0000,0.0000,0.0000,937.8762,937.8762,937.8762,937.8762,937.8762,937.8762 -32.1847,0.4985,279.4413,56.6648,70.0000,0.1859,0.0000,10,1294.4735,1299.3220,1299.3220,-175.3921,176.1321,176.1321,289.2785,-23.7756,-0.0656,168.4942,0.0000,168.4942,7.7036,168.4942,10.4540,0.0000,158.0401,0.9561,,,157.0841,5.0317,152.0524,0.0000,152.0524,2.4737,149.5787,0.0000,15.1269,31.9340,102.5179,806.5313,1871.1885,0.0000,0.0000,5.0000,2.7036,0.0000,0.0000,0.0000,0.0000,32483.2413,32483.2413,32483.2413,32483.2413,32483.2413,32483.2413 -32.6828,0.4976,287.3346,57.1000,70.0000,0.2996,0.0000,10,1300.3616,1827.0498,1827.0498,-176.0398,248.7959,248.7959,290.5944,-23.9720,1.8038,239.2868,0.0000,239.2868,7.7052,239.2868,13.3305,0.0000,225.9564,0.9650,,,224.9914,6.8573,218.1341,0.0000,218.1341,4.0166,214.1175,0.0000,15.4783,32.1793,166.4599,812.7260,2654.9225,0.0000,0.0000,5.0000,2.7052,0.0000,0.0000,0.0000,0.0000,46872.5756,46872.5756,46872.5756,46872.5756,46872.5756,46872.5756 -33.1803,0.4974,295.3024,57.6738,70.0000,0.3411,0.0000,10,1313.4280,2016.1723,2016.1723,-177.4771,277.3081,277.3081,293.5143,-24.4105,2.0744,267.5249,0.0000,267.5249,7.7088,267.5249,14.5193,0.0000,253.0056,0.9768,,,252.0288,7.5279,244.5009,0.0000,244.5009,4.6191,239.8818,0.0000,15.9497,32.5026,191.4294,820.8925,2943.1690,0.0000,0.0000,5.0000,2.7088,0.0000,0.0000,0.0000,0.0000,52623.2613,52623.2613,52623.2613,52623.2613,52623.2613,52623.2613 -33.6776,0.4973,303.3551,58.2975,70.0000,0.3556,0.0000,10,1327.6315,2083.9734,2083.9734,-179.0395,289.7332,289.7332,296.6884,-24.8917,2.1859,279.8346,0.0000,279.8346,7.7127,279.8346,15.0767,0.0000,264.7579,0.9897,,,263.7683,7.8505,255.9177,0.0000,255.9177,4.8675,251.0503,0.0000,16.4728,32.8541,201.7234,829.7697,3046.9320,0.0000,0.0000,5.0000,2.7127,0.0000,0.0000,0.0000,0.0000,55189.1471,55189.1471,55189.1471,55189.1471,55189.1471,55189.1471 -34.1749,0.4973,311.4962,58.9384,70.0000,0.3605,0.0000,10,1342.2279,2108.1918,2108.1918,-180.6451,296.3228,296.3228,299.9503,-25.3911,2.2400,286.3652,0.0000,286.3652,7.7176,286.3652,15.4052,0.0000,270.9599,1.0029,,,269.9570,8.0148,261.9422,0.0000,261.9422,4.9880,256.9542,0.0000,17.0221,33.2153,206.7168,838.8924,3084.3964,0.0000,0.0000,5.0000,2.7176,0.0000,0.0000,0.0000,0.0000,56495.6702,56495.6702,56495.6702,56495.6702,56495.6702,56495.6702 -34.6722,0.4973,319.7269,59.5850,70.0000,0.3619,0.0000,10,1356.9517,2116.9079,2116.9079,-182.2647,300.8119,300.8119,303.2406,-25.8997,2.2734,290.8155,0.0000,290.8155,7.7230,290.8155,15.6517,0.0000,275.1638,1.0164,,,274.1474,8.1212,266.0262,0.0000,266.0262,5.0623,260.9639,0.0000,17.5885,33.5797,209.7958,848.0948,3098.2632,0.0000,0.0000,5.0000,2.7230,0.0000,0.0000,0.0000,0.0000,57374.8538,57374.8538,57374.8538,57374.8538,57374.8538,57374.8538 -35.1695,0.4973,328.0476,60.2330,70.0000,0.3621,0.0000,10,1371.7088,2120.1642,2120.1642,-183.8880,304.5510,304.5510,306.5385,-26.4146,2.2994,294.5232,0.0000,294.5232,7.7284,294.5232,15.8691,0.0000,278.6541,1.0299,,,277.6241,8.2097,269.4144,0.0000,269.4144,5.1202,264.2942,0.0000,18.1517,33.9449,212.1977,857.3180,3103.8076,0.0000,0.0000,5.0000,2.7284,0.0000,0.0000,0.0000,0.0000,58081.4758,58081.4758,58081.4758,58081.4758,58081.4758,58081.4758 -35.6668,0.4973,336.4583,60.8810,70.0000,0.3619,0.0000,10,1386.4672,2121.5142,2121.5142,-185.5114,308.0237,308.0237,309.8365,-26.9345,2.3230,297.9669,0.0000,297.9669,7.7338,297.9669,16.0766,0.0000,281.8904,1.0435,,,280.8468,8.2993,272.5476,0.0000,272.5476,5.1726,267.3750,0.0000,18.6953,34.3101,214.3696,866.5420,3106.4330,0.0000,0.0000,5.0000,2.7338,0.0000,0.0000,0.0000,0.0000,58728.0506,58728.0506,58728.0506,58728.0506,58728.0506,58728.0506 -36.1642,0.4974,344.9589,61.5285,70.0000,0.3614,0.0000,10,1401.2120,2121.3772,2121.3772,-187.1818,311.2794,311.2794,312.9484,-27.4660,2.3443,301.1959,0.0000,301.1959,7.7392,301.1959,16.2759,0.0000,284.9200,1.0572,,,283.8628,8.3828,275.4800,0.0000,275.4800,5.2201,270.2599,0.0000,19.2481,34.6750,216.3369,875.7575,3106.7792,0.0000,0.0000,5.0000,2.7392,0.0000,0.0000,0.0000,0.0000,59350.1754,59350.1754,59350.1754,59350.1754,59350.1754,59350.1754 -36.6615,0.4974,353.5495,62.1731,70.0000,0.3587,0.0000,10,1415.8928,2111.5106,2111.5106,-189.3839,313.0778,313.0778,313.9852,-28.0803,2.3513,302.9819,0.0000,302.9819,7.7446,302.9819,16.4178,0.0000,286.5641,1.0708,,,285.4933,8.4264,277.0669,0.0000,277.0669,5.2357,271.8311,0.0000,19.8080,35.0383,216.9849,884.9330,3092.3079,0.0000,0.0000,5.0000,2.7446,0.0000,0.0000,0.0000,0.0000,59664.7706,59664.7706,59664.7706,59664.7706,59664.7706,59664.7706 -37.1590,0.4975,362.2293,62.8124,70.0000,0.3553,0.0000,10,1430.4515,2098.4495,2098.4495,-191.5677,314.3405,314.3405,314.9674,-28.6962,2.3531,304.2374,0.0000,304.2374,7.7500,304.2374,16.5384,0.0000,287.6990,1.0843,,,286.6147,8.4554,278.1593,0.0000,278.1593,5.2397,272.9196,0.0000,20.3727,35.3985,217.1484,894.0322,3072.9581,0.0000,0.0000,5.0000,2.7500,0.0000,0.0000,0.0000,0.0000,59874.1058,59874.1058,59874.1058,59874.1058,59874.1058,59874.1058 -37.6565,0.4975,370.9974,63.4455,70.0000,0.3517,0.0000,10,1444.8692,2084.4123,2084.4123,-193.7304,315.3848,315.3848,315.8951,-29.3126,2.3527,305.2768,0.0000,305.2768,7.7553,305.2768,16.6502,0.0000,288.6267,1.0981,,,287.5286,8.4783,279.0503,0.0000,279.0503,5.2389,273.8114,0.0000,20.9412,35.7553,217.1148,903.0433,3052.1037,0.0000,0.0000,5.0000,2.7553,0.0000,0.0000,0.0000,0.0000,60046.8700,60046.8700,60046.8700,60046.8700,60046.8700,60046.8700 -38.1540,0.4976,379.8530,64.0722,70.0000,0.3480,0.0000,10,1459.1405,2070.1438,2070.1438,-195.8711,316.3197,316.3197,316.7692,-29.9293,2.3513,306.2079,0.0000,306.2079,7.7605,306.2079,16.7574,0.0000,289.4505,1.1124,,,288.3381,8.4981,279.8400,0.0000,279.8400,5.2357,274.6043,0.0000,21.5132,36.1085,216.9827,911.9628,3030.8787,0.0000,0.0000,5.0000,2.7605,0.0000,0.0000,0.0000,0.0000,60206.1704,60206.1704,60206.1704,60206.1704,60206.1704,60206.1704 -38.6516,0.4976,388.7952,64.6924,70.0000,0.3444,0.0000,10,1473.2643,2055.8918,2055.8918,-197.9896,317.1827,317.1827,317.5910,-30.5458,2.3492,307.0679,0.0000,307.0679,7.7657,307.0679,16.8616,0.0000,290.2063,1.1265,,,289.0797,8.5159,280.5638,0.0000,280.5638,5.2309,275.3328,0.0000,22.0882,36.4580,216.7866,920.7902,3009.6603,0.0000,0.0000,5.0000,2.7657,0.0000,0.0000,0.0000,0.0000,60359.7188,60359.7188,60359.7188,60359.7188,60359.7188,60359.7188 -39.1493,0.4977,397.8231,65.3061,70.0000,0.3408,0.0000,10,1487.2410,2041.7375,2041.7375,-200.0861,317.9874,317.9874,318.3618,-31.1621,2.3464,307.8701,0.0000,307.8701,7.7708,307.8701,16.9633,0.0000,290.9068,1.1406,,,289.7662,8.5321,281.2341,0.0000,281.2341,5.2249,276.0092,0.0000,22.6701,36.8039,216.5353,929.5256,2988.5737,0.0000,0.0000,5.0000,2.7708,0.0000,0.0000,0.0000,0.0000,60513.9178,60513.9178,60513.9178,60513.9178,60513.9178,60513.9178 -39.6469,0.4977,406.9358,65.9134,70.0000,0.3372,0.0000,10,1501.0712,2027.7109,2027.7109,-202.1443,318.7395,318.7395,319.0831,-31.7754,2.3432,308.6205,0.0000,308.6205,7.7759,308.6205,17.0626,0.0000,291.5579,1.1546,,,290.4032,8.5468,281.8565,0.0000,281.8565,5.2176,276.6388,0.0000,23.2588,37.1461,216.2339,938.1695,2967.6649,0.0000,0.0000,5.0000,2.7759,0.0000,0.0000,0.0000,0.0000,60662.2712,60662.2712,60662.2712,60662.2712,60662.2712,60662.2712 -40.1447,0.4978,416.1324,66.5143,70.0000,0.3336,0.0000,10,1514.7561,2013.8548,2013.8548,-204.1769,319.4475,319.4475,319.7562,-32.3875,2.3395,309.3271,0.0000,309.3271,7.7809,309.3271,17.1599,0.0000,292.1672,1.1686,,,290.9986,8.5602,282.4384,0.0000,282.4384,5.2094,277.2290,0.0000,23.8504,37.4848,215.8939,946.7226,2946.9995,0.0000,0.0000,5.0000,2.7809,0.0000,0.0000,0.0000,0.0000,60809.2451,60809.2451,60809.2451,60809.2451,60809.2451,60809.2451 -40.6424,0.4978,425.4120,67.1089,70.0000,0.3300,0.0000,10,1528.2972,2000.1382,2000.1382,-206.1880,320.1079,320.1079,320.3825,-32.9989,2.3354,309.9867,0.0000,309.9867,7.7859,309.9867,17.2551,0.0000,292.7316,1.1824,,,291.5492,8.5723,282.9769,0.0000,282.9769,5.2002,277.7767,0.0000,24.4445,37.8199,215.5124,955.1858,2926.5309,0.0000,0.0000,5.0000,2.7859,0.0000,0.0000,0.0000,0.0000,60954.4900,60954.4900,60954.4900,60954.4900,60954.4900,60954.4900 -41.1403,0.4978,434.7737,67.6972,70.0000,0.3265,0.0000,10,1541.6956,1986.5513,1986.5513,-208.1780,320.7207,320.7207,320.9633,-33.6095,2.3308,310.5991,0.0000,310.5991,7.7908,310.5991,17.3481,0.0000,293.2510,1.1961,,,292.0549,8.5830,283.4719,0.0000,283.4719,5.1900,278.2819,0.0000,25.0410,38.1514,215.0894,963.5597,2906.2452,0.0000,0.0000,5.0000,2.7908,0.0000,0.0000,0.0000,0.0000,61097.7672,61097.7672,61097.7672,61097.7672,61097.7672,61097.7672 -41.6381,0.4979,444.2168,68.2794,70.0000,0.3230,0.0000,10,1554.9524,1973.0913,1973.0913,-210.1470,321.2868,321.2868,321.4998,-34.2191,2.3257,311.1654,0.0000,311.1654,7.7957,311.1654,17.4390,0.0000,293.7263,1.2098,,,292.5165,8.5924,283.9241,0.0000,283.9241,5.1788,278.7453,0.0000,25.6397,38.4795,214.6261,971.8452,2886.1385,0.0000,0.0000,5.0000,2.7957,0.0000,0.0000,0.0000,0.0000,61239.0397,61239.0397,61239.0397,61239.0397,61239.0397,61239.0397 -42.1360,0.4979,453.7402,68.8553,70.0000,0.3196,0.0000,10,1568.0687,1959.7576,1959.7576,-212.0951,321.8074,321.8074,321.9933,-34.8277,2.3203,311.6866,0.0000,311.6866,7.8005,311.6866,17.5278,0.0000,294.1588,1.2234,,,292.9354,8.6005,284.3349,0.0000,284.3349,5.1667,279.1682,0.0000,26.2405,38.8041,214.1237,980.0429,2866.2105,0.0000,0.0000,5.0000,2.8005,0.0000,0.0000,0.0000,0.0000,61378.3333,61378.3333,61378.3333,61378.3333,61378.3333,61378.3333 -42.6340,0.4980,463.3433,69.4251,70.0000,0.3162,0.0000,10,1581.0458,1946.5500,1946.5500,-214.0225,322.2839,322.2839,322.4450,-35.4350,2.3145,312.1642,0.0000,312.1642,7.8053,312.1642,17.6146,0.0000,294.5496,1.2368,,,293.3127,8.6074,284.7053,0.0000,284.7053,5.1537,279.5517,0.0000,26.8430,39.1252,213.5835,988.1536,2846.4616,0.0000,0.0000,5.0000,2.8053,0.0000,0.0000,0.0000,0.0000,61515.6911,61515.6911,61515.6911,61515.6911,61515.6911,61515.6911 -43.1333,0.5007,473.0250,69.6104,70.0000,-0.1089,0.0000,0,1508.0127,-121.9671,2022.7469,-203.1753,-19.2609,319.4296,319.4296,-32.0852,-27.0393,0.0000,0.0000,0.0000,7.7785,0.0000,5.2627,0.0000,-5.2627,1.2412,,,-6.5040,2.7860,-9.2900,0.0000,-9.2900,-1.7803,-7.5097,0.0000,27.0402,39.2296,-73.7795,990.7900,-50.7226,0.0000,0.0000,5.0000,2.7785,0.0000,0.0000,0.0000,0.0000,1791.6388,1791.6388,1791.6388,1791.6388,1791.6388,1791.6388 -43.6340,0.5007,482.6795,69.4151,70.0000,-0.1077,0.0000,0,1349.2628,-116.1043,1337.9643,-181.4189,-16.4049,189.0469,301.5224,-25.6335,-24.1250,0.0000,0.0000,0.0000,7.7201,0.0000,4.6585,0.0000,-4.6585,1.2366,,,-5.8951,2.6701,-8.5652,0.0000,-8.5652,-1.7557,-6.8095,0.0000,26.8319,39.1195,-72.7609,988.0107,-45.0251,0.0000,0.0000,5.0000,2.7201,0.0000,0.0000,0.0000,0.0000,1369.5924,1369.5924,1369.5924,1369.5924,1369.5924,1369.5924 -44.1340,0.4992,492.3070,69.4247,70.0000,0.1187,0.0000,11,1268.3862,1294.6574,1294.6574,-172.5225,171.9630,171.9630,283.4487,-22.9153,-0.4630,164.7296,0.0000,164.7296,7.6964,164.7296,10.1890,0.0000,154.5406,1.2368,,,153.3038,5.1926,148.1112,0.0000,148.1112,1.9354,146.1758,0.0000,26.8422,39.1250,80.2087,988.1475,1493.4556,0.0000,0.0000,5.0000,2.6964,0.0000,0.0000,0.0000,0.0000,31728.1833,31728.1833,31728.1833,31728.1833,31728.1833,31728.1833 -44.6329,0.4986,501.9641,69.7202,70.0000,0.2104,0.0000,11,1270.2127,1820.7225,1820.7225,-172.7234,242.1859,242.1859,283.8569,-22.9750,0.9897,233.4992,0.0000,233.4992,7.6969,233.4992,12.9637,0.0000,220.5356,1.2439,,,219.2917,6.6854,212.6063,0.0000,212.6063,3.4436,209.1627,0.0000,27.1580,39.2915,142.7132,992.3537,2122.1864,0.0000,0.0000,5.0000,2.6969,0.0000,0.0000,0.0000,0.0000,45475.4837,45475.4837,45475.4837,45475.4837,45475.4837,45475.4837 -45.1321,0.4997,511.6737,69.9545,70.0000,0.0506,0.0000,11,1274.4813,926.6352,2015.2694,-173.1929,123.6719,268.9647,284.8108,-23.1149,0.2387,115.7351,0.0000,115.7351,7.6981,115.7351,8.2721,0.0000,107.4630,1.2494,,,106.2136,4.1325,102.0811,0.0000,102.0811,0.8305,101.2506,0.0000,27.4097,39.4235,34.4174,995.6885,1030.6394,0.0000,0.0000,5.0000,2.6981,0.0000,0.0000,0.0000,0.0000,23292.4141,23292.4141,23292.4141,23292.4141,23292.4141,23292.4141 -45.6319,0.5000,521.3959,70.0000,70.0000,0.0000,0.0000,11,1275.3099,643.5592,1686.1001,-173.2841,85.9474,225.1789,284.9960,-23.1421,0.0000,78.2491,0.0000,78.2491,7.6983,78.2491,6.7764,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,16586.3672,16586.3672,16586.3672,16586.3672,16586.3672,16586.3672 -46.1319,0.5000,531.1181,70.0000,70.0000,0.0000,0.0000,11,1275.3099,643.5592,1581.7186,-173.2841,85.9474,211.2387,284.9960,-23.1421,0.0000,78.2491,0.0000,78.2491,7.6983,78.2491,6.7764,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,16586.3672,16586.3672,16586.3672,16586.3672,16586.3672,16586.3672 -46.6322,0.5007,540.8404,69.9049,70.0000,-0.1055,0.0000,0,1205.4715,-89.6161,1570.2133,-165.6019,-11.3128,198.2185,269.3891,-20.9050,-18.9919,0.0000,0.0000,0.0000,7.6791,0.0000,3.0817,0.0000,-3.0817,1.2482,,,-4.3299,2.4197,-6.7496,0.0000,-6.7496,-1.7318,-5.0178,0.0000,27.3562,39.3956,-71.7697,994.9824,-29.5763,0.0000,0.0000,5.0000,2.6791,0.0000,0.0000,0.0000,0.0000,1422.3662,1422.3662,1422.3662,1422.3662,1422.3662,1422.3662 -47.1329,0.5007,550.5362,69.7155,70.0000,-0.1047,0.0000,0,1065.9845,-81.5557,1214.6771,-156.2890,-9.1040,135.5940,238.2176,-17.4465,-16.7488,0.0000,0.0000,0.0000,7.6448,0.0000,2.6921,0.0000,-2.6921,1.2437,,,-3.9358,2.3416,-6.2774,0.0000,-6.2774,-1.7133,-4.5641,0.0000,27.1527,39.2888,-71.0057,992.2862,-25.9074,0.0000,0.0000,5.0000,2.6448,0.0000,0.0000,0.0000,0.0000,1343.4808,1343.4808,1343.4808,1343.4808,1343.4808,1343.4808 -47.6331,0.4996,560.2058,69.6750,70.0000,0.0599,0.0000,12,994.4062,1193.6417,1193.6417,-151.7483,124.2987,124.2987,220.8443,-15.8022,-0.4338,117.1013,0.0000,117.1013,7.6311,117.1013,3.6531,0.0000,113.4482,1.2428,,,112.2054,4.2519,107.9535,0.0000,107.9535,0.9796,106.9739,0.0000,27.1093,39.2660,40.5985,991.7100,1092.4067,0.0000,0.0000,5.0000,2.6311,0.0000,0.0000,0.0000,0.0000,23343.5227,23343.5227,23343.5227,23343.5227,23343.5227,23343.5227 -48.1324,0.4991,569.8903,69.8509,70.0000,0.1358,0.0000,12,994.2130,1730.6853,1730.6853,-151.7396,180.1881,180.1881,220.7538,-15.7982,0.3907,172.1664,0.0000,172.1664,7.6311,172.1664,4.2132,0.0000,167.9532,1.2470,,,166.7063,5.5240,161.1823,0.0000,161.1823,2.2270,158.9553,0.0000,27.2981,39.3651,92.2921,994.2130,1613.1707,0.0000,0.0000,5.0000,2.6311,0.0000,0.0000,0.0000,0.0000,33741.9270,33741.9270,33741.9270,33741.9270,33741.9270,33741.9270 -48.6320,0.4999,579.6088,69.9864,70.0000,0.0151,0.0000,12,996.1426,893.9936,1957.2766,-151.8264,93.2577,204.1749,221.6583,-15.8379,0.0435,85.5826,0.0000,85.5826,7.6316,85.5826,3.3546,0.0000,82.2280,1.2502,,,80.9778,3.5714,77.4064,0.0000,77.4064,0.2479,77.1586,0.0000,27.4440,39.4415,10.2730,996.1426,788.2603,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,17737.1494,17737.1494,17737.1494,17737.1494,17737.1494,17737.1494 -49.1319,0.5000,589.3310,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1606.7551,-151.8351,82.3511,167.6425,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -49.6319,0.5000,599.0532,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -50.1319,0.5000,608.7755,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -50.6319,0.5000,618.4977,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -51.1319,0.5000,628.2199,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -51.6319,0.5000,637.9421,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -52.1319,0.5000,647.6643,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -52.6319,0.5000,657.3866,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -53.1319,0.5000,667.1088,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -53.6319,0.5000,676.8310,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -54.1319,0.5000,686.5532,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -54.6319,0.5000,696.2755,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -55.1319,0.5000,705.9977,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -55.6319,0.5000,715.7199,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -56.1319,0.5000,725.4421,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -56.6319,0.5000,735.1643,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -57.1319,0.5000,744.8866,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -57.6319,0.5000,754.6088,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -58.1319,0.5000,764.3310,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -58.6319,0.5000,774.0532,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -59.1319,0.5000,783.7755,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -59.6319,0.5000,793.4977,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -60.1319,0.5000,803.2199,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -60.6319,0.5000,812.9421,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -61.1319,0.5000,822.6643,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -61.6319,0.5000,832.3866,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -62.1319,0.5000,842.1088,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -62.6319,0.5000,851.8310,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -63.1319,0.5000,861.5532,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -63.6319,0.5000,871.2755,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -64.1319,0.5000,880.9977,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -64.6319,0.5000,890.7199,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -65.1319,0.5000,900.4421,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -65.6319,0.5000,910.1643,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -66.1319,0.5000,919.8866,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -66.6319,0.5000,929.6088,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -67.1319,0.5000,939.3310,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -67.6319,0.5000,949.0532,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -68.1319,0.5000,958.7755,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -68.6319,0.5000,968.4977,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -69.1319,0.5000,978.2199,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -69.6319,0.5000,987.9421,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -70.1319,0.5000,997.6643,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -70.6319,0.5000,1007.3866,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -71.1319,0.5000,1017.1088,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -71.6319,0.5000,1026.8310,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -72.1319,0.5000,1036.5532,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -72.6319,0.5000,1046.2755,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -73.1319,0.5000,1055.9977,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -73.6319,0.5000,1065.7199,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -74.1319,0.5000,1075.4421,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -74.6319,0.5000,1085.1643,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -75.1319,0.5000,1094.8866,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -75.6319,0.5000,1104.6088,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -76.1319,0.5000,1114.3310,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -76.6319,0.5000,1124.0532,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -77.1319,0.5000,1133.7755,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -77.6319,0.5000,1143.4977,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -78.1319,0.5000,1153.2199,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -78.6319,0.5000,1162.9421,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -79.1319,0.5000,1172.6643,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -79.6319,0.5000,1182.3866,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -80.1319,0.5000,1192.1088,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -80.6319,0.5000,1201.8310,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -81.1319,0.5000,1211.5532,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -81.6319,0.5000,1221.2755,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -82.1319,0.5000,1230.9977,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -82.6319,0.5000,1240.7199,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -83.1319,0.5000,1250.4421,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -83.6319,0.5000,1260.1643,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -84.1319,0.5000,1269.8866,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -84.6319,0.5000,1279.6088,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -85.1319,0.5000,1289.3310,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -85.6319,0.5000,1299.0532,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -86.1319,0.5000,1308.7755,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -86.6319,0.5000,1318.4977,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -87.1319,0.5000,1328.2199,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -87.6319,0.5000,1337.9421,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -88.1319,0.5000,1347.6643,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -88.6319,0.5000,1357.3866,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -89.1319,0.5000,1367.1088,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -89.6319,0.5000,1376.8310,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -90.1319,0.5000,1386.5532,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -90.6319,0.5000,1396.2755,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -91.1319,0.5000,1405.9977,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -91.6319,0.5000,1415.7199,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -92.1319,0.5000,1425.4421,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -92.6319,0.5000,1435.1643,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -93.1319,0.5000,1444.8866,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -93.6319,0.5000,1454.6088,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -94.1319,0.5000,1464.3310,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -94.6319,0.5000,1474.0532,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -95.1319,0.5000,1483.7755,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -95.6319,0.5000,1493.4977,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -96.1319,0.5000,1503.2199,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -96.6319,0.5000,1512.9421,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -97.1319,0.5000,1522.6643,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -97.6319,0.5000,1532.3866,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -98.1319,0.5000,1542.1088,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -98.6319,0.5000,1551.8310,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -99.1319,0.5000,1561.5532,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -99.6319,0.5000,1571.2755,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -100.1319,0.5000,1580.9977,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -100.6319,0.5000,1590.7199,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -101.1319,0.5000,1600.4421,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -101.6319,0.5000,1610.1643,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -102.1319,0.5000,1619.8866,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -102.6319,0.5000,1629.6088,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -103.1319,0.5000,1639.3310,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -103.6319,0.5000,1649.0532,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -104.1319,0.5000,1658.7755,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -104.6319,0.5000,1668.4977,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -105.1319,0.5000,1678.2199,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -105.6319,0.5000,1687.9421,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -106.1319,0.5000,1697.6643,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -106.6319,0.5000,1707.3866,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -107.1319,0.5000,1717.1088,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -107.6319,0.5000,1726.8310,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -108.1319,0.5000,1736.5532,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -108.6319,0.5000,1746.2755,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -109.1319,0.5000,1755.9977,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -109.6319,0.5000,1765.7199,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -110.1319,0.5000,1775.4421,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -110.6319,0.5000,1785.1643,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -111.1319,0.5000,1794.8866,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -111.6319,0.5000,1804.6088,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -112.1319,0.5000,1814.3310,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -112.6319,0.5000,1824.0532,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -113.1319,0.5000,1833.7755,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -113.6319,0.5000,1843.4977,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -114.1319,0.5000,1853.2199,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -114.6319,0.5000,1862.9421,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -115.1319,0.5000,1872.6643,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -115.6319,0.5000,1882.3866,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -116.1319,0.5000,1892.1088,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -116.6319,0.5000,1901.8310,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -117.1319,0.5000,1911.5532,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -117.6319,0.5000,1921.2755,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -118.1319,0.5000,1930.9977,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -118.6319,0.5000,1940.7199,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -119.1319,0.5000,1950.4421,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -119.6319,0.5000,1960.1643,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -120.1319,0.5000,1969.8866,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -120.6319,0.5000,1979.6088,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -121.1319,0.5000,1989.3310,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -121.6319,0.5000,1999.0532,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,0.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -122.1319,0.5000,2008.7755,70.0000,70.0000,0.0000,0.4513,12,996.3358,1087.9822,1562.8314,-151.8351,113.5158,163.0596,221.7490,-15.8419,0.0000,105.8841,0.0000,105.8841,7.6316,105.8841,3.5583,0.0000,102.3258,1.2505,,,101.0753,4.0230,97.0523,0.0000,97.0523,0.0000,97.0523,30.1449,27.4587,39.4488,0.0000,996.3358,980.7329,0.0439,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21357.4943,21357.4943,21357.4943,21357.4943,21357.4943,21357.4943 -122.6319,0.5000,2018.4977,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1688.5882,-151.8351,116.8734,176.1806,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.0925,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -123.1319,0.5000,2028.2199,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.1411,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -123.6319,0.5000,2037.9421,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.1897,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -124.1319,0.5000,2047.6643,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.2383,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -124.6319,0.5000,2057.3866,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.2869,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -125.1319,0.5000,2067.1088,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.3355,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -125.6319,0.5000,2076.8310,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.3842,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -126.1319,0.5000,2086.5532,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.4328,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -126.6319,0.5000,2096.2755,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.4814,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -127.1319,0.5000,2105.9977,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.5300,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -127.6319,0.5000,2115.7199,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.5786,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -128.1319,0.5000,2125.4421,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.6272,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -128.6319,0.5000,2135.1643,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.6758,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -129.1319,0.5000,2144.8866,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.7244,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -129.6319,0.5000,2154.6088,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.7730,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -130.1319,0.5000,2164.3310,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.8217,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -130.6319,0.5000,2174.0532,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.8703,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -131.1319,0.5000,2183.7755,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.9189,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -131.6319,0.5000,2193.4977,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,0.9675,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -132.1319,0.5000,2203.2199,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.0161,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -132.6319,0.5000,2212.9421,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.0647,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -133.1319,0.5000,2222.6643,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.1133,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -133.6319,0.5000,2232.3866,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.1619,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -134.1319,0.5000,2242.1088,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.2105,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -134.6319,0.5000,2251.8310,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.2592,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -135.1319,0.5000,2261.5532,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.3078,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -135.6319,0.5000,2271.2755,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.3564,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -136.1319,0.5000,2280.9977,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.4050,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -136.6319,0.5000,2290.7199,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.4536,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -137.1319,0.5000,2300.4421,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.5022,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -137.6319,0.5000,2310.1643,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.5508,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -138.1319,0.5000,2319.8866,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.5994,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -138.6319,0.5000,2329.6088,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.6480,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -139.1319,0.5000,2339.3310,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.6967,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -139.6319,0.5000,2349.0532,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.7453,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -140.1319,0.5000,2358.7755,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.7939,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -140.6319,0.5000,2368.4977,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.8425,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -141.1319,0.5000,2378.2199,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.8911,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -141.6319,0.5000,2387.9421,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.9397,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -142.1319,0.5000,2397.6643,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,1.9883,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -142.6319,0.5000,2407.3866,70.0000,70.0000,0.0000,1.2598,12,996.3358,1622.8324,1702.1369,-151.8351,169.3199,177.5942,221.7490,-15.8419,0.0000,161.6883,0.0000,161.6883,7.6316,161.6883,4.1164,0.0000,157.5719,1.2505,,,156.3214,5.2776,151.0438,0.0000,151.0438,0.0000,151.0438,84.1391,27.4587,39.4460,0.0000,996.3358,1510.2347,2.1108,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,31567.5752,31567.5752,31567.5752,31567.5752,31567.5752,31567.5752 -143.1319,0.5000,2417.1088,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1913.7709,-151.8351,185.9219,199.6753,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,2.2566,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -143.6319,0.5000,2426.8310,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,2.4025,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -144.1319,0.5000,2436.5532,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,2.5483,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -144.6319,0.5000,2446.2755,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,2.6941,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -145.1319,0.5000,2455.9977,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,2.8400,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -145.6319,0.5000,2465.7199,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,2.9858,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -146.1319,0.5000,2475.4421,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,3.1316,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -146.6319,0.5000,2485.1643,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,3.2775,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -147.1319,0.5000,2494.8866,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,3.4233,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -147.6319,0.5000,2504.6088,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,3.5691,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -148.1319,0.5000,2514.3310,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,3.7150,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -148.6319,0.5000,2524.0532,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,3.8608,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -149.1319,0.5000,2533.7755,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,4.0066,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -149.6319,0.5000,2543.4977,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,4.1525,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -150.1319,0.5000,2553.2199,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,4.2983,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -150.6319,0.5000,2562.9421,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,4.4441,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -151.1319,0.5000,2572.6643,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,4.5900,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -151.6319,0.5000,2582.3866,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,4.7358,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -152.1319,0.5000,2592.1088,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,4.8816,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -152.6319,0.5000,2601.8310,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,5.0275,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -153.1319,0.5000,2611.5532,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,5.1733,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -153.6319,0.5000,2621.2755,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,5.3191,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -154.1319,0.5000,2630.9977,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,5.4650,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -154.6319,0.5000,2640.7199,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,5.6108,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -155.1319,0.5000,2650.4421,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,5.7566,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -155.6319,0.5000,2660.1643,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,5.9025,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -156.1319,0.5000,2669.8866,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,6.0483,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -156.6319,0.5000,2679.6088,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,6.1941,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -157.1319,0.5000,2689.3310,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,6.3400,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -157.6319,0.5000,2699.0532,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,6.4858,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -158.1319,0.5000,2708.7755,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,6.6316,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -158.6319,0.5000,2718.4977,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,6.7775,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -159.1319,0.5000,2728.2199,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,6.9233,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -159.6319,0.5000,2737.9421,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,7.0691,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -160.1319,0.5000,2747.6643,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,7.2150,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -160.6319,0.5000,2757.3866,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,7.3608,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -161.1319,0.5000,2767.1088,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,7.5066,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -161.6319,0.5000,2776.8310,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,7.6525,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -162.1319,0.5000,2786.5532,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,7.7983,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -162.6319,0.5000,2796.2755,70.0000,70.0000,0.0000,1.5000,12,996.3358,1781.9526,1980.7637,-151.8351,185.9219,206.6650,221.7490,-15.8419,0.0000,178.2902,0.0000,178.2902,7.6316,178.2902,4.2824,0.0000,174.0079,1.2505,,,172.7574,5.6727,167.0846,0.0000,167.0846,0.0000,167.0846,100.1812,27.4587,39.4447,0.0000,996.3358,1667.7637,7.9441,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966,34817.9966 -163.1319,0.5000,2805.9977,70.0000,70.0000,0.0000,1.6851,12,996.3358,1904.2856,1980.7637,-151.8351,198.6856,206.6650,221.7490,-15.8419,0.0000,191.0540,0.0000,191.0540,7.6316,191.0540,4.4100,0.0000,186.6440,1.2505,,,185.3935,5.9529,179.4406,0.0000,179.4406,0.0000,179.4406,112.5384,27.4587,39.4436,0.0000,996.3358,1788.8734,8.1080,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,37623.5842,37623.5842,37623.5842,37623.5842,37623.5842,37623.5842 -163.6328,0.5018,2815.7199,69.7475,70.0000,-0.2795,1.8000,0,1066.3318,218.9084,1987.9611,-156.3116,24.4446,221.9877,238.2953,-17.4547,16.7998,0.0000,0.0000,0.0000,7.6448,0.0000,4.1756,0.0000,-4.1756,1.2445,,,-5.4201,2.6029,-8.0230,0.0000,-8.0230,-4.5776,-3.4453,119.7779,27.1874,39.3005,-189.7112,992.7420,-40.1654,8.2830,0.0000,5.0000,2.6448,0.0000,0.0000,0.0000,0.0000,6386.0850,6386.0850,6386.0850,6386.0850,6386.0850,6386.0850 -164.1346,0.5018,2825.3720,69.2422,70.0000,-0.2799,1.8000,0,1205.8188,210.1707,1383.9100,-165.6401,26.5389,174.7505,269.4667,-20.9159,18.8597,0.0000,0.0000,0.0000,7.6792,0.0000,4.6419,0.0000,-4.6419,1.2325,,,-5.8744,2.6582,-8.5326,0.0000,-8.5326,-4.5498,-3.9828,118.9102,26.6486,39.0158,-188.5574,985.5500,-44.9767,8.4567,0.0000,5.0000,2.6792,0.0000,0.0000,0.0000,0.0000,6894.9659,6894.9659,6894.9659,6894.9659,6894.9659,6894.9659 -164.6356,0.5002,2834.9538,68.9649,70.0000,-0.0272,1.8000,11,1265.6579,1415.2817,1415.2817,-172.2224,187.5806,187.5806,282.8390,-22.8262,-2.7586,182.6435,0.0000,182.6435,7.6956,182.6435,10.8685,0.0000,171.7751,1.2260,,,170.5491,5.5970,164.9521,0.0000,164.9521,-0.4405,165.3926,118.4340,26.3553,38.8595,-18.2562,981.6032,1671.0733,8.6292,0.0000,5.0000,2.6956,0.0000,0.0000,0.0000,0.0000,34657.5703,34657.5703,34657.5703,34657.5703,34657.5703,34657.5703 -165.1356,0.4997,2844.5289,68.9838,70.0000,0.0482,1.8000,11,1256.7956,1868.1373,1868.1373,-171.2475,245.8680,245.8680,280.8586,-22.5381,0.2244,237.9505,0.0000,237.9505,7.6932,237.9505,13.0823,0.0000,224.8682,1.2264,,,223.6418,6.8001,216.8417,0.0000,216.8417,0.7806,216.0611,118.4664,26.3752,38.8702,32.3494,981.8716,2186.9799,8.8015,0.0000,5.0000,2.6932,0.0000,0.0000,0.0000,0.0000,46130.5697,46130.5697,46130.5697,46130.5697,46130.5697,46130.5697 -165.6351,0.4995,2854.1160,69.0968,70.0000,0.0775,1.8000,11,1258.8551,2033.1654,2033.1654,-171.4741,268.0261,268.0261,281.3188,-22.6049,0.3614,259.9709,0.0000,259.9709,7.6938,259.9709,13.9722,0.0000,245.9987,1.2291,,,244.7696,7.3057,237.4639,0.0000,237.4639,1.2576,236.2064,118.6605,26.4944,38.9339,52.1176,983.4805,2388.5725,8.9741,0.0000,5.0000,2.6938,0.0000,0.0000,0.0000,0.0000,50775.5995,50775.5995,50775.5995,50775.5995,50775.5995,50775.5995 -166.1346,0.4994,2863.7225,69.2459,70.0000,0.0883,1.8000,11,1261.5718,2094.6067,2094.6067,-171.7729,276.7216,276.7216,281.9259,-22.6932,0.4128,268.6143,0.0000,268.6143,7.6945,268.6143,14.3299,0.0000,254.2843,1.2326,,,253.0517,7.5029,245.5489,0.0000,245.5489,1.4363,244.1126,118.9166,26.6522,39.0179,59.5259,985.6030,2463.7067,9.1470,0.0000,5.0000,2.6945,0.0000,0.0000,0.0000,0.0000,52585.9762,52585.9762,52585.9762,52585.9762,52585.9762,52585.9762 -166.6340,0.4994,2873.3510,69.4083,70.0000,0.0923,1.8000,11,1264.5300,2117.4468,2117.4468,-172.0983,280.3950,280.3950,282.5870,-22.7895,0.4322,272.2675,0.0000,272.2675,7.6953,272.2675,14.4892,0.0000,257.7783,1.2364,,,256.5418,7.5849,248.9569,0.0000,248.9569,1.5038,247.4531,119.1954,26.8247,39.1094,62.3236,987.9141,2491.7160,9.3203,0.0000,5.0000,2.6953,0.0000,0.0000,0.0000,0.0000,53344.3741,53344.3741,53344.3741,53344.3741,53344.3741,53344.3741 -167.1334,0.4994,2883.0026,69.5755,70.0000,0.0937,1.8000,11,1267.5751,2125.9292,2125.9292,-172.4333,282.1962,282.1962,283.2675,-22.8888,0.4397,274.0603,0.0000,274.0603,7.6962,274.0603,14.5744,0.0000,259.4859,1.2404,,,258.2455,7.6241,250.6214,0.0000,250.6214,1.5299,249.0915,119.4824,27.0029,39.2036,63.4026,990.2931,2502.1965,9.4940,0.0000,5.0000,2.6962,0.0000,0.0000,0.0000,0.0000,53711.3547,53711.3547,53711.3547,53711.3547,53711.3547,53711.3547 -167.6328,0.4994,2892.6775,69.7442,70.0000,0.0941,1.8000,11,1270.6496,2129.0817,2129.0817,-172.7715,283.3001,283.3001,283.9545,-22.9893,0.4428,275.1603,0.0000,275.1603,7.6970,275.1603,14.6321,0.0000,260.5283,1.2444,,,259.2839,7.6473,251.6366,0.0000,251.6366,1.5405,250.0961,119.7722,27.1835,39.2986,63.8417,992.6950,2506.1694,9.6682,0.0000,5.0000,2.6970,0.0000,0.0000,0.0000,0.0000,53932.9087,53932.9087,53932.9087,53932.9087,53932.9087,53932.9087 -168.1322,0.4994,2902.3759,69.9134,70.0000,0.0941,1.8000,11,1273.7320,2130.2598,2130.2598,-173.1105,284.1445,284.1445,284.6434,-23.0903,0.4441,276.0025,0.0000,276.0025,7.6979,276.0025,14.6795,0.0000,261.3230,1.2484,,,260.0746,7.6645,252.4101,0.0000,252.4101,1.5453,250.8647,120.0628,27.3654,39.3940,64.0426,995.1031,2507.7309,9.8428,0.0000,5.0000,2.6979,0.0000,0.0000,0.0000,0.0000,54100.4616,54100.4616,54100.4616,54100.4616,54100.4616,54100.4616 -168.6319,0.5000,2912.0979,69.9990,70.0000,0.0011,1.8000,11,1275.2918,1609.1933,2131.6457,-173.2821,214.9049,284.6775,284.9920,-23.1415,0.0052,207.2014,0.0000,207.2014,7.6983,207.2014,11.9344,0.0000,195.2671,1.2505,,,194.0166,6.1385,187.8781,0.0000,187.8781,0.0181,187.8600,120.2098,27.4576,39.4422,0.7503,996.3217,1871.5471,10.0178,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,39507.2424,39507.2424,39507.2424,39507.2424,39507.2424,39507.2424 -169.1319,0.5000,2921.8201,70.0000,70.0000,0.0000,1.8000,11,1275.3099,1603.0338,1939.5222,-173.2841,214.0854,259.0235,284.9960,-23.1421,0.0000,206.3871,0.0000,206.3871,7.6983,206.3871,11.9019,0.0000,194.4852,1.2505,,,193.2347,6.1217,187.1130,0.0000,187.1130,0.0000,187.1130,120.2115,27.4587,39.4428,0.0000,996.3358,1864.0268,10.1928,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,39359.2945,39359.2945,39359.2945,39359.2945,39359.2945,39359.2945 -169.6319,0.5000,2931.5423,70.0000,70.0000,0.0000,1.8000,11,1275.3099,1603.0338,1937.2510,-173.2841,214.0854,258.7201,284.9960,-23.1421,0.0000,206.3871,0.0000,206.3871,7.6983,206.3871,11.9019,0.0000,194.4852,1.2505,,,193.2347,6.1217,187.1130,0.0000,187.1130,0.0000,187.1130,120.2115,27.4587,39.4428,0.0000,996.3358,1864.0268,10.3678,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,39359.2945,39359.2945,39359.2945,39359.2945,39359.2945,39359.2945 -170.1319,0.5000,2941.2646,70.0000,70.0000,0.0000,1.8000,11,1275.3099,1603.0338,1937.2510,-173.2841,214.0854,258.7201,284.9960,-23.1421,0.0000,206.3871,0.0000,206.3871,7.6983,206.3871,11.9019,0.0000,194.4852,1.2505,,,193.2347,6.1217,187.1130,0.0000,187.1130,0.0000,187.1130,120.2115,27.4587,39.4428,0.0000,996.3358,1864.0268,10.5428,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,39359.2945,39359.2945,39359.2945,39359.2945,39359.2945,39359.2945 -170.6319,0.5000,2950.9868,70.0000,70.0000,0.0000,1.8000,11,1275.3099,1603.0338,1937.2510,-173.2841,214.0854,258.7201,284.9960,-23.1421,0.0000,206.3871,0.0000,206.3871,7.6983,206.3871,11.9019,0.0000,194.4852,1.2505,,,193.2347,6.1217,187.1130,0.0000,187.1130,0.0000,187.1130,120.2115,27.4587,39.4428,0.0000,996.3358,1864.0268,10.7178,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,39359.2945,39359.2945,39359.2945,39359.2945,39359.2945,39359.2945 -171.1319,0.5000,2960.7090,70.0000,70.0000,0.0000,1.8000,11,1275.3099,1603.0338,1937.2510,-173.2841,214.0854,258.7201,284.9960,-23.1421,0.0000,206.3871,0.0000,206.3871,7.6983,206.3871,11.9019,0.0000,194.4852,1.2505,,,193.2347,6.1217,187.1130,0.0000,187.1130,0.0000,187.1130,120.2115,27.4587,39.4428,0.0000,996.3358,1864.0268,10.8928,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,39359.2945,39359.2945,39359.2945,39359.2945,39359.2945,39359.2945 -171.6319,0.5000,2970.4312,70.0000,70.0000,0.0000,1.8000,11,1275.3099,1603.0338,1937.2510,-173.2841,214.0854,258.7201,284.9960,-23.1421,0.0000,206.3871,0.0000,206.3871,7.6983,206.3871,11.9019,0.0000,194.4852,1.2505,,,193.2347,6.1217,187.1130,0.0000,187.1130,0.0000,187.1130,120.2115,27.4587,39.4428,0.0000,996.3358,1864.0268,11.0678,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,39359.2945,39359.2945,39359.2945,39359.2945,39359.2945,39359.2945 -172.1319,0.5000,2980.1534,70.0000,70.0000,0.0000,1.8000,11,1275.3099,1603.0338,1937.2510,-173.2841,214.0854,258.7201,284.9960,-23.1421,0.0000,206.3871,0.0000,206.3871,7.6983,206.3871,11.9019,0.0000,194.4852,1.2505,,,193.2347,6.1217,187.1130,0.0000,187.1130,0.0000,187.1130,120.2115,27.4587,39.4428,0.0000,996.3358,1864.0268,11.2428,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,39359.2945,39359.2945,39359.2945,39359.2945,39359.2945,39359.2945 -172.6319,0.5000,2989.8757,70.0000,70.0000,0.0000,1.8000,11,1275.3099,1603.0338,1937.2510,-173.2841,214.0854,258.7201,284.9960,-23.1421,0.0000,206.3871,0.0000,206.3871,7.6983,206.3871,11.9019,0.0000,194.4852,1.2505,,,193.2347,6.1217,187.1130,0.0000,187.1130,0.0000,187.1130,120.2115,27.4587,39.4428,0.0000,996.3358,1864.0268,11.4178,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,39359.2945,39359.2945,39359.2945,39359.2945,39359.2945,39359.2945 -173.1319,0.5000,2999.5979,70.0000,70.0000,0.0000,1.8000,11,1275.3099,1603.0338,1937.2510,-173.2841,214.0854,258.7201,284.9960,-23.1421,0.0000,206.3871,0.0000,206.3871,7.6983,206.3871,11.9019,0.0000,194.4852,1.2505,,,193.2347,6.1217,187.1130,0.0000,187.1130,0.0000,187.1130,120.2115,27.4587,39.4428,0.0000,996.3358,1864.0268,11.5928,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,39359.2945,39359.2945,39359.2945,39359.2945,39359.2945,39359.2945 -173.6319,0.5000,3009.3201,70.0000,70.0000,0.0000,1.9917,11,1275.3099,1705.0535,1937.2510,-173.2841,227.7101,258.7201,284.9960,-23.1421,0.0000,220.0118,0.0000,220.0118,7.6983,220.0118,12.4469,0.0000,207.5649,1.2505,,,206.3144,6.4033,199.9111,0.0000,199.9111,0.0000,199.9111,133.0111,27.4587,39.4413,0.0000,996.3358,1989.3886,11.7864,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,42374.9055,42374.9055,42374.9055,42374.9055,42374.9055,42374.9055 -174.1319,0.5000,3019.0423,70.0000,70.0000,0.0000,2.0000,11,1275.3099,1709.4548,1975.0543,-173.2841,228.2979,263.7688,284.9960,-23.1421,0.0000,220.5996,0.0000,220.5996,7.6983,220.5996,12.4704,0.0000,208.1292,1.2505,,,206.8787,6.4155,200.4633,0.0000,200.4633,0.0000,200.4633,133.5633,27.4587,39.4413,0.0000,996.3358,1994.7969,11.9808,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640 -174.6319,0.5000,3028.7646,70.0000,70.0000,0.0000,2.0000,11,1275.3099,1709.4548,1976.6852,-173.2841,228.2979,263.9866,284.9960,-23.1421,0.0000,220.5996,0.0000,220.5996,7.6983,220.5996,12.4704,0.0000,208.1292,1.2505,,,206.8787,6.4155,200.4633,0.0000,200.4633,0.0000,200.4633,133.5633,27.4587,39.4413,0.0000,996.3358,1994.7969,12.1753,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640 -175.1319,0.5000,3038.4868,70.0000,70.0000,0.0000,2.0000,11,1275.3099,1709.4548,1976.6852,-173.2841,228.2979,263.9866,284.9960,-23.1421,0.0000,220.5996,0.0000,220.5996,7.6983,220.5996,12.4704,0.0000,208.1292,1.2505,,,206.8787,6.4155,200.4633,0.0000,200.4633,0.0000,200.4633,133.5633,27.4587,39.4413,0.0000,996.3358,1994.7969,12.3697,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640 -175.6319,0.5000,3048.2090,70.0000,70.0000,0.0000,2.0000,11,1275.3099,1709.4548,1976.6852,-173.2841,228.2979,263.9866,284.9960,-23.1421,0.0000,220.5996,0.0000,220.5996,7.6983,220.5996,12.4704,0.0000,208.1292,1.2505,,,206.8787,6.4155,200.4633,0.0000,200.4633,0.0000,200.4633,133.5633,27.4587,39.4413,0.0000,996.3358,1994.7969,12.5642,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640 -176.1319,0.5000,3057.9312,70.0000,70.0000,0.0000,2.0000,11,1275.3099,1709.4548,1976.6852,-173.2841,228.2979,263.9866,284.9960,-23.1421,0.0000,220.5996,0.0000,220.5996,7.6983,220.5996,12.4704,0.0000,208.1292,1.2505,,,206.8787,6.4155,200.4633,0.0000,200.4633,0.0000,200.4633,133.5633,27.4587,39.4413,0.0000,996.3358,1994.7969,12.7586,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640 -176.6319,0.5000,3067.6534,70.0000,70.0000,0.0000,2.0000,11,1275.3099,1709.4548,1976.6852,-173.2841,228.2979,263.9866,284.9960,-23.1421,0.0000,220.5996,0.0000,220.5996,7.6983,220.5996,12.4704,0.0000,208.1292,1.2505,,,206.8787,6.4155,200.4633,0.0000,200.4633,0.0000,200.4633,133.5633,27.4587,39.4413,0.0000,996.3358,1994.7969,12.9531,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640 -177.1319,0.5000,3077.3757,70.0000,70.0000,0.0000,2.0000,11,1275.3099,1709.4548,1976.6852,-173.2841,228.2979,263.9866,284.9960,-23.1421,0.0000,220.5996,0.0000,220.5996,7.6983,220.5996,12.4704,0.0000,208.1292,1.2505,,,206.8787,6.4155,200.4633,0.0000,200.4633,0.0000,200.4633,133.5633,27.4587,39.4413,0.0000,996.3358,1994.7969,13.1475,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640 -177.6319,0.5000,3087.0979,70.0000,70.0000,0.0000,2.0000,11,1275.3099,1709.4548,1976.6852,-173.2841,228.2979,263.9866,284.9960,-23.1421,0.0000,220.5996,0.0000,220.5996,7.6983,220.5996,12.4704,0.0000,208.1292,1.2505,,,206.8787,6.4155,200.4633,0.0000,200.4633,0.0000,200.4633,133.5633,27.4587,39.4413,0.0000,996.3358,1994.7969,13.3420,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640 -178.1319,0.5000,3096.8201,70.0000,70.0000,0.0000,2.0000,11,1275.3099,1709.4548,1976.6852,-173.2841,228.2979,263.9866,284.9960,-23.1421,0.0000,220.5996,0.0000,220.5996,7.6983,220.5996,12.4704,0.0000,208.1292,1.2505,,,206.8787,6.4155,200.4633,0.0000,200.4633,0.0000,200.4633,133.5633,27.4587,39.4413,0.0000,996.3358,1994.7969,13.5364,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640 -178.6319,0.5000,3106.5423,70.0000,70.0000,0.0000,2.0000,11,1275.3099,1709.4548,1976.6852,-173.2841,228.2979,263.9866,284.9960,-23.1421,0.0000,220.5996,0.0000,220.5996,7.6983,220.5996,12.4704,0.0000,208.1292,1.2505,,,206.8787,6.4155,200.4633,0.0000,200.4633,0.0000,200.4633,133.5633,27.4587,39.4413,0.0000,996.3358,1994.7969,13.7308,0.0000,5.0000,2.6983,0.0000,0.0000,0.0000,0.0000,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640,42505.6640 -179.1329,0.5019,3116.2646,69.7319,70.0000,-0.2968,2.0000,0,1205.2982,-89.6077,2007.7983,-165.5828,-11.3102,253.4213,269.3503,-20.8996,-18.9892,0.0000,0.0000,0.0000,7.6790,0.0000,3.0715,0.0000,-3.0715,1.2441,,,-4.3156,2.4089,-6.7245,0.0000,-6.7245,-4.8591,-1.8653,133.0517,27.1707,39.2902,-201.3778,992.5193,-29.5516,13.9253,0.0000,5.0000,2.6790,0.0000,0.0000,0.0000,0.0000,1421.7183,1421.7183,1421.7183,1421.7183,1421.7183,1421.7183 -179.6348,0.5019,3125.9123,69.1967,70.0000,-0.2956,2.0000,0,1065.8111,-80.7978,1216.6422,-156.2777,-9.0180,135.7912,238.1789,-17.4424,-16.6627,0.0000,0.0000,0.0000,7.6447,0.0000,2.6629,0.0000,-2.6629,1.2314,,,-3.8944,2.3095,-6.2039,0.0000,-6.2039,-4.8023,-1.4016,132.0305,26.6004,38.9886,-199.0211,984.9016,-25.8188,14.1182,0.0000,5.0000,2.6447,0.0000,0.0000,0.0000,0.0000,1356.6134,1356.6134,1356.6134,1356.6134,1356.6134,1356.6134 -180.1362,0.5008,3135.4859,68.8142,70.0000,-0.1280,2.0000,12,987.0758,1191.2589,1191.2589,-151.4184,123.1361,123.1361,217.4243,-15.6516,-2.0613,117.5683,0.0000,117.5683,7.6291,117.5683,3.6120,0.0000,113.9562,1.2224,,,112.7338,4.2322,108.5016,0.0000,108.5016,-2.0679,110.5695,131.3008,26.1969,38.7731,-85.7013,979.4581,1111.0244,14.3097,0.0000,5.0000,2.6291,0.0000,0.0000,0.0000,0.0000,23145.2426,23145.2426,23145.2426,23145.2426,23145.2426,23145.2426 -180.6368,0.5004,3145.0274,68.6486,70.0000,-0.0558,2.0000,12,977.1004,1717.2914,1717.2914,-150.9695,175.7162,175.7162,212.8130,-15.4475,-0.1578,168.2476,0.0000,168.2476,7.6263,168.2476,4.1101,0.0000,164.1376,1.2185,,,162.9191,5.4069,157.5122,0.0000,157.5122,-0.8995,158.4117,130.9847,26.0234,38.6798,-37.2763,977.1004,1604.1322,14.5005,0.0000,5.0000,2.6263,0.0000,0.0000,0.0000,0.0000,32970.5210,32970.5210,32970.5210,32970.5210,32970.5210,32970.5210 -181.1370,0.5002,3154.5549,68.5756,70.0000,-0.0252,2.0000,12,976.0618,1929.1893,1929.1893,-150.9228,197.1881,197.1881,212.3358,-15.4263,-0.0712,189.6333,0.0000,189.6333,7.6261,189.6333,4.3201,0.0000,185.3132,1.2168,,,184.0965,5.8995,178.1969,0.0000,178.1969,-0.4061,178.6030,130.8455,25.9472,38.6387,-16.8284,976.0618,1813.0112,14.6911,0.0000,5.0000,2.6261,0.0000,0.0000,0.0000,0.0000,37433.3317,37433.3317,37433.3317,37433.3317,37433.3317,37433.3317 -181.6372,0.5001,3164.0761,68.5415,70.0000,-0.0127,2.0000,12,975.5760,2015.8122,2015.8122,-150.9009,205.9396,205.9396,212.1127,-15.4164,-0.0358,198.3495,0.0000,198.3495,7.6259,198.3495,4.4054,0.0000,193.9440,1.2160,,,192.7281,6.0848,186.6433,0.0000,186.6433,-0.2042,186.8476,130.7803,25.9116,38.6195,-8.4639,975.5760,1898.3955,14.8815,0.0000,5.0000,2.6259,0.0000,0.0000,0.0000,0.0000,39057.9610,39057.9610,39057.9610,39057.9610,39057.9610,39057.9610 -182.1372,0.5000,3173.5942,68.5232,70.0000,-0.0076,2.0000,12,975.3163,2051.1079,2051.1079,-150.8892,209.4897,209.4897,211.9935,-15.4111,-0.0214,201.8852,0.0000,201.8852,7.6259,201.8852,4.4398,0.0000,197.4454,1.2155,,,196.2298,6.1598,190.0700,0.0000,190.0700,-0.1220,190.1920,130.7455,25.8926,38.6092,-5.0553,975.3163,1933.1826,15.0719,0.0000,5.0000,2.6259,0.0000,0.0000,0.0000,0.0000,39930.2317,39930.2317,39930.2317,39930.2317,39930.2317,39930.2317 -182.6373,0.5000,3183.1104,68.5114,70.0000,-0.0055,2.0000,12,975.1486,2065.3980,2065.3980,-150.8817,210.9129,210.9129,211.9166,-15.4076,-0.0155,203.3026,0.0000,203.3026,7.6258,203.3026,4.4534,0.0000,198.8493,1.2153,,,197.6340,6.1898,191.4442,0.0000,191.4442,-0.0886,191.5328,130.7230,25.8803,38.6026,-3.6731,975.1486,1947.2628,15.2622,0.0000,5.0000,2.6258,0.0000,0.0000,0.0000,0.0000,40292.9103,40292.9103,40292.9103,40292.9103,40292.9103,40292.9103 -183.1373,0.5000,3192.6252,68.5023,70.0000,-0.0047,2.0000,12,975.0180,2071.0954,2071.0954,-150.8758,211.4664,211.4664,211.8567,-15.4050,-0.0132,203.8538,0.0000,203.8538,7.6258,203.8538,4.4584,0.0000,199.3954,1.2150,,,198.1804,6.2014,191.9789,0.0000,191.9789,-0.0753,192.0542,130.7055,25.8708,38.5974,-3.1195,975.0180,1952.8726,15.4525,0.0000,5.0000,2.6258,0.0000,0.0000,0.0000,0.0000,40434.7450,40434.7450,40434.7450,40434.7450,40434.7450,40434.7450 -183.6372,0.4997,3202.1388,68.5327,70.0000,0.0385,1.5504,12,975.4511,2073.5566,2073.5566,-150.8953,211.8117,211.8117,212.0554,-15.4138,0.1087,204.0772,0.0000,204.0772,7.6259,204.0772,4.4623,0.0000,199.6149,1.2158,,,198.3991,6.2067,192.1924,0.0000,192.1924,0.6196,191.5728,101.3745,25.9025,38.6176,25.6782,975.4511,1954.1542,15.6000,0.0000,5.0000,2.6259,0.0000,0.0000,0.0000,0.0000,40517.2795,40517.2795,40517.2795,40517.2795,40517.2795,40517.2795 -184.1365,0.4988,3211.6620,68.7349,70.0000,0.1866,0.0000,12,978.3285,2076.4035,2076.4035,-151.0248,212.7282,212.7282,213.3781,-15.4725,0.5282,204.5733,0.0000,204.5733,7.6267,204.5733,4.4779,0.0000,200.0954,1.2205,,,198.8749,6.2206,192.6543,0.0000,192.6543,3.0112,189.6431,0.0000,26.1138,38.7362,124.7931,978.3285,1953.0968,15.6000,0.0000,5.0000,2.6267,0.0000,0.0000,0.0000,0.0000,40715.9926,40715.9926,40715.9926,40715.9926,40715.9926,40715.9926 -184.6352,0.4988,3221.2318,69.0704,70.0000,0.1872,0.0000,12,983.1049,2082.4726,2082.4726,-151.2397,214.3916,214.3916,215.5828,-15.5702,0.5325,206.2311,0.0000,206.2311,7.6280,206.2311,4.5123,0.0000,201.7189,1.2284,,,200.4904,6.2614,194.2290,0.0000,194.2290,3.0355,191.1935,0.0000,26.4667,38.9253,125.8015,983.1049,1959.3770,15.6000,0.0000,5.0000,2.6280,0.0000,0.0000,0.0000,0.0000,41080.6255,41080.6255,41080.6255,41080.6255,41080.6255,41080.6255 -185.1340,0.4988,3230.8482,69.4075,70.0000,0.1882,0.0000,12,987.9020,2091.5506,2091.5506,-151.4556,216.3769,216.3769,217.8084,-15.6685,0.5380,208.2095,0.0000,208.2095,7.6293,208.2095,4.5499,0.0000,203.6596,1.2364,,,202.4232,6.3090,196.1141,0.0000,196.1141,3.0670,193.0471,0.0000,26.8239,39.1152,127.1080,987.9020,1968.6221,15.6000,0.0000,5.0000,2.6293,0.0000,0.0000,0.0000,0.0000,41524.0575,41524.0575,41524.0575,41524.0575,41524.0575,41524.0575 -185.6328,0.4988,3240.5116,69.7465,70.0000,0.1894,0.0000,12,992.7276,2101.9024,2101.9024,-151.6727,218.5100,218.5100,220.0588,-15.7676,0.5441,210.3352,0.0000,210.3352,7.6306,210.3352,4.5893,0.0000,205.7459,1.2445,,,204.5015,6.3598,198.1417,0.0000,198.1417,3.1018,195.0399,0.0000,27.1861,39.3063,128.5475,992.7276,1979.1218,15.6000,0.0000,5.0000,2.6306,0.0000,0.0000,0.0000,0.0000,42001.7087,42001.7087,42001.7087,42001.7087,42001.7087,42001.7087 -186.1321,0.4997,3250.2223,69.9583,70.0000,0.0464,0.0000,12,995.7420,1110.8935,2111.9575,-151.8084,115.8371,220.2220,221.4704,-15.8296,0.1337,108.0720,0.0000,108.0720,7.6315,108.0720,3.5780,0.0000,104.4940,1.2495,,,103.2445,4.0684,99.1762,0.0000,99.1762,0.7619,98.4143,0.0000,27.4137,39.4257,31.5749,995.7420,1002.1117,15.6000,0.0000,5.0000,2.6315,0.0000,0.0000,0.0000,0.0000,21784.6697,21784.6697,21784.6697,21784.6697,21784.6697,21784.6697 -186.6319,0.5000,3259.9445,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1697.7350,-151.8351,82.3511,177.1350,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,15.6000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -187.1319,0.5000,3269.6667,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,15.6000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -187.6319,0.5000,3279.3889,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,15.6000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -188.1319,0.5000,3289.1112,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,15.6000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -188.6319,0.5000,3298.8334,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,15.6000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -189.1319,0.5000,3308.5556,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,15.6000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -189.6319,0.5000,3318.2778,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,15.6000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -190.1319,0.5000,3328.0000,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,15.6000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -190.6319,0.5000,3337.7223,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,15.6000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -191.1319,0.5000,3347.4445,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,15.6000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -191.6319,0.5000,3357.1667,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,15.6000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -192.1319,0.5000,3366.8889,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,15.6000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -192.6319,0.5000,3376.6112,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,15.6000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -193.1319,0.5000,3386.3334,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,15.6000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -193.6319,0.5000,3396.0556,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,15.6000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -194.1319,0.5000,3405.7778,70.0000,70.0000,0.0000,-0.7131,12,996.3358,319.0699,1562.8314,-151.8351,33.2905,163.0596,221.7490,-15.8419,0.0000,25.6588,0.0000,25.6588,7.6316,25.6588,2.7561,0.0000,22.9028,1.2505,,,21.6523,2.3790,19.2733,0.0000,19.2733,0.0000,19.2733,-47.6336,27.4587,39.4482,0.0000,996.3358,219.5097,15.5307,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,7521.5461,7521.5461,7521.5461,7521.5461,7521.5461,7521.5461 -194.6319,0.5000,3415.5000,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1364.8607,-151.8351,1.7378,142.4042,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,15.4140,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -195.1319,0.5000,3425.2223,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1237.5383,-151.8351,1.7378,129.1198,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,15.2973,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -195.6319,0.5000,3434.9445,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1237.5383,-151.8351,1.7378,129.1198,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,15.1807,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -196.1319,0.5000,3444.6667,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1237.5383,-151.8351,1.7378,129.1198,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,15.0640,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -196.6319,0.5000,3454.3889,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1237.5383,-151.8351,1.7378,129.1198,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,14.9473,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -197.1319,0.5000,3464.1112,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1237.5383,-151.8351,1.7378,129.1198,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,14.8307,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -197.6319,0.5000,3473.8334,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1237.5383,-151.8351,1.7378,129.1198,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,14.7140,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -198.1319,0.5000,3483.5556,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1237.5383,-151.8351,1.7378,129.1198,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,14.5973,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -198.6319,0.5000,3493.2778,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1237.5383,-151.8351,1.7378,129.1198,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,14.4807,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -199.1319,0.5000,3503.0000,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1237.5383,-151.8351,1.7378,129.1198,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,14.3640,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -199.6319,0.5000,3512.7223,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1237.5383,-151.8351,1.7378,129.1198,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,14.2473,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -200.1319,0.5000,3522.4445,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1237.5383,-151.8351,1.7378,129.1198,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,14.1307,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -200.6319,0.5000,3532.1667,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1237.5383,-151.8351,1.7378,129.1198,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,14.0140,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -201.1319,0.5000,3541.8889,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1237.5383,-151.8351,1.7378,129.1198,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,13.8973,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -201.6319,0.5000,3551.6112,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1237.5383,-151.8351,1.7378,129.1198,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,13.7807,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -202.1319,0.5000,3561.3334,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1237.5383,-151.8351,1.7378,129.1198,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,13.6640,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -202.6319,0.5000,3571.0556,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1237.5383,-151.8351,1.7378,129.1198,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,13.5473,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -203.1319,0.5000,3580.7778,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1237.5383,-151.8351,1.7378,129.1198,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,13.4307,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -203.6319,0.5000,3590.5000,70.0000,70.0000,0.0000,-1.2000,12,996.3358,16.6557,1237.5383,-151.8351,1.7378,129.1198,221.7490,-15.8419,0.0000,-5.8939,0.0000,-5.8939,7.6316,-5.8939,2.7081,0.0000,-8.6020,1.2505,,,-9.8525,3.3907,-13.2432,0.0000,-13.2432,0.0000,-13.2432,-80.1482,27.4587,39.4463,0.0000,996.3358,-82.4452,13.3140,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619,2793.5619 -204.1319,0.5000,3600.2223,70.0000,70.0000,0.0000,-1.2069,12,996.3358,12.9194,1237.5383,-151.8351,1.3480,129.1198,221.7490,-15.8419,0.0000,-6.2837,0.0000,-6.2837,7.6316,-6.2837,2.7081,0.0000,-8.9918,1.2505,,,-10.2423,3.4589,-13.7013,0.0000,-13.7013,0.0000,-13.7013,-80.6063,27.4587,39.4463,0.0000,996.3358,-86.1815,13.1967,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,2741.1389,2741.1389,2741.1389,2741.1389,2741.1389,2741.1389 -204.6319,0.5000,3609.9445,70.0012,70.0000,0.0014,-1.5000,12,996.3535,-151.8359,1235.9764,-151.8359,-15.8422,128.9592,221.7573,-15.8422,0.0040,-23.4779,0.0000,-23.4779,7.6316,-23.4779,2.7343,0.0000,-26.2122,1.2505,,,-27.4627,4.8502,-32.3129,0.0000,-32.3129,0.0227,-32.3357,-100.1830,27.4600,39.4454,0.9419,996.3535,-251.2241,13.0508,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,11.7957,11.7957,11.7957,11.7957,11.7957,11.7957 -205.1319,0.5000,3619.6671,70.0037,70.0000,0.0014,-1.5000,12,996.3889,-151.8375,1166.6182,-151.8375,-15.8430,121.7268,221.7739,-15.8430,0.0040,-23.4786,0.0000,-23.4786,7.6317,-23.4786,2.7345,0.0000,-26.2131,1.2506,,,-27.4637,4.8503,-32.3140,0.0000,-32.3140,0.0227,-32.3367,-100.1866,27.4628,39.4468,0.9403,996.3889,-251.2236,12.9050,0.0000,5.0000,2.6317,0.0000,0.0000,0.0000,0.0000,11.8002,11.8002,11.8002,11.8002,11.8002,11.8002 -205.6319,0.5000,3629.3900,70.0062,70.0000,0.0014,-1.5000,12,996.4243,-151.8391,1166.6381,-151.8391,-15.8437,121.7332,221.7905,-15.8437,0.0040,-23.4793,0.0000,-23.4793,7.6317,-23.4793,2.7346,0.0000,-26.2139,1.2507,,,-27.4646,4.8504,-32.3150,0.0000,-32.3150,0.0227,-32.3377,-100.1901,27.4655,39.4482,0.9387,996.4243,-251.2230,12.7592,0.0000,5.0000,2.6317,0.0000,0.0000,0.0000,0.0000,11.8046,11.8046,11.8046,11.8046,11.8046,11.8046 -206.1319,0.5000,3639.1132,70.0087,70.0000,0.0014,-1.5000,12,996.4595,-151.8407,1166.6579,-151.8407,-15.8444,121.7396,221.8070,-15.8444,0.0040,-23.4801,0.0000,-23.4801,7.6317,-23.4801,2.7347,0.0000,-26.2148,1.2507,,,-27.4655,4.8506,-32.3161,0.0000,-32.3161,0.0226,-32.3387,-100.1937,27.4682,39.4496,0.9372,996.4595,-251.2224,12.6133,0.0000,5.0000,2.6317,0.0000,0.0000,0.0000,0.0000,11.8090,11.8090,11.8090,11.8090,11.8090,11.8090 -206.6319,0.5000,3648.8368,70.0112,70.0000,0.0014,-1.5000,12,996.4948,-151.8423,1166.6777,-151.8423,-15.8451,121.7460,221.8236,-15.8451,0.0040,-23.4808,0.0000,-23.4808,7.6317,-23.4808,2.7349,0.0000,-26.2157,1.2508,,,-27.4664,4.8507,-32.3171,0.0000,-32.3171,0.0226,-32.3397,-100.1972,27.4709,39.4510,0.9356,996.4948,-251.2219,12.4674,0.0000,5.0000,2.6317,0.0000,0.0000,0.0000,0.0000,11.8134,11.8134,11.8134,11.8134,11.8134,11.8134 -207.1319,0.5000,3658.5608,70.0136,70.0000,0.0014,-1.5000,12,996.5299,-151.8438,1166.6974,-151.8438,-15.8459,121.7523,221.8401,-15.8459,0.0040,-23.4815,0.0000,-23.4815,7.6317,-23.4815,2.7350,0.0000,-26.2165,1.2508,,,-27.4674,4.8508,-32.3182,0.0000,-32.3182,0.0225,-32.3407,-100.2007,27.4736,39.4524,0.9340,996.5299,-251.2213,12.3216,0.0000,5.0000,2.6317,0.0000,0.0000,0.0000,0.0000,11.8178,11.8178,11.8178,11.8178,11.8178,11.8178 -207.6317,0.4998,3668.2851,70.0496,70.0000,0.0386,-1.5000,0,892.3064,-143.6088,1094.8819,-147.1538,-13.4191,102.3081,175.6062,-13.7504,-21.0221,0.0000,0.0000,0.0000,7.6030,0.0000,2.7110,0.0000,-2.7110,1.2517,,,-3.9626,2.3624,-6.3250,0.0000,-6.3250,0.6348,-6.9598,-100.2522,27.5129,39.4727,26.3068,997.0416,-25.9645,12.1757,0.0000,5.0000,2.6030,0.0000,0.0000,0.0000,0.0000,54.0451,54.0451,54.0451,54.0451,54.0451,54.0451 -208.1315,0.4998,3678.0190,70.1190,70.0000,0.0385,-1.5000,0,694.0326,-98.4849,1034.9340,-140.3508,-7.1578,75.2179,102.5054,-10.2005,-14.7496,0.0000,0.0000,0.0000,7.5918,0.0000,2.7149,0.0000,-2.7149,1.2533,,,-3.9682,2.3667,-6.3349,0.0000,-6.3349,0.6342,-6.9691,-100.3515,27.5889,39.5118,26.2818,998.0290,-25.9763,12.0297,0.0000,5.0000,2.5918,0.0000,0.0000,0.0000,0.0000,487.0302,487.0302,487.0302,487.0302,487.0302,487.0302 -208.6312,0.4998,3687.7626,70.1882,70.0000,0.0384,-1.5000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.7188,0.0000,-2.7188,1.2550,,,-3.9738,2.3708,-6.3446,0.0000,-6.3446,0.6336,-6.9781,-100.4506,27.6648,39.5508,26.2569,999.0145,-25.9882,11.8836,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -209.1310,0.4998,3697.5157,70.2573,70.0000,0.0384,-1.5000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.7227,0.0000,-2.7227,1.2566,,,-3.9793,2.3748,-6.3542,0.0000,-6.3542,0.6330,-6.9871,-100.5495,27.7407,39.5897,26.2319,999.9980,-26.0000,11.7373,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -209.6307,0.4997,3707.2785,70.3391,70.0000,0.0526,-1.6491,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.7273,0.0000,-2.7273,1.2586,,,-3.9859,2.3797,-6.3656,0.0000,-6.3656,0.8680,-7.2336,-110.6706,27.8307,39.6349,35.9715,1001.1622,-26.0139,11.5763,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -210.1303,0.4996,3717.0544,70.4379,70.0000,0.0573,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.7329,0.0000,-2.7329,1.2609,,,-3.9939,2.3855,-6.3794,0.0000,-6.3794,0.9480,-7.3274,-114.2454,27.9398,39.6902,39.2880,1002.5687,-26.0308,11.4101,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -210.6300,0.4996,3726.8446,70.5409,70.0000,0.0572,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.7388,0.0000,-2.7388,1.2634,,,-4.0022,2.3916,-6.3938,0.0000,-6.3938,0.9475,-7.3413,-114.4124,28.0536,39.7483,39.2692,1004.0349,-26.0484,11.2436,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -211.1296,0.4996,3736.6491,70.6437,70.0000,0.0571,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.7446,0.0000,-2.7446,1.2659,,,-4.0105,2.3977,-6.4082,0.0000,-6.4082,0.9471,-7.3553,-114.5792,28.1676,39.8062,39.2501,1005.4981,-26.0660,11.0770,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -211.6293,0.4996,3746.4678,70.7463,70.0000,0.0570,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.7505,0.0000,-2.7505,1.2683,,,-4.0188,2.4038,-6.4225,0.0000,-6.4225,0.9466,-7.3692,-114.7456,28.2816,39.8640,39.2308,1006.9586,-26.0835,10.9100,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -212.1289,0.4996,3756.3008,70.8487,70.0000,0.0569,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.7563,0.0000,-2.7563,1.2708,,,-4.0271,2.4098,-6.4369,0.0000,-6.4369,0.9461,-7.3831,-114.9117,28.3957,39.9217,39.2113,1008.4162,-26.1010,10.7429,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -212.6285,0.4996,3766.1480,70.9509,70.0000,0.0568,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.7621,0.0000,-2.7621,1.2732,,,-4.0353,2.4159,-6.4513,0.0000,-6.4513,0.9457,-7.3969,-115.0775,28.5098,39.9793,39.1914,1009.8710,-26.1185,10.5755,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -213.1282,0.4996,3776.0094,71.0530,70.0000,0.0567,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.7679,0.0000,-2.7679,1.2757,,,-4.0436,2.4220,-6.4656,0.0000,-6.4656,0.9452,-7.4108,-115.2429,28.6240,40.0368,39.1714,1011.3229,-26.1359,10.4078,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -213.6278,0.4996,3785.8849,71.1548,70.0000,0.0565,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.7737,0.0000,-2.7737,1.2781,,,-4.0518,2.4281,-6.4799,0.0000,-6.4799,0.9447,-7.4246,-115.4080,28.7382,40.0942,39.1511,1012.7721,-26.1533,10.2400,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -214.1275,0.4996,3795.7746,71.2564,70.0000,0.0564,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.7795,0.0000,-2.7795,1.2805,,,-4.0601,2.4341,-6.4942,0.0000,-6.4942,0.9442,-7.4384,-115.5729,28.8525,40.1514,39.1306,1014.2184,-26.1706,10.0718,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -214.6271,0.4996,3805.6784,71.3578,70.0000,0.0563,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.7853,0.0000,-2.7853,1.2830,,,-4.0683,2.4402,-6.5085,0.0000,-6.5085,0.9437,-7.4522,-115.7373,28.9668,40.2086,39.1098,1015.6619,-26.1879,9.9035,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -215.1267,0.4996,3815.5962,71.4590,70.0000,0.0562,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.7911,0.0000,-2.7911,1.2854,,,-4.0766,2.4462,-6.5228,0.0000,-6.5228,0.9432,-7.4660,-115.9015,29.0812,40.2656,39.0887,1017.1025,-26.2052,9.7349,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -215.6264,0.4996,3825.5281,71.5600,70.0000,0.0561,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.7969,0.0000,-2.7969,1.2878,,,-4.0848,2.4523,-6.5370,0.0000,-6.5370,0.9427,-7.4797,-116.0654,29.1956,40.3225,39.0675,1018.5404,-26.2225,9.5660,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -216.1260,0.4996,3835.4740,71.6609,70.0000,0.0560,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.8027,0.0000,-2.8027,1.2903,,,-4.0930,2.4583,-6.5513,0.0000,-6.5513,0.9422,-7.4935,-116.2289,29.3101,40.3793,39.0460,1019.9755,-26.2397,9.3969,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -216.6257,0.4996,3845.4339,71.7615,70.0000,0.0559,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.8085,0.0000,-2.8085,1.2927,,,-4.1012,2.4644,-6.5655,0.0000,-6.5655,0.9416,-7.5072,-116.3921,29.4247,40.4360,39.0243,1021.4077,-26.2569,9.2276,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -217.1253,0.4997,3855.4078,71.8619,70.0000,0.0558,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.8142,0.0000,-2.8142,1.2951,,,-4.1094,2.4704,-6.5798,0.0000,-6.5798,0.9411,-7.5209,-116.5550,29.5392,40.4926,39.0023,1022.8372,-26.2740,9.0581,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -217.6250,0.4997,3865.3956,71.9621,70.0000,0.0557,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.8200,0.0000,-2.8200,1.2975,,,-4.1175,2.4764,-6.5940,0.0000,-6.5940,0.9406,-7.5345,-116.7176,29.6539,40.5491,38.9801,1024.2638,-26.2912,8.8883,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -218.1246,0.4997,3875.3972,72.0622,70.0000,0.0556,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.8258,0.0000,-2.8258,1.3000,,,-4.1257,2.4824,-6.6082,0.0000,-6.6082,0.9400,-7.5482,-116.8798,29.7685,40.6055,38.9576,1025.6877,-26.3083,8.7182,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -218.6243,0.4997,3885.4128,72.1620,70.0000,0.0555,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.8315,0.0000,-2.8315,1.3024,,,-4.1339,2.4885,-6.6223,0.0000,-6.6223,0.9395,-7.5618,-117.0417,29.8832,40.6617,38.9350,1027.1087,-26.3253,8.5480,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -219.1240,0.4997,3895.4423,72.2617,70.0000,0.0553,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.8373,0.0000,-2.8373,1.3048,,,-4.1420,2.4945,-6.6365,0.0000,-6.6365,0.9389,-7.5754,-117.2034,29.9980,40.7179,38.9121,1028.5270,-26.3423,8.3775,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -219.6236,0.4997,3905.4855,72.3611,70.0000,0.0552,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.8430,0.0000,-2.8430,1.3072,,,-4.1502,2.5005,-6.6507,0.0000,-6.6507,0.9384,-7.5890,-117.3647,30.1128,40.7739,38.8890,1029.9425,-26.3593,8.2067,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -220.1233,0.4997,3915.5426,72.4554,70.0000,0.0496,-1.7000,0,600.0000,121.0227,1188.0000,-138.0000,7.6041,74.6442,74.6442,-8.6708,0.0000,0.0000,0.0000,0.0000,7.6041,0.0000,2.8484,0.0000,-2.8484,1.3095,,,-4.1579,2.5062,-6.6641,3.9997,-10.6638,0.8436,-11.5074,-117.5176,30.2218,40.8270,34.9614,1031.2844,-26.3754,8.0358,0.0000,5.0000,2.6041,0.0000,0.0000,0.0000,0.0000,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242,2521.7242 -220.6232,0.5002,3925.6120,72.4707,70.0000,-0.0326,-1.7000,12,815.5424,-143.6994,1131.5217,-143.6994,-12.2724,96.6358,144.9943,-12.2724,39.6928,-59.5605,0.0000,-59.5605,7.5953,-59.5605,3.2289,0.0000,-62.7894,1.3098,,,-64.0992,5.8771,-69.9763,0.0000,-69.9763,-0.5539,-69.4224,-117.5424,30.2395,40.8356,-22.9552,1031.5021,-581.2828,7.8646,0.0000,5.0000,2.5953,0.0000,0.0000,0.0000,0.0000,8.4053,8.4053,8.4053,8.4053,8.4053,8.4053 -221.1233,0.4999,3935.6733,72.4574,70.0000,0.0179,-1.7000,12,1031.3136,-154.0354,1196.3127,-154.0354,-16.6357,129.2005,230.4697,-16.6357,0.0533,-24.3274,0.0000,-24.3274,7.6384,-24.3274,2.8758,0.0000,-27.2032,1.3095,,,-28.5127,5.0610,-33.5737,0.0000,-33.5737,0.3038,-33.8775,-117.5209,30.2242,40.8282,12.5910,1031.3136,-251.8839,7.6936,0.0000,5.0000,2.6384,0.0000,0.0000,0.0000,0.0000,5.0131,5.0131,5.0131,5.0131,5.0131,5.0131 -221.6232,0.4999,3945.7391,72.4868,70.0000,0.0147,-1.7000,12,1031.7308,-154.0625,1179.1136,-154.0625,-16.6453,127.3945,230.5629,-16.6453,0.0439,-24.3277,0.0000,-24.3277,7.6385,-24.3277,2.8774,0.0000,-27.2052,1.3102,,,-28.5154,5.0635,-33.5789,2.2581,-35.8370,0.2504,-36.0874,-117.5684,30.2581,40.8447,10.3782,1031.7308,-251.8003,7.5224,0.0000,5.0000,2.6385,0.0000,0.0000,0.0000,0.0000,4.9166,4.9166,4.9166,4.9166,4.9166,4.9166 -222.1231,0.5000,3955.8085,72.5000,70.0000,0.0000,-1.7000,12,1031.9192,-154.0748,1179.1894,-154.0748,-16.6497,127.4260,230.6050,-16.6497,0.0000,-24.2882,0.0000,-24.2882,7.6385,-24.2882,2.8778,0.0000,-27.1660,1.3105,,,-28.4765,5.0637,-33.5402,12.9240,-46.4643,0.0000,-46.4643,-117.5899,30.2735,40.8522,0.0000,1031.9192,-251.3916,7.3513,0.0000,5.0000,2.6385,0.0000,0.0000,0.0000,0.0000,4.8731,4.8731,4.8731,4.8731,4.8731,4.8731 -222.6231,0.5000,3965.8780,72.5000,70.0000,0.0000,-1.7000,12,1031.9192,-154.0748,1179.3250,-154.0748,-16.6497,127.4406,230.6050,-16.6497,0.0000,-24.2882,0.0000,-24.2882,7.6385,-24.2882,2.8778,0.0000,-27.1660,1.3105,,,-28.4765,5.0637,-33.5402,12.9240,-46.4643,0.0000,-46.4643,-117.5899,30.2735,40.8522,0.0000,1031.9192,-251.3916,7.1801,0.0000,5.0000,2.6385,0.0000,0.0000,0.0000,0.0000,4.8731,4.8731,4.8731,4.8731,4.8731,4.8731 -223.1231,0.5000,3975.9474,72.5000,70.0000,0.0000,-1.7000,12,1031.9192,-154.0748,1179.3250,-154.0748,-16.6497,127.4406,230.6050,-16.6497,0.0000,-24.2882,0.0000,-24.2882,7.6385,-24.2882,2.8778,0.0000,-27.1660,1.3105,,,-28.4765,5.0637,-33.5402,12.9240,-46.4643,0.0000,-46.4643,-117.5899,30.2735,40.8522,0.0000,1031.9192,-251.3916,7.0089,0.0000,5.0000,2.6385,0.0000,0.0000,0.0000,0.0000,4.8731,4.8731,4.8731,4.8731,4.8731,4.8731 -223.6231,0.5000,3986.0169,72.5000,70.0000,0.0000,-1.7000,12,1031.9192,-154.0748,1179.3250,-154.0748,-16.6497,127.4406,230.6050,-16.6497,0.0000,-24.2882,0.0000,-24.2882,7.6385,-24.2882,2.8778,0.0000,-27.1660,1.3105,,,-28.4765,5.0637,-33.5402,12.9240,-46.4643,0.0000,-46.4643,-117.5899,30.2735,40.8522,0.0000,1031.9192,-251.3916,6.8377,0.0000,5.0000,2.6385,0.0000,0.0000,0.0000,0.0000,4.8731,4.8731,4.8731,4.8731,4.8731,4.8731 -224.1231,0.5000,3996.0863,72.5000,70.0000,0.0000,-1.7000,12,1031.9192,-154.0748,1179.3250,-154.0748,-16.6497,127.4406,230.6050,-16.6497,0.0000,-24.2882,0.0000,-24.2882,7.6385,-24.2882,2.8778,0.0000,-27.1660,1.3105,,,-28.4765,5.0637,-33.5402,12.9240,-46.4643,0.0000,-46.4643,-117.5899,30.2735,40.8522,0.0000,1031.9192,-251.3916,6.6665,0.0000,5.0000,2.6385,0.0000,0.0000,0.0000,0.0000,4.8731,4.8731,4.8731,4.8731,4.8731,4.8731 -224.6232,0.5002,4006.1557,72.4688,70.0000,-0.0346,-1.1498,12,1031.4758,-154.0459,1179.1356,-154.0459,-16.6394,127.3654,230.5059,-16.6394,-0.1033,-24.1746,0.0000,-24.1746,7.6384,-24.1746,2.8749,0.0000,-27.0495,1.3098,,,-28.3593,5.0585,-33.4177,0.0000,-33.4177,-0.5887,-32.8290,-79.5046,30.2374,40.8378,-24.3996,1031.4758,-250.4214,6.5508,0.0000,5.0000,2.6384,0.0000,0.0000,0.0000,0.0000,4.9756,4.9756,4.9756,4.9756,4.9756,4.9756 -225.1236,0.5004,4016.2165,72.3766,70.0000,-0.0679,-0.8000,12,1030.1624,-153.9606,1178.9732,-153.9606,-16.6090,127.1857,230.2124,-16.6090,-0.2023,-24.0449,0.0000,-24.0449,7.6382,-24.0449,2.8686,0.0000,-26.9135,1.3076,,,-28.2211,5.0476,-33.2687,0.0000,-33.2687,-1.1530,-32.1157,-55.2484,30.1306,40.7872,-47.7851,1030.1624,-249.4802,6.4703,0.0000,5.0000,2.6382,0.0000,0.0000,0.0000,0.0000,5.2792,5.2792,5.2792,5.2792,5.2792,5.2792 -225.6240,0.5004,4026.2604,72.2545,70.0000,-0.0677,-0.8000,12,1028.4242,-153.8476,1178.6947,-153.8476,-16.5688,126.9411,229.8240,-16.5688,-0.2015,-24.0052,0.0000,-24.0052,7.6379,-24.0052,2.8615,0.0000,-26.8667,1.3046,,,-28.1713,5.0364,-33.2076,0.0000,-33.2076,-1.1488,-32.0588,-55.1552,29.9897,40.7184,-47.6116,1028.4242,-249.4668,6.3899,0.0000,5.0000,2.6379,0.0000,0.0000,0.0000,0.0000,5.6810,5.6810,5.6810,5.6810,5.6810,5.6810 -226.1244,0.5004,4036.2872,72.1326,70.0000,-0.0676,-0.8000,12,1026.6895,-153.7348,1178.1104,-153.7348,-16.5287,126.6642,229.4363,-16.5287,-0.2008,-23.9655,0.0000,-23.9655,7.6376,-23.9655,2.8544,0.0000,-26.8199,1.3017,,,-28.1216,5.0251,-33.1467,0.0000,-33.1467,-1.1447,-32.0021,-55.0622,29.8494,40.6497,-47.4389,1026.6895,-249.4538,6.3097,0.0000,5.0000,2.6376,0.0000,0.0000,0.0000,0.0000,6.0820,6.0820,6.0820,6.0820,6.0820,6.0820 -226.6248,0.5004,4046.2972,72.0109,70.0000,-0.0675,-0.8000,12,1024.9580,-153.6223,1177.5278,-153.6223,-16.4888,126.3880,229.0494,-16.4888,-0.2001,-23.9260,0.0000,-23.9260,7.6372,-23.9260,2.8474,0.0000,-26.7734,1.2987,,,-28.0721,5.0139,-33.0860,0.0000,-33.0860,-1.1405,-31.9455,-54.9693,29.7097,40.5811,-47.2670,1024.9580,-249.4412,6.2296,0.0000,5.0000,2.6372,0.0000,0.0000,0.0000,0.0000,6.4823,6.4823,6.4823,6.4823,6.4823,6.4823 -227.1252,0.5004,4056.2903,71.8895,70.0000,-0.0673,-0.8000,12,1023.2300,-153.5099,1176.9470,-153.5099,-16.4490,126.1127,228.6632,-16.4490,-0.1994,-23.8865,0.0000,-23.8865,7.6369,-23.8865,2.8404,0.0000,-26.7269,1.2958,,,-28.0227,5.0028,-33.0255,0.0000,-33.0255,-1.1364,-31.8891,-54.8766,29.5708,40.5127,-47.0959,1023.2300,-249.4290,6.1497,0.0000,5.0000,2.6369,0.0000,0.0000,0.0000,0.0000,6.8817,6.8817,6.8817,6.8817,6.8817,6.8817 -227.6257,0.5004,4066.2665,71.7683,70.0000,-0.0672,-0.8000,12,1021.5052,-153.3978,1176.3679,-153.3978,-16.4092,125.8382,228.2778,-16.4092,-0.1986,-23.8472,0.0000,-23.8472,7.6366,-23.8472,2.8334,0.0000,-26.6806,1.2929,,,-27.9735,4.9916,-32.9651,0.0000,-32.9651,-1.1323,-31.8328,-54.7841,29.4325,40.4444,-46.9256,1021.5052,-249.4173,6.0699,0.0000,5.0000,2.6366,0.0000,0.0000,0.0000,0.0000,7.2804,7.2804,7.2804,7.2804,7.2804,7.2804 -228.1261,0.5004,4076.2259,71.6474,70.0000,-0.0671,-0.8000,12,1019.7839,-153.2860,1175.7904,-153.2860,-16.3696,125.5644,227.8931,-16.3696,-0.1979,-23.8080,0.0000,-23.8080,7.6363,-23.8080,2.8264,0.0000,-26.6344,1.2899,,,-27.9244,4.9805,-32.9049,0.0000,-32.9049,-1.1282,-31.7767,-54.6918,29.2948,40.3763,-46.7560,1019.7839,-249.4060,5.9902,0.0000,5.0000,2.6363,0.0000,0.0000,0.0000,0.0000,7.6783,7.6783,7.6783,7.6783,7.6783,7.6783 -228.6265,0.5004,4086.1685,71.5267,70.0000,-0.0669,-0.8000,12,1018.0658,-153.1743,1175.2147,-153.1743,-16.3302,125.2915,227.5092,-16.3302,-0.1972,-23.7689,0.0000,-23.7689,7.6360,-23.7689,2.8195,0.0000,-26.5884,1.2870,,,-27.8754,4.9695,-32.8449,0.0000,-32.8449,-1.1241,-31.7208,-54.5997,29.1579,40.3083,-46.5872,1018.0658,-249.3951,5.9107,0.0000,5.0000,2.6360,0.0000,0.0000,0.0000,0.0000,8.0755,8.0755,8.0755,8.0755,8.0755,8.0755 -229.1269,0.5004,4096.0944,71.4062,70.0000,-0.0668,-0.8000,12,1016.3510,-153.0628,1174.6407,-153.0628,-16.2908,125.0194,227.1260,-16.2908,-0.1965,-23.7300,0.0000,-23.7300,7.6357,-23.7300,2.8126,0.0000,-26.5425,1.2841,,,-27.8267,4.9584,-32.7851,0.0000,-32.7851,-1.1201,-31.6650,-54.5077,29.0215,40.2404,-46.4192,1016.3510,-249.3846,5.8312,0.0000,5.0000,2.6357,0.0000,0.0000,0.0000,0.0000,8.4719,8.4719,8.4719,8.4719,8.4719,8.4719 -229.6274,0.5004,4106.0036,71.2860,70.0000,-0.0667,-0.8000,12,1014.6396,-152.9516,1174.0683,-152.9516,-16.2515,124.7481,226.7435,-16.2515,-0.1958,-23.6911,0.0000,-23.6911,7.6353,-23.6911,2.8056,0.0000,-26.4967,1.2813,,,-27.7780,4.9474,-32.7254,0.0000,-32.7254,-1.1160,-31.6094,-54.4159,28.8858,40.1726,-46.2519,1014.6396,-249.3745,5.7520,0.0000,5.0000,2.6353,0.0000,0.0000,0.0000,0.0000,8.8675,8.8675,8.8675,8.8675,8.8675,8.8675 -230.1278,0.5004,4115.8961,71.1660,70.0000,-0.0666,-0.8000,12,1012.9314,-152.8405,1173.4977,-152.8405,-16.2124,124.4775,226.3618,-16.2124,-0.1951,-23.6523,0.0000,-23.6523,7.6350,-23.6523,2.7988,0.0000,-26.4511,1.2784,,,-27.7295,4.9364,-32.6659,0.0000,-32.6659,-1.1120,-31.5539,-54.3243,28.7508,40.1050,-46.0853,1012.9314,-249.3648,5.6728,0.0000,5.0000,2.6350,0.0000,0.0000,0.0000,0.0000,9.2624,9.2624,9.2624,9.2624,9.2624,9.2624 -230.6282,0.5004,4125.7719,71.0462,70.0000,-0.0664,-0.8000,12,1011.2265,-152.7297,1172.9287,-152.7297,-16.1734,124.2077,225.9808,-16.1734,-0.1944,-23.6137,0.0000,-23.6137,7.6347,-23.6137,2.7919,0.0000,-26.4056,1.2755,,,-27.6811,4.9255,-32.6066,0.0000,-32.6066,-1.1080,-31.4986,-54.2329,28.6164,40.0375,-45.9195,1011.2265,-249.3556,5.5938,0.0000,5.0000,2.6347,0.0000,0.0000,0.0000,0.0000,9.6565,9.6565,9.6565,9.6565,9.6565,9.6565 -231.1286,0.5004,4135.6311,70.9266,70.0000,-0.0663,-0.8000,12,1009.5249,-152.6191,1172.3614,-152.6191,-16.1345,123.9388,225.6005,-16.1345,-0.1937,-23.5752,0.0000,-23.5752,7.6344,-23.5752,2.7850,0.0000,-26.3602,1.2726,,,-27.6329,4.9146,-32.5474,0.0000,-32.5474,-1.1040,-31.4434,-54.1416,28.4826,39.9701,-45.7545,1009.5249,-249.3468,5.5150,0.0000,5.0000,2.6344,0.0000,0.0000,0.0000,0.0000,10.0498,10.0498,10.0498,10.0498,10.0498,10.0498 -231.6290,0.5004,4145.4738,70.8073,70.0000,-0.0662,-0.8000,12,1007.8266,-152.5087,1171.7957,-152.5087,-16.0957,123.6706,225.2210,-16.0957,-0.1930,-23.5368,0.0000,-23.5368,7.6341,-23.5368,2.7782,0.0000,-26.3150,1.2698,,,-27.5848,4.9037,-32.4885,0.0000,-32.4885,-1.1001,-31.3884,-54.0505,28.3495,39.9029,-45.5902,1007.8266,-249.3383,5.4362,0.0000,5.0000,2.6341,0.0000,0.0000,0.0000,0.0000,10.4424,10.4424,10.4424,10.4424,10.4424,10.4424 -232.1295,0.5004,4155.2998,70.6882,70.0000,-0.0660,-0.8000,12,1006.1315,-152.3985,1171.2317,-152.3985,-16.0570,123.4031,224.8422,-16.0570,-0.1923,-23.4985,0.0000,-23.4985,7.6338,-23.4985,2.7714,0.0000,-26.2699,1.2669,,,-27.5368,4.8928,-32.4297,0.0000,-32.4297,-1.0961,-31.3335,-53.9596,28.2170,39.8357,-45.4266,1006.1315,-249.3303,5.3576,0.0000,5.0000,2.6338,0.0000,0.0000,0.0000,0.0000,10.8343,10.8343,10.8343,10.8343,10.8343,10.8343 -232.6299,0.5004,4165.1094,70.5693,70.0000,-0.0659,-0.8000,12,1004.4396,-152.2886,1170.6693,-152.2886,-16.0184,123.1365,224.4641,-16.0184,-0.1916,-23.4603,0.0000,-23.4603,7.6335,-23.4603,2.7646,0.0000,-26.2249,1.2641,,,-27.4890,4.8820,-32.3710,0.0000,-32.3710,-1.0922,-31.2788,-53.8689,28.0851,39.7688,-45.2638,1004.4396,-249.3228,5.2791,0.0000,5.0000,2.6335,0.0000,0.0000,0.0000,0.0000,11.2254,11.2254,11.2254,11.2254,11.2254,11.2254 -233.1303,0.5004,4174.9024,70.4507,70.0000,-0.0658,-0.8000,12,1002.7509,-152.1788,1170.1086,-152.1788,-15.9800,122.8706,224.0867,-15.9800,-0.1909,-23.4222,0.0000,-23.4222,7.6332,-23.4222,2.7579,0.0000,-26.1801,1.2612,,,-27.4413,4.8712,-32.3125,0.0000,-32.3125,-1.0883,-31.2243,-53.7783,27.9539,39.7019,-45.1017,1002.7509,-249.3156,5.2008,0.0000,5.0000,2.6332,0.0000,0.0000,0.0000,0.0000,11.6157,11.6157,11.6157,11.6157,11.6157,11.6157 -233.6307,0.5004,4184.6790,70.3323,70.0000,-0.0657,-0.8000,12,1001.0655,-152.0693,1169.5495,-152.0693,-15.9416,122.6054,223.7101,-15.9416,-0.1902,-23.3842,0.0000,-23.3842,7.6328,-23.3842,2.7511,0.0000,-26.1354,1.2584,,,-27.3938,4.8604,-32.2542,0.0000,-32.2542,-1.0844,-31.1698,-53.6879,27.8233,39.6352,-44.9403,1001.0655,-249.3088,5.1226,0.0000,5.0000,2.6328,0.0000,0.0000,0.0000,0.0000,12.0053,12.0053,12.0053,12.0053,12.0053,12.0053 -234.1311,0.5004,4194.4392,70.2141,70.0000,-0.0656,-0.8000,12,999.3831,-151.9722,1168.8567,-151.9722,-15.9047,122.3269,223.1814,-15.9047,-0.1896,-23.3476,0.0000,-23.3476,7.6325,-23.3476,2.7444,0.0000,-26.0920,1.2556,,,-27.3476,4.8546,-32.2022,0.0000,-32.2022,-1.0807,-31.1216,-53.5977,27.6933,39.5686,-44.7857,999.3831,-249.3142,5.0445,0.0000,5.0000,2.6325,0.0000,0.0000,0.0000,0.0000,12.1745,12.1745,12.1745,12.1745,12.1745,12.1745 -234.6316,0.5006,4204.1829,70.0775,70.0000,-0.0860,-0.4566,12,997.4393,-72.5845,1167.7553,-151.8848,-7.5816,121.9739,222.2671,-15.8646,-0.2483,-14.9652,0.0000,-14.9652,7.6319,-14.9652,2.7125,0.0000,-17.6777,1.2523,,,-18.9301,4.6496,-23.5797,0.0000,-23.5797,-1.4157,-22.1640,-30.5297,27.5435,39.4924,-58.6702,997.4393,-169.2430,5.0000,0.0000,5.0000,2.6319,0.0000,0.0000,0.0000,0.0000,1424.1856,1424.1856,1424.1856,1424.1856,1424.1856,1424.1856 -235.1319,0.5000,4213.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1200.8177,-151.8351,82.3511,125.2886,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -235.6319,0.5000,4223.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -236.1319,0.5000,4233.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -236.6319,0.5000,4243.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -237.1319,0.5000,4252.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -237.6319,0.5000,4262.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -238.1319,0.5000,4272.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -238.6319,0.5000,4281.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -239.1319,0.5000,4291.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -239.6319,0.5000,4301.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -240.1319,0.5000,4311.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -240.6319,0.5000,4320.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -241.1319,0.5000,4330.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -241.6319,0.5000,4340.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -242.1319,0.5000,4350.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -242.6319,0.5000,4359.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -243.1319,0.5000,4369.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -243.6319,0.5000,4379.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -244.1319,0.5000,4388.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -244.6319,0.5000,4398.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -245.1319,0.5000,4408.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -245.6319,0.5000,4418.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -246.1319,0.5000,4427.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -246.6319,0.5000,4437.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -247.1319,0.5000,4447.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -247.6319,0.5000,4456.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -248.1319,0.5000,4466.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -248.6319,0.5000,4476.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -249.1319,0.5000,4486.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -249.6319,0.5000,4495.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,5.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -250.1319,0.5000,4505.5718,70.0000,70.0000,0.0000,0.2866,12,996.3358,979.0888,1562.8314,-151.8351,102.1543,163.0596,221.7490,-15.8419,0.0000,94.5226,0.0000,94.5226,7.6316,94.5226,3.4447,0.0000,91.0779,1.2505,,,89.8274,3.7796,86.0478,0.0000,86.0478,0.0000,86.0478,19.1401,27.4587,39.4490,0.0000,996.3358,872.9285,5.0279,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,19422.1504,19422.1504,19422.1504,19422.1504,19422.1504,19422.1504 -250.6319,0.5000,4515.2940,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1642.7419,-151.8351,116.8734,171.3972,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.0765,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -251.1319,0.5000,4525.0163,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.1251,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -251.6319,0.5000,4534.7385,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.1737,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -252.1319,0.5000,4544.4607,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.2223,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -252.6319,0.5000,4554.1829,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.2709,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -253.1319,0.5000,4563.9052,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.3195,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -253.6319,0.5000,4573.6274,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.3681,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -254.1319,0.5000,4583.3496,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.4167,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -254.6319,0.5000,4593.0718,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.4654,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -255.1319,0.5000,4602.7940,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.5140,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -255.6319,0.5000,4612.5163,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.5626,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -256.1319,0.5000,4622.2385,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.6112,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -256.6319,0.5000,4631.9607,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.6598,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -257.1319,0.5000,4641.6829,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.7084,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -257.6319,0.5000,4651.4052,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.7570,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -258.1319,0.5000,4661.1274,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.8056,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -258.6319,0.5000,4670.8496,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.8542,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -259.1319,0.5000,4680.5718,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.9029,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -259.6319,0.5000,4690.2940,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,5.9515,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -260.1319,0.5000,4700.0163,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.0001,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -260.6319,0.5000,4709.7385,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.0487,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -261.1319,0.5000,4719.4607,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.0973,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -261.6319,0.5000,4729.1829,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.1459,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -262.1319,0.5000,4738.9052,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.1945,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -262.6319,0.5000,4748.6274,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.2431,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -263.1319,0.5000,4758.3496,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.2917,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -263.6319,0.5000,4768.0718,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.3404,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -264.1319,0.5000,4777.7940,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.3890,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -264.6319,0.5000,4787.5163,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.4376,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -265.1319,0.5000,4797.2385,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.4862,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -265.6319,0.5000,4806.9607,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.5348,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -266.1319,0.5000,4816.6829,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.5834,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -266.6319,0.5000,4826.4052,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.6320,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -267.1319,0.5000,4836.1274,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.6806,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -267.6319,0.5000,4845.8496,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.7292,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -268.1319,0.5000,4855.5718,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.7779,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -268.6319,0.5000,4865.2940,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.8265,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -269.1319,0.5000,4875.0163,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.8751,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -269.6319,0.5000,4884.7385,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.9237,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -270.1319,0.5000,4894.4607,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,6.9723,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -270.6319,0.5000,4904.1829,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.0209,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -271.1319,0.5000,4913.9052,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.0695,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -271.6319,0.5000,4923.6274,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.1181,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -272.1319,0.5000,4933.3496,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.1667,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -272.6319,0.5000,4943.0718,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.2154,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -273.1319,0.5000,4952.7940,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.2640,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -273.6319,0.5000,4962.5163,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.3126,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -274.1319,0.5000,4972.2385,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.3612,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -274.6319,0.5000,4981.9607,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.4098,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -275.1319,0.5000,4991.6829,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.4584,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -275.6319,0.5000,5001.4052,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.5070,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -276.1319,0.5000,5011.1274,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.5556,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -276.6319,0.5000,5020.8496,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.6042,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -277.1319,0.5000,5030.5718,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.6529,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -277.6319,0.5000,5040.2940,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.7015,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -278.1319,0.5000,5050.0163,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.7501,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -278.6319,0.5000,5059.7385,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.7987,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -279.1319,0.5000,5069.4607,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.8473,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -279.6319,0.5000,5079.1829,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.8959,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -280.1319,0.5000,5088.9052,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.9445,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -280.6319,0.5000,5098.6274,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,7.9931,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -281.1319,0.5000,5108.3496,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.0417,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -281.6319,0.5000,5118.0718,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.0904,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -282.1319,0.5000,5127.7940,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.1390,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -282.6319,0.5000,5137.5163,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.1876,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -283.1319,0.5000,5147.2385,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.2362,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -283.6319,0.5000,5156.9607,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.2848,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -284.1319,0.5000,5166.6829,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.3334,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -284.6319,0.5000,5176.4052,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.3820,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -285.1319,0.5000,5186.1274,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.4306,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -285.6319,0.5000,5195.8496,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.4792,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -286.1319,0.5000,5205.5718,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.5279,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -286.6319,0.5000,5215.2940,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.5765,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -287.1319,0.5000,5225.0163,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.6251,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -287.6319,0.5000,5234.7385,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.6737,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -288.1319,0.5000,5244.4607,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.7223,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -288.6319,0.5000,5254.1829,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.7709,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -289.1319,0.5000,5263.9052,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.8195,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -289.6319,0.5000,5273.6274,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.8681,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -290.1319,0.5000,5283.3496,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.9167,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -290.6319,0.5000,5293.0718,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,8.9654,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -291.1319,0.5000,5302.7940,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.0140,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -291.6319,0.5000,5312.5163,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.0626,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -292.1319,0.5000,5322.2385,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.1112,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -292.6319,0.5000,5331.9607,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.1598,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -293.1319,0.5000,5341.6829,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.2084,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -293.6319,0.5000,5351.4052,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.2570,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -294.1319,0.5000,5361.1274,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.3056,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -294.6319,0.5000,5370.8496,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.3542,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -295.1319,0.5000,5380.5718,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.4029,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -295.6319,0.5000,5390.2940,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.4515,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -296.1319,0.5000,5400.0163,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.5001,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -296.6319,0.5000,5409.7385,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.5487,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -297.1319,0.5000,5419.4607,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.5973,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -297.6319,0.5000,5429.1829,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.6459,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -298.1319,0.5000,5438.9052,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.6945,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -298.6319,0.5000,5448.6274,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.7431,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -299.1319,0.5000,5458.3496,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.7917,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -299.6319,0.5000,5468.0718,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.8404,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -300.1319,0.5000,5477.7940,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.8890,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -300.6319,0.5000,5487.5163,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.9376,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -301.1319,0.5000,5497.2385,70.0000,70.0000,0.0000,0.5000,12,996.3358,1120.1628,1702.1369,-151.8351,116.8734,177.5942,221.7490,-15.8419,0.0000,109.2417,0.0000,109.2417,7.6316,109.2417,3.5919,0.0000,105.6498,1.2505,,,104.3993,4.0949,100.3044,0.0000,100.3044,0.0000,100.3044,33.3971,27.4587,39.4487,0.0000,996.3358,1012.5917,9.9862,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256,21974.0256 -301.6319,0.5000,5506.9607,70.0000,70.0000,0.0000,0.1420,12,996.3358,883.3758,1702.1369,-151.8351,92.1679,177.5942,221.7490,-15.8419,0.0000,84.5363,0.0000,84.5363,7.6316,84.5363,3.3448,0.0000,81.1914,1.2505,,,79.9409,3.5469,76.3940,0.0000,76.3940,0.0000,76.3940,9.4862,27.4587,39.4491,0.0000,996.3358,778.1726,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,17530.4227,17530.4227,17530.4227,17530.4227,17530.4227,17530.4227 -302.1319,0.5000,5516.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1602.4448,-151.8351,82.3511,167.1927,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -302.6319,0.5000,5526.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -303.1319,0.5000,5536.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -303.6319,0.5000,5545.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -304.1319,0.5000,5555.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -304.6319,0.5000,5565.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -305.1319,0.5000,5575.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -305.6319,0.5000,5584.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -306.1319,0.5000,5594.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -306.6319,0.5000,5604.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -307.1319,0.5000,5613.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -307.6319,0.5000,5623.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -308.1319,0.5000,5633.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -308.6319,0.5000,5643.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -309.1319,0.5000,5652.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -309.6319,0.5000,5662.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -310.1319,0.5000,5672.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -310.6319,0.5000,5681.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -311.1319,0.5000,5691.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -311.6319,0.5000,5701.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -312.1319,0.5000,5711.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -312.6319,0.5000,5720.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -313.1319,0.5000,5730.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -313.6319,0.5000,5740.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -314.1319,0.5000,5750.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -314.6319,0.5000,5759.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -315.1319,0.5000,5769.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -315.6319,0.5000,5779.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -316.1319,0.5000,5788.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -316.6319,0.5000,5798.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -317.1319,0.5000,5808.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -317.6319,0.5000,5818.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -318.1319,0.5000,5827.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -318.6319,0.5000,5837.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -319.1319,0.5000,5847.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -319.6319,0.5000,5856.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -320.1319,0.5000,5866.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -320.6319,0.5000,5876.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -321.1319,0.5000,5886.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -321.6319,0.5000,5895.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -322.1319,0.5000,5905.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -322.6319,0.5000,5915.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -323.1319,0.5000,5925.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -323.6319,0.5000,5934.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -324.1319,0.5000,5944.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -324.6319,0.5000,5954.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -325.1319,0.5000,5963.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -325.6319,0.5000,5973.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -326.1319,0.5000,5983.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -326.6319,0.5000,5993.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -327.1319,0.5000,6002.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -327.6319,0.5000,6012.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -328.1319,0.5000,6022.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -328.6319,0.5000,6031.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -329.1319,0.5000,6041.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -329.6319,0.5000,6051.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -330.1319,0.5000,6061.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -330.6319,0.5000,6070.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -331.1319,0.5000,6080.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -331.6319,0.5000,6090.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -332.1319,0.5000,6100.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -332.6319,0.5000,6109.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -333.1319,0.5000,6119.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -333.6319,0.5000,6129.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -334.1319,0.5000,6138.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -334.6319,0.5000,6148.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -335.1319,0.5000,6158.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -335.6319,0.5000,6168.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -336.1319,0.5000,6177.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -336.6319,0.5000,6187.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -337.1319,0.5000,6197.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -337.6319,0.5000,6206.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -338.1319,0.5000,6216.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -338.6319,0.5000,6226.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -339.1319,0.5000,6236.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -339.6319,0.5000,6245.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -340.1319,0.5000,6255.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -340.6319,0.5000,6265.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -341.1319,0.5000,6275.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -341.6319,0.5000,6284.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -342.1319,0.5000,6294.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -342.6319,0.5000,6304.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -343.1319,0.5000,6313.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -343.6319,0.5000,6323.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -344.1319,0.5000,6333.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -344.6319,0.5000,6343.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -345.1319,0.5000,6352.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -345.6319,0.5000,6362.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -346.1319,0.5000,6372.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -346.6319,0.5000,6381.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -347.1319,0.5000,6391.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -347.6319,0.5000,6401.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -348.1319,0.5000,6411.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -348.6319,0.5000,6420.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -349.1319,0.5000,6430.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -349.6319,0.5000,6440.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -350.1319,0.5000,6450.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -350.6319,0.5000,6459.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -351.1319,0.5000,6469.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -351.6319,0.5000,6479.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -352.1319,0.5000,6488.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -352.6319,0.5000,6498.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -353.1319,0.5000,6508.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -353.6319,0.5000,6518.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -354.1319,0.5000,6527.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -354.6319,0.5000,6537.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -355.1319,0.5000,6547.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -355.6319,0.5000,6556.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -356.1319,0.5000,6566.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -356.6319,0.5000,6576.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -357.1319,0.5000,6586.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -357.6319,0.5000,6595.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -358.1319,0.5000,6605.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -358.6319,0.5000,6615.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -359.1319,0.5000,6625.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -359.6319,0.5000,6634.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -360.1319,0.5000,6644.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -360.6319,0.5000,6654.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -361.1319,0.5000,6663.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -361.6319,0.5000,6673.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -362.1319,0.5000,6683.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -362.6319,0.5000,6693.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -363.1319,0.5000,6702.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -363.6319,0.5000,6712.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -364.1319,0.5000,6722.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -364.6319,0.5000,6731.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -365.1319,0.5000,6741.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -365.6319,0.5000,6751.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -366.1319,0.5000,6761.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -366.6319,0.5000,6770.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -367.1319,0.5000,6780.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -367.6319,0.5000,6790.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -368.1319,0.5000,6800.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -368.6319,0.5000,6809.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -369.1319,0.5000,6819.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -369.6319,0.5000,6829.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -370.1319,0.5000,6838.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -370.6319,0.5000,6848.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -371.1319,0.5000,6858.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -371.6319,0.5000,6868.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -372.1319,0.5000,6877.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -372.6319,0.5000,6887.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -373.1319,0.5000,6897.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -373.6319,0.5000,6906.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -374.1319,0.5000,6916.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -374.6319,0.5000,6926.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -375.1319,0.5000,6936.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -375.6319,0.5000,6945.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -376.1319,0.5000,6955.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -376.6319,0.5000,6965.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -377.1319,0.5000,6975.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -377.6319,0.5000,6984.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -378.1319,0.5000,6994.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -378.6319,0.5000,7004.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -379.1319,0.5000,7013.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -379.6319,0.5000,7023.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -380.1319,0.5000,7033.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -380.6319,0.5000,7043.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -381.1319,0.5000,7052.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -381.6319,0.5000,7062.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -382.1319,0.5000,7072.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -382.6319,0.5000,7081.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -383.1319,0.5000,7091.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -383.6319,0.5000,7101.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -384.1319,0.5000,7111.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -384.6319,0.5000,7120.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -385.1319,0.5000,7130.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -385.6319,0.5000,7140.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -386.1319,0.5000,7150.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -386.6319,0.5000,7159.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -387.1319,0.5000,7169.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -387.6319,0.5000,7179.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -388.1319,0.5000,7188.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -388.6319,0.5000,7198.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -389.1319,0.5000,7208.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -389.6319,0.5000,7218.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -390.1319,0.5000,7227.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -390.6319,0.5000,7237.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -391.1319,0.5000,7247.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -391.6319,0.5000,7256.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -392.1319,0.5000,7266.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -392.6319,0.5000,7276.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -393.1319,0.5000,7286.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -393.6319,0.5000,7295.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -394.1319,0.5000,7305.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -394.6319,0.5000,7315.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -395.1319,0.5000,7325.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -395.6319,0.5000,7334.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -396.1319,0.5000,7344.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -396.6319,0.5000,7354.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -397.1319,0.5000,7363.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -397.6319,0.5000,7373.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -398.1319,0.5000,7383.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -398.6319,0.5000,7393.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -399.1319,0.5000,7402.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -399.6319,0.5000,7412.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -400.1319,0.5000,7422.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -400.6319,0.5000,7431.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -401.1319,0.5000,7441.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -401.6319,0.5000,7451.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -402.1319,0.5000,7461.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -402.6319,0.5000,7470.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -403.1319,0.5000,7480.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -403.6319,0.5000,7490.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -404.1319,0.5000,7500.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -404.6319,0.5000,7509.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -405.1319,0.5000,7519.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -405.6319,0.5000,7529.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -406.1319,0.5000,7538.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -406.6319,0.5000,7548.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -407.1319,0.5000,7558.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -407.6319,0.5000,7568.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -408.1319,0.5000,7577.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -408.6319,0.5000,7587.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -409.1319,0.5000,7597.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -409.6319,0.5000,7606.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -410.1319,0.5000,7616.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -410.6319,0.5000,7626.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -411.1319,0.5000,7636.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -411.6319,0.5000,7645.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -412.1319,0.5000,7655.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -412.6319,0.5000,7665.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -413.1319,0.5000,7675.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -413.6319,0.5000,7684.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -414.1319,0.5000,7694.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -414.6319,0.5000,7704.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -415.1319,0.5000,7713.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -415.6319,0.5000,7723.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -416.1319,0.5000,7733.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -416.6319,0.5000,7743.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -417.1319,0.5000,7752.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -417.6319,0.5000,7762.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -418.1319,0.5000,7772.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -418.6319,0.5000,7781.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -419.1319,0.5000,7791.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -419.6319,0.5000,7801.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -420.1319,0.5000,7811.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -420.6319,0.5000,7820.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -421.1319,0.5000,7830.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -421.6319,0.5000,7840.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -422.1319,0.5000,7850.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -422.6319,0.5000,7859.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -423.1319,0.5000,7869.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -423.6319,0.5000,7879.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -424.1319,0.5000,7888.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -424.6319,0.5000,7898.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -425.1319,0.5000,7908.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -425.6319,0.5000,7918.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -426.1319,0.5000,7927.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -426.6319,0.5000,7937.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -427.1319,0.5000,7947.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -427.6319,0.5000,7956.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -428.1319,0.5000,7966.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -428.6319,0.5000,7976.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -429.1319,0.5000,7986.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -429.6319,0.5000,7995.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -430.1319,0.5000,8005.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -430.6319,0.5000,8015.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -431.1319,0.5000,8025.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -431.6319,0.5000,8034.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -432.1319,0.5000,8044.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -432.6319,0.5000,8054.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -433.1319,0.5000,8063.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -433.6319,0.5000,8073.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -434.1319,0.5000,8083.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -434.6319,0.5000,8093.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -435.1319,0.5000,8102.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -435.6319,0.5000,8112.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -436.1319,0.5000,8122.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -436.6319,0.5000,8131.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -437.1319,0.5000,8141.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -437.6319,0.5000,8151.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -438.1319,0.5000,8161.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -438.6319,0.5000,8170.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -439.1319,0.5000,8180.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -439.6319,0.5000,8190.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -440.1319,0.5000,8200.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -440.6319,0.5000,8209.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -441.1319,0.5000,8219.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -441.6319,0.5000,8229.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -442.1319,0.5000,8238.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -442.6319,0.5000,8248.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -443.1319,0.5000,8258.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -443.6319,0.5000,8268.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -444.1319,0.5000,8277.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -444.6319,0.5000,8287.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -445.1319,0.5000,8297.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -445.6319,0.5000,8306.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -446.1319,0.5000,8316.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -446.6319,0.5000,8326.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -447.1319,0.5000,8336.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -447.6319,0.5000,8345.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -448.1319,0.5000,8355.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -448.6319,0.5000,8365.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -449.1319,0.5000,8375.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -449.6319,0.5000,8384.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -450.1319,0.5000,8394.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -450.6319,0.5000,8404.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -451.1319,0.5000,8413.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -451.6319,0.5000,8423.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -452.1319,0.5000,8433.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -452.6319,0.5000,8443.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -453.1319,0.5000,8452.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -453.6319,0.5000,8462.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -454.1319,0.5000,8472.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -454.6319,0.5000,8481.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -455.1319,0.5000,8491.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -455.6319,0.5000,8501.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -456.1319,0.5000,8511.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -456.6319,0.5000,8520.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -457.1319,0.5000,8530.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -457.6319,0.5000,8540.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -458.1319,0.5000,8550.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -458.6319,0.5000,8559.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -459.1319,0.5000,8569.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -459.6319,0.5000,8579.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -460.1319,0.5000,8588.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -460.6319,0.5000,8598.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -461.1319,0.5000,8608.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -461.6319,0.5000,8618.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -462.1319,0.5000,8627.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -462.6319,0.5000,8637.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -463.1319,0.5000,8647.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -463.6319,0.5000,8656.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -464.1319,0.5000,8666.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -464.6319,0.5000,8676.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -465.1319,0.5000,8686.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -465.6319,0.5000,8695.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -466.1319,0.5000,8705.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -466.6319,0.5000,8715.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -467.1319,0.5000,8725.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -467.6319,0.5000,8734.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -468.1319,0.5000,8744.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -468.6319,0.5000,8754.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -469.1319,0.5000,8763.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -469.6319,0.5000,8773.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -470.1319,0.5000,8783.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -470.6319,0.5000,8793.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -471.1319,0.5000,8802.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -471.6319,0.5000,8812.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -472.1319,0.5000,8822.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -472.6319,0.5000,8831.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -473.1319,0.5000,8841.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -473.6319,0.5000,8851.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -474.1319,0.5000,8861.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -474.6319,0.5000,8870.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -475.1319,0.5000,8880.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -475.6319,0.5000,8890.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -476.1319,0.5000,8900.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -476.6319,0.5000,8909.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -477.1319,0.5000,8919.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -477.6319,0.5000,8929.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -478.1319,0.5000,8938.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -478.6319,0.5000,8948.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -479.1319,0.5000,8958.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -479.6319,0.5000,8968.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -480.1319,0.5000,8977.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -480.6319,0.5000,8987.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -481.1319,0.5000,8997.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -481.6319,0.5000,9006.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -482.1319,0.5000,9016.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -482.6319,0.5000,9026.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -483.1319,0.5000,9036.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -483.6319,0.5000,9045.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -484.1319,0.5000,9055.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -484.6319,0.5000,9065.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -485.1319,0.5000,9075.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -485.6319,0.5000,9084.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -486.1319,0.5000,9094.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -486.6319,0.5000,9104.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -487.1319,0.5000,9113.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -487.6319,0.5000,9123.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -488.1319,0.5000,9133.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -488.6319,0.5000,9143.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -489.1319,0.5000,9152.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -489.6319,0.5000,9162.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -490.1319,0.5000,9172.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -490.6319,0.5000,9181.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -491.1319,0.5000,9191.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -491.6319,0.5000,9201.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -492.1319,0.5000,9211.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -492.6319,0.5000,9220.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -493.1319,0.5000,9230.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -493.6319,0.5000,9240.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -494.1319,0.5000,9250.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -494.6319,0.5000,9259.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -495.1319,0.5000,9269.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -495.6319,0.5000,9279.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -496.1319,0.5000,9288.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -496.6319,0.5000,9298.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -497.1319,0.5000,9308.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -497.6319,0.5000,9318.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -498.1319,0.5000,9327.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -498.6319,0.5000,9337.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -499.1319,0.5000,9347.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -499.6319,0.5000,9356.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -500.1319,0.5000,9366.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -500.6319,0.5000,9376.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -501.1319,0.5000,9386.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -501.6319,0.5000,9395.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -502.1319,0.5000,9405.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -502.6319,0.5000,9415.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -503.1319,0.5000,9425.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -503.6319,0.5000,9434.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -504.1319,0.5000,9444.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -504.6319,0.5000,9454.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -505.1319,0.5000,9463.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -505.6319,0.5000,9473.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -506.1319,0.5000,9483.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -506.6319,0.5000,9493.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -507.1319,0.5000,9502.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -507.6319,0.5000,9512.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -508.1319,0.5000,9522.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -508.6319,0.5000,9531.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -509.1319,0.5000,9541.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -509.6319,0.5000,9551.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -510.1319,0.5000,9561.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -510.6319,0.5000,9570.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -511.1319,0.5000,9580.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -511.6319,0.5000,9590.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -512.1319,0.5000,9600.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -512.6319,0.5000,9609.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -513.1319,0.5000,9619.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -513.6319,0.5000,9629.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -514.1319,0.5000,9638.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -514.6319,0.5000,9648.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -515.1319,0.5000,9658.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -515.6319,0.5000,9668.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -516.1319,0.5000,9677.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -516.6319,0.5000,9687.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -517.1319,0.5000,9697.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -517.6319,0.5000,9706.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -518.1319,0.5000,9716.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -518.6319,0.5000,9726.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -519.1319,0.5000,9736.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -519.6319,0.5000,9745.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -520.1319,0.5000,9755.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -520.6319,0.5000,9765.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -521.1319,0.5000,9775.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -521.6319,0.5000,9784.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -522.1319,0.5000,9794.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -522.6319,0.5000,9804.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -523.1319,0.5000,9813.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -523.6319,0.5000,9823.6274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -524.1319,0.5000,9833.3496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -524.6319,0.5000,9843.0718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -525.1319,0.5000,9852.7940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -525.6319,0.5000,9862.5163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -526.1319,0.5000,9872.2385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -526.6319,0.5000,9881.9607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -527.1319,0.5000,9891.6829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -527.6319,0.5000,9901.4052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -528.1319,0.5000,9911.1274,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -528.6319,0.5000,9920.8496,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -529.1319,0.5000,9930.5718,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -529.6319,0.5000,9940.2940,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -530.1319,0.5000,9950.0163,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -530.6319,0.5000,9959.7385,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -531.1319,0.5000,9969.4607,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -531.6319,0.5000,9979.1829,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -532.1319,0.5000,9988.9052,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 -532.6672,0.5706,10000.0000,70.0000,70.0000,0.0000,0.0000,12,996.3358,789.2868,1562.8314,-151.8351,82.3511,163.0596,221.7490,-15.8419,0.0000,74.7194,0.0000,74.7194,7.6316,74.7194,3.2467,0.0000,71.4727,1.2505,,,70.2222,3.3144,66.9079,0.0000,66.9079,0.0000,66.9079,0.0000,27.4587,39.4492,0.0000,996.3358,685.0245,10.0000,0.0000,5.0000,2.6316,0.0000,0.0000,0.0000,0.0000,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696,15666.9696 diff --git a/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_ENG_PCC123Eco.vecto b/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_ENG_PCC123Eco.vecto new file mode 100644 index 0000000000000000000000000000000000000000..9ad243cf57eca9b7b3ac3fe9a1f033761ae74807 --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_ENG_PCC123Eco.vecto @@ -0,0 +1,63 @@ +{ + "Header": { + "CreatedBy": "", + "Date": "2021-08-04T15:21:01.9876615Z", + "AppVersion": "3", + "FileVersion": 5 + }, + "Body": { + "SavedInDeclMode": false, + "EngineOnlyMode": false, + "VehicleFile": "Class5_Tractor_PCC123EcoNoEngineStop.vveh", + "EngineFile": "Engine_325kW_12.7l.veng", + "GearboxFile": "AMT_12.vgbx", + "TCU": "AMT_12.vgbx", + "ShiftStrategy": "", + "Padd": 5000.0, + "Paux_ICEOff_Driving": 0.0, + "Paux_ICEOff_Standstill": 0.0, + "VACC": "Truck.vacc", + "EngineStopStartAtVehicleStopThreshold": 2.0, + "EngineStopStartMaxOffTimespan": 120.0, + "EngineStopStartUtilityFactor": 0.8, + "EngineStopStartUtilityFactorDriving": 0.8, + "EcoRollMinSpeed": 60.000000000000007, + "EcoRollActivationDelay": 2.0, + "EcoRollUnderspeedThreshold": 0.0, + "EcoRollMaxAcceleration": 0.1, + "PCCEnableSpeed": 80.0, + "PCCMinSpeed": 50.0, + "PCCUnderspeed": 8.0, + "PCCOverSpeed": 5.0, + "PCCPreviewDistanceUC1": 1500.0, + "PCCPreviewDistanceUC2": 1000.0, + "LAC": { + "Enabled": true, + "PreviewDistanceFactor": 10.0, + "DF_offset": 2.5, + "DF_scaling": 1.5, + "DF_targetSpeedLookup": "", + "Df_velocityDropLookup": "", + "MinSpeed": 50.0 + }, + "OverSpeedEcoRoll": { + "Mode": "Overspeed", + "MinSpeed": 50.0, + "OverSpeed": 2.5 + }, + "Cycles": [ + "CrestCoast1.vdri", + "CrestCoast2.vdri", + "Group5Eng_CaseA.vdri", + "Group5Eng_CaseB.vdri", + "Group5Eng_CaseC.vdri", + "Group5Eng_CaseD.vdri", + "Group5Eng_CaseE.vdri", + "Group5Eng_CaseF.vdri", + "Group5Eng_CaseG.vdri", + "Group5Eng_CaseH.vdri", + "Group5Eng_CaseI.vdri", + "Group5Eng_CaseJ.vdri" + ] + } +} \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_ENG_PCC123EcoEngineStop.vecto b/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_ENG_PCC123EcoEngineStop.vecto new file mode 100644 index 0000000000000000000000000000000000000000..07877d3eae3ac30e0ac0b8a9bc14b527826ec20f --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_ENG_PCC123EcoEngineStop.vecto @@ -0,0 +1,63 @@ +{ + "Header": { + "CreatedBy": "", + "Date": "2021-08-04T15:20:20.0790743Z", + "AppVersion": "3", + "FileVersion": 5 + }, + "Body": { + "SavedInDeclMode": false, + "EngineOnlyMode": false, + "VehicleFile": "Class5_Tractor_PCC123EcoEngineStop.vveh", + "EngineFile": "Engine_325kW_12.7l.veng", + "GearboxFile": "AMT_12.vgbx", + "TCU": "AMT_12.vgbx", + "ShiftStrategy": "", + "Padd": 5000.0, + "Paux_ICEOff_Driving": 0.0, + "Paux_ICEOff_Standstill": 0.0, + "VACC": "Truck.vacc", + "EngineStopStartAtVehicleStopThreshold": 2.0, + "EngineStopStartMaxOffTimespan": 120.0, + "EngineStopStartUtilityFactor": 0.8, + "EngineStopStartUtilityFactorDriving": 0.8, + "EcoRollMinSpeed": 60.000000000000007, + "EcoRollActivationDelay": 2.0, + "EcoRollUnderspeedThreshold": 0.0, + "EcoRollMaxAcceleration": 0.1, + "PCCEnableSpeed": 80.0, + "PCCMinSpeed": 50.0, + "PCCUnderspeed": 8.0, + "PCCOverSpeed": 5.0, + "PCCPreviewDistanceUC1": 1500.0, + "PCCPreviewDistanceUC2": 1000.0, + "LAC": { + "Enabled": true, + "PreviewDistanceFactor": 10.0, + "DF_offset": 2.5, + "DF_scaling": 1.5, + "DF_targetSpeedLookup": "", + "Df_velocityDropLookup": "", + "MinSpeed": 50.0 + }, + "OverSpeedEcoRoll": { + "Mode": "Overspeed", + "MinSpeed": 50.0, + "OverSpeed": 2.5 + }, + "Cycles": [ + "CrestCoast1.vdri", + "CrestCoast2.vdri", + "Group5Eng_CaseA.vdri", + "Group5Eng_CaseB.vdri", + "Group5Eng_CaseC.vdri", + "Group5Eng_CaseD.vdri", + "Group5Eng_CaseE.vdri", + "Group5Eng_CaseF.vdri", + "Group5Eng_CaseG.vdri", + "Group5Eng_CaseH.vdri", + "Group5Eng_CaseI.vdri", + "Group5Eng_CaseJ.vdri" + ] + } +} \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_ENG_PCC123EcoSS.vecto b/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_ENG_WithEngineStop.vecto similarity index 94% rename from VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_ENG_PCC123EcoSS.vecto rename to VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_ENG_WithEngineStop.vecto index 11884bf146be0537397ac34b409e6f4da4fb3a4e..96bc8f5dd21a03191cb53654764d0f68c61055ed 100644 --- a/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_ENG_PCC123EcoSS.vecto +++ b/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_ENG_WithEngineStop.vecto @@ -1,14 +1,14 @@ { "Header": { "CreatedBy": "", - "Date": "2021-08-04T09:12:51.6421050Z", + "Date": "2021-08-04T15:43:19.4275704Z", "AppVersion": "3", "FileVersion": 5 }, "Body": { "SavedInDeclMode": false, "EngineOnlyMode": false, - "VehicleFile": "Class5_Tractor_PCC123EcoSS.vveh", + "VehicleFile": "Class5_TractorWithEngineStop.vveh", "EngineFile": "Engine_325kW_12.7l.veng", "GearboxFile": "AMT_12.vgbx", "TCU": "AMT_12.vgbx", diff --git a/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_ENG_WithoutEngineStop.vecto b/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_ENG_WithoutEngineStop.vecto new file mode 100644 index 0000000000000000000000000000000000000000..6c29e4733c6b2ff7b81acd42318ba568f18805e7 --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_ENG_WithoutEngineStop.vecto @@ -0,0 +1,63 @@ +{ + "Header": { + "CreatedBy": "", + "Date": "2021-08-04T15:43:36.4316857Z", + "AppVersion": "3", + "FileVersion": 5 + }, + "Body": { + "SavedInDeclMode": false, + "EngineOnlyMode": false, + "VehicleFile": "Class5_TractorWithoutEngineStop.vveh", + "EngineFile": "Engine_325kW_12.7l.veng", + "GearboxFile": "AMT_12.vgbx", + "TCU": "AMT_12.vgbx", + "ShiftStrategy": "", + "Padd": 5000.0, + "Paux_ICEOff_Driving": 0.0, + "Paux_ICEOff_Standstill": 0.0, + "VACC": "Truck.vacc", + "EngineStopStartAtVehicleStopThreshold": 2.0, + "EngineStopStartMaxOffTimespan": 120.0, + "EngineStopStartUtilityFactor": 0.8, + "EngineStopStartUtilityFactorDriving": 0.8, + "EcoRollMinSpeed": 60.000000000000007, + "EcoRollActivationDelay": 2.0, + "EcoRollUnderspeedThreshold": 0.0, + "EcoRollMaxAcceleration": 0.1, + "PCCEnableSpeed": 80.0, + "PCCMinSpeed": 50.0, + "PCCUnderspeed": 8.0, + "PCCOverSpeed": 5.0, + "PCCPreviewDistanceUC1": 1500.0, + "PCCPreviewDistanceUC2": 1000.0, + "LAC": { + "Enabled": true, + "PreviewDistanceFactor": 10.0, + "DF_offset": 2.5, + "DF_scaling": 1.5, + "DF_targetSpeedLookup": "", + "Df_velocityDropLookup": "", + "MinSpeed": 50.0 + }, + "OverSpeedEcoRoll": { + "Mode": "Overspeed", + "MinSpeed": 50.0, + "OverSpeed": 2.5 + }, + "Cycles": [ + "CrestCoast1.vdri", + "CrestCoast2.vdri", + "Group5Eng_CaseA.vdri", + "Group5Eng_CaseB.vdri", + "Group5Eng_CaseC.vdri", + "Group5Eng_CaseD.vdri", + "Group5Eng_CaseE.vdri", + "Group5Eng_CaseF.vdri", + "Group5Eng_CaseG.vdri", + "Group5Eng_CaseH.vdri", + "Group5Eng_CaseI.vdri", + "Group5Eng_CaseJ.vdri" + ] + } +} \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_PCC123EcoSS.vveh b/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_PCC123EcoEngineStop.vveh similarity index 98% rename from VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_PCC123EcoSS.vveh rename to VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_PCC123EcoEngineStop.vveh index 3fc46b7f237050c6a65d1fda4dce20fbbceffd1d..6dd9cd168af6189915b79aa1f7f74e6801bbc03b 100644 --- a/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_PCC123EcoSS.vveh +++ b/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_PCC123EcoEngineStop.vveh @@ -1,7 +1,7 @@ { "Header": { "CreatedBy": "", - "Date": "2021-08-04T09:12:48.2128036Z", + "Date": "2021-08-04T15:20:16.8596579Z", "AppVersion": "3", "FileVersion": 8 }, diff --git a/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_PCC123EcoNoEngineStop.vveh b/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_PCC123EcoNoEngineStop.vveh new file mode 100644 index 0000000000000000000000000000000000000000..3d3d3f72c25774ef8159c2b42659936de1ec626a --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Integration/ADAS-Conventional/Group5PCCEng/Class5_Tractor_PCC123EcoNoEngineStop.vveh @@ -0,0 +1,94 @@ +{ + "Header": { + "CreatedBy": "", + "Date": "2021-08-04T15:20:56.4795793Z", + "AppVersion": "3", + "FileVersion": 8 + }, + "Body": { + "SavedInDeclMode": false, + "VehCat": "Tractor", + "LegislativeClass": "Unknown", + "CurbWeight": 8229.0, + "CurbWeightExtra": 7500.0, + "MassMax": 18.0, + "Loading": 19300.0, + "rdyn": 492.0, + "CdCorrMode": "CdofVdecl", + "CdCorrFile": "", + "AxleConfig": { + "Type": "4x2", + "Axles": [ + { + "Inertia": 14.9, + "Wheels": "315/70 R22.5", + "AxleWeightShare": 0.2, + "TwinTyres": false, + "RRCISO": 0.0055, + "FzISO": 33350.0, + "Type": "VehicleNonDriven" + }, + { + "Inertia": 14.9, + "Wheels": "315/70 R22.5", + "AxleWeightShare": 0.25, + "TwinTyres": true, + "RRCISO": 0.0065, + "FzISO": 33350.0, + "Type": "VehicleDriven" + }, + { + "Inertia": 19.2, + "Wheels": "385/65 R22.5", + "AxleWeightShare": 0.18333, + "TwinTyres": false, + "RRCISO": 0.0055, + "FzISO": 41690.0, + "Type": "VehicleNonDriven" + }, + { + "Inertia": 19.2, + "Wheels": "385/65 R22.5", + "AxleWeightShare": 0.18333, + "TwinTyres": false, + "RRCISO": 0.0055, + "FzISO": 41690.0, + "Type": "VehicleNonDriven" + }, + { + "Inertia": 19.2, + "Wheels": "385/65 R22.5", + "AxleWeightShare": 0.18334, + "TwinTyres": false, + "RRCISO": 0.0055, + "FzISO": 41690.0, + "Type": "VehicleNonDriven" + } + ] + }, + "EngineStopStart": true, + "EcoRoll": "WithoutEngineStop", + "PredictiveCruiseControl": "Option_1_2_3", + "ATEcoRollReleaseLockupClutch": false, + "CdA": 5.3, + "VehicleHeight": 0.0, + "IdlingSpeed": 0.0, + "Retarder": { + "Type": "secondary", + "Ratio": 1.0, + "File": "Default.vrlm" + }, + "Angledrive": { + "Type": "None", + "Ratio": 0.0, + "LossMap": "" + }, + "PTO": { + "Type": "None", + "LossMap": "", + "Cycle": "", + "CycleDriving": "" + }, + "TorqueLimits": {} + } +} \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/VectoCoreTest.csproj b/VectoCore/VectoCoreTest/VectoCoreTest.csproj index 17d77794080873acc65c755ea86de26df94ec5b6..c4f58810cd79cf143b97a1ef1988c2b750991b1d 100644 --- a/VectoCore/VectoCoreTest/VectoCoreTest.csproj +++ b/VectoCore/VectoCoreTest/VectoCoreTest.csproj @@ -2266,6 +2266,30 @@ <None Include="TestData\Hybrids\Input CityBus 6x2_HEV_P2\Gear_9.vtlm"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> + <None Include="TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_TractorWithEngineStop.vveh"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_TractorWithoutEngineStop.vveh"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_ENG_PCC123Eco.vecto"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_ENG_PCC123EcoEngineStop.vecto"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_ENG_WithEngineStop.vecto"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_ENG_WithoutEngineStop.vecto"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_PCC123EcoEngineStop.vveh"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_PCC123EcoNoEngineStop.vveh"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> <None Include="TestData\Integration\ADAS-HEV\Group5EcoRollEng\325kW.vfld"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> @@ -3650,18 +3674,12 @@ <None Include="TestData\Integration\ADAS-Conventional\Group5PCCEng\Axle_4x2_Tractor.vtlm"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> - <None Include="TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_ENG_PCC123EcoSS.vecto"> - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> - </None> <None Include="TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_ENG_PCC123.vecto"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> <None Include="TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_ENG_PCC12.vecto"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> - <None Include="TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_PCC123EcoSS.vveh"> - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> - </None> <None Include="TestData\Integration\ADAS-Conventional\Group5PCCEng\Class5_Tractor_PCC123.vveh"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None>